:root {
    --body-bg: #EBF3FD;
	--color-black: #000000;
	--color-white: #FFFFFF;
	--color-red: #FF0000;
	--color-green: #008000;
	--color-hover-fc-1: #D0E5FF;
	--color-hover-fc-2: #005DC8;
	--color-hover-fc-3: #1C1C1C;
	--latest-news-h2-fc: #1A68D1;
	--quote-p-fc: #9C9CA6;
	--simnest-blue: #006BE7;
	--simnest-light-blue: #EBF3FD;
	--simnest-yellow: #F7D832;
	--placeholder-color: #888B90;
}

@font-face {
    font-family: 'Reservation Wide';
    font-style: normal;
    font-weight: 700;
    src: local('Reservation Wide Bold'), local('Reservation Wide Bold'), url(../fonts/Reservation\ Wide\ Bold.ttf) format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	font-display: swap;
}

@font-face {
    font-family: 'Reservation Wide Regular';
    font-style: normal;
    font-weight: 700;
    src: local('Reservation Wide Regular'), local('Reservation Wide Regular'), url(../fonts/Reservation\ Wide\ Regular.ttf) format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	font-display: swap;
}

@font-face {
    font-family: 'Helvetica Regular';
    font-style: normal;
    font-weight: 400;
    src: local('Helvetica Regular'), local('Helvetica Regular'), url(../fonts/Helvetica-Regular.ttf) format('truetype');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
	font-display: swap;
}

body{
	background-color: var(--body-bg);
	font-family: Reservation Wide;
}

ul{
	list-style: none;
}

li{
	list-style: none;
}

p{
	font-family: Helvetica Regular;
}

input[type=text], textarea, input[type=email], input[type=tel]{
	border-radius: 10px;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	padding-left: 0.6em;
	height: 3.0em;
	border: none;
	width: 20em;
	box-shadow: 0px 3px 5px rgba(0, 107, 231, 0.25);
	transition: 0.2s ease all;
}

textarea{
	height: 6.0em;
}

input[type=text] active{
	border: none !important;
}

input[type=password]{
	border-radius: 10px;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	padding-left: 0.6em;
	height: 3.0em;
	border: none;
	width: 20em;
	box-shadow: 0px 3px 5px rgba(0, 107, 231, 0.25);
	transition: 0.2s ease all;
}

input[type=password] active{
	border: none !important;
}

input[type=checkbox],
input[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.checkbox{
    display: block
}

.checkbox-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    margin-left: 15px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: #cbcbcb 1px solid;
    border-radius: 4px;
	background-color: var(--simnest-light-blue);
}

.checkbox-container:hover input~.checkmark {
    background-color: var(--color-hover-fc-1);
}

.checkbox-container input:checked~.checkmark {
    background-color: #005DC8;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #EBF3FD;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

html > div[style] {
  display: none !important;
}

::placeholder{
	color: var(--placeholder-color);
	padding-left: 0.3em;
}

.container{
	max-width: 2920px;
}

.modal{
	justify-content: center;
	align-items: center;
}

.sn-button{
	background-color: var(--simnest-blue);
	color: var(--color-white);
	border-radius: 10px;
}

.sn-button:hover{
	background-color: var(--color-hover-fc-2);
}

.sn-button-black:hover{
	background-color: var(--color-hover-fc-3);
}

.container-full{
	padding-left: 0px;
	padding-right: 0px;
}

.text-align-right{
	text-align: right;
}

.text-align-left{
	text-align: left;
}

.text-align-justify{
	text-align: justify;
}

@media (max-width:991px){
	.text-align-center-mobile{
		text-align: center !important;
	}
}

.mt-0{
	margin-top: 0px !important;
}

.mt-30{
	margin-top: 30px !important;
}

.mb-15{
	margin-bottom: 15px !important;
}

.mb-30{
	margin-bottom: 30px !important;
}

.pt-0{
	padding-top: 0px !important;
}

.pb-5{
	padding-bottom: 5px !important;
}

.ta-l{
	text-align: left
}

.p-reservation-wide-bold{
	font-family: Reservation Wide;
}

/* Header CSS */
.top-menu{
	min-height: 5%;
	width: 80%;
	margin: auto;
}

.top-menu-text{
	text-align: left;
	margin: auto;
}

.top-menu-text h6{
	font-size: 0.9em;
	font-weight: bold;
	margin: auto;
}

.top-menu-nav{
	text-align: right;
	margin: auto;
}

.top-menu-nav-container{
	display: inline-flex;
	-webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
	flex-direction: row;
	margin: auto;
	padding: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: right;
}

.top-menu-nav-container li{
	margin: auto;
}

.top-menu-nav-item{
	text-transform: uppercase;
	margin-right: 1.8em !important;
}

.top-menu-nav-item-pilot-academy{
	color: var(--color-white);
	background-color: #eeb602;
    padding-right: 5px;
	padding-left: 5px;
}

.top-menu-nav-item-pilot-academy a{
	font-size: 0.7em;
	font-weight: bold;
	color: var(--color-white) !important;
}

.nav-link-pilot-academy{
	color: #eeb602 !important;
}

.top-menu-nav-item a{
	font-size: 0.7em;
	font-weight: bold;
	color: var(--color-black);
}

.top-menu-nav-item a:hover{
	color: var(--simnest-blue);
	text-decoration: none;
}

.top-menu-nav-item-social{
	margin-right: 0px !important;
	margin-left: 1.0em !important;
	min-width: 
}

.top-menu-fb-logo{
	width: 2.0em;
}

.top-menu-yb-logo{
	width: 2.5em;
}

.container-main{
	background-color: var(--color-white);
}

.container-header{
	width: 80%;
	margin: auto;
	padding-top: 1.5em;
}

.container-header-fixed{
	position: fixed;
	z-index: 10;
	opacity: 1;
	top: 0;
	background-color: var(--color-white);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	box-shadow: 0px 3px 5px grey;
	min-height: 60px;
}

.container-header-row{
	height: 100%;
}

.container-header-row-fixed{
	width: 80%;
}

.container-header-logo{
	display: flex;
	align-items: center;
}

.container-header-logo-image{
	width: 45%;
}

.container-header-menu{
	display: flex;
	flex-direction: column-reverse;
	text-align: right;
}

.container-header-menu-fixed{
	justify-content: center;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
}

.container-header-menu-ul{
	display: inline-flex;
	-webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
	flex-direction: row;
	margin: auto;
	text-align: right;
	padding: 0;
}

.container-header-menu-item{
	margin-right: 4.0em;
	white-space: nowrap;
}

.container-header-menu-item-last{
	margin-right: 0em !important;
}

.container-header-menu-item-a{
	width: auto;
	border-top: 3px solid transparent;
}

.container-header-menu-item-a-active{
	border-top: 3px solid var(--simnest-blue);
	color: var(--simnest-blue);
}

.container-header-menu-item a{
	color: var(--color-black);
}

.container-header-menu-item a:hover{
	color: var(--color-hover-fc-2);
	text-decoration: none;
}

.container-header-menu-item-a-active a{
	color: var(--simnest-blue);
}

.header-menu-item-bold{
	font-size: 1.1em;
	font-weight: 700;
	text-align: left;
}

.header-menu-item-normal{
	font-family: Reservation Wide Regular;
	font-size: 1.1em;
	font-weight: 400;
	text-align: left;
	margin-top: -0.5em;
}

.container-header-mobile{
	display: none;
	margin: auto;
	background-color: var(--simnest-light-blue);
	align-items: center;
}

.container-header-mobile-fixed{
	position: fixed;
	top: 0;
	opacity: 1;
	z-index: 100;
	width: 100%;
}

.header-mobile{
	width: 100%;
	margin: auto;
}

.mobile-header-logo{
	width: 10.0em;
}


.navbar-toggler{
	border: 0;
}

.navbar-toggler-text{
	color: var(--color-black);
	margin-right: 0.3em;
	font-size: 0.8em;
}

.navbar-toggler-icon{
	width: 1.5em;
	height: 2.0em;
	margin-bottom: 0.0em;
}

.container-page-title h1{
	text-align: center;
	font-size: 3.0em;
	padding-top: 1.0em;
	padding-bottom: 1.0em;
}

@media (max-width:1500px){
	.top-menu{
		width: 95%;
	}
	
	.container-header{
		width: 100%;
	}
	
	.container-header-row-fixed{
		width: 100%;
	}
	
	.container-header-logo{
		justify-content: center;
		max-width: 30%;
		flex: auto;
	}
	
	.container-header-logo a{
		text-align: center;
	}
	
	.container-header-logo-image{
		width: 50%;
	}
	
	.container-header-menu{
		max-width: 70%;
		flex: auto;
	}
	
	.header-menu-ul-container{
		text-align: center;
	}
}

@media (max-width:1350px){
	.container-header-menu-item{
		margin-right: 2.0em;
	}
}

/* Index page CSS */
.container-header-title{
	width: 80%;
	margin: auto;
	padding-top: 0.5em;
	padding-bottom: 3.0em;
}

.container-header-title-mobile{
	display:none;
	width: 100%;
	margin: auto;
	padding-top: 5.0em;
	padding-left: 15px;
}

.container-header-text-mobile{
	display: none;
	width: 100%;
	margin: auto;
    padding-bottom: 1.5em;
    padding-top: 5.0em;
}

.container-header-text-mobile h6{
	font-size: 1.0em;
	margin: auto;
	text-align: justify;
	font-family: Reservation Wide Regular;
}

.container-header-title h1{
	font-size: 1.5em;
	font-family: Reservation Wide Regular;
	color: var(--simnest-blue);
	font-weight: 100;
	text-transform: uppercase;
	margin-left: -0.05em;
}

.container-header-title-mobile h1{
	font-family: Reservation Wide Regular;
	color: var(--simnest-blue);
	font-weight: 100;
	font-size: 1.5em;
	text-transform: uppercase;
}

.header-title-second{
	margin-top: -0.4em;
}

.container-default{
	width: 80%;
	margin: auto;
}

.container-logo{
	margin-top: 3.0em;
	margin-bottom: 3.0em;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	outline: 0;
}

.container-logo-item{
	text-align: center;
}

.logo-faa{
	width: 5.0em;
}

.logo-easa{
	width: 12.0em;
}

.logo-icao{
	width: 7.0em;
}

.container-latest-news-quote{
	background-color: var(--simnest-light-blue);
	margin-top: 0em;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}

.container-latest-news{
	float: left;
	width: 70%;
	padding-left: 2.0em;
}

.container-latest-news h1{
	font-size: 1.2em;
	color: var(--color-black);
}

.container-latest-news h2{
	font-size: 1.2em;
	color: var(--latest-news-h2-fc);
	margin-top: 1.5em;
	font-weight: 400;
}

.container-latest-news p{
	font-weight: 400;
	color: var(--color-black);
	text-align: justify;
	padding-bottom: 1.5em;
}

.container-latest-news a, .container-about-us a{
	position: absolute;
	bottom: 0;
	color: var(--latest-news-a-fc);
	text-decoration: underline;
}

.container-about-us{
	float: right;
	width: 70%;
	padding-right: 2.0em;
}

.container-about-us a{
	position: absolute;
	bottom: 0;
	color: var(--latest-news-a-fc);
	text-decoration: underline;
}

.about-us-h1{
	font-size: 1.2em;
	margin-bottom: 1.5em;
}

.about-us-p{
	text-align: justify;
	padding-bottom: 1.5em;
}

.about-us-p-second{
	margin-top: 1.5em;
}

.container-latest-news-mobile{
	display: none;
	margin-top: 2.0em;
}

.container-gallery{
	margin-top: 2.5em;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	outline: 0;
}

.container-ato-title{
	text-align: right;
	padding-right: 2.0em;
}

.container-ato-title-certificate-mobile{
	margin-top: 2.0em;
	padding-bottom: 2.0em;
	display: none;
}

.container-ato-title h1{
	font-family: Reservation Wide Regular;
	color: var(--simnest-blue);
	font-size: 1.2em;
}

.container-ato-title br{
	content: "";
	margin: -0.2em;
	display: block;
}

.container-certificate{
	text-align: left;
	margin-top: 0.0em;
	padding-left: 2.0em;
}

.container-certificate p{
	color: var(--color-black);
	font-size: 1.0em;
	width: 70%;
    text-align: justify;
}

.container-certificate a{
    color: var(--latest-news-a-fc);
    text-decoration: underline;
}

.container-certificate a:hover{
	color: var(--color-black);
}

.container-partners{
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 3.0em;
	padding-bottom: 3.0em;
}

.container-partner{
	min-width: 300px;
	display: flex;
	align-items: center;
}

.container-partners a:hover{
	text-decoration: none;
}

.partner-logo{
	width: 14.0em;
	transition: 350ms;
}

.partner-logo:hover{
	transform: scale(1.15);
	will-change: contents;
}

.about-us-title-mobile{
	display: none;
	font-size: 3em !important;
}

.about-us-image{
	width: 90%;
	border-radius: 10px;
}

.container-about-us-text{
	padding-left: 0em;
	margin-left: -0.4em;
}

.container-ato{
	width: 80%;
	margin: auto;
	padding-top: 4.0em;
	padding-bottom: 2.0em;
}

.ato-col-desktop{
	display: block;
}

.ato-col-mobile{
	display: none;
	border-radius: 40px;
	background-color: #F6BC00;
	align-items: center;
	justify-content: center;
	padding-top: 2.0em;
	padding-bottom: 2.0em;
	margin-bottom: 1.5em;
}

.ato-col{
	text-align: center;
}

.container-ato-image{
	position: absolute;
	z-index: 1;
}

.ato-image{
	width:50%;
	border-radius: 40px;
}

.container-ato-logo{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 50%;
	border-radius: 40px;
	background-color: #F6BC00;
	margin-left: 50%;
	margin-top: -5%;
}

.ato-logo{
	width: 40%;
	margin-right: 3.5em;
}

.ato-logo-mobile{
	width: 40%;
}

.ato-col p{
	width: 65%;
	text-align: justify;
	margin: auto;
	color: var(--color-black);
	font-size: 1.0em;
}

.ato-second-p{
	padding-top: 1.5em;
}

.ato-second-p br{
	content: "";
	margin: 2em;
	display: block;
	font-size: 24%;
}

.ato-second-p a{
	color: var(--color-black);
	text-decoration: underline;
	font-size: 1.0em;
	font-weight: bold;
	font-family: Reservation Wide;
}

@media (max-width:1700px){
	.ato-logo{
		margin-right: 3.0em;
	}
}

@media (max-width:991px){
	.container-ato{
		width:90%;
		padding-top: 0px;
	}
	.ato-col{
		padding-left: 0px;
		padding-right: 0px;
	}
	.ato-col-desktop{
		display: none;
	}
	.ato-col-mobile{
		display: flex;
	}
	.ato-col p{
		width: 100%;
	}
}

/* Footer CSS */
.container-contact-navigation-newsletter{
	margin-top: 5em;
	margin-bottom: 5em;
	max-width: 100%;
	margin-left: 0px;
	margin-right: 0px;
}

.contact-navigation-newsletter-col{
	display: flex;
	justify-content: center;
}

.contact-data-box{
	margin-top: 2em;
}

.contact-data-box h2{
	font-family: Reservation Wide;
	font-size: 1.0em;
}

.contact-data-box h3{
	font-family: Helvetica Regular;
	font-size: 1.0em;
	margin-top: -0.35em;
}

.container-contact{
	text-align: left;
}

.container-footer-iso-image{
	display: flex;
	align-items: center;
	padding-top: 2.5em;
}

.footer-iso-image{
	width: 6.0em;
	float: left;
}

.footer-iso-image-second{
	margin-left: 2.0em;
}

.container-navigation{
	text-align: left;
}

.container-navigation a{
	color: var(--color-black);
}

.container-navigation a:hover{
	text-decoration: none;
	color: var(--simnest-blue);
}

.footer-pilot-academy-link:hover{
	text-decoration: none;
	color: #eeb602 !important;
}

.navigation-a-h2{
	font-family: Helvetica;
	font-size: 1.0em;
	margin-top: 2em;
}

.navigation-link-box{
	margin-top: 1.8em;
}

.navigation-link-box a{
	font-family: Helvetica Regular;
	font-size: 1.0em;
}

.container-newsletter{
	text-align: left;
}

.container-newsletter p{
	font-size: 1.0em;
	margin-top: 2em;
}

.contact-navigation-newsletter-h1{
	font-size: 1.1em;
	color: var(--simnest-blue);
}

.newsletter-form-input-text{
	margin-bottom: 0.7em;
	background-color: var(--color-white) !important;
}

.newsletter-form-input-text:-internal-autofill-selected{
	background-color: var(--color-white);
}

.newsletter-error-label-container{
	margin-top: -0.3em;
	padding-bottom: 1.0em;
	display: none;
}

#mce-error-response{
	color: var(--color-red);
}

