@charset "UTF-8";
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
/* Take header into account when jumping to a heading */
:target:before {
	content: "";
	display: block;
	height: 8rem; /* fixed header height +padding */
	margin: -8rem 0 0; /* negative fixed header height +padding */
}
html {
	height: 100%;
	font-size : 1vw;
}
body {
	font-family: Calibri, Arial, Helvetica, sans-serif; /* Calibri, Arial, Helvetica, sans-serif */
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
	color : #0050FF;	/* #0080FF */
	background-color: #FFFFFF; /* For browsers that do not support gradients */
	/*background: linear-gradient(-159deg, #8ECCFF, white);*/
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
}
h2 {
	font-size: 1.6rem;
	padding-bottom: 1.6rem;
}
h3 {
	font-size: 1.4rem;
	padding-bottom: 0.8rem;
}
h4 {
	font-weight: normal;
	font-size: 1.35rem;
	padding: 0.4rem 0;
}
p {
	font-size: 1.3rem;
	padding-bottom: 0.8rem;
}
a {
	font-size: 1.3rem;
	padding-bottom: 0.4rem;
}
a:hover {
	color: #FF0004;
}
.padd_t {
	padding-top: 1rem;
}
.padd_r {
	padding-right: 1rem;
}
.padd_b {
	padding-bottom: 1rem;
}
.mrgn_b {
	margin-bottom: 1rem;
}
.flex_row {
	display: flex;
	flex-direction: row;
}
.flex_row2 {
	display: flex;
	flex-direction: row;
}
.text_b {
	color: black;
	word-wrap: break-word;
	padding: 0 0 0.4rem 0;
}
.text_r {
	color: red;
}
.img {
	width: 100%;
	max-height: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}
.img2 {
	display: block;
	/*	max-height: 9rem;
	width: auto;*/
	width: 100%;
	max-width: 100px;
	height: auto;
	margin: 1rem;
}
.anim {
	width: 33%;
	height: auto;
	padding: 0 1rem;
}
.video {
	width: 100%;
	height: auto;
}
.overlay {
	display: block;
	width: 33%;
	height: auto;
	position: absolute;
	bottom: 0;
	right: 0;
}
.side_img {
	top: 0;
	left: -3%;
	position: fixed;
	z-index: 2;
	width: 13%;
	height: 1200px;
	opacity: 0.9;
	filter: alpha(opacity=50); /* For IE8 and earlier */
}
.media_menu_btn {
	display: none;
}
.media_menu {
	display: none;
}
.media_menu_hide {
	display: show;
}
/* -Top banner- */
.topbar {
	top: 0;
	position: fixed;
	padding-left: 13%;
	z-index: 1;
	width: 100%;
	height: 7rem;
	/*border-bottom: 0.2rem solid #00B3FF;*/
	background-color: rgba(255,255,255,0.90);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flux {
	align-self: center;
	height: 6rem;
	width: 30rem;
	overflow: hidden;
	min-width: 100px;
}
.flux_logo {
	display: flex;
	padding: 1rem 0;
	overflow: hidden;
}
.f_logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.f_logo h3 {
	color: red;
	text-decoration: none;
}
.logo {
}
.logo img {
	width: auto;
	height: 4rem;
	padding: 0.7rem 3rem 0 0;
	justify-content: flex-start;
}
.navbar {
	display: flex;
	align-items: center;
	overflow: visible;
	padding-left: 1rem;
	height: 100%;
}
.media_resp_list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	background: linear-gradient(-90deg, #DDEEFF, white);
	list-style: none;
}
.navbar ul li {
	padding: 0 0.7rem;
}
.button_navbar {
	display: flex;
	font-weight: normal;
	font-size: 1.3rem;
	color: #0050FF;
	line-height: 30px;
	text-decoration: none;
	text-align: center;
	align-items: center;
}
.lang {
	font-size: 1.1rem;
}
.lang_flag {
	padding-left: 6px;
	height: 1rem;
	width: auto;
	align-self: center;
}
/*--*/

header {
	padding: 4rem 0 2rem 0;
}
/* -Main content- */
.page_container {
	margin: 7rem 0 0 0;	/* Make room for top banner */
}
.wrapper {
	margin: 0 13%;
}
.container {
	display: flex;
	justify-content: flex-start;
}
.container_vert {
	padding: 1rem 0 2rem 0;
}
.container_horiz {
	display: flex;
	flex-direction: row;
	align-items: baseline;
}
.content {
	padding: 1rem;
	width: 50%;
}
.img_cont {
	position: relative;
}
.cont_video {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: auto;
	padding: 2rem 0;
	width: 80%;
	height: auto;
}
.card {
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	border-style: ridge;
	padding: 1rem 2rem;
	margin: 2rem 0;
	max-width: 42rem;
}
.info {
	padding: 3rem 0 0 2rem;
}
/*--*/

footer {
	padding: 2rem 0;
}

/* Change look for smaller screens */
@media only screen and (max-width : 1400px ) {
html {
	font-size: 14px;
}
.flex_row {
	display: flex;
	flex-direction: column;
}
.anim {
	width: 100%;
	max-width: 30rem;
}
}

@media only screen and (max-width : 1030px ) {
.flux {
	display: none;
}
}

@media only screen and (max-width : 875px ) {
.flux {
	display: inline;
}
.media_only_hide li {
	display: none;
}
.navbar {
	padding-right: 1rem;
}
.media_menu_btn {
	display: inline;
	background-color: #FFFFFF;
}
.media_resp_list {
	position: fixed;
	top: 7rem;
	right: 0;
	flex-direction: column;
	width: 10rem;
	background: none;
	background-color: rgba(255,255,255,0.90);
	border-radius: 10px;
}
.media_menu_hide {
	display: none;
}
.container {
	flex-direction: column;
}
.content {
	width: 100%;
}
.container_horiz {
	flex-direction: column;
}
.card {
	max-width: 27rem;
}
.cont_video {
	width: 100%;
}
}

@media only screen and (max-width : 470px ) {
.flux {
	display: none;
}
.navbar {
	padding: 0 1rem 0 0;
}
.navbar ul li {
	padding: 0 1rem 0 0;
}
.flex_row2 {
	display: flex;
	flex-direction: column;
}
}
/*--*/
