/*-----------------------------------------------------------------------------------
	at80knots_dev
	About: Around the world at 80 knots; flying a kit-build microlight around the world.
	Author: D Kemp
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: 0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'Montserrat-Medium';
	src: url('./fonts/Montserrat-Medium/Montserrat-Medium.woff');
	src: url('./fonts/Montserrat-Medium/Montserrat-Medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Montserrat-Bold';
	src: url('./fonts/Montserrat-Bold/Montserrat-Bold.woff');
	src: url('./fonts/Montserrat-Bold/Montserrat-Bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Montserrat-ExtraBold';
	src: url('./fonts/Montserrat-ExtraBold/Montserrat-ExtraBold.woff');
	src: url('./fonts/Montserrat-ExtraBold/Montserrat-ExtraBold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Montserrat-Light';
	src: url('./fonts/Montserrat-Light/Montserrat-Light.woff');
	src: url('./fonts/Montserrat-Light/Montserrat-Light.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-repeat{
	background-repeat:repeat!important;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-diagonal-lines::before{
	background: url("img/texture-diag-lines.png");
	background-size: 10px 10px;
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-bloc.sticky,.sticky-nav.sticky{
	position:fixed;
	z-index:1000;
	transition: all .2s ease-out;
}
.sticky-nav.sticky{
	box-shadow: 0 1px 2px rgba(0,0,0,.3);
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}

/* Nav Special Classes */
.nav-special{
	overflow-y:scroll;
}
.nav-special .site-navigation{
	top:0;
	left:0;
	width:100%;
	position: relative!important;
	max-width: 100%!important;
	z-index: 1000;
}
.nav-special .nav > li{
	width:100%;
	background: none!important;
	border:0!important;
}
.nav-special.collapsing{
	-webkit-transition: none;
	transition: none;
	height:100%!important;
	background: none!important;
}
.nav-special .navbar-nav .dropdown-menu.show{
	position: relative!important;
	transform: none!important;
	float: none;
	width: 100%;
	margin-top: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
.nav-special .nav .dropdown-menu .nav-link{
	color:#FFF;
}
.blocsapp-special-menu{
	position: absolute;
	z-index:10000;
}
.nav-special.fullscreen-nav .caret,.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret{
	border-width: 8px;
}
.nav-special .navbar-nav .show>.nav-link{
	color:#FFF;
}

/* Animate Menu Symbol */
.navbar-toggle{
	transition: all .1s linear;
}
.selected-nav{
	opacity: 0;
	transform: scale(0.3);
	transition: all .1s linear;
}


/* Special Menu Close Button */
.close-special-menu{
	position: absolute;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu{
	left:260px;
}
.close-special-menu .close-icon{
	display: block;
	width:100%;
	height:1px;
	transform: rotate(45deg);
	margin-top:12px;
}
.close-special-menu .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	transform: rotate(90deg);
}
.lock-scroll{
	overflow:hidden;
	transition: background .3s linear;
}
.nav-special::-webkit-scrollbar{
	-webkit-appearance: none;
	width:0;
	height:0;
}
.nav-special .dropdown-menu .dropdown .caret{
	border-top-color: rgba(255,255,255,.8);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	margin: 0 0 0 5px;
	float: none;
}
.blocsapp-special-menu .site-navigation.pull-right{
	float:none!important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon{
	background:#fff;
}
.blocsapp-special-menu blocsnav{
	background: #000;
}

/* Full Screen Navigation */
.nav-special.fullscreen-nav{
	width: 100%;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	z-index: 1000;
	position: fixed;
	transition: all .2s linear;
}
 .nav-special.fullscreen-nav.open-up{
	transform: translateY(1000px);
}
 .nav-special.fullscreen-nav.open-down{
	transform: translateY(-1000px);
}
 .nav-special.fullscreen-nav.open-left{
	transform: translateX(-1000px);
}
 .nav-special.fullscreen-nav.open-right{
	transform: translateX(1000px);
}
 .nav-special.fullscreen-nav .nav > li a,.nav-special.fullscreen-nav .nav .dropdown-menu > li > a{
	color:rgba(255,255,255,.8);
	text-align: center;
	font-size: 28px;
}
 .nav-special.fullscreen-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.fullscreen-nav{
	opacity: 1;
	transition: all .2s linear;
}
.nav-special.fullscreen-nav .site-navigation{
	text-align:center;
	margin-top:10%!important;
}
.nav-special.fullscreen-nav .close-special-menu{
	right:20px;
}
 .open.nav-special.fullscreen-nav.open-left,  .open.nav-special.fullscreen-nav.open-right,  .open.nav-special.fullscreen-nav.open-down, .open.nav-special.fullscreen-nav.open-up{
	transform: translateY(0);
}
.navbar-toggle.menu-icon-thin-bars{
	margin-top:4px!important;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

.btn-sq{
	border-radius: 0px;
}
.btn-xl{
	padding: 16px 40px;
	font-size: 28px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}
blocsicon{
	display:inline-block;
	width:100%;
}
blocsicon svg {
	width: 100%;
	 height: auto;
	 display: block;
}

/* Image Scale */
.img-fluid-up{
	min-width: 100%;
	height: auto;
}

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

/* = Lists
-------------------------------------------------------------- */
.list-horizontal-layout li{
	display:inline-block;
	margin:0 10px;
}
.list-sp-md li:last-child,.list-sp-lg li:last-child,.list-sp-xl li:last-child{
	padding-bottom:0;
}

/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.hide-indicators{
	display:none;
}

.carousel-indicators li::marker{
	font-size:0;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* Stacked Container */
.blocs-stacked-area {
	display:grid;
	align-items:center;
	justify-items: center;
}
.blocs-stacked-area > * {
	grid-column-start: 1;
	grid-row-start: 1;
}
.stacked-area-align-top {
	align-items:start;
}
.stacked-area-align-bottom {
	align-items:end;
}
.stacked-area-align-left {
	justify-items:start;
}
.stacked-area-align-right {
	justify-items:end;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-weight:900;
}
.container{
	max-width:1140px;
}
.img-style{
	width:40px;
	height:40px;
}
.link-style{
	font-family:"Lato";
	font-weight:bold;
	padding-top:1px;
	padding-bottom:1px;
	width:21.58%;
	color:#FEFFFF!important;
	text-decoration:none;
}
.img-main-logo-whi-style{
	width:850px;
}
.img-logo-te-style{
	height:44px;
	width:236px;
}
.h1-style{
	font-family:"Lato";
	font-weight:900;
	font-size:75px;
	color:var(--swatch-var-1843)!important;
}
.h1-30-000-nm-style{
	font-size:55px;
	font-family:"Lato";
	font-weight:900;
}
.h1-1-000-ft-style{
	font-size:55px;
	font-family:"Lato";
	font-weight:900;
}
.h2-style{
	font-size:45px;
}
.h1-bloc-6-style{
	font-size:60px;
	font-family:"Montserrat";
}
.h2-part-one-style{
	font-size:60px;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	word-spacing:auto;
}
.divider-background-color{
	background-color:var(--swatch-var-1873);
	height:3px;
	width:80%;
	margin-left:auto;
	margin-right:auto;
}
.divider-style{
	height:3px;
	background-color:var(--swatch-var-1873);
	width:80%;
	margin-left:auto;
	margin-right:auto;
}
.partone-mid{
	font-size:40px;
}
.divider-0-background-color{
	background-color:var(--swatch-var-1873);
}
.btn-style{
	border-radius:0px 0px 0px 0px;
}
.row-style{
	width:100%;
}
.link-style:hover{
	color:#CCCCCC!important;
}
.btn-more-info-style{
	border-radius:0px 0px 0px 0px;
}
.row-33-style{
	width:100%;
}
.divider-0-bloc-8-background-color{
	background-color:var(--swatch-var-1873);
}
.divider-bloc-9-background-color{
	background-color:var(--swatch-var-1873);
}
.btn-meet-everyone-style{
	border-radius:0px 0px 0px 0px;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	color:var(--swatch-var-1873)!important;
	background-color:var(--swatch-var-1843);
}
.divider-bloc-11-style{
	width:60%;
	background-color:var(--swatch-var-1843);
}
.footer-logo-lg{
	width:100px;
}
.h6-bloc-11-style{
	letter-spacing:3px;
	font-family:"Montserrat-Medium";
	font-weight:normal;
	text-align:center;
	color:var(--swatch-var-1843)!important;
	font-size:12px;
	line-height:auto;
	text-indent:auto;
	word-spacing:auto;
}
.h6-style-black{
	font-family:"Lato";
	font-weight:900;
	color:var(--swatch-var-1843)!important;
}
.h6-style-black:hover{
	color:var(--swatch-var-4981)!important;
}
.img-10-style{
	width:600px;
	height:600px;
}
.big{
	font-size:70px;
	font-weight:normal;
	font-family:"Montserrat-Bold";
	line-height:auto;
	letter-spacing:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
	font-display:fallback;
	text-indent:auto;
}
.img-wings-b-gr-style{
	width:350px;
}
.bloc-divider-b-fill{
	fill:var(--swatch-var-1873);
}
.h2-4-style{
	font-size:45px;
}
.divider-bloc-10-style{
	height:2px;
	background-color:var(--swatch-var-1873);
	width:80%;
	margin-left:auto;
	margin-right:auto;
}
.h2-bloc-10-style{
	font-size:45px;
}
.divider-0-style{
	height:2px;
	background-color:var(--swatch-var-1873);
	width:80%;
	margin-left:auto;
	margin-right:auto;
}
.h2-6-style{
	font-size:45px;
}
.h1-bloc-10-style{
	font-size:45px;
}
.h3-style{
	font-size:24px;
}
.h3-the-build-style-sm{
	font-size:24px;
}
.h3-the-trip ↓-style{
	font-size:24px;
}
.h2-bloc-8-style{
	font-size:38px;
}
.partone-desk{
	font-size:38px;
	width:100%;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.h2-the-team-style{
	font-size:38px;
}
.divider-bloc-11-background-color{
	background-color:var(--swatch-var-1873);
	width:90%;
	margin-left:auto;
	margin-right:auto;
}
.btn-3-style{
	border-radius:0px 0px 0px 0px;
}
.header-main{
	font-size:45px;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:2px;
	word-spacing:auto;
}
.btn-submit-style{
	border-radius:0px 0px 0px 0px;
	width:28.67%;
}
.h2-1-style{
	font-family:"Montserrat";
}
.des-3{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	font-size:45px;
	color:var(--swatch-var-1873)!important;
	line-height:auto;
	letter-spacing:auto;
	word-spacing:auto;
}
.footer_image{
	background-position:center top;
	background-size:cover;
}
.h2-main-page{
	font-size:54px;
	font-weight:normal;
	font-family:"Montserrat-Medium";
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	word-spacing:auto;
	text-indent:auto;
}
.find-out-more{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	color:var(--swatch-var-1873)!important;
	text-decoration:none;
	line-height:auto;
	letter-spacing:auto;
	word-spacing:auto;
}
.find-out-more-header{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	color:var(--swatch-var-1873)!important;
	line-height:auto;
	letter-spacing:auto;
	word-spacing:auto;
}
.find-out-more:hover{
	color:var(--swatch-var-2346)!important;
}
.img-9-style{
	height:640px;
	width:640px;
}
.logo{
	width:350px;
	height:auto;
}
.top-bg-trans{
	background-blend-mode:normal;
	background-size:cover;
	background-repeat:repeat;
	background-color:var(--swatch-var-1873);
}
.fom-md{
	font-family:"Montserrat";
}
.teamnames{
	font-family:"Montserrat-Medium";
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
	font-weight:normal;
}
.experimental{
	width:auto;
	height:auto;
}
.page-header{
	font-family:"Montserrat-Bold";
	color:var(--swatch-var-1873)!important;
	line-height:auto;
	text-indent:auto;
	word-spacing:auto;
	text-shadow:4.10px 2.87px 5px rgba(0,0,0,0.25);
	font-size:100px;
	letter-spacing:5px;
	font-weight:normal;
}
.black-style{
	font-family:"Montserrat-Bold";
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
	font-size:18px;
}
.divider-19017-background-color{
	background-color:var(--swatch-var-1843);
}
.bloc-divider-b-bloc-47-fill{
	fill:var(--swatch-var-1873);
	height:50px;
}
.grid-con{
	background-size:cover;
	position:relative;
	align-items:center;
	align-self:center;
}
.btn-meet-everyone-style:hover{
	background-color:var(--swatch-var-1873);
	color:var(--swatch-var-1843)!important;
}
.img-footer-style-lg{
	height:28px;
	width:28px;
}
.footer_menu{
	font-family:"Montserrat-Medium";
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	font-size:15px;
	text-decoration:none;
	font-weight:normal;
}
.footer-menu-md{
	font-family:"Montserrat-Light";
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	font-size:20px;
}
.footer-logo-md{
	width:140px;
}
.img-footer-style-md{
	width:40px;
	height:40px;
}
.footer-logo-small{
	width:140px;
}
.footer-header-md{
	font-family:"Montserrat-Light";
	font-weight:700;
	font-size:15px;
	letter-spacing:3px;
	color:var(--swatch-var-1843)!important;
	text-indent:auto;
	word-spacing:auto;
}
.footer-header-small{
	font-family:"Montserrat-Light";
	font-weight:700;
	font-size:15px;
	letter-spacing:3px;
	color:var(--swatch-var-1843)!important;
	text-indent:auto;
	word-spacing:auto;
}
.copyright-md{
	letter-spacing:2px;
	font-family:"Montserrat-Light";
	font-weight:700;
	text-align:center;
	color:var(--swatch-var-1843)!important;
	font-size:12px;
}
.footer-menu-small{
	font-family:"Montserrat-Light";
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	font-size:20px;
}
.img-footer-style-small{
	width:40px;
	height:40px;
}
.copyright-small{
	letter-spacing:2px;
	font-family:"Montserrat-Light";
	font-weight:700;
	text-align:center;
	color:var(--swatch-var-1843)!important;
	font-size:12px;
}
.page-header-small{
	font-family:"Montserrat-Bold";
	color:var(--swatch-var-1873)!important;
	line-height:auto;
	text-indent:auto;
	word-spacing:auto;
	text-shadow:4.10px 2.87px 5px rgba(0,0,0,0.25);
	font-size:100px;
	letter-spacing:5px;
}
.main-menu{
	font-family:"Montserrat-Bold";
	color:var(--swatch-var-1843)!important;
}
.main-menu:hover{
	color:var(--swatch-var-1873)!important;
	font-family:"Montserrat-Bold";
}
.menu-master{
	font-family:"Montserrat-Bold";
}
.menu-master:hover{
	color:var(--swatch-var-1873)!important;
}
.main-menu-desk{
	color:var(--swatch-var-1843)!important;
}
.main-menu-desk:hover{
	color:var(--swatch-var-452)!important;
}
.black-style:hover{
	color:var(--swatch-var-1843)!important;
}
.h4-style-md-sm{
	text-decoration:none;
	color:var(--swatch-var-1843)!important;
}
.h4-style-md-sm:hover{
	color:var(--swatch-var-1869)!important;
}
.h4-style{
	font-family:"Montserrat-Bold";
	text-decoration:none;
	font-size:16px;
	color:var(--swatch-var-1843)!important;
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.h4-style:hover{
	color:#7C7C7C!important;
}
.sub-header{
	font-family:"Montserrat-Bold";
	color:var(--swatch-var-1843)!important;
	font-size:20px;
	line-height:auto;
	letter-spacing:2px;
	text-indent:auto;
	word-spacing:auto;
	font-weight:normal;
}
.h2-modifications-style{
	font-family:"Montserrat-Bold";
	font-size:28px;
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:2px;
	text-indent:auto;
	word-spacing:auto;
	font-weight:normal;
}
.img-49-style{
	height:25px;
}
.divider-8277-background-color{
	height:2px;
	background-color:var(--swatch-var-1843);
}
.test{
	color:var(--swatch-var-1843)!important;
	font-family:"Montserrat-Medium";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.test:hover{
	color:var(--swatch-var-2745)!important;
}
.daniel-email-btn{
	border-radius:0px 0px 0px 0px;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	background-color:var(--swatch-var-1843);
	color:var(--swatch-var-3067)!important;
}
.container-div-style{
	width:52.36%;
	padding-left:40px;
	margin-left:-14px;
	padding-right:0px;
}
.instagram-logo{
	width:40px;
	height:40px;
	background-image:url("img/insta.png");
	background-image: -webkit-image-set(url("img/insta.webp") 1x,
url("img/insta.webp") 2x);background-image: image-set(url("img/insta.png") 1x,
url("img/insta.png") 2x,url("img/insta.webp") 1x,
url("img/insta.webp") 2x);
	background-image: -webkit-image-set(url("img/insta.webp") 1x,
url("img/insta.webp") 2x);background-image: image-set(url("img/insta.png") 1x,
url("img/insta.png") 2x,url("img/insta.webp") 1x,
url("img/insta.webp") 2x);
	background-size:contain;
}
.twitter-icon{
	width:40px;
	height:40px;
	background-size:contain;
	background-image:url("img/twitter_a_new.png");
	background-image: -webkit-image-set(url("img/twitter_a_new.webp") 1x,
url("img/twitter_a_new.webp") 2x);background-image: image-set(url("img/twitter_a_new.png") 1x,
url("img/twitter_a_new.png") 2x,url("img/twitter_a_new.webp") 1x,
url("img/twitter_a_new.webp") 2x);
	background-image: -webkit-image-set(url("img/twitter_a_new.webp") 1x,
url("img/twitter_a_new.webp") 2x);background-image: image-set(url("img/twitter_a_new.png") 1x,
url("img/twitter_a_new.png") 2x,url("img/twitter_a_new.webp") 1x,
url("img/twitter_a_new.webp") 2x);
}
.tiktok-icon{
	width:40px;
	height:40px;
	background-image:url("img/tiktok.png");
	background-image: -webkit-image-set(url("img/tiktok.webp") 1x,
url("img/tiktok.webp") 2x);background-image: image-set(url("img/tiktok.png") 1x,
url("img/tiktok.png") 2x,url("img/tiktok.webp") 1x,
url("img/tiktok.webp") 2x);
	background-size:contain;
}
.youtube-link{
	width:40px;
	height:40px;
	background-image:url("img/youtube.png");
	background-image: -webkit-image-set(url("img/youtube.webp") 1x,
url("img/youtube.webp") 2x);background-image: image-set(url("img/youtube.png") 1x,
url("img/youtube.png") 2x,url("img/youtube.webp") 1x,
url("img/youtube.webp") 2x);
	background-image: -webkit-image-set(url("img/youtube.webp") 1x,
url("img/youtube.webp") 2x);background-image: image-set(url("img/youtube.png") 1x,
url("img/youtube.png") 2x,url("img/youtube.webp") 1x,
url("img/youtube.webp") 2x);
	background-size:contain;
}
.facebook-logo{
	background-image:url("img/facebook.png");
	background-image: -webkit-image-set(url("img/facebook.webp") 1x,
url("img/facebook.webp") 2x);background-image: image-set(url("img/facebook.png") 1x,
url("img/facebook.png") 2x,url("img/facebook.webp") 1x,
url("img/facebook.webp") 2x);
	background-image: -webkit-image-set(url("img/facebook.webp") 1x,
url("img/facebook.webp") 2x);background-image: image-set(url("img/facebook.png") 1x,
url("img/facebook.png") 2x,url("img/facebook.webp") 1x,
url("img/facebook.webp") 2x);
	background-size:contain;
}
.facebook-logo:hover{
	background-image:url("img/facebook_a.jpg");
	background-image: -webkit-image-set(url("img/facebook_a.webp") 1x,
url("img/facebook_a.webp") 2x);background-image: image-set(url("img/facebook_a.jpg") 1x,
url("img/facebook_a.jpg") 2x,url("img/facebook_a.webp") 1x,
url("img/facebook_a.webp") 2x);
	background-image: -webkit-image-set(url("img/facebook_a.webp") 1x,
url("img/facebook_a.webp") 2x);background-image: image-set(url("img/facebook_a.jpg") 1x,
url("img/facebook_a.jpg") 2x,url("img/facebook_a.webp") 1x,
url("img/facebook_a.webp") 2x);
	background-size:contain;
	background-repeat:no-repeat;
}
.instagram-logo:hover{
	background-image:url("img/insta_a.jpg");
	background-image: -webkit-image-set(url("img/insta_a.webp") 1x,
url("img/insta_a.webp") 2x);background-image: image-set(url("img/insta_a.jpg") 1x,
url("img/insta_a.jpg") 2x,url("img/insta_a.webp") 1x,
url("img/insta_a.webp") 2x);
	background-image: -webkit-image-set(url("img/insta_a.webp") 1x,
url("img/insta_a.webp") 2x);background-image: image-set(url("img/insta_a.jpg") 1x,
url("img/insta_a.jpg") 2x,url("img/insta_a.webp") 1x,
url("img/insta_a.webp") 2x);
	background-size:contain;
}
.img-blank-squa-style{
	width:40px;
	height:40px;
}
.social-link{
	font-family:"Montserrat-Medium";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	text-decoration:none;
}
.twitter-icon:hover{
	background-image:url("img/twitter_a_new_g.png");
	background-image: -webkit-image-set(url("img/twitter_a_new_g.webp") 1x,
url("img/twitter_a_new_g.webp") 2x);background-image: image-set(url("img/twitter_a_new_g.png") 1x,
url("img/twitter_a_new_g.png") 2x,url("img/twitter_a_new_g.webp") 1x,
url("img/twitter_a_new_g.webp") 2x);
	background-size:contain;
}
.tiktok-icon:hover{
	background-image:url("img/tiktok_a.jpg");
	background-image: -webkit-image-set(url("img/tiktok_a.webp") 1x,
url("img/tiktok_a.webp") 2x);background-image: image-set(url("img/tiktok_a.jpg") 1x,
url("img/tiktok_a.jpg") 2x,url("img/tiktok_a.webp") 1x,
url("img/tiktok_a.webp") 2x);
	background-image: -webkit-image-set(url("img/tiktok_a.webp") 1x,
url("img/tiktok_a.webp") 2x);background-image: image-set(url("img/tiktok_a.jpg") 1x,
url("img/tiktok_a.jpg") 2x,url("img/tiktok_a.webp") 1x,
url("img/tiktok_a.webp") 2x);
	background-size:contain;
}
.youtube-link:hover{
	background-image:url("img/youtube_a.jpg");
	background-image: -webkit-image-set(url("img/youtube_a.webp") 1x,
url("img/youtube_a.webp") 2x);background-image: image-set(url("img/youtube_a.jpg") 1x,
url("img/youtube_a.jpg") 2x,url("img/youtube_a.webp") 1x,
url("img/youtube_a.webp") 2x);
	background-image: -webkit-image-set(url("img/youtube_a.webp") 1x,
url("img/youtube_a.webp") 2x);background-image: image-set(url("img/youtube_a.jpg") 1x,
url("img/youtube_a.jpg") 2x,url("img/youtube_a.webp") 1x,
url("img/youtube_a.webp") 2x);
	background-size:contain;
}
.daniel-email-btn:hover{
	background-color:var(--swatch-var-1873);
	color:var(--swatch-var-1843)!important;
}
.btn-17-style{
	width:56.27%;
	background-color:var(--swatch-var-1843);
	color:var(--swatch-var-1873)!important;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.btn-17-style:hover{
	color:var(--swatch-var-1843)!important;
	background-color:var(--swatch-var-1873);
}
.social-link:hover{
	color:var(--swatch-var-5314)!important;
}
.img-64-style{
	width:40px;
	height:40px;
}
.banner-2{
	font-family:"Montserrat-Medium";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.h1-16-style{
	font-family:"Montserrat-Black";
}
.semi-big{
	font-size:50px;
	font-weight:normal;
	font-family:"Montserrat-Bold";
	line-height:auto;
	letter-spacing:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
	text-indent:auto;
}
.mini-header{
	font-family:"Montserrat-Medium";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
}
.p-bloc-80-style{
	font-size:20px;
}
.h1-bloc-84-style{
	font-size:35px;
}
.divider-45697-background-color{
	background-color:var(--swatch-var-1873);
}
.quarter-style{
	font-size:30px;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
}
.img-header-logo-t-style{
	width:336px;
	height:50px;
}
.main-log-x{
	background-image:url("img/header_logo_txt.png");
	background-image: -webkit-image-set(url("img/header_logo_txt.webp") 1x,
url("img/header_logo_txt.webp") 2x);background-image: image-set(url("img/header_logo_txt.png") 1x,
url("img/header_logo_txt.png") 2x,url("img/header_logo_txt.webp") 1x,
url("img/header_logo_txt.webp") 2x);
	background-image: -webkit-image-set(url("img/header_logo_txt.webp") 1x,
url("img/header_logo_txt.webp") 2x);background-image: image-set(url("img/header_logo_txt.png") 1x,
url("img/header_logo_txt.png") 2x,url("img/header_logo_txt.webp") 1x,
url("img/header_logo_txt.webp") 2x);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:left center;
}
.h6-jump-to-style{
	font-family:"Montserrat-Bold";
	font-size:14px;
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.p-link-style{
	font-weight:normal;
	font-family:"Montserrat-Medium";
	font-display:swap;
	color:var(--swatch-var-1843)!important;
}
.p-link-main{
	text-decoration:none;
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	font-size:auto;
	font-family:"Montserrat-Bold";
	color:var(--swatch-var-1843)!important;
}
.p-link-main:hover{
	font-weight:normal;
	font-size:auto;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
	font-family:"Montserrat-Bold";
	text-decoration:underline!important;
}
.h4-nautical-miles-style{
	font-size:16px;
}
.h4-feet-agl-style{
	font-size:16px;
}
.h4-countries-style{
	font-size:16px;
}
.h4-timezones-style{
	font-size:16px;
}
.h4-days-style{
	font-size:16px;
}
.h4-knots-style{
	font-size:16px;
}
.img-01-pr-style{
	width:50px;
}
.img-02-bui-style{
	width:50px;
}
.img-03-spe-style{
	width:50px;
}
.img-04-progre-style{
	width:50px;
}
.h2-bloc-54-style{
	font-family:"Montserrat-Bold";
	font-size:25px;
	width:64.71%;
}
.build_sub_menu{
	font-family:"Montserrat-Bold";
	font-size:15px;
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.link-bloc-54-style{
	text-decoration:none;
}
.h2-50-style{
	width:70.04%;
}
.link-bloc-54-style:hover{
	color:var(--swatch-var-2745)!important;
}
.img-twitter-a-n-style{
	width:28px;
}
.form-style{
	font-family:"Montserrat-Medium";
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.e-mail-link{
	color:var(--swatch-var-3067)!important;
}
.sub-banner{
	font-family:"Montserrat-Medium";
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	font-weight:normal;
}
.img-new-logo--style{
	width:150px;
}
.lp-link-main{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	text-decoration:none;
	font-size:24px;
}
.lp-link-sub{
	font-family:"Montserrat-Light";
	color:var(--swatch-var-1843)!important;
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	text-decoration:none;
	font-size:22px;
}
.lp-link-main:hover{
	text-decoration:none;
	color:var(--swatch-var-2745)!important;
}
.lp-link-sub:hover{
	text-decoration:none;
	color:var(--swatch-var-2745)!important;
}
.copyright-lp{
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	font-family:"Montserrat-Medium";
	font-size:14px;
}
.img-world-colo-style{
	width:60px;
}
.html-widget-style{
	height:935px;
}
.direct-link{
	font-family:"Montserrat-Medium";
	font-size:16px;
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
}
.status_header{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
}
.status_header_text{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
}
.divider-bloc-160-background-color{
	background-color:var(--swatch-var-1843);
}
.link-read-more-style{
	font-weight:normal;
	font-family:"Montserrat-Bold";
	text-decoration:none;
	color:var(--swatch-var-1843)!important;
	font-size:16px;
}
.link-read-more-style:hover{
	text-decoration:underline!important;
}
.link-status-main-style{
	text-decoration:none;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
}
.link-status-main-style:hover{
	text-decoration:underline!important;
}
.statushd-2{
	background-color:var(--swatch-var-4138);
	padding:5px 5px 5px 5px;
	font-family:"Montserrat-Bold";
	font-weight:normal;
	color:var(--swatch-var-1873)!important;
}
.status-link{
	text-decoration:none;
	font-weight:normal;
	font-family:"Montserrat-Bold";
	color:var(--swatch-var-1843)!important;
}
.status-link:hover{
	text-decoration:underline!important;
}
.status-para-b{
	font-family:"Montserrat-Bold";
	font-weight:normal;
}
.status-para{
	font-family:"Montserrat-Medium";
	font-weight:normal;
}
.list-footer-style{
	width:100%;
}
.ql-style{
	font-family:"Montserrat-Light";
	font-size:12px;
	font-weight:normal;
	line-height:auto;
	letter-spacing:4px;
	text-indent:auto;
	word-spacing:auto;
}
.status-bold{
	font-family:"Montserrat-Bold";
}
.p-style{
	font-family:"Montserrat-Medium";
}
.subscribe-text{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
}
.subscribe-link{
	font-weight:normal;
	text-decoration:none;
}
.subscribe-link:hover{
	font-weight:normal;
	text-decoration:underline!important;
}
.img-margin-right{
	width:400px;
}
option{
	font-family:"Montserrat-Bold";
	font-weight:normal;
}
.option1{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-2209);
}
.divider-30171-background-color{
	background-color:var(--swatch-var-1843);
}
.link-earth{
	background-size:contain;
	background-position:center center;
	background-repeat:no-repeat;
	background-image:url("img/02_earth_1.png");
	background-image: -webkit-image-set(url("img/02_earth_1.webp") 1x,
url("img/02_earth_1.webp") 2x);background-image: image-set(url("img/02_earth_1.png") 1x,
url("img/02_earth_1.png") 2x,url("img/02_earth_1.webp") 1x,
url("img/02_earth_1.webp") 2x);
}
.link-earth:hover{
	background-size:contain;
	background-image:url("img/02_earth_2.png");
	background-image: -webkit-image-set(url("img/02_earth_2.webp") 1x,
url("img/02_earth_2.webp") 2x);background-image: image-set(url("img/02_earth_2.png") 1x,
url("img/02_earth_2.png") 2x,url("img/02_earth_2.webp") 1x,
url("img/02_earth_2.webp") 2x);
}
.link-maps{
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
	background-image:url("img/01_maps_1.png");
	background-image: -webkit-image-set(url("img/01_maps_1.webp") 1x,
url("img/01_maps_1.webp") 2x);background-image: image-set(url("img/01_maps_1.png") 1x,
url("img/01_maps_1.png") 2x,url("img/01_maps_1.webp") 1x,
url("img/01_maps_1.webp") 2x);
}
.link-maps:hover{
	background-image:url("img/01_maps_2.png");
	background-image: -webkit-image-set(url("img/01_maps_2.webp") 1x,
url("img/01_maps_2.webp") 2x);background-image: image-set(url("img/01_maps_2.png") 1x,
url("img/01_maps_2.png") 2x,url("img/01_maps_2.webp") 1x,
url("img/01_maps_2.webp") 2x);
}
.p-open-in-style{
	font-family:"Montserrat-Medium";
}
.open-in{
	font-family:"Montserrat-Medium";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
}
.oval-earth{
	background-image:url("img/02o_earth_1.png");
	background-image: -webkit-image-set(url("img/02o_earth_1.webp") 1x,
url("img/02o_earth_1.webp") 2x);background-image: image-set(url("img/02o_earth_1.png") 1x,
url("img/02o_earth_1.png") 2x,url("img/02o_earth_1.webp") 1x,
url("img/02o_earth_1.webp") 2x);
	background-size:contain;
	background-position:center center;
	background-repeat:no-repeat;
}
.oval-earth:hover{
	background-image:url("img/02o_earth_2.png");
	background-image: -webkit-image-set(url("img/02o_earth_2.webp") 1x,
url("img/02o_earth_2.webp") 2x);background-image: image-set(url("img/02o_earth_2.png") 1x,
url("img/02o_earth_2.png") 2x,url("img/02o_earth_2.webp") 1x,
url("img/02o_earth_2.webp") 2x);
}
.oval-maps{
	background-image:url("img/01o_earth_1.png");
	background-image: -webkit-image-set(url("img/01o_earth_1.webp") 1x,
url("img/01o_earth_1.webp") 2x);background-image: image-set(url("img/01o_earth_1.png") 1x,
url("img/01o_earth_1.png") 2x,url("img/01o_earth_1.webp") 1x,
url("img/01o_earth_1.webp") 2x);
	background-size:contain;
	background-position:center center;
	background-repeat:no-repeat;
}
.oval-maps:hover{
	background-image:url("img/01o_earth_2.png");
	background-image: -webkit-image-set(url("img/01o_earth_2.webp") 1x,
url("img/01o_earth_2.webp") 2x);background-image: image-set(url("img/01o_earth_2.png") 1x,
url("img/01o_earth_2.png") 2x,url("img/01o_earth_2.webp") 1x,
url("img/01o_earth_2.webp") 2x);
}
.exta-align{
	text-align:center;
}
.status_header_date{
	font-family:"Montserrat-Bold";
	font-weight:normal;
	line-height:auto;
	letter-spacing:auto;
	text-indent:auto;
	word-spacing:auto;
	color:var(--swatch-var-1843)!important;
	text-align:right;
}
.nynja-bold{
	font-family:"Montserrat-ExtraBold";
	font-weight:normal;
	color:var(--swatch-var-1843)!important;
	line-height:auto;
	letter-spacing:7px;
	text-indent:auto;
	word-spacing:auto;
	font-size:60px;
}
.introducing-sr{
	font-family:"Montserrat-Medium";
	color:var(--swatch-var-1843)!important;
	font-weight:normal;
	line-height:auto;
	letter-spacing:5px;
	text-indent:auto;
	word-spacing:auto;
	font-size:20px;
}
.align-w{
	text-align:center;
}
.h3-63-style{
	font-family:"Montserrat-Medium";
	font-size:22px;
	font-weight:normal;
}
.map-container{
	position:relative;
}
.point-icon{
	position:absolute;
	backdrop-filter:blur(5px);
	-webkit-backdrop-filter:blur(5px);
	border-radius:50px 50px 50px 50px;
	fill:var(--swatch-var-4138);
	padding:5px 5px 5px 5px;
	box-shadow:0.00px 0.00px 13px rgba(0,0,0,0.26),inset 0.00px 1.00px 0px rgba(255,255,255,0.30);
	transition:all 0.5s ease 0s;
	transform:scale(1);
	width:30px;
}
.point-icon:hover{
	transition:all 0.5s ease 0s;
	transform:scale(1.1);
}
.pos-1{
	left:59%;
	bottom:57%;
}
.pos-2{
	right:28%;
	top:48%;
}
.pos-3{
	top:22%;
	right:26%;
}
.pos-4{
	right:14%;
	bottom:57%;
}
.info-overlay{
	max-width:400px;
	background-color:var(--swatch-var-1873);
	padding:20px 20px 20px 20px;
	border-radius:20px 20px 20px 20px;
	border-width:1px 1px 1px 1px;
	border-color:transparent!important;
	box-shadow:inset 0.00px 1.00px 1px rgba(255,255,255,0.32),0.00px 0.00px 25px rgba(0,0,0,0.16);
	transition:all 0.5s ease 0s;
	transform:translateY(20px);
	opacity:0;
}
.show-info{
	transition:all 0.5s ease 0s;
	transform:translateY(0px) scale(1.1);
	opacity:1;
}
.desc{
	font-family:"Montserrat-Medium";
	color:var(--swatch-var-1843)!important;
	font-weight:normal;
	text-align:justify;
}
.pos-5{
	bottom:59%;
	left:20%;
}
.background_top_strip{
	background-image:url("img/Iran_l2_222.jpg");
	background-image: -webkit-image-set(url("img/Iran_l2_222.webp") 1x,
url("img/Iran_l2_222.webp") 2x);background-image: image-set(url("img/Iran_l2_222.jpg") 1x,
url("img/Iran_l2_222.jpg") 2x,url("img/Iran_l2_222.webp") 1x,
url("img/Iran_l2_222.webp") 2x);
	background-image: -webkit-image-set(url("img/Iran_l2_222.webp") 1x,
url("img/Iran_l2_222.webp") 2x);background-image: image-set(url("img/Iran_l2_222.jpg") 1x,
url("img/Iran_l2_222.jpg") 2x,url("img/Iran_l2_222.webp") 1x,
url("img/Iran_l2_222.webp") 2x);
	background-size:cover;
	background-position:left top;
}
.top_strip_status{
	font-family:"Montserrat-Bold";
	font-size:17px;
	font-weight:normal;
	color:#FEFFFF!important;
}
.ts_1{
	color:#FFFFFF!important;
	text-decoration:none;
}
.top_status_link{
	text-decoration:none;
	color:#FEFFFF!important;
	font-weight:normal;
	font-family:"Montserrat-Bold";
}
.img-bpp-0-style{
	width:914px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-1843:rgba(0,0,0,1.00);
	
	--swatch-var-1873:rgba(255,255,255,0.95);
	
	--swatch-var-4707:rgba(0,0,0,0.25);
	
	--swatch-var-4981:rgba(245,245,245,1.00);
	
	--swatch-var-1869:rgba(0,0,0,0.50);
	
	--swatch-var-452:rgba(255,255,255,0.67);
	
	--swatch-var-387:rgba(255,255,255,0.90);
	
	--swatch-var-2745:rgba(124,124,124,1.00);
	
	--swatch-var-5519:rgba(65,65,65,1.00);
	
	--swatch-var-5366:rgba(35,35,35,1.00);
	
	--swatch-var-4051:rgba(255,79,68,1.00);
	
	--swatch-var-5297:rgba(60,255,85,1.00);
	
	--swatch-var-4037:rgba(20,142,255,1.00);
	
	--swatch-var-6199:rgba(255,169,20,1.00);
	
	--swatch-var-3236:rgba(255,224,20,1.00);
	
	--swatch-var-541:rgba(182,152,114,1.00);
	
	--swatch-var-1977:rgba(255,65,105,1.00);
	
	--swatch-var-249:rgba(204,101,255,1.00);
	
	--swatch-var-988:rgba(68,212,237,1.00);
	
	--swatch-var-1920:rgba(99,97,242,1.00);
	
	--swatch-var-6544:rgba(108,224,219,1.00);
	
	--swatch-var-1718:rgba(90,205,250,1.00);
	
	--swatch-var-5314:rgba(162,162,167,1.00);
	
	--swatch-var-2209:rgba(65,156,255,1.00);
	
	--swatch-var-125:rgba(65,65,65,1.00);
	
	--swatch-var-4662:rgba(229,229,229,1.00);
	
	--swatch-var-6388:rgba(255,255,255,1.00);
	
	--swatch-var-7439:rgba(255,255,255,1.00);
	
	--swatch-var-3067:rgba(255,255,255,1.00);
	
	--swatch-var-3201:rgba(35,35,35,1.00);
	
	--swatch-var-7713:rgba(35,35,35,1.00);
	
	--swatch-var-4720:rgba(255,255,255,1.00);
	
	--swatch-var-2418:rgba(30,30,30,1.00);
	
	--swatch-var-6525:rgba(255,255,255,1.00);
	
	--swatch-var-704:rgba(255,255,255,0.25);
	
	--swatch-var-7870:rgba(70,70,70,1.00);
	
	--swatch-var-2246:rgba(255,255,255,1.00);
	
	--swatch-var-6240:rgba(33,33,33,1.00);
	
	--swatch-var-336:rgba(40,40,40,1.00);
	
	--swatch-var-7563:rgba(30,30,30,1.00);
	
	--swatch-var-1475:rgba(105,105,105,1.00);
	
	--swatch-var-6632:rgba(70,70,70,1.00);
	
	--swatch-var-7074:rgba(18,18,18,1.00);
	
	--swatch-var-5525:rgba(255,255,0,1.00);
	
	--swatch-var-3597:rgba(60,60,60,1.00);
	
	--swatch-var-1166:rgba(229,229,229,1.00);
	
	--swatch-var-5588:rgba(255,255,255,0.25);
	
	--swatch-var-2346:rgba(229,229,229,1.00);
	
	--swatch-var-2560:rgba(65,65,65,1.00);
	
	--swatch-var-7212:rgba(103,103,103,1.00);
	
	--swatch-var-596:rgba(140,140,140,1.00);
	
	--swatch-var-2090:rgba(0,0,0,1.00);
	
	--swatch-var-1060:#008E00;
	
	--swatch-var-5433:#FF2600;
	
	--swatch-var-4138:rgba(254,108,3,1.00);
	
	--swatch-var-2629:rgba(255,147,0,1.00);
	
	--swatch-var-7003:rgba(0,0,0,1.00);
	
	--swatch-var-2739:rgba(4,51,255,1.00);
	
	--swatch-var-838:rgba(170,121,66,1.00);
	
	--swatch-var-1092:rgba(0,253,255,1.00);
	
	--swatch-var-436:rgba(0,249,0,1.00);
	
	--swatch-var-2393:rgba(255,64,255,1.00);
	
	--swatch-var-332:rgba(255,147,0,1.00);
	
	--swatch-var-3559:rgba(148,33,146,1.00);
	
	--swatch-var-7131:rgba(255,38,0,1.00);
	
	--swatch-var-1124:rgba(255,251,0,1.00);
	
	--swatch-var-7171:rgba(255,255,255,1.00);
	
}


/* Background colour styles */

.bgc-1873{
	background-color:var(--swatch-var-1873);
}
.bgc-4707{
	background-color:var(--swatch-var-4707);
}

/* Text colour styles */

.tc-1843{
	color:var(--swatch-var-1843)!important;
}
.tc-1873{
	color:var(--swatch-var-1873)!important;
}
.tc-5519{
	color:var(--swatch-var-5519)!important;
}
.tc-4138{
	color:var(--swatch-var-4138)!important;
}

/* Button colour styles */

.btn-c-1843{
	background:var(--swatch-var-1843);
	color:#FFFFFF!important;
}
.btn-c-1843:hover{
	background:#000000!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-1843{
	color:var(--swatch-var-1843)!important;
}
.ltc-1843:hover{
	color:#000000!important;
}

/* Bloc image backgrounds */

.bg-Dubrovnik{
	background-image:url("img/Dubrovnik.jpg");
	background-image: -webkit-image-set(url("img/Dubrovnik.webp") 1x,
url("img/Dubrovnik.webp") 2x);background-image: image-set(url("img/Dubrovnik.jpg") 1x,
url("img/Dubrovnik.jpg") 2x,url("img/Dubrovnik.webp") 1x,
url("img/Dubrovnik.webp") 2x);
}
.bg-footer-1-cropped{
	background-image:url("img/footer_1_cropped.jpg");
	background-image: -webkit-image-set(url("img/footer_1_cropped.webp") 1x,
url("img/footer_1_cropped.webp") 2x);background-image: image-set(url("img/footer_1_cropped.jpg") 1x,
url("img/footer_1_cropped.jpg") 2x,url("img/footer_1_cropped.webp") 1x,
url("img/footer_1_cropped.webp") 2x);
}
.bg-Iran-3{
	background-image:url("img/Iran_3.jpg");
	background-image: -webkit-image-set(url("img/Iran_3.webp") 1x,
url("img/Iran_3.webp") 2x);background-image: image-set(url("img/Iran_3.jpg") 1x,
url("img/Iran_3.jpg") 2x,url("img/Iran_3.webp") 1x,
url("img/Iran_3.webp") 2x);
}
.bg-Iran-l2-222{
	background-image:url("img/Iran_l2_222.jpg");
	background-image: -webkit-image-set(url("img/Iran_l2_222.webp") 1x,
url("img/Iran_l2_222.webp") 2x);background-image: image-set(url("img/Iran_l2_222.jpg") 1x,
url("img/Iran_l2_222.jpg") 2x,url("img/Iran_l2_222.webp") 1x,
url("img/Iran_l2_222.webp") 2x);
	background-image: -webkit-image-set(url("img/Iran_l2_222.webp") 1x,
url("img/Iran_l2_222.webp") 2x);background-image: image-set(url("img/Iran_l2_222.jpg") 1x,
url("img/Iran_l2_222.jpg") 2x,url("img/Iran_l2_222.webp") 1x,
url("img/Iran_l2_222.webp") 2x);
}

/* = Custom Bric Data
-------------------------------------------------------------- */


/* = Additional CSS
-------------------------------------------------------------- */
.google-map {
     padding-bottom: 50%;
     position: relative;
}

.google-map iframe {
     height: 100%;
     width: 100%;
     left: 0;
     top: 0;
     position: absolute;
}


/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item{transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;overflow: hidden;}
.toggled-item-hidden{padding-top:0!important;padding-bottom:0!important;border-top:0!important;border-bottom:0!important;outline:0!important;opacity: 0;}
.object-hidden{display:none;}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}


@media (max-width: 991px){
	.h2-style{
		font-size:35px;
	}
	.img-10-style{
		height:600px;
	}
	.h1-bloc-6-style{
		font-size:44px;
	}
	.big{
		font-size:40px;
		font-family:"Montserrat-Bold";
		font-weight:normal;
		text-indent:auto;
	}
	.bloc-divider-b-fill{
		height:60px;
	}
	.img-wings-b-gr-style{
		width:340px;
	}
	.mt-md-0{
	}
	.h1-bloc-10-style{
		font-size:40px;
	}
	.h2-4-style{
		font-size:40px;
	}
	.h2-6-style{
		font-size:40px;
	}
	.h2-bloc-10-style{
		font-size:3px;
	}
	.row-bloc-10-style{
		width:100%;
	}
	.divider-style{
		height:2px;
		background-color:var(--swatch-var-1873);
	}
	.divider-background-color{
		background-color:var(--swatch-var-1873);
	}
	.divider-bloc-11-background-color{
		background-color:var(--swatch-var-1873);
		width:80%;
		margin-left:auto;
		margin-right:auto;
	}
	.find-out-more{
		font-size:19px;
	}
	.partone-mid{
		font-size:35px;
		font-family:"Montserrat-Bold";
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.header-main{
		font-size:35px;
	}
	.h2-part-one-style{
		font-size:35px;
		font-weight:normal;
	}
	.des-3{
		font-size:30px;
	}
	.h2-main-page{
		font-size:38px;
		font-family:"Montserrat-Medium";
		font-weight:normal;
		text-indent:auto;
	}
	.img-9-style{
		height:500px;
		width:500px;
	}
	.fom-md{
	}
	.h6-style{
	}
	.partone-mob{
		font-family:"Montserrat-Bold";
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.footer-menu-md{
		font-size:11px;
		text-decoration:none;
		font-family:"Montserrat-Medium";
		font-weight:normal;
	}
	.h6-bloc-11-style{
		font-size:12px;
	}
	.footer-logo-lg{
		height:80px;
		width:80px;
	}
	.footer-logo-md{
		height:60px;
		width:60px;
	}
	.img-footer-style-lg{
		width:40px;
		height:40px;
	}
	.bloc-style{
		height:25px;
	}
	.bloc-footer-style{
		height:25px;
	}
	.bloc-0-style{
		height:25px;
	}
	.bloc-0-footer-style{
		height:25px;
	}
	.bloc-8161-style{
		height:25px;
	}
	.divider-bloc-11-style{
		width:86.31%;
	}
	.img-footer-style-md{
		width:20px;
		height:20px;
	}
	.footer-logo-small{
		height:80px;
		width:80px;
	}
	.footer-header-md{
		font-size:9px;
		font-weight:normal;
		font-family:"Montserrat-Medium";
		line-height:auto;
		letter-spacing:auto;
	}
	.copyright-md{
		font-size:8px;
		font-weight:normal;
		font-family:"Montserrat-Medium";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.footer-menu-small{
		font-size:11px;
		text-decoration:none;
	}
	.img-footer-style-small{
		width:20px;
		height:20px;
	}
	.copyright-small{
		font-size:8px;
	}
	header{
	}
	.h4-style-md-sm{
		font-size:12px;
		font-family:"Montserrat-Medium";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
		font-weight:normal;
	}
	.h6-jump-to-style{
		font-family:"Montserrat-Bold";
		font-size:12px;
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.sub-header{
		letter-spacing:1px;
	}
	.sub-{
	}
	.teamnames{
		font-weight:normal;
		font-family:"Montserrat-Medium";
	}
	.divider-19017-background-color{
		width:94%;
		margin-left:auto;
		margin-right:auto;
	}
	.black-style{
		font-weight:normal;
	}
	.divider-8277-background-color{
		width:94%;
		margin-left:auto;
		margin-right:auto;
	}
	.h3--at80knots-style{
		width:62.82%;
	}
	.h3-61-style{
		width:100%;
	}
	.h3-62-style{
		width:100%;
	}
	.h3-63-style{
		width:100%;
	}
	.h3-64-style{
		width:100%;
	}
	.facebook-logo{
	}
	.social-link{
	}
	.img-64-style{
		width:40px;
		height:40px;
	}
	.instagram-logo{
	}
	.twitter-icon{
	}
	.tiktok-icon{
	}
	.youtube-link{
	}
	.form-text{
		font-family:"Montserrat-Medium";
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.form-te{
	}
	.h3-69-style{
		font-size:23px;
	}
	.h3-68-style{
		font-size:23px;
	}
	.h3-67-style{
		font-size:23px;
	}
	.h3-66-style{
		font-size:23px;
	}
	.h3-65-style{
		font-size:23px;
	}
	.semi-big{
		font-size:40px;
		font-family:"Montserrat-Bold";
		font-weight:normal;
		text-indent:auto;
	}
	.divider-45697-background-color{
		background-color:var(--swatch-var-1873);
	}
	.img-header-logo-t-style{
		height:88px;
		width:280px;
	}
	.main-log-x{
		background-image:url("img/header_logo_txt.png");
	background-image: -webkit-image-set(url("img/header_logo_txt.webp") 1x,
url("img/header_logo_txt.webp") 2x);background-image: image-set(url("img/header_logo_txt.png") 1x,
url("img/header_logo_txt.png") 2x,url("img/header_logo_txt.webp") 1x,
url("img/header_logo_txt.webp") 2x);
	background-image: -webkit-image-set(url("img/header_logo_txt.webp") 1x,
url("img/header_logo_txt.webp") 2x);background-image: image-set(url("img/header_logo_txt.png") 1x,
url("img/header_logo_txt.png") 2x,url("img/header_logo_txt.webp") 1x,
url("img/header_logo_txt.webp") 2x);
		background-size:contain;
		background-repeat:no-repeat;
		background-position:left center;
	}
	.menu-master{
		font-size:13px;
	}
	.test{
		font-size:14px;
	}
	.banner-2{
	}
	.img-world-colo-style{
		width:55px;
	}
	.img-new-logo--style{
		width:120px;
	}
	.lp-link-sub{
		font-size:20px;
	}
	.lp-link-main{
		font-size:22px;
	}
	.copyright-lp{
		font-size:14px;
	}
	.direct-link{
		font-family:"Montserrat-Medium";
		font-size:16px;
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
		color:var(--swatch-var-1843)!important;
	}
	.html-widget-style{
		height:350px;
	}
	.status-para-b{
		font-family:"Montserrat-Bold";
		font-weight:normal;
	}
	.status-para{
		font-family:"Montserrat-Medium";
		font-weight:normal;
	}
	.bp-sub-head{
		text-align:left;
	}
	.align-w{
		text-align:center;
	}
	.pos-4{
		bottom:58%;
		right:12%;
	}
	.info-overlay{
		max-width:80%;
		top:-60px;
		position:absolute;
	}
	.pos-5{
		bottom:57%;
		right:77%;
	}
	.pos-1{
		bottom:51%;
		left:55%;
	}
	.pos-3{
		right:56%;
		top:41%;
	}
	
}

@media (max-width: 767px){
	.h2-style{
		font-size:35px;
		font-family:"Montserrat-Bold";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.img-10-style{
		height:475px;
		width:475px;
	}
	.big{
		font-size:35px;
	}
	.carousel-style{
		width:54.37%;
	}
	.h1-bloc-6-style{
		font-size:29px;
	}
	.bloc-divider-b-fill{
		height:40px;
	}
	.img-wings-b-gr-style{
		width:275px;
	}
	.h3-style{
		font-size:18px;
		font-family:"Montserrat-Bold";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.h3-the-trip ↓-style{
		font-size:18px;
		font-family:"Montserrat-Bold";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.h3-the-build-style-sm{
		font-size:18px;
		color:var(--swatch-var-1873)!important;
		font-family:"Montserrat-Bold";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.h1-bloc-10-style{
		font-size:35px;
		font-family:"Montserrat-Bold";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.h2-bloc-10-style{
		font-size:35px;
	}
	.h2-4-style{
		font-size:40px;
		font-family:"Montserrat-Bold";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.h2-6-style{
		font-size:40px;
	}
	.divider-bloc-12-background-color{
		background-color:var(--swatch-var-1873);
	}
	.h2-main-page{
		font-size:28px;
	}
	.img-9-style{
		width:450px;
		height:450px;
	}
	.h3-find-out-more-style{
		color:var(--swatch-var-1873)!important;
		font-size:15px;
		font-family:"Montserrat-Bold";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.partone-mid{
	}
	.fom-md{
	}
	.bloc-divider-b-0-style{
		height:40px;
		fill:var(--swatch-var-1873);
	}
	.main-menu{
		color:var(--swatch-var-1873)!important;
	}
	.divider-8277-background-color{
		height:2px;
		background-color:var(--swatch-var-1843);
	}
	.h2-modifications-style{
		font-weight:normal;
		font-size:24px;
	}
	.sub-header{
		font-weight:normal;
		letter-spacing:auto;
	}
	.h4-style-md-sm{
		font-weight:normal;
		font-family:"Montserrat-Medium";
	}
	.h6-jump-to-style{
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
		font-family:"Montserrat-Bold";
	}
	.black-style{
		font-weight:normal;
	}
	.footer-header-small{
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		text-align:center;
		font-size:12px;
	}
	.footer-menu-small{
		font-weight:normal;
		font-family:"Montserrat-Medium";
	}
	.copyright-small{
		font-weight:normal;
		font-family:"Montserrat-Medium";
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.page-header-small{
		font-weight:normal;
	}
	.test{
		color:var(--swatch-var-1873)!important;
	}
	.h3-64-style{
		width:58.44%;
	}
	.h3-63-style{
		width:100%;
	}
	.h3-62-style{
		width:57.5%;
	}
	.h3-61-style{
		width:57.19%;
	}
	.h3--at80knots-style{
		width:57.19%;
	}
	.semi-big{
		font-size:35px;
	}
	.divider-45697-background-color{
		background-color:var(--swatch-var-1873);
	}
	.img-header-sm-xs-style{
		height:130px;
	}
	.link-bloc-54-style{
		width:69.14%;
	}
	.h2-bloc-54-style{
		width:43.82%;
	}
	.img-new-logo--style{
		width:75px;
	}
	.img-world-colo-style{
		width:50px;
	}
	.copyright-lp{
		font-family:"Montserrat-Medium";
		font-weight:normal;
		color:var(--swatch-var-1843)!important;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.lp-link-main{
		font-size:20px;
	}
	.lp-link-sub{
		font-size:18px;
	}
	.direct-link{
		font-family:"Montserrat-Medium";
		font-size:16px;
		font-weight:normal;
		color:var(--swatch-var-1843)!important;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.html-widget-style{
		height:300px;
	}
	.status-para-b{
		font-family:"Montserrat-Bold";
		font-weight:normal;
	}
	.status-para{
		font-family:"Montserrat-Medium";
		font-weight:normal;
	}
	.p-bloc-80-style{
		font-size:18px;
	}
	.exta-align{
		text-align:justify;
	}
	.status_header_date{
		text-align:left;
	}
	.introducing-sr{
		font-size:16px;
	}
	.map-container{
	}
	.point-icon{
		width:20px;
		padding:3px 3px 3px 3px;
	}
	.pos-4{
		bottom:58%;
		right:12%;
	}
	.info-overlay{
		padding-top:15px;
		max-width:80%;
		top:-100px;
	}
	.h4-style{
		font-size:14px;
	}
	.desc{
		font-size:12px;
	}
	.pos-5{
		right:77%;
		bottom:58%;
	}
	.pos-1{
		bottom:51%;
		left:56%;
	}
	.pos-3{
		right:57%;
		top:43%;
	}
	
}

@media (max-width: 575px){
	.img-10-style{
		height:270px;
		background-size:cover;
	}
	.h1-bloc-6-style{
		font-size:30px;
	}
	.big{
		font-size:30px;
		font-weight:normal;
		letter-spacing:auto;
		word-spacing:auto;
		font-display:swap;
	}
	.img-wings-b-gr-style{
		width:145px;
	}
	.bloc-divider-b-fill{
		width:100%;
		height:30px;
	}
	.h1-bloc-10-style{
		font-size:25px;
		font-family:"Montserrat-Bold";
		font-weight:normal;
		color:var(--swatch-var-1873)!important;
		letter-spacing:auto;
		word-spacing:auto;
		line-height:auto;
	}
	.h2-4-style{
		font-size:30px;
		font-family:"Montserrat-Bold";
		font-weight:normal;
		color:var(--swatch-var-1873)!important;
		line-height:auto;
		letter-spacing:auto;
		word-spacing:auto;
	}
	.h2-6-style{
		font-size:30px;
	}
	.h2-bloc-10-style{
		font-size:25px;
	}
	.h3-the-build-style-sm{
		width:100%;
	}
	.h2-style{
		font-size:25px;
		width:100%;
		font-family:"Montserrat-Bold";
		font-weight:normal;
		text-align:center;
		line-height:auto;
		letter-spacing:auto;
		word-spacing:auto;
	}
	.h3-2-style{
		font-size:18px;
	}
	.h3-3-style{
		font-size:18px;
		text-decoration:none;
		color:var(--swatch-var-1873)!important;
		font-family:"Montserrat-Bold";
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		word-spacing:auto;
	}
	.h3-the-team ↓-style{
		font-size:18px;
	}
	.partone-mid{
		font-size:30px;
	}
	.img-daniel-cropp-style{
		width:49px;
	}
	.img-jen-cropped-style{
		width:74px;
	}
	.row-33900-style{
		width:100%;
	}
	.h3-bloc-8-style{
		font-size:30px;
	}
	.partone-mob{
		font-size:30px;
		font-family:"Montserrat-Bold";
		font-weight:normal;
		color:var(--swatch-var-1843)!important;
		line-height:auto;
		letter-spacing:auto;
		word-spacing:auto;
		text-indent:auto;
		font-display:block;
	}
	.h3-find-out-more-style{
		font-size:15px;
	}
	.divider-bloc-12-background-color{
		background-color:var(--swatch-var-1873);
		width:80%;
		margin-left:auto;
		margin-right:auto;
	}
	.img-9-style{
		height:270px;
	}
	.bloc-divider-b-style{
		height:40px;
		fill:var(--swatch-var-1873);
	}
	.h6-find-out-more-style{
		font-size:14px;
	}
	.h3-3-style:hover{
		color:var(--swatch-var-4981)!important;
	}
	.h6-2-style{
		font-family:"Montserrat-Bold";
		font-size:12px;
		font-weight:normal;
		color:var(--swatch-var-1873)!important;
		line-height:auto;
		letter-spacing:auto;
		word-spacing:auto;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		font-family:"Montserrat";
	}
	.row-bloc-10-style{
		width:100%;
	}
	.btn-meet-everyone-style{
		font-family:"Montserrat-Bold";
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		word-spacing:auto;
	}
	.teamnames{
		font-family:"Montserrat-Bold";
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		word-spacing:auto;
		text-indent:auto;
	}
	.black-style{
	}
	.footer-logo-small{
		width:60px;
		height:60px;
	}
	.divider-bloc-11-style{
		margin-left:auto;
		margin-right:auto;
	}
	.list-style{
		width:100%;
	}
	.row-footer-style{
		width:91.11%;
	}
	.footer-header-md{
		font-size:12px;
	}
	.footer-header-small{
		font-size:8px;
		text-align:center;
		font-family:"Montserrat-Medium";
	}
	.footer-menu-small{
		text-decoration:none;
	}
	.img-footer-style-small{
	}
	.copyright-small{
		font-family:"Montserrat-Medium";
	}
	.page-header-small{
		font-size:50px;
	}
	.header-main{
		font-size:28px;
	}
	.divider-8277-background-color{
		background-color:var(--swatch-var-1843);
		width:80%;
		margin-left:auto;
		margin-right:auto;
	}
	.h3--at80knots-style{
		font-size:18px;
	}
	.h3-61-style{
		font-size:18px;
	}
	.h3-62-style{
		font-size:18px;
	}
	.h3-63-style{
		font-size:18px;
		width:100%;
	}
	.h3-64-style{
		font-size:18px;
	}
	.btn-submit-style{
		width:44.62%;
		font-family:"Montserrat-Medium";
		font-weight:normal;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.semi-big{
		font-size:30px;
		font-weight:normal;
		letter-spacing:auto;
		word-spacing:auto;
		font-display:swap;
	}
	.p-bloc-80-style{
		font-size:17px;
	}
	.divider-45697-background-color{
		background-color:var(--swatch-var-1873);
	}
	.img-header-logo-t-style{
		height:50px;
	}
	.h6-jump-to-style{
		font-family:"Montserrat-Bold";
	}
	.img-01-pr-style{
		width:45px;
	}
	.img-02-bui-style{
		width:45px;
	}
	.img-03-spe-style{
		width:45px;
	}
	.img-04-progre-style{
		width:45px;
	}
	.build_sub_menu{
		font-size:13px;
		text-align:center;
	}
	.h2-bloc-54-style{
		width:75.61%;
	}
	.img-new-logo--style{
		width:65px;
	}
	.lp-link-main{
		font-size:18px;
	}
	.lp-link-sub{
		font-size:18px;
	}
	.img-world-colo-style{
		width:45px;
	}
	.copyright-lp{
		font-size:10px;
		text-align:center;
	}
	.direct-link{
		font-family:"Montserrat-Medium";
		font-size:14px;
		font-weight:normal;
		color:var(--swatch-var-1843)!important;
		line-height:auto;
		letter-spacing:auto;
		text-indent:auto;
		word-spacing:auto;
	}
	.html-widget-style{
		height:170px;
	}
	.h2-modifications-style{
		font-size:22px;
	}
	.link-status-main-style{
		font-weight:normal;
		font-family:"Montserrat-Medium";
		font-size:16px;
	}
	.h3-part-one-build-style{
		font-size:18px;
	}
	.h3-part-two-fly-style{
		font-size:18px;
	}
	.status_header_text{
		font-size:23px;
	}
	.status-link{
		font-size:14px;
	}
	.status_header{
		font-size:20px;
	}
	.status-para-b{
		font-size:12px;
		font-family:"Montserrat-Bold";
		font-weight:normal;
	}
	.status-para{
		font-family:"Montserrat-Medium";
		font-size:12px;
		color:var(--swatch-var-1843)!important;
		font-weight:normal;
	}
	.exta-align{
		text-align:justify;
	}
	.status_header_date{
		font-size:20px;
		text-align:left;
	}
	.footer-link{
		text-align:center;
	}
	.introducing-sr{
		font-size:14px;
	}
	.nynja-bold{
		font-size:32px;
	}
	.align-w{
		text-align:justify;
	}
	.info-overlay{
		top:-150px;
	}
	.show-info:hover{
	}
	.show-info:active{
	}
	.show-info:focus{
	}
	.show-info:visited{
	}
	.show-info{
		opacity:95%;
	}
	.pos-4{
		bottom:57%;
		right:8%;
	}
	.pos-2{
		top:45%;
		right:28%;
	}
	.pos-5{
		right:76%;
		bottom:53%;
	}
	.pos-1{
		bottom:44%;
		left:53%;
	}
	.pos-3{
		right:54%;
		top:41%;
	}
	.ts_1{
		font-size:12px;
	}
	.ts_2{
		font-size:14px;
	}
	
}