.mce-success-response{
	color: var(--color-green) !important;
}

.newsletter-response{
	width: 70%;
	padding-top: 1.0em;
	padding-bottom: 1.0em;
}

.sn-button-dropdown{
	background-color: var(--simnest-blue);
	color: var(--color-white);
	border-radius: 10px;
}

.sn-button-dropdown:hover{
	background-color: var(--simnest-light-blue);
	color: var(--simnest-blue);
	border-color: var(--simnest-blue);
}

.sn-button-dropdown:focus{
	background-color: var(--simnest-light-blue) !important;
	color: var(--simnest-blue) !important;
	border-color: var(--simnest-blue) !important;
}

.dropdown-item:hover{
	background-color: var(--simnest-light-blue) !important;
	color: var(--simnest-blue) !important;
}

.sn-select{
	-moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
	background-image: url("../images/dropdown-arrow.png");
	border-radius: 10px;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	padding-left: 0.6em;
	height: 3.0em;
	border: none;
	width: 20em;
	box-shadow: 0px 3px 5px rgba(0, 107, 231, 0.25);
	transition: 0.2s ease all;
	background-position: center right 15px;
    background-repeat: no-repeat;
    background-size: 12px;
}

.newsletter-form-button{
	height: 3.0em;
	width: 11em;
}

.container-footer{
	min-height: 6.0em;
	margin: auto;
	background-color: var(--color-black);
}

.footer-row{
	min-height: 6.0em;
	width: 80%;
	margin: auto;
}

.container-footer-logo{
	display : flex;
	align-items : center;
	padding-left: 15px;
}

.footer-logo{
	width: 15.0em;
}

.container-footer-text{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.container-footer-text h5{
	font-family: Helvetica Regular;
	color: var(--color-white);
	font-size: 1.0em;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.footer-infobox-icon{
	color: var(--simnest-blue);
	font-size: 1.1em !important;
	padding-right: 0.3em;
}

/* Cookie CSS */
.section-cookie{
	display: none;
}

.cookie{
	position: fixed;
	background-color: var(--color-black);
	width: 100%;
	height: 5em;
	left: 0;
	bottom: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container-cookie{
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container-cookie-text{
	float: left;
}

.container-cookie-text h5{
	color: var(--color-white);
	font-size: 1.0em;
	margin: 0;
}

.container-cookie-button{
	float:left;
}

.cookie-ok-button{
	height: 2.0em;
	width: 6em;
	margin-left: 1.0em;
}

.cookie-read-more-button{
	height: 2.0em;
	width: 11em;
	margin-left: 1.0em;
}

.container-cookie-mobile{
	display: none;
}

.container-cookie-text-mobile{
	text-align: center;
	margin-bottom: 0.4em;
}

.container-cookie-text-mobile h5{
	color: var(--color-white);
	font-size: 1.0em;
	margin: 0;
}

.container-cookie-buttons-mobile{
	display: flex;
    justify-content: center;
}

@media (max-width:1500px){
	.container-latest-news{
		width: 80%;
	}
	
	.container-about-us{
		width: 80%;
	}
}

@media (max-width:1400px){
	.container-video-text p{
		font-size: 1.0rem !important;
	}
}

@media (max-width:1280px){
	.newsletter-form-input-text{
		width: 15.0em !important;
	}
	
}

@media (max-width:1200px){
	.footer-contact-col{
		padding-left: 4.0em;
	}
}

@media (max-width:1150px){
	.header-menu-item-bold{
		font-size: 1.0em;
	}
	.header-menu-item-normal{
		font-size: 1.0em;
	}
}

@media (max-width:991px){
	.container-default{
		width: 90%;
	}

	.container-page-title-mobile h1{
		padding-top: 1.8em;		
		font-size: 2.5em;		
	}
	
	.top-menu-text{
		text-align: center;
		margin-top: 0.3em;
	}

	.top-menu-nav{
		text-align: center;
		margin-top: 0.5em;
		margin-bottom: 0.3em;
	}
	
	.container-header-logo{
		display: block;
		text-align: center;
		margin-top: 0.5em;
	}

	.container-header-menu{
		text-align: center;
	}
	
	.container-header-title{
		margin-top: 1.0em;
	}
	
	.container-latest-news-quote{
		margin-top: 0.0em;
	}
	
	.container-about-us{
		width: 100%;
		text-align: left;
		padding-left: 0;
		padding-right: 0;
		margin-top: 0 !important;
	}
	
	.container-about-us a{
		left: 0;
		padding-left: 15px;
		margin-top: 1.0em;
	}
	
	.about-us-p{
		padding-bottom: 1.0em;
	}
	
	.logo-easa{
		margin-top: 2.0em;
	}
	
	.logo-icao{
		margin-top: 2.0em;
	}
	
	.container-latest-news{
		width: 100%;
		text-align: left;
		padding-right: 0;
		padding-top: 4.0em;
		padding-left: 0;
	}
	
	.container-latest-news p{
		width: 100%;
	}
	
	.container-about-us-text{
		margin-top: 3.0em;
		margin-left: 1.0em;
	}
	
	.container-gallery{
		width: 100%;
	}
	
	.container-ato-title-certificate{
		margin-top: 1.0em;
	}
	
	.container-certificate p{
		width: 100%;
	}
	
	.container-navigation{
		margin-top: 3.0em;
	}
	
	.container-newsletter{
		margin-top: 3.0em;
	}
	
	.container-top-menu{
		display: none;
	}
	
	.container-header{
		display: none;
	}
	
	.container-header-mobile{
		display: flex;
	}
	
	.container-header-text-mobile{
		display:block;
	}
	
	.container-header-title{
		display: none;
	}
	
	.container-header-title-mobile{
		display: block;
		padding-bottom: 1.0em;
		margin-bottom: -1.5em;
	}
	
	.container-quote{
		display: block;
	}
	
	.container-quote p{
		width: 100%;
		text-align: left;
		font-size: 1.6em;
	}
	
	.container-latest-news-mobile{
		display: block;
	}
	
	.container-ato-title{
		text-align: left;
		padding-right: 0.0em;
	}
	
	.container-ato-title h1{
		font-size: 1.2em;
	}
	
	.container-certificate{
		text-align: left;
		padding-left: 15px;
	}
	
    .container-certificate p{
        padding-bottom: 1.0em;
		font-size: 1.0em;
    }
    
    .container-products-solutions-ul{
        margin-top: -3.0em;
    }
    
	.partner-logo{
		margin-bottom: 0.5em;
	}
	
	.container-ato-title-certificate-mobile{
		display: block;
	}
	
	.container-about-us{
		margin-top: 5em;
	}
	
	.about-us-title{
		display: none;
	}
	
	.about-us-title-mobile{
		display: block;
	}
	
	.about-us-image{
		width: 100%;
	}
	
	.about-us-p{
		width: 100%;
	}
	
	.about-us-p-second{
		width: 100%;
	}
	
	.container-partners{
		padding-bottom: 0;
	}
	
	.container-partner-mobile{
		padding-bottom: 1.0em;
	}
	
	.footer-contact-col{
		padding-left: 0.9em;
	}
	
	.footer-iso-image{
		width: 8.0em;
	}
	
	.container-contact-navigation-newsletter{
		padding-left: 1.5em;
		margin-top: 2em;
	}
	
	.contact-navigation-newsletter-col{
		justify-content: left;
	}
	
	.container-footer{
		padding-left: 0em;
		padding-top: 1em;
	}
	
	.footer-row{
		min-height: 6.0em;
		width: 100%;
		margin: auto;
	}
	
	.container-footer-logo{
		text-align: left;
	}
	
	.footer-logo{
		width: 10em;
	}
	
	.container-footer-text{
		justify-content: start;
	}
	
	.container-footer-text h5{
		font-size: 0.8em;
		margin-top: 1em;
		margin-bottom: 2em;
	}
	
	.cookie{
		height: 7em;
	}
	
	.container-cookie{
		display: none;
	}
	
	.container-cookie-mobile{
		display: block;
	}
}

@media (max-width: 900px) {
	.container-header-title-mobile{
		padding-bottom: 1.0em;
	}
}

@media (max-width: 600px) {
	.container-header-title-mobile{
		padding-bottom: 1.0em;
	}
}

@media (min-width: 576px) {
  #BugFix {
    display: none;
  }
}

@media (max-width:370px) {
	.footer-iso-image{
		width: 6.0em;
	}
}

/* References page */
.references-title{
    padding-top: 1.0em;
    text-align: center;
    font-size: 3.0em;
}

.container-references-map{
	margin-top: 30px !important;
	margin-bottom: 30px !important;
	width: 60%;
	margin: auto;
}

.container-references-map img{
	width: 100%;
}

.container-references-box{
	display: flex;
    justify-content: center;
    width: 100%;
    background-color: var(--simnest-light-blue);
}

.references-box-row{
	width: 60%;
	background-color: var(--simnest-light-blue);
	border-radius: 20px;
	padding: 2.0em;
	margin-bottom: 0.0em;
}

.references-box-title{
	margin: auto;
}

.references-box-title h1{
	font-family: Reservation Wide Regular;
    color: var(--simnest-blue);
    font-weight: 100;
    padding-bottom: 0.75em;
}

.references-box-title-mobile{
	display: none;
}

.references-box-ul{
	margin: 0;
	padding: 0;
}

@media (max-width:1300px){
	.references-box-row{
		width: 80%;
	}
}

@media (max-width:991px){
	.references-title{
		padding-top: 90px;
	}
	
	.container-references-map{
		width: 90%;
	}
	
	.container-references-box{
		margin-top: 3.0em;
	}
	
	.references-box-row{
		width: 95%;
		padding-top: 0px;
		margin-top: 0px;
	}
	
	.references-box-title{
		display: none;
	}
	
	.references-box-title-mobile{
		display: block;
		background-color: var(--simnest-light-blue);
		width: 100%;
		padding-bottom: 1.0em;
	}
	
	.references-box-title-mobile h1{
		font-size: 1.3em;
		margin-bottom: 0px;
		color: var(--simnest-blue);
		padding-top: 1.0em;
	}
}

/* Products page */
.container-products{
	display: flex;
	justify-content: center;
	width: 100%;
}

.products-title-first{
	padding-top: 1.0em;
	text-align: center;
    font-size: 3.0em;
}

.products-title-second{
	font-family: Reservation Wide Regular;
    color: var(--simnest-blue);
    font-weight: 100;
	text-align: center;
}

.container-products-title-p{
	display: flex;
	justify-content: center;
	width: 100%;
	padding-top: 1.0em;
}

.products-title-p{
	width: 60.0em;
	text-align: center;
}

.container-products-icons{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 1.5em;
}

.row-products-icons{
	width: 60%;
	text-align: center;
}

.products-icons-icon{
	font-size: 2.0em;
}

.products-icons-text{
	font-size: 0.8em;
}

.container-products-360-picture{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 2.0em;
}

.products-360-picture{
	width: 60%;
	border-radius: 40px;
	background-color: var(--simnest-light-blue);
}

.products-360-picture-iframe{
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 20px;
}

.panorama-full-screen{
	position: absolute;
	z-index: 1;
}

.panorama-full-screen{
	padding-top: 1.0em;
	margin-left: -2.0em;
	font-size: 2.0em;
}

.panorama-full-screen a{
	color: var(--color-white) !important;
	opacity: 0.7;
	cursor: pointer;
}

.panorama-full-screen a:hover{
	opacity: 1.0;
}

.container-products-360-preview{
	display: none;
}

.container-products-text{
	display: flex;
	justify-content: center;
	width: 100%;
    margin-bottom: 2.0em;
}

.products-text-p{
	width: 60.0em;
	text-align: center;
	margin-top: 2.0em;
}

.products-ul-col{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 2.0em;
}

.products-ul{
	margin: 0;
	padding: 0;
	padding-left: 1.0em;
}

.products-ul li{
	list-style: disc;
	color: var(--simnest-blue);
}

.icon-plane{
	transform: rotate(45deg);
}

.products-button-col{
	display: flex;
	align-items: center;
	padding-left: 2.0em;
}

.container-products-brochure-button{
	display: block;
}

.sn-button-products-brochure-download{
	width: 20.0em;
	font-size: 1.2em;
}

.container-products-quotation-button{
	margin-top: 1.0em;
}

.sn-button-products-quotation{
	width: 20.0em;
	font-size: 1.2em;
	background-color: var(--color-black);
}

.container-products-solutions-title-mobile{
    display: none;
}

.container-products-solutions-title{
	margin: auto;
}

.container-products-solutions-title h1{
	font-family: Reservation Wide Regular;
    color: var(--simnest-blue);
    font-weight: 100;
    padding-bottom: 0.75em;
}

.container-products-solutions{
	display: flex;
	justify-content: center;
	width: 100%;
	background-color: var(--simnest-light-blue);
    margin-top: 3.0em;
}

.products-solutions{
	width: 60%;
	background-color: var(--simnest-light-blue);
	border-radius: 20px;
	padding: 2.0em;
	margin-bottom: 0.0em;
}

.container-products-solutions-ul{
	display: flex;
}

.products-solutions-icons-ul li{
	margin-bottom: 1.0em;
}

.products-solutions-icons-ul, .products-solutions-ul{
	margin: 0;
	padding: 0;
}

.products-solutions-ul li{
	list-style: none;
	margin-top: 1.0em;
}

.products-solutions-ul-li-first{
	margin-top: 0em !important;
}

.products-solutions-ul-li-p{
	font-family: Reservation Wide;
}

.icon-plane{
	margin-right: 1.0em;
}

.container-product-boxes{
	width: 60%;
	margin: 0;
	padding: 0;
	margin: auto;
	padding-top: 2.0em;
}

.product-boxes-column{
	margin: 0;
	padding: 0;
}

.product-box{
	border-radius: 20px;
	-webkit-box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.16);
	-moz-box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.16);
	box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.16);
	width: 95%;
	padding-top: 3.0em;
	padding-bottom: 3.0em;
	padding-left: 3.0em;
	padding-right: 3.0em;
	margin-bottom: 3.0em;
}

.product-box-left{
	float: left;
}

.product-box-right{
	float: right;
}

.product-box h1{
	font-size: 2.0em;
}

.product-box p{
	padding-top: 2.0em;
	font-size: 1.0em;
    text-align: justify;
}

.product-box-image{
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

.product-box-image img{
	width: 100%;
	border-radius: 20px;
}

.container-product-retrofit-hr{
	width: 60%;
	margin: 0;
	padding: 0;
	margin: auto;
}

.product-retrofit-hr-column{
	margin: 0;
	padding: 0;
}

.container-product-retrofit{
	width: 60%;
	margin: 0;
	padding: 0;
	margin: auto;
}

.product-retrofit-image-column{
    text-align: center;
}

.product-retrofit-image-column img{
	width: 80%;
	border-radius: 20px;
}

.product-retrofit-text-column{
    display: flex;
    align-items: center;
}

.product-retrofit-text-column h1{
	font-size: 2.0em;
}

.product-retrofit-text-column p{
	padding-top: 0.0em;
	font-size: 1.0em;
}

.container-products-gallery-title{
	width: 60%;
	margin: auto;
	padding-bottom: 3.0em;
    padding-top: 1.5em;
}

.container-products-gallery-title h1{
	font-family: Reservation Wide Regular;
    color: var(--simnest-blue);
    font-weight: 100;
}

.container-products-gallery{
	width: 62%;
	margin: auto;
	padding-bottom: 2.0em;
}

.container-products-gallery-mobile{
	display: none;
	padding-bottom: 3.0em;
}

.products-gallery-hidden-a{
	display: none;
}

.products-gallery-item{
	padding-left: 1.0em;
	padding-right: 1.0em;
}

.products-gallery-item-image{
	background-color: blue;
	padding-top: 58.125%; /* 16:9 Aspect Ratio */
	margin: auto;
	border-radius: 20px;
	background-position: center;
	background-size: cover;
}

.products-gallery-item-image:hover{
	cursor: pointer;
	width: 100%;
}

.products-gallery-item-play:hover{
	cursor: pointer;
}

.products-gallery-item-play{
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.products-gallery-item-play img{
	width: 20% !important;
}

.products-gallery-item img{
	width: 100%;
	border-radius: 20px;
}

#modal-product-gallery-full-screen-container{
	display: flex;
	justify-content: center;
	align-items: center;
}

.products-gallery-video-iframe{
	border: 0;
	border-radius: 20px;
	width: 100%;
	height: 55.0em;
	background-color: black;
}

@media (min-width: 2921px){
	.products-title-p{
		width: 80.0em;
	}
	
	.container-aatd-image img{
		width: 42% !important;
	}
	
	.products-text-p{
		width: 80.0em;
	}
	
	.modal-image-gallery-button-products a{
		font-size: 3.5em;
	}
}

@media (max-width:1500px){
	.products-solutions {
		width: 70%;
	}
}

@media (max-width:1280px){
	.products-gallery-video-iframe{
		height: 40.0em;
	}
}

@media (max-width:1100px){
	.products-gallery-video-iframe{
		height: 30.0em;
	}
	
	.products-text-p{
		width: 60%;
	}
	
	.products-solutions{
		width: 80%;
	}
	
	.container-product-boxes{
		width: 80%;
	}
	
	.container-product-retrofit-hr{
		width: 80%;
	}
	
	.container-product-retrofit{
		width: 80%;
	}
	
	.container-products-gallery-title{
		width: 80%;
	}
	
	.container-products-gallery{
		width: 85%;
	}
}

@media (max-width:991px){
	.container-products-title{
		margin-top: 4.0em;
	}
	
	.products-title-p{
		padding-left: 1.0em;
		padding-right: 1.0em;
        text-align: justify;
	}
	
	.products-icons-icon{
		padding-top: 1.0em;
	}
	
	.container-products-360-picture{
		display: none;
	}
	
	.container-products-360-preview{
		display: block;
		width: 90%;
		margin: auto;
		margin-top: 5.0em;
		margin-bottom: 2.0em;
	}
	
	.container-products-360-preview img{
		width: 100%;
		border-radius: 20px;
	}
	
	.products-text-p{
		padding-left: 1.0em;
		padding-right: 1.0em;
		width: 90%;
        text-align: justify;
	}
	
	.container-products-ul{
		margin-left: 2.0em;
		text-align: left;
	}
	
    .container-products-solutions-title-mobile{
        display: block;
        background-color: var(--simnest-light-blue);
        width: 100%;
		padding-bottom: 1.0em;
    }
    
    .container-products-solutions-title-mobile h1{
        font-size: 1.3em;
        margin-bottom: 0px;
        color: var(--simnest-blue);
        padding-top: 1.0em;
    }
    
    .container-products-solutions{
        margin-top: 3.0em;
    }
    
	.container-products-solutions-title{
		display: none;
	}
	
	.container-products-solutions-title h1{
		font-size: 1.5em;
	}
	
	.products-solutions{
		width: 95%;
		padding-top: 0px;
		margin-top: 0px;
	}
	
	.products-solutions-ul-li-first{
		margin-top: 3em !important;
	}
	
	.products-ul-col{
		justify-content: center;
	}
	
	.products-button-col{
		padding-left: 0px;
		padding-left: 0.8em;
		justify-content: center;
	}
	
	.container-products-brochure-button, .container-products-quotation-button{
		padding-left: 0px;
		padding-right: 0px;
		text-align: center;
	}
	
	.container-products-quotation-button{
		margin-top: 1.0em;
	}
	
	.sn-button-products-brochure-download{
		margin-top: 1.5em;
	}
	
	.sn-button-products-brochure-download, .sn-button-products-quotation{
		width: 15.0em;
	}
	
	.product-box{
		width: 95%;
		padding-left: 1.0em;
		padding-right: 1.0em;
	}
	
	.product-box-container-mobile{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	.product-box-right{
		float: left;
	}
	
	.product-box-image{
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.container-product-boxes{
		width: 100%;
	}
	
	.container-product-retrofit-hr{
		width: 90%;
		padding-bottom: 2.5em;
	}
	
	.container-product-retrofit{
		width: 95%;
	}
	
	.product-retrofit-image-column{
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.product-retrofit-image-column img{
		width: 100%;
	}
	
	.product-retrofit-text-column{
		padding-top: 3.0em;
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.product-retrofit-text-column h1{
		font-size: 1.8em;
	}
	
	.product-retrofit-text-column p{
		text-align: justify;
	}
	
	.container-products-gallery{
		display: none;
	}
	
	.container-products-gallery-mobile{
		display: block;
		margin-bottom: 5.0em;
	}
	
	.products-gallery-video-a{
		display: flex;
		justify-content: center;
	}
	
	.products-gallery-item-play img{
		height: 60%;
	}
    
	
	.container-products-gallery-title{
		width: 95%;
	}
	
    .product-gallery-mobile-item{
        padding-top: 0px !important;
        padding-bottom: 3.0em;
		padding-top: 48.125% !important; /* 16:9 Aspect Ratio */
		margin: auto;
		border-radius: 20px;
		background-position: center;
		background-size: cover;
		width: 95%;
    }
	
	.modal-gallery-arrow-mobile-left{
		left: 4% !important;
	}
	
	.modal-gallery-arrow-mobile-right{
		right: 4% !important;
	}
	
	.products-gallery-item-play{
		width: 100%;
	}
}

@media (max-width:500px){
	.product-box{
		width: 90%;
	}
	
	.container-product-retrofit{
		width: 90%;
	}
	
	.container-products-gallery-title{
		width: 90%;
	}
	
    .product-gallery-mobile-item{
		width: 90%;
	}
	
	.modal-gallery-arrow-mobile-left{
		left: 6% !important;
	}
	
	.modal-gallery-arrow-mobile-right{
		right: 6% !important;
	}
}

/* AATD page */
.aatd-advantages-p{
	text-align: left;
}

.container-aatd-image{
	text-align: center;
	padding-top: 10px;
	padding-bottom: 30px;
}

.container-aatd-image img{
	width: 30%;
}

.aatd-button-container{
	width: 80%;
	margin: auto;
}

.aatd-left-button-container{
	text-align: right;
	padding-right: 15px;
}

.aatd-right-button-container{
	text-align: left;
	padding-left: 15px;
	margin-top: 0px;
}

.aatd-empty-final-container{
	height: 30px;
}

@media (max-width:991px){
	.container-aatd-image img{
		width: 80%;
	}
	
	.aatd-left-button-container{
		text-align: center;
		padding-right: 0px;
	}
	
	.aatd-right-button-container{
		text-align: center;
		padding-top: 20px;
		padding-left: 0px;
	}
}

/* B737 product page */
.b737-contact-us-container{
	width: 100%;
	margin: auto;
	color: var(--simnest-blue);
	text-align: center;
	margin-top: 30px;
}

.container-b737-image{
	width: 70%;
	margin: auto;
	margin-top: 20px;
}

@media (max-width:991px){
	.container-b737-image{
		width: 95%;
	}
	
	.b737-contact-us-container{
		width: 90%;
	}
}

/* Contact us page*/
.container-contact-us-page{
	padding-bottom: 5.0em;
}

.contact-us-global-presence-row{
	max-width: 80%;
	margin: auto;
}

.contact-us-global-presence-first{
	padding-bottom: 0px;
}

contact-us-global-presence-first{
	padding-bottom: 0px;
}

.contact-us-global-presence-row-country-col{
	text-align: left;
	padding-bottom: 10px;
	/*font-weight: bold;*/
}

.contact-us-global-presence-row-school-col{
	font-family: 'Reservation Wide Regular';
}

.contact-us-global-presence-row-link-col a{
	color: var(--simnest-blue);
	text-decoration: none;
}

.contact-us-global-presence-row-link-col a:hover{
	text-decoration: underline;
}

.contact-us-main-row{
	max-width: 1200px;
	margin: auto;
}

.contact-us-inputs{
	min-width: 300px;
}

.contact-us-input-row{
	padding-bottom: 2.0em;
}

.contact-us-input-text{
	background-color: var(--simnest-light-blue);
	box-shadow: none !important;
}

.contact-us-page-large-control{
	width: 93.5%;
}

.contact-us-chkb-text{
	font-size: 0.83em;
}

.contact-us-error-label-container{
	padding-top: 0.5em;
	display: none;
}

.contact-us-error-label{
	font-size: 0.7em;
	color: var(--color-red);
}

.contact-us-checkbox-container{
	padding-top: 0;
	margin-top: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.contact-us-send-button{
	font-size: 1.5em;
	width: 10.0em;
}

.contact-us-button-container{
	display: flex;
	justify-content: center;
}

.container-contact-us-page-infobox{
	padding-top: 4.0em;
}

.contact-us-infobox{
	font-size: 0.8em;
	margin-bottom: 5.0em;
}

.contact-us-infobox-title, .contact-us-infobox-value-address-title{
	font-family: Reservation Wide;
	font-size: 1.0em;
}

.contact-us-infobox-value-address-title{
	margin-bottom: 0.4em;
}

.contact-us-infobox-line {
    position: relative;
    height: 1px;
    padding: 0;
    background: #d9d9d9;
    border: none;
	margin-top: 1.0em;
	margin-bottom: 1.0em;
}

.contact-us-infobox-line:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 40px;
    background: #006BE7
}

.contact-us-infobox-icon{
	color: var(--simnest-blue);
	font-size: 1.3em !important;
	padding-right: 0.3em;
}

.contact-us-infobox-value{
	font-family: Helvetica;
}

.contact-us-infobox-value-address{
	float: left;
	min-width: 120px;
}

.contact-us-infobox-value-address-second{
	margin-left: 2.0em;
}

.contact-us-social-container{
	margin-top: 3.0em;
	float: left;
}

.contact-us-social-container a:hover{
	text-decoration: none;
}

.contact-us-social-item{
	width: 15%;
}

.contact-us-social-item-center{
	margin-left: 3.0em;
	margin-right: 3.0em;
}

.contact-us-spinner-row{
	display: none;
}

.contact-us-spinner{
	width: 10%;
}

.contact-us-result-success-row{
	display: none;
}

.contact-us-result-error-row{
	display: none;
}

.contact-us-result-p{
	font-family: Reservation Wide;
}

.contact-us-result-p-error{
	color: var(--color-red);
}

.contact-us-form-col-margin-tablet{
	padding-left: 3.0em;
	padding-right: 0px;
}

.contact-us-contact-col-margin-tablet{
	padding-right: 3.0em;
	padding-left: 0px;
}

@media (min-width: 2921px){
	.contact-us-global-presence-row{
		max-width: 50%;
	}
}

@media (max-width:1700px){
	.contact-us-global-presence-row{
		max-width: 90%;
	}

}

@media (max-width:1550px){
	.contact-us-global-presence-row{
		max-width: 90%;
	}

}

@media (max-width:1358px){
	.contact-us-global-presence-row-school-col{
		min-height: 50px;
	}
}

@media (max-width:1024px){
	.contact-us-infobox{
		width: 90%;
	}
}

@media (max-width:991px){
	.contact-us-global-presence-col{
		text-align: center;
	}
	
	.contact-us-global-presence-first{
		padding-bottom: 30px;
	}
	
	.contact-us-global-presence-row-school-col{
		min-height: 0px;
	}
	
	.contact-us-inputs{
		text-align: center;
	}
	
	.contact-us-infobox-value-address-second{
		margin-left: 0.0em;
		margin-top: 1.0em;
	}
	
	.contact-us-page-large-control{
		width: 20.0em;
	}
	
	.contact-as-inputs-right{
		margin-top: 2.0em;
	}
	
	.checkbox-container{
		width: 20.0em;
		margin: auto;
	}
	
	.contact-us-infobox{
		width: 75%;
		margin: auto;
		margin-bottom: 5.0em;
	}
	
	.contact-us-social-container{
		text-align: center;
	}
	
	input[type=text], input[type=email], textarea, .sn-select, .contact-us-page-large-control{
		width: 15em;
	}
}

@media (max-width:767px){
	.contact-us-global-presence-first{
		padding-bottom: 0px;
	}
	
	.contact-us-global-presence-item{
		padding-bottom: 30px;
	}
	
	.contact-us-infobox-value-address-second{
		margin-left: 1.0em;
		margin-top: 0.0em;
	}
	
	.contact-us-spinner{
		width: auto;
		height: 5%;
	}
}

@media (max-width:367px){
	.contact-us-infobox-value-address-second{
		margin-left: 0.0em;
		margin-top: 0.0em;
	}
}

@media (max-width:349px){
	.contact-us-infobox-value-address-second{
		margin-left: 0.0em;
		margin-top: 1.0em;
	}
}

@media (max-width:330px){
	.col-lg-6, .col-lg-12{
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	input[type=text], input[type=email], textarea, .sn-select, .contact-us-page-large-control{
		width: 15em;
	}
}

@media (max-width:300px){
	.col-lg-6, .col-lg-12, .col-md-8{
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	
	.container-contact-us-page{
		font-size: 0.8em;
	}
}

/* News page */
.container-news-page{
	width: 80%;
	margin: auto;
	padding-bottom: 4.0em;
}

.news-page-items-row{
	padding-top: 0.0em;
}

.news-page-item{
	border-radius: 20px;
	width: 100%;
	margin-bottom: 3.0em;
}

.container-news-item-image{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 1.0em;
	padding-bottom: 1.0em;
    padding-top: 20.125%; /* 16:9 Aspect Ratio */
    margin: auto;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
	margin-top: 0px;
}

.container-news-item-date-mobile{
    display: none;
}

.container-news-item-date-desktop{
    display: block;
}

.container-news-item-image-small{
	display: block;
	height: 15em;
	overflow: hidden;
}

.news-item-image{
	width: 100%;
	border-radius: 20px;
}

.column-news-item-text-date{
	width: 100%;
	min-height: 100%;
	background-color: var(--simnest-light-blue);
	border-radius: 20px;
	margin-left: 0.5em;
	padding-left: 1.0em;
	padding-right: 1.0em;
}

.container-news-item-text-date{
	
}

.container-news-item-title{
	padding-top: 1.0em;
}

.container-news-item-title a{
	color: var(--color-black);
}

.news-item-title-h1{
	font-size: 1.2em;
}

.container-news-item-date{
	text-align: right;
}

.news-item-date{
	padding-top: 1.0em;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.news-item-read-time{
	padding-top: 0.0em;
}

.news-item-date-title, .news-item-read-time-title{
	font-family: Reservation Wide;
}

.news-item-text{
	margin-bottom: 0px;
	padding-bottom: 0px;
	padding-right: 1.0em;
	text-align: justify;
}

.container-news-item-text-a{
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.container-news-item-text-a a{
	color: var(--color-black);
	text-decoration: underline;
}

.container-archives{
    background-color: var(--simnest-light-blue);
    border-radius: 20px;
    padding-right: 1.0em;
    margin-bottom: 2.0em;
    display: flex;
    align-items: center;
}

.news-page-archives-row{
	padding-left: 1.5em;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.news-page-archives-row h2{
	font-family: Reservation Wide;
    color: var(--simnest-blue);
	font-size: 1.6em;
	padding-bottom: 0.5em;
}

.archive-item-title{
	font-family: Helvetica Regular;
	font-size: 1.3em;
    margin-bottom: 0px;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.archive-item-title a{
	color: var(--color-black);
	text-decoration: none;
}

.archive-item-title a:hover{
	text-decoration: underline;
}

.container-archive-item-date{
	text-align: right;
}

.container-archive-item-date{
	padding-right: 0px;
}

.archive-item-date{
	font-family: Helvetica Regular;
	font-size: 1.3em;
    margin-bottom: 0px;
}

@media (max-width:1200px){
	.container-news-item-image{
		padding-bottom: 0px;
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.news-item-image{
		border-radius: 0px;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}
	
	.archive-item-title, .archive-item-date{
		font-size: 1.2em;
	}
}

@media (max-width:1200px){
	.container-archive-item-date{
		display: none;
	}
    
    .container-news-item-image{
		border-radius: 0px;
        border-top-left-radius: 20px 20px;
        border-top-right-radius: 20px 20px;
	}
	
	.container-news-item-text-date{
		background-color: var(--simnest-light-blue);
		border-bottom-left-radius: 20px 20px;
        border-bottom-right-radius: 20px 20px;
	}
}

@media (max-width:1000px){
	.container-news-page{
		width: 95%;
	}
	
	.container-news-item-image-normal{
		display: block;
	}

	.container-news-item-text-normal{
		display: block;
	}
	
	

	.container-news-item-text-small{
		display: none;
	}
	
	.news-page-row, .news-page-item{
		margin-left: 0px;
		margin-right: 0px;
	}
	
	.news-item-image{
		border-radius: 0px;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}
	
	.news-item-title-h1 {
		font-size: 1.2em;
	}
	
	.news-page-archives-row{
		border: 0;
	}
	
	.news-page-archives-row h2{
		padding-bottom: 1.0em;
	}
	
	.container-archive-item-date{
		display: none;
	}
}

@media (max-width:991px){
	.container-news-item-date-mobile{
        display: block;
		text-align: left;
    }

    .container-news-item-date-desktop{
        display: none;
    }
    
    .container-news-item-image{
        padding-top: 10.125%;
    }
}

@media (min-width:500px) and (max-width:990px){
	.container-news-item-image{
		display: block;
		height: 20.0em;
		overflow: hidden;
	}
}

@media (max-width:500px){
    .container-news-item-image{
        padding-top: 50.125%;
    }
}

@media (max-width:370px){
	.news-item-title-h1{
		font-size: 1.0em;
	}
}

@media (max-width:330px){
	.news-item-text{
		padding-left: 1.0em;
	}
	
	.container-news-item-text-a{
		padding-left: 1.0em;
	}
}

/* Article page */
.container-article-item-page{
	padding-top: 3.0em;
}

.container-article-item-page-cover{
	width: 100%;
	height: 20.0em;
	overflow: hidden;
}

.container-article-item-page-cover img{
	width: 100%;
}

.article-row{
	width: 80%;
	margin: auto;
}

.container-article-title{
	padding-left: 0px;
}

.container-article-title-date{
	padding-top: 2.0em;
	padding-bottom: 2.0em;
}

.article-title{
	font-size: 1.6em;
	color: var(--simnest-blue);
}

.container-article-time-date{
	text-align: right;
	padding-right: 0px;
}

.container-article-text1 p{
	text-align: justify;
}

.container-article-first-image-item{
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 2.0em;
	padding-bottom: 3.0em;
}

.container-article-first-image-item-left{
	text-align: left;
}

.container-article-first-image-item-right{
	text-align: right;
}

.container-article-first-image-item img{
	width: 90%;
}

.container-article-second-image-row{
	background-color: var(--simnest-light-blue);
	border-radius: 20px;
	padding-top: 2.0em;
	padding-bottom: 2.0em;
	margin-top: 3.0em;
}

.container-article-second-image-item{
	text-align: center;
}

.container-article-second-image-item img{
	width: 70%;
	border-radius: 20px;
}

.container-article-second-image-title{
	padding-top: 1.0em;
	text-align: center;
}

.container-article-second-image-title h2{
	font-size: 1.0em;
}

.article-close-div{
	padding-top: 3.0em;
}

.container-article-item-text{
	width: 80%;
	margin: auto;
}

.container-article-item-video-iframe{
	width: 100%;
	height: 95%;
	display: flex;
	justify-content: center;
	margin-top: -1.0em;
}

.article-item-video-iframe{
	width: 90%;
	height: 0px;
	border: 0;
	border-radius: 20px;
}

.article-other-a{
	color: var(--color-black);
}

.article-other-a:hover{
	color: var(--color-black);
	text-decoration: underline;
}

.article-second-image-item{
    width: 80%;
    padding-top: 49.125%; /* 16:9 Aspect Ratio */
    margin: auto;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
}

@media (max-width:990px){
	.container-article-item-page {
		padding-top: 4em;
	}
	
	.container-article-item-page-cover{
		height: 16.0em;
	}
	
	.container-article-time-date{
		padding-top: 1.0em;
		padding-left: 0px;
		text-align: left;
	}
	
	.container-article-first-image-item{
		text-align: center;
	}
}

/* Support page */
.container-support-page{
	margin: auto;
	padding-bottom: 3.0em;
    text-align: center;
}

.container-support-page-image{
	display: flex;
	align-items: center;
    justify-content: flex-end;
}

.container-support-page-image img{
	width: 80%;
	border-radius: 20px;
}

.image-width-percent-60{
    width: 80% !important;
}

.container-support-page-text{
	padding-left: 1.5em;
	padding-right: 1.5em;
	text-align: center;
}

.container-support-page-text p{
	text-align: justify;
}

.container-support-page-tickets-button{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 2.0em;
}

.career-page-list-title, .container-career-page-no-item{
    margin-left: 10%;
}

@media (max-width:991px){
    .container-page-title h1{
        /*padding-bottom: 0.0em;*/
    }
    
    .container-support-page{
		width: 100%;
        padding-bottom: 1.5em;
	}
    
	.container-support-page-image{
		text-align: center;
		padding-bottom: 1.5em;
	}
	
    .row-support-career-image-text{
        width: 100% !important;
    }
    
	.container-support-page-image img{
		width: 50% !important;
		margin: auto;
	}
}

@media (max-width:550px){
	.container-support-page-image img{
		width: 100% !important;
		margin: auto;
	}
}

/* Career page*/
.container-support-career-image-text{
    width: 100%;
    margin: auto;
    background-color: var(--simnest-light-blue);
    padding-top: 2.0em;
    padding-bottom: 2.0em;
}

.row-support-career-image-text{
    width: 70%;
    margin: auto;
}

.career-page-list-title{
	padding-top: 4.0em;
	padding-bottom: 2.0em;
    text-align: left;
}

.career-mailto-link{
	color: var(--color-black);
	text-decoration: underline;
}

.career-mailto-link:hover{
	color: var(--color-black);
}

.container-career-page-no-item{
    text-align: left;
}

.container-career-item{
	background-color: var(--simnest-light-blue);
	border-radius: 20px;
	text-align: center;
	margin-left: 0.5em;
	margin-right: 0.5em;
	margin-bottom: 2.0em;
}

.container-career-item h1{
	padding-top: 1.0em;
	font-size: 1.3em;
}

.container-career-item button{
	margin-bottom: 1.0em;
}

@media (max-width:1600px){
    .row-support-career-image-text{
        width: 85%;
    }
}

@media (max-width:991px){
    .career-page-list-title{
        padding-top: 1.5em;
    }
    
    .career-page-list-title, .container-career-page-no-item{
        margin-left: 5%;
        margin-right: 5%;
    }
}

/* Career item page */
.container-career-item-page{
	padding-bottom: 5.0em;
}

.container-career-content{
	width: 70%;
	margin: auto;
	background-color: var(--simnest-light-blue);
	border-radius: 20px;
	padding: 1.5em;
}

/* Team page */
.team-text-container{
	width: 60%;
	margin: auto;
	padding-bottom: 1.5em;
}

.team-text-container p{
	text-align: center;
}

.team-picture-container{
	width: 100%;
	background-color: var(--simnest-light-blue);
	text-align: center;
	margin-bottom: 3.0em;
}

.team-picture-container img{
	width: 50%;
}

.team-row{
	width: 80%;
	margin: auto;
}

.team-page-subtype-label{
	font-size: 1.5em;
	margin-bottom: 30px;
}

.team-people-item-mobile{
	display: none;
}

.team-people-col{
	text-align: center;
}

.team-people-container{
	width: 73%;
	margin: auto;
	background-color: var(--simnest-light-blue);
	margin-bottom: 30px;
	text-align: center;
}

.team-people-image-container img{
	width: 100%;
}

.team-people-text-container{
	position: relative;
	min-height: 270px;
}

.team-people-text-container h1{
	font-size: 1.3em;
	margin-top: 15px;
}

.team-people-text-container p{
	text-align: justify;
	padding-left: 20px;
	padding-right: 20px;
}

.team-people-link{
	position: absolute;
	right: 0;
    left: 0;
    text-align: center;
	bottom: 10px;
}

@media (min-width: 1400px) and (max-width:1700px){
	.team-people-container{
		width: 85%;
	}
}

@media (min-width: 1200px) and (max-width:1400px){
	.team-people-container{
		width: 95%;
	}
	
	.team-people-text-container{
		min-height: 300px;
	}
}

@media (min-width: 1000px) and (max-width:1200px){
	.team-people-container{
		width: 95%;
	}
	
	.team-people-text-container{
		min-height: 300px;
	}
}

@media (max-width:800px){
	.team-people-container{
		width: 100%;
	}
}

@media (min-width: 576px) and (max-width:610px){
	.team-people-text-container{
		min-height: 310px;
	}
}

@media (min-width: 450px) and (max-width:575px){
	.team-people-container{
		width: 70%;
	}
}

/* Team item layout */
.team-item-container{
	width: 80%;
	margin: auto;
	margin-top: 2.0em;
	padding-bottom: 2.0em;
}

.team-item-image-column{
	text-align: center;
}

.team-item-image-column img{
	width: 100%;
}

.team-item-linkedin-logo{
	width: 40% !important;
}

.team-item-text-column h1{
	font-size: 1.5em;
}

.team-item-text-column h2{
	font-size: 1.1em;
	margin-top: 20px;
}

.team-item-column-p{
	margin-top: 30px !important;
}

.team-item-text-column p{
	width: 80%;
	text-align: justify;
	margin-bottom: 0px;
}

@media (min-width:786px) and (max-width:991px){
	.team-item-image-column{
		padding-top: 55px !important;
	}
}

@media (min-width:768px) and (max-width:991px){
	.team-item-text-column{
		padding-top: 55px !important;
	}
}

@media (max-width:785px){
	.team-item-image-column{
		padding-top: 60px;
	}
	
	.team-item-text-column{
		text-align: center;
		padding-top: 20px;
	}
	
	.team-item-text-column h2{
		margin-top: 0px;
	}
	
	.team-item-text-column p{
		width: 100%;
		margin: auto;
		margin-top: 0px;
	}
}

/* FTD layout */
.row-ftd-products-icons{
    width: 35%;
    text-align: center;
}

.ftd-data-package-icon{
    width: 30%;
}

.container-ftd-picture{
    width: 40%;
    margin: auto;
    margin-top: 3.0em;
}

.container-ftd-picture img{
    width: 100%;
    border-radius: 30px;
}

.container-ftd-oem-parts{
    width: 100%;
    background-color: var(--simnest-light-blue);
    margin-top: 4.0em;
    padding-top: 1.0em;
    padding-bottom: 1.0em;
}

.container-ftd-oem-parts h1{
    font-family: Reservation Wide Regular;
    color: var(--simnest-blue);
    text-align: center;
    font-size: 2rem;
    font-weight: 100;
}

.container-ftd-oem-parts-ul{
    width: 30%;
    margin: auto;
    text-align: center;
    margin-top: 2.0em;
}

.container-ftd-other-visual-options{
    margin-top: 4.0em;
}

.ftd-other-visual-options-h1{
    font-family: Reservation Wide Regular;
    color: var(--simnest-blue);
    font-size: 2rem;
    font-weight: 100;
}

.container-ftd-other-options{
    text-align: right;
}

.container-ftd-other-options p{
    width: 40%;
    margin-left: 60%;
}

.container-ftd-visual-options{
    text-align: left;
}

.container-ftd-brochure-button{
    text-align: center;
    padding-top: 5.0em;
    padding-bottom: 5.0em;
}

/* Grants */
.grants-item-row{
    -webkit-box-shadow: 0px 1px 9px 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 1px 9px 1px rgba(0,0,0,0.15);
    box-shadow: 0px 1px 9px 1px rgba(0,0,0,0.15);
}

/* Video */
html, body {
  position:relative;
  overflow-x:hidden;
}

.container-video{
	position: absolute;
	z-index: 0;
}

.cover-video{
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: left 65%;
	object-position: left 65%;
}

.container-mask{
	position: absolute;
	z-index: 1;
	overflow: hidden;
}

.container-video-text{
	position: absolute;
	z-index: 2;
	width: 80%;
	margin: auto;
	padding-left: 10.5%;
	padding-top: 4.0em;
	display: none;
}

.container-video-text p{
	font-size: 1.3em;
	font-weight: normal;
    color: var(--quote-p-fc);
	padding-top: -0px;
	margin-top: -50px;
}

.container-video-text-block{
	position: absolute;
	z-index: 2;
	left: 20%;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 20%;
	height: 600px;
	background-color: white;
	opacity: 0.8;
    min-width: 400px;
}

.container-video-text-block-mobile{
	display: none;
}

.video-text-block{
    display: block;
}

.container-video-text-block-h1{
	font-size: 1.8em;
    font-family: Reservation Wide Regular;
    color: var(--simnest-blue);
    font-weight: 100;
    text-transform: uppercase;
    text-align: center;
}

.container-video-text-block-h1-bold{
    font-family: Reservation Wide;
}

.container-video-text-block-p{
	color: var(--simnest-blue);
	margin-top: 1.2em;
	font-size: 1.3em;
	text-align: justify;
	font-weight: normal;
	font-family: Reservation Wide Regular;
    padding-left: 1.0em;
	padding-right: 1.0em;
}

.container-pilot-mobile{
	display: none;
}

/*Desktop*/
@media (min-width: 2921px){
	.container{
		max-width: 100%;
	}
	
	.video-layer{
		height: 1100px;
	}
	
	.container-video{
		width: 100%;
	}
	
	.cover-video{
		width: 100%;
		height: 1040px;
		margin-top: 5px;
	}
	
	.container-mask{
		width: 100%;
	}
	
	.image-video-mask{
		width: 100%;
	}
	
	.container-video-text-block{
		height: 1100px;
	}
	
	.container-partner{
		justify-content: center;
	}
}
@media (max-width:2920px){
	.video-layer{
		margin-left: 0.0em;
		height: 600px;
		margin-top: -3.6em;
	}
	
	.container-video{
		width: 100%;
	}
	
	.cover-video{
		height: 595px;
		width: 140%;
		margin-top: 0.2em;
	}
	
	.container-mask{
		position: absolute;
		z-index: 1;
		height: 600px;
		overflow: hidden;
		width: 100%;
	}
	
	.image-video-mask{
		height: 600px;
		width: 115%;
		margin-left: -5%;
	}
	
	.container-pilot{
		display: block;
		left: 70%;
		margin-top: -2%;
	}
	
	.image-header-pilot{
		width: 70%;
	}
}

@media (min-width: 3800px){
	.video-layer{
		height: 1360px;
	}
	
	.cover-video{
		height: 1330px;
	}
	
	.container-video-text-block{
		height: 1290px;
	}
}

@media (max-width: 1500px){
	.cover-video{
		max-width: 100%;
	}
}

@media (max-width:1400px){
	.video-layer{
		margin-left: 0.0em;
		height: 400px;
		padding-top: 1.0em;
	}
	
	.cover-video{
		height: 380px;
		width: 140%;
		margin-top: 10px;
	}
	
	.container-video-text p{
		margin-top: -65px;
	}
	
	.container-video-text-block{
		height: 400px;
	}
	
	.container-mask{
		position: absolute;
		z-index: 1;
		height: 400px;
		overflow: hidden;
	}
	
	.image-video-mask{
		height: 400px;
		width: 114%;
		margin-left: -5%;
	}
	
	.container-pilot{
		display: block;
		left: 70%;
		margin-top: -2%;
	}
	
	.image-header-pilot{
		width: 70%;
	}
}

/*Phone*/
@media (max-width:990px){
	.container-video-margin-top{
		padding-top: 3.8em;
	}
	
	.container-mask-mobile{
		display: block;
	}
	
	.container-video-text{
		display: none;
	}
	
	.container-video-text-block{
		display: none;
	}
	
	.video-layer{
		height: 450px;
		margin-top: -1.5em;
		margin-left: 0;
		width: 100%;
		height: 400px;
		padding-top: 0;
	}
	
	.cover-video{
		width: 100%;
		height: 440px;
	}
	
	.container-mask{
		height: 450px;
	}
	
	.image-video-mask{
		height: 100%;
		width: 280%;
		margin-left: -153%;
	}
	
	.container-pilot{
		display: none;
	}
	
	.container-pilot-mobile{
		display: block;
		right: -1.0em;
		position: absolute;
		z-index: 2;
		top: 430px;
	}
	
	.container-header-pilot-mobile-background{
		top: 300px;
	}
	
	.image-header-pilot-mobile-background{
		width: 15.0em;
	}
	
	.container-header-pilot-mobile-text{
		position: absolute;
		top: 40px;
		padding-left: 0;
	}
	
	.container-header-pilot-mobile-text h1{
		width: 120%;
		font-size: 1.5em;
		margin-left: 29%;
		color: var(--color-white);
        margin-top: 25%;
	}
	
    .container-header-pilot-mobile-text-normal{
        font-family: Reservation Wide Regular;
    }
    
	.image-header-pilot-mobile{
		width: 9.0em;
		margin-left: 25%;
		margin-top: 20%;
	}
	
	.container-logo{
		margin-top: 5.0em;
	}
	
	.container-video-text-block-mobile{
		display: block;
		position: absolute;
		top: 155px;
		width: 100%;
		background-color: var(--color-white);
		opacity: 0.8;
		padding-top: 1.0em;
		padding-bottom: 1.0em;
		padding-left: 1.0em;
		z-index: 4;
	}
	
	.container-video-text-block-mobile h1{
		font-family: Reservation Wide Regular;
		font-size: 1.3em;
		color: var(--simnest-blue);
		text-transform: uppercase;
		margin-bottom: 0px;
		max-width: 90%;
		text-align: center;
	}
	
	.video-text-block-mobile-h1-bold{
		font-family: Reservation Wide;
	}
	
	.container-video-text-block-mobile h6{
		font-family: Reservation Wide Regular;
		font-size: 1.0em;
		margin-bottom: 0px;
		padding-top: 0.5em;
		max-width: 90%;
		text-align: justify;
		color: var(--simnest-blue);
	}
}

@media (min-width:600px) and (max-width:990px){
	.image-video-mask{
		margin-left: -151%;
	}
}

@media (min-width:470px) and (max-width:599px){
	.image-video-mask{
		margin-left: -152%;
	}
}

.carousel-container{
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-full-screen-button {
	opacity: 0.7;
	border-radius: 50px;
	padding: 4px 10px;
	position: absolute;
	top: 14px;
	width: 30px;
	right: 35px;
}

.gallery-full-screen-button a{
	color: #FFFFFF !important;
	opacity: 0.7;
	font-size: 1.5em;
	cursor: pointer;
}

.gallery-full-screen-button a:hover{
	opacity: 1.0;
}

.gallery-slider-section {
	padding: 40px 0;
}
.gallery-slider-section .carousel-inner {
	cursor: pointer;
}

.gallery-slider-section .carousel-indicators {
	overflow-y: hidden;
	overflow-x: auto;
}
.gallery-slider-section .carousel-indicators li {
	border: 2px solid transparent;
	cursor: pointer;
	float: left;
	height: auto;
	margin: 10px 0 12px 0;
	padding: 5px;
	text-align: center;
	text-indent: unset;
	width: 185px;
}
.gallery-slider-section .carousel-indicators li.active {
	border: 2px solid #dddddd;
}
.gallery-slider-section .carousel-indicators li .data-slide-image {
	width: 10em;
	margin: 0 auto;
}

.gallery-slider-section .carousel-indicators li.active{
	border: 0 !important;
}

.carousel-inner-container{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
}

.carousel-inner{
	width: 70%;
	border-radius: 15px;
	display: flex;
	justify-content: center;
}

.carousel-item{
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 58.125%; /* 16:9 Aspect Ratio */
	margin: auto;
	border-radius: 20px;
	background-position: center;
	background-size: cover;
}

.carousel-item-portrait{
	width: 45%;
}

.modal-content-gallery{
	background-color: transparent;
	border: 0;
	border-radius: 20px;
}

.modal-gallery-full-screen{
	margin: 1.75rem auto !important;
}

.gallery-full-screen-indicator{
	position: absolute;
	width: 80%;
	height: 100%;
	left: 10%;
	cursor: pointer;
}

.modal-close-image-gallery{
	opacity: 0.7;
	border-radius: 50px;
	color: black;
	padding: 4px 10px;
	position: absolute;
	top: 4px;
	width: 30px;
	right: 15px;
	z-index: 2;
	color: #FFFFFF;
}

.modal-close-image-gallery a{
	color: #FFFFFF !important;
	opacity: 0.7;
	font-size: 1.5em;
	cursor: pointer;
}

.modal-close-image-gallery a:hover{
	opacity: 1.0;
	text-decoration: none;
}

.modal-gallery-arrow{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	z-index: 1;
	color: #FFFFFF;
	width: 10%;
	height: 100%;
}

.modal-gallery-arrow a{
	color: #FFFFFF;
	opacity: 1.0;
	font-size: 1.0em;
}

.modal-gallery-arrow a:hover{
	opacity: 1.0;
	text-decoration: none;
}

.modal-gallery-arrow a:active{
	opacity: 1.0;
	text-decoration: none;
}

.modal-gallery-arrow a:focus{
	opacity: 1.0;
	text-decoration: none;
}

.modal-gallery-left-arrow{
	left: 0;
}

.modal-gallery-left-arrow{
	position: absolute;
	top:0;
	width: 10%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}

.modal-gallery-arrow-mobile{
	position: absolute;
	top:0;
	width: 10%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}

.modal-gallery-arrow-mobile-left{
	left: 7%;
}

.modal-gallery-arrow-mobile-right{
	right: 7%;
}

.modal-gallery-right-arrow{
	right: 0;
}

.mobile-product-gallery-button{
	background-color: var(--simnest-blue);
	color: var(--color-white);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0.1em;
}

.mobile-product-gallery-button-left{
	margin-left: 0.5em;
}

.mobile-product-gallery-button-right{
	margin-right: 0.5em;
	padding-left: 0.1em;
}

.mobile-product-gallery-button:hover{
	background-color: var(--simnest-light-blue);
	color: var(--simnest-blue);
	text-decoration: none;
}

.modal-gallery-left-arrow-full-screen{
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-gallery-right-arrow-full-screen{
	right: 0;
}

.modal-gallery-full-screen{
	max-width: 1920px;
	width: 90%;
}

.modal-body-image-gallery{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.image-gallery{
	width: 100%;
	border-radius: 15px;
}

.gallery-indicator-container{
	height: auto;
	margin-top: 2.0em;
}

#gallery-indicator{
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	cursor: move;
	-webkit-user-select: none !important;
	-khtml-user-select: none !important;
	-moz-user-select: none !important;
	-o-user-select: none !important;
	user-select: none !important;
}

.gallery-list-image{
	opacity: 0.5;
	margin-left: 0px !important;
	margin-right: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	border: 0 !important;
}

.gallery-list-image-selected{
	opacity: 1.0;
}

.data-slide-image{
	-webkit-user-select: none !important;
	-khtml-user-select: none !important;
	-moz-user-select: none !important;
	-o-user-select: none !important;
	user-select: none !important;
	pointer-events:none;
}

.img-fluid{
	-webkit-user-select: none !important;
	-khtml-user-select: none !important;
	-moz-user-select: none !important;
	-o-user-select: none !important;
	user-select: none !important;
	pointer-events:none;
	border-radius: 15px;
}

.data-slide-image-container{
	padding-top: 58.125%; /* 16:9 Aspect Ratio */
	margin: auto;
	border-radius: 20px;
	background-position: center;
	background-size: cover;
}

.gallery-indicator-arrow-container{
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-indicator-arrow-container a{
	color: #000000 !important;
	opacity: 0.5;
	font-size: 2.0em;
	cursor: pointer;
}

.gallery-indicator-arrow-container a:hover{
	opacity: 1.0;
}

.modal-image-gallery-prev-button{
	position: absolute;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
}

.modal-image-gallery-button-products{
	position: absolute;
	top: 0;
	width: 10%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.modal-image-gallery-full-screen-button-left, .modal-image-gallery-full-screen-button-right{
	cursor: pointer;
}

.modal-image-gallery-prev-button-products{
	left: 0;
}

.modal-image-gallery-next-button-products{
	right: 0;
}

.modal-image-gallery-next-button{
	right: 0;
}

.modal-image-gallery-full-screen-button{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background-color: var(--simnest-blue);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-image-gallery-full-screen-button:hover{
	background-color: var(--simnest-light-blue);
	color: var(--simnest-blue);
	text-decoration: none;
}

.modal-image-gallery-full-screen-button-left{
	padding-right: 0.2em;
}

.modal-image-gallery-full-screen-button-right{
	padding-left: 0.2em;
}

@media (min-width: 2560px){
	.modal-close-image-gallery{
		right: 0px !important;
		top: 50px !important;
	}
	
	.modal-close-image-gallery a{
		font-size: 3.5em !important;
	}
	
	.modal-image-gallery-full-screen-button{
		width: 100px !important;
		height: 100px !important;
	}
	
	.modal-gallery-arrow a{
		font-size: 3.5em !important;
	}
	
	#modal-gallery-left-arrow-full-screen{
		left: -145px !important;
	}
	
	#modal-gallery-right-arrow-full-screen{
		right: -145px !important;
	}
	
	.modal-image-gallery-full-screen-button{
		font-size: 3.5em;
	}
}

@media (min-width: 3840px){
	.modal-close-image-gallery{
		right: -350px !important;
	}
	
	#modal-gallery-left-arrow-full-screen{
		left: -500px !important;
	}
	
	#modal-gallery-right-arrow-full-screen{
		right: -500px !important;
	}
	#gallery-indicator{
		justify-content: center !important;
	}
}

@media (min-width:1700px){
	.modal-gallery-full-screen{
		max-width: 1920px;
		width: 70%;
	}
}

@media (max-width:991px){
	.modal-image-gallery-full-screen-button:hover{
		background-color: var(--simnest-blue);
		color: var(--color-white);
		text-decoration: none;
	}
	
	.mobile-product-gallery-button:hover{
		background-color: var(--simnest-blue);
		color: var(--color-white);
		text-decoration: none;
	}
	
	.carousel-inner{
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.product-name {
		margin-top: 30px;
	}

	.gallery-full-screen-button{
		display: none;
	}

	.gallery-indicator-container{
		display: none;
	}

	.carousel-inner{
		width: 100%;
	}

	.carousel-item-portrait{
		width: 100%;
	}
}

/* Future of fbs page */
.cover-future-of-fbs img{
	margin-top: -10.0%;
}

.future-of-fbs-margin-bottom{
    height: 2.0em;
}

@media screen and (max-width: 991px) {
    .cover-future-of-fbs img{
        margin-top: 0.0%;
    }
}

@media (max-width:991px){
	.modal-image-gallery-full-screen-button{
		font-size: 1.0em !important;
	}
	
	.modal-image-gallery-full-screen-button:focus{
		background-color: var(--simnest-blue);
		color: var(--color-white) !important;
		text-decoration: none;
	}
}

@media (max-height:900px){
	.image-gallery{
		width: 90%;
	}
}

@media (max-height:800px){
	.image-gallery{
		width: 80%;
	}
}

@media (max-height:710px){
	.image-gallery{
		width: 75%;
	}
}

/* 404 error page */
.error-page-margin-top-mobile{
    display:none;
    height: 6.0em;
    background-color: var(--color-white);
}

.container-404-error-page{
    margin-top: 2.0em;
    padding-top: 2.0em;
    padding-bottom: 2.0em;
    background-color: var(--simnest-light-blue);
}

.container-404-background{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.container-404-background img{
    width: 90%;
    border-radius: 20px;
}

.container-404-text-mobile{
    display: none;
}

.container-404-text{
    display: flex;
    align-items: center;
}

.error-page-main-title{
    color: var(--simnest-blue);
    font-size: 1.8em;
    padding-bottom: 1.0em;
}

.error-page-second-title{
    font-size: 1.2em;
    padding-bottom: 1.0em;
}

.error-page-third-title{
    font-size: 1.2em;
}

.error-page-third-title a{
    color: var(--simnest-blue);
    text-decoration: underline;
}

.error-page-third-title a:hover{
    color: var(--color-hover-fc-2);
}

.error-page-margin-bottom{
    height: 4.0em;
    background-color: var(--color-white);
}

@media (max-width:990px){
    .error-page-margin-top-mobile{
        display: block;
    }
    
    .container-404-error-page{
        padding-bottom: 0px;
    }
    
   .container-404-text-mobile{
        display: block;
    }
    .container-404-text{
        display: none;
    }
    
    .error-page-main-title, .error-page-second-title, .error-page-third-title{
        text-align: center;
    }
    
    .error-page-main-title{
        padding-bottom: 0.5em;
    }
    
    .container-404-background img{
        width: 100%;
        border-radius: 0px;
        padding-top: 1.0em;
    }
}

@media (max-width:360px){
    .error-page-second-title, .error-page-third-title{
        padding-left: 1.0em;
        padding-right: 1.0em;
    }
}

/* Landing page */
.landing-page{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	margin-bottom: 30px;
	opacity: 0.9;
}

.landing-page-container{
	width: 80%;
	margin: auto;
	padding-top: 50px;
}

.landing-page-container h4{
	margin-bottom: 30px;
}

.landing-page-col{
	
}

.landing-page-col-left{
	
}

.landing-page-image-container{
	position: relative;
	width: 60%;
	transition: 350ms;
}

.landing-page-image-container:hover{
	transform: scale(1.05);
}

.landing-page-image-container-simnest{
	background: rgba(0, 107, 231);
	margin-left: 40%;
}

.landing-page-image-container-pilot-academy{
	background: #f6bd00;
}

.landing-page-image-container img{
	width: 100%;
	opacity: 0.5;
}

.landing-page-logo-container{
	position: absolute;
	bottom: 0;
	width: 100%;
	color: #ffffff;
	margin-left: 60px;
}

.landing-page-logo-container-pilot-academy{
	right: 0;
	margin-right: 60px;
	bottom: -25px;
}

.landing-page-logo-container-div{
	text-align: right;
}

.landing-page-logo-container-h2-pilot-academy{
	text-align: right;
}

.landing-page-logo-container img{
	width: 40%;
	opacity: 1;
	margin-top: 10px;
	margin-bottom: 80px;
}

@media (max-width:1600px){
	.landing-page-image-container{
		width: 60%;
	}
}

@media (min-width:1100px) and (max-width:1400px){
	.landing-page-logo-container h2{
		font-size: 1.5em;
	}
}

@media (min-width:991px) and (max-width:1099px){
	.landing-page-logo-container h2{
		font-size: 1.25em;
	}
}

@media (max-width:990px){
	html, body{
		overflow: auto !important;
	}
	
	.landing-page{
		position: absolute;
	}
	
	.landing-page h1{
		font-size: 1.5em;
	}
	
	.landing-page h4{
		font-size: 1.0em;
	}
	
	.landing-page-image-container{
		width: 60%;
		margin-left: 0px;
		margin-right: 0px;
		margin: auto;
		margin-bottom: 30px;
	}
	
	.landing-page-logo-container{
		left: auto;
		right: auto;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		margin-left: 0px;
		margin-right: 0px;
	}
	
	.landing-page-logo-container-pilot-academy{
		left: auto;
		right: auto;
	}

	.landing-page-logo-container-div{
		text-align: center;
	}

	.landing-page-logo-container-h2-pilot-academy{
		text-align: center;
	}
	
	.landing-page-logo-container h2{
		font-size: 1.0em;
	}
	
	.landing-page-logo-container img{
		width: 50%;
		margin-top: 10px;
		margin-bottom: 0px;
	}
}