@charset "UTF-8";
/* CSS Document */

/* animations */
@-webkit-keyframes zoom {
    0%{-webkit-transform: scale(1,1); opacity: 0.6;}
    100% {-webkit-transform: scale(1.1,1.1); opacity: 1;}
}
@keyframes zoom {
   0%{transform: scale(1,1); opacity: 0.6;}
   100% {transform: scale(1.1,1.1); opacity: 1;}
}
@-webkit-keyframes zoomSmall {
    0%{-webkit-transform: scale(1,1); opacity: 0.6;}
    100% {-webkit-transform: scale(1.1,1.1); opacity: 1;}
}
@keyframes zoomSmall {
   0%{transform: scale(1,1); opacity: 0.6;}
   100% {transform: scale(1.1,1.1); opacity: 1;}
}
@-webkit-keyframes zoomSimple {
    0%{-webkit-transform: scale(1,1);}
    100% {-webkit-transform: scale(1.1,1.1);}
}
@keyframes zoomSimple {
   0%{transform: scale(1,1);}
   100% {transform: scale(1.1,1.1);}
}
@-webkit-keyframes zoomMarker {
    0%{
    	-webkit-transform: scale(0.7,0.7);
    	opacity: 0.5;
    }
    50% {
    	-webkit-transform: scale(1,1);
    	opacity: 1;
    }
    100%{
    	-webkit-transform: scale(0.7,0.7);
    	opacity: 0.5;
    }
}
@keyframes zoomMarker {
    0%{
    	-webkit-transform: scale(0.7,0.7);
    	opacity: 0.5;
    }
    50% {
    	-webkit-transform: scale(1,1);
    	opacity: 1;
    }
    100%{
    	-webkit-transform: scale(0.7,0.7);
    	opacity: 0.5;
    }
}

/* selection */
::-moz-selection {color: #fff; background: #006eb7;}
::selection {color: #fff; background: #006eb7;}

/* --------------------------------------------- ------ --------------------------------------------- */
/* --------------------------------------------- GLOBAL --------------------------------------------- */
/* --------------------------------------------- ------ --------------------------------------------- */
html, body,
.main, .post, .feed{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
body{
	font-family: 'Heebo', sans-serif;
	background-color: #03182a;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
p{
	font-family: 'Heebo', sans-serif;
	color: rgba(0, 0, 0, 0.8);
	font-size: 18px;
	letter-spacing: 1px;
	margin: 0;
	line-height: 1.4;
}
p.small{
	font-size: 8px !important;
	text-transform: uppercase;
	opacity: 0.4;
	font-weight: 900;
}
.blue{color: #03182a;}
.white{color: #fff;}
.red{color: #006eb7;}
h1, h2{
	font-family: 'Heebo', sans-serif;
	font-size: 56px;
	margin: 0;
}
h3{
	font-family: 'Heebo', sans-serif;
	text-transform: uppercase;
	margin: 0;
}
.btn{
	text-decoration: none;
	padding: 14px 0;
	cursor: pointer;
	border:none;
	border-radius: 2px;
	min-width: 12%;
	margin: 0 auto;
	display: block;
	background-color: rgba(255, 255, 255, 0.2);
	opacity: 0.9;
	position: relative;
	font-size: 11px;
	letter-spacing: 2px;
	font-family: 'Heebo', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.btn:before{
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	right: 50%;
	bottom: 0;
	background: #fff;
	height: 1px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.btn:hover:before{
	left: 0;
	right: 0;
}
.btn:hover{
	opacity: 1;
	border-radius: 0;
}
.btn.blue{
	background-color: #03182a;
	opacity: 1;
}
.btn.blue:hover{
	background-color: #172a39;
	opacity: 1;
}
.btn.blue a{
	color: #fff;
}
.btn.blue:before{
	background: #006eb7;
}
.btn.white:hover{
	background-color: rgba(255, 255, 255, 0.3);
}
.btn a.white{
	color: #fff;
}
.btn.blue.light{
	background-color: transparent;
}
.btn.blue.light a{
	color: #03182a;
	letter-spacing: normal;
}
.btn.blue.light:hover a{
	letter-spacing: normal;
}
.btn.blue.light.border{
	background-color: transparent;
	border: 1px solid #03182a;
}
.btn.blue.light.border:hover a{
	color: #fff;
}
.btn.blue.light.border:before{
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	right: 0;
	bottom: 0;
	background: #03182a;
	height: 0;
	width: 100%;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.btn.blue.light.border:hover:before{
	height: 100%;
}
.btn a,
.btn span{
	padding: 12px;
	display: block;
	text-decoration: none;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.gradient{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#03182a+0,cf353c+100&0.7+0,1+100 */
	background: -moz-linear-gradient(top,  rgba(3,24,42,0) 0%, rgba(207,53,60,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(3,24,42,0) 0%,rgba(207,53,60,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(3,24,42,0) 0%,rgba(207,53,60,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.gradientBlue{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#03182a+0,cf353c+100&0.7+0,1+100 */
	background: -moz-linear-gradient(top,  rgba(3,24,42,0) 0%, rgba(3,24,42,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(3,24,42,0) 0%,rgba(3,24,42,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(3,24,42,0) 0%,rgba(3,24,42,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.gradientLight{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#03182a+0,cf353c+100&0.7+0,1+100 */
	background: -moz-linear-gradient(top,  rgba(3,24,42,0) 0%, rgba(3,24,42,0.5) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(3,24,42,0) 0%,rgba(3,24,42,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(3,24,42,0) 0%,rgba(3,24,42,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.shareBtn{
	position: fixed;
	display: table;
	height: 100%;
}
.shareBtn .content{
	vertical-align: middle;
	display: table-cell;
}
.shareBtn a{
	background: #fff;
	padding: 8px 10px;
	display: block;
	color: #03182a;
	text-decoration: none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.shareBtn .fbButton:hover,
.shareBtn .twButton:hover{
	color: #fff;
}
.shareBtn .fbButton:hover{
	background-color: #3b5998;
}
.shareBtn .twButton:hover{
	background-color: #4099FF;
}
.shareBtn a:first-child{
	border-radius: 0 2px 0 0;
}
.shareBtn a:last-child{
	border-radius: 0 0 2px 0;
}

/* --------------------------------------------- ------ --------------------------------------------- */
/* --------------------------------------------- HEADER --------------------------------------------- */
/* --------------------------------------------- ------ --------------------------------------------- */
.midnightHeader.white {
	background: rgba(255, 255, 255, 0.95);
}.midnightHeader.whiteNoBG {
	background: rgba(255,255,255,0);
}
.midnightInner{
	padding: 10px 20px;
}
header .midnightHeader.white .logo,
header .midnightHeader.white h2,
header .midnightHeader.white .socialBtn a,
header .midnightHeader.whiteNoBG .logo,
header .midnightHeader.whiteNoBG h2,
header .midnightHeader.whiteNoBG .socialBtn a,
.singleMap header .logo,
.singleMap header h2,
.singleMap header .socialBtn a{
	color: #03182a !important;
}
header .midnightHeader.white .logo:hover,
header .midnightHeader.white .socialBtn a:hover,
header .midnightHeader.whiteNoBG .logo:hover,
header .midnightHeader.whiteNoBG .socialBtn a:hover,
.singleMap header .logo:hover,
.singleMap header .socialBtn a:hover{
	opacity: 0.5;
}
header .midnightHeader.hidden{
	display: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.singleMap header{
	border-bottom: 1px solid rgba(3, 24, 42, 0.15);
}
header {
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	height: 59px !important;
	width: 100%;

	z-index: 19;
	position: fixed;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
header .logo{
	display: inline-block;
	vertical-align: top;
	margin-top: -5px;
    font-family: 'Heebo', sans-serif;
    color: #fff;
	font-weight: 900;
	font-size: 19px;
	padding: 0 15px 0 0;
	margin: 4px 0 0 0;
	text-decoration: none;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
header .logo:hover{
	color: rgba(255,255,255,0.5);
}
header .logo span{
	color: #006eb7;
}
header h2{
	font-family: 'Heebo', sans-serif;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	margin: 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	line-height: 1.6;
	margin-top: 12px;
}
header .socialBtn{
	margin: 7px 0 0 0;
	display: inline-block;
	vertical-align: middle;
	float: right;
}
header .socialBtn a{
	color: rgba(255,255,255,1);
	text-decoration: none;
	font-size: 14px;
	margin-right: 4px;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
header .socialBtn a:hover{
	color: rgba(255,255,255,0.5);
}
header .mapBtn{
	text-align: center;
}
header .mapBtn a{
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}

/* --------------------------------------------- ----- --------------------------------------------- */
/* --------------------------------------------- MODAL --------------------------------------------- */
/* --------------------------------------------- ----- --------------------------------------------- */
.bottomLinks{
	position: fixed;
	display: block;
	bottom: 10px;
	right: 10px;
	z-index: 20;
}
a#about,
a#insta{
	text-decoration: none;
	color: rgba(3, 24, 42, 0.5);
	background-color: #fff;
	-moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	padding: 5px 13px 6px 13px;

	cursor: pointer;
	font-size: 12px;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	display: inline-block;
	vertical-align: bottom;
}
a#insta{
	padding: 6px 9px 7px 9px;
	margin-right: 4px;
	font-size: 11px;
	font-weight: bold;
}
a#about:hover,
a#insta:hover{
	color: rgba(3, 24, 42, 1);
}
/* The Modal (background) */
.modal {
	display: none;
	position: fixed;
	z-index: 99999999;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(255, 255, 255, 0.98);

    -webkit-animation-name: animatefadein;
    -webkit-animation-duration: 0.3s;
    animation-name: animatefadein;
    animation-duration: 0.3s
}
.modal.about{
	background-color: rgba(3, 24, 42, 0.98);
}

/* Modal Content */
.modal-content{
	width: 28%;
	display: block;
	padding: 5% 0;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	top: 15%;
	bottom: 15%;
	left: 0;
	right: 0;
}
.modal-content:before,
.modal-content:after{
	content: '';
	height: 1px;
	width: 30%;
	margin: 0 auto;
	display: block;
	background-color: #172a39;
}
.modal-content:before{
	margin-bottom: 40px;
}
.modal-content:after{
	margin-top: 40px;
}
.modal-content span.profil{
	border-radius: 50px;
	height: 65px;
	width: 65px;
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
	border: 4px solid #172a39;
	position: relative;
}
.modal-content span.profil span a{
	position: absolute;
	border-radius: 50px;
	width: calc(100% - 42px);
	height: calc(100% - 42px);
	top: -3px;
	left: -3px;
	background-color: rgba(3, 24, 42, 0.8);
	border: 3px solid #fff;
	padding: 21px;
	opacity: 0;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.modal-content span.profil:hover span a{
	opacity: 1;
}
.modal-content span.profil:hover span a:after{
	display: none;
}
.modal-content span.profil img{
	height: 65px;
	width: 65px;
}
.modal.about p{
	color: #fff;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 10px;
}
.modal.about p strong span{
	color: #006eb7;
}
.modal.about a{
	position: relative;
	margin: 0 auto;
	width: 100%;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	text-align: center;
	font-weight: 600;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.modal.about a:hover{
}
.modal.about a:after{
	content: "";
	position: absolute;
	z-index: -1;
	left: 50%;
	right: 50%;
	bottom: 0;
	background: #006eb7;
	height: 1px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.modal.about a:hover:after{
	left: 0;
	right: 0;
}
.modal.about a span{
	position: absolute;
	font-family: 'Heebo', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	color: rgba(255,255,255,0);
	text-decoration: none;
	text-align: center;
	top: 0%;
	left: 0;
	right: 0;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.modal.about a:hover span{
	color: rgba(255,255,255,1);
	top: 35%;
}

/* Add Animation */
@-webkit-keyframes animatefadein {
    from {opacity:0}
    to {opacity:1}
}

@keyframes animatefadein {
    from {opacity:0}
    to {opacity:1}
}

/* The Close Button */
.modal .close {
	color: white;
	opacity: 1;
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 22px;
	font-weight: bold;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.modal .close:hover,
.modal .close:focus {
	opacity: 0.6;
    text-decoration: none;
    cursor: pointer;
}

/* --------------------------------------------- ----- --------------------------------------------- */
/* --------------------------------------------- INDEX --------------------------------------------- */
/* --------------------------------------------- ----- --------------------------------------------- */
body.home{
	background-color: #03182a;
}
body.home .wrap,
body.home .wrap .content{
	height: 100%;
}
body.home .gradient,
body.home .gradientLight,
body.home .gradientBlue{
	width: 100%;
	height: 60%;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	opacity: 0.9;
	z-index: 0
}
body.home header,
body.singleMap header{
	position: fixed;
	display: block;
	padding: 10px 20px;
	height: 39px !important;
	width: calc(100% - 40px);
}

/* ----- ---- ----- */
/* ----- HERO ----- */
/* ----- ---- ----- */
.hero{
	height: 100%;
	width: 100%;
	padding-top: 50px;
	display: table;
	overflow: hidden;
	position: relative;
}
.hero .siteTitle{
	margin-bottom: 40px;
	z-index: 1;
}
.hero .content{
	height: 100%;
	text-align: center;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
	padding: 0 10%;
}
.hero h1{
	font-size: 60px;
	letter-spacing: 2px;
	line-height: 1;
	font-weight: 100;
	color: rgba(3, 24, 42, 0.9);
}
.hero h1 span{
	color: #006eb7;
}
.hero .totalSection{
	text-transform: uppercase;
	font-family: 'Heebo', sans-serif;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 2px;
	color: rgba(3, 24, 42, 0.3);
}
.hero .totalSection i{
	height: 3px;
	width: 3px;
	margin: -2px 4px 0 4px;
	display: inline-block;
	vertical-align: middle;
	background-color: rgba(255,255,255,0.2);	
}
.hero .last{
	border: 1px solid rgba(255,255,255,0.2);
	width: 240px;
	height: 140px;
	margin: 0 auto;
	text-align: left;
	position: relative;
	border-radius: 2px;
	padding: 8px 15px;
}
.hero .last span.title{
	text-transform: uppercase;
	font-weight: 900;
	font-size: 12px;
	display: block;
	margin-bottom: 6px;
}
.hero .last a{
	opacity: 0.8;
	position: relative;
	display: block;
	height: calc(100% - 32px);
	width: 100%;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.hero .last a:hover{
	opacity: 1;
}
.hero .btn{
	margin-bottom: 30px;
	z-index: 1;
}

/* ----- ---- ----- */
/* ----- FEED ----- */
/* ----- ---- ----- */
/*.home .wrap .content:hover .country{
	width:20%;
}*/
.country{
	width: calc(50% - 1px);
	height: 50%;
	display: inline-table;
	vertical-align: middle;
	position: relative;
	margin: 0 0 0 0;
	background-color: #03182a;
	border-right: 1px solid #03182a;
	overflow: hidden;
	background-position: center;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.country:last-child{
	width: 50%;
	border-right: none;
}
.country a,
.country a:visited{
	text-decoration: none;
}
.country h2{
	font-size: 54px;
	line-height: 1;
	font-weight: 100;
}
.country h3{
	font-size: 11px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.5);
	opacity: 0;
	margin-bottom: -30px;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.country button{
	opacity: 0;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	padding: 0;
}
.country .container{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	display: table;
	z-index: 1;
}
.country .container .content{
	display: table-cell;
	vertical-align: middle;
	color: #fff;
}
.country .background{	
	transform: scale(1,1);

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.country:hover .background{
   	transform: scale(1.03,1.03);
	/*-webkit-animation: zoomSimple 2s;
	animation: zoomSimple 2s;
	animation-fill-mode: forwards;*/
	z-index: 0;
	opacity: 1;
}
.country:hover h3{
	opacity: 1;
	margin-bottom: 30px;
}
.country:hover button{
	opacity: 1;
}
.country .content{	
	background-color: rgba(3, 24, 42, 0.2);

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.country:hover .content{
	background-color: rgba(3, 24, 42, 0.4);
}
.country:hover .gradientBlue{
	opacity: 0;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.country .background{
	height: 100%;
	width: 100%;
	display: table;
	z-index: 0;
	opacity: 0.8;
	overflow: hidden;
}

video{
	position: fixed;
	top: 0;
	z-index: -2;
	display: table-cell;
	vertical-align: middle;
	opacity: 0.8;
	background-color: transparent;

    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;

}
.infoVideo{
	position: absolute;
	left: 25px;
	bottom: 25px;
	color: #fff;
	text-decoration: none;
	font-size: 9px;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(255,255,255,0.5);
	opacity: 0.5;
	z-index: 1;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.infoVideo i{
	font-style: initial;
	color: rgba(255,255,255,0.6);
}
.infoVideo:hover{
	opacity: 1;
}

/* --------------------------------------------- ----------- --------------------------------------------- */
/* --------------------------------------------- DESTINATION --------------------------------------------- */
/* --------------------------------------------- ----------- --------------------------------------------- */
body.destination{
	background-color: #fff;
}
.destination .background{
	position: absolute;
	top: 0;
	z-index: -1;
	height: 70%;
}
.destination .gradient,
.destination .gradientLight,
.destination .gradientBlue{
	position: absolute;
	height: 30%;
	width: 100%;
	bottom: 0;
}
.destination .hero{
	height: 70%;
	padding-bottom: 50px;
}
.destination .hero .typebloc{
	width: 25%;
}
.destination .intro{
	width: 70%;
	margin: 0 auto;
	background-color: #fff;
	padding: 3% 5%;
	margin-top: -50px;
}
.destination .intro .textBloc,
.destination .intro .mapBloc{
	height: 100%;
	display: inline-block;
	vertical-align: top;
}
.destination .intro .textBloc{
	width: 55%;
	margin-right: 5%;
}
.destination .intro .textBloc h1{
	font-size: 24px;
	margin-bottom: 8px;
	color:#172a39;
	font-weight: 900;
}
.destination .intro .textBloc h1 span.marker{
	background-image: url(images/custom-marker-circle-red.svg);
	height: 32px;
	width: 32px;
	display: inline-block;
	vertical-align: middle;
	margin: -4px 6px 0 0;

	/*-webkit-animation: zoomMarker 2s infinite;
	animation: zoomMarker 2s infinite;*/
	animation-duration: 3s;
}
.destination .intro .textBloc p{
	margin-bottom: 18px;
	font-size: 16px;
}
.destination .intro .textBloc .data{
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 1px;
}
.destination .intro .textBloc .data span{
	margin-right: 14px;
	padding-right: 16px;
	border-right: 1px solid rgba(23, 42, 57, 0.3);
	color: rgba(23, 42, 57, 0.5);
}
.destination .intro .textBloc .data span i{
	color: rgba(23, 42, 57, 1);
	font-size: 13px;
}
.destination .intro .textBloc .data span:last-child{
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
.destination .intro .mapBloc{
	width: 40%;
}
.destination .intro .mapBloc #map{
	height: 240px;
}
.mapboxgl-ctrl-attrib{
	display: none;
}
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl{
	margin: 0 10px 52px 0;
}
.mapboxgl-ctrl-group .mapboxgl-ctrl-icon{
	width: 28px !important;
	height: 31px !important;
	background-size: 80%;
	background-position: center center;
	background-repeat: no-repeat;
}
.destination .photosFeed{
	width: 80%;
	margin: 0 auto;
	text-align: center;
}
.destination .photosFeed img{
	max-width: calc(100% - 20px);
	display: inline-block;
	vertical-align: top;
	margin: 0 0 20px 0;
}
.destination .photosFeed img.small{
	max-width: calc(50% - 20px);
	display: inline-block;
	vertical-align: top;
	margin: 0 10px 20px 10px;
}
.destination .photosFeed{
	padding-bottom: 120px;
}
.destination .photosFeed .btn{
	margin-top: 50px;
}
.destination .photosFeed .btn i{
	margin-right: 5px;
}
.destination .country{
	height: 40%;
	width: 50%;
	border-right: none;
}
.destination .country .background{
	z-index: 0;
	height: 100%;
}
.discoverMore{
	padding: 27px 0 0 0;
	background-color: rgba(3, 24, 42, 0.04);
}
.discoverMore section{
	height: 300px;
}
.discoverMore h3{
	text-align: center;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 25px;
	opacity: 0.2;
}
.discoverMore a{
	width: 33.3333%;
	height: 100%;
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.discoverMore a .content{
	height: 100%;
	position: relative;
	background-color: rgba(3, 24, 42, 0.7);
}
.discoverMore a .content .typebloc{
	width: 40%;
	height: 100%;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.discoverMore a .background{
	height: 100%;
	transform: scale(1, 1);

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.discoverMore a:hover .background{
	transform: scale(1.03, 1.03);
}
.backHome{
	width: 100%;
	height: auto;
	display: block;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 900;
	text-transform: uppercase;
	padding: 45px 0;
	position: relative;
	background-color: rgba(3, 24, 42, 0.8);
	color: #fff;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.backHome i{
	font-size: 7px;
	display: inline-block;
	vertical-align: top;
	margin-top: 5px;
	margin-right: 2px;
}
.backHome .background{
	height: 100%;
	width: 100%;
	display: block;
	transform: scale(1, 1);

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.backHome:hover{
	background-color: rgba(3, 24, 42, 0.7);
}
.backHome:hover .background{
	transform: scale(1.02, 1.02);
}

/* --------------------------------------------- ------ --------------------------------------------- */
/* --------------------------------------------- FOOTER --------------------------------------------- */
/* --------------------------------------------- ------ --------------------------------------------- */
footer{
	padding: 25px 0;
	background-color: #03182a;
}
footer p{
	color: rgba(255,255,255,0.4);
	font-size: 11px;
	text-align: center;
	width: 50%;
	margin: 0 auto;
}
footer p a{
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-weight: 600;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
footer p a:hover{
	color: rgba(255,255,255,1);
}






/* ---------------------------------- */
/* Media Queries .................... */
/* ---------------------------------- */

/* Large Devices, Wide Screens, iPad */
@media only screen and (max-width: 1200px) {
	.modal-content{
		width: 50%;
		display: block;
		padding: 2% 0;
	}
	.destination .intro{
		width: 80%;
	}
	.destination .photosFeed{
		width: 90%;
	}
}
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
}
/* iPhone 5 */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
	.home .country,
	.home .country:last-child{
		width: 100%;
		height: 33.333333%;
		border-right:0;
	}
	.country h2{
		font-size: 34px;
	}
	.country h3{
		margin-bottom: -60px;
	}
	.country:hover h3{
		margin-bottom: 10px;
	}
	header{
		height: 49px !important;
	}
	header .logo{
		font-size: 14px;
		padding: 0 10px 0 0;
	}
	header h2{
		font-size: 8px;
		letter-spacing: 1px;
		margin-top: 4px;
	}
	header .socialBtn a{
		font-size: 10px;
		margin-right: 2px;
	}
	header .socialBtn{
		margin: 0;
	}
	.midnightInner{
		padding: 10px 14px;
	}
	body.home header,
	body.singleMap header{
		padding: 10px 14px;
		width: calc(100% - 28px);
		height: 29px !important;
	}
	.start h1{
		font-size: 40px !important;
	}
	.half{
		width: 100%;
	}
	.half .intro img{
		margin-bottom: 20px !important;
		width: 70%;
	}
	.half .intro h2{
		font-size: 15px !important;
	}
	.half .intro p{
		width: 80% !important;
		font-size: 12px !important;
	}
	.half .intro .explore{
		font-size: 10px !important;
	}
	.half{
		width: 100% !important;
		display: block !important;
	}
	.half section .content .btn{
		width: 50%;
	}
	.feed #map{
		display: none;
	}
	.modal-content{
		width: 80%;
	}
	.modal-content span.profil,
	.modal.about p.small{
		display: none;
	}
	.modal.about p{
		font-size: 11px;
	}
	.modal.about .links br{
		display: block;
	}
	.modal.about p br{
		display: none;
	}
	.destination .hero .typebloc{
		width: 50%;
	}
	.destination .intro{
		margin-top: 0;
		width: 90%;
		padding: 10% 0;
	}
	.destination .intro .textBloc{
		width: 90%;
		margin: 0 5% 30px 5%;
	}
	.destination .intro .mapBloc{
		width: 100%;
	}
	.destination .intro .textBloc h1{
		font-size: 18px;
	}
	.destination .intro .textBloc p{
		margin-bottom: 8px;
		font-size: 12px;
		text-align: justify;
	}
	.destination .intro .textBloc .data{
		font-size: 10px;
		text-transform: uppercase;
		font-weight: 900;
		letter-spacing: 1px;
	}
	.destination .intro .textBloc .data span{
		display: block;
		text-align: center;
		margin-right: 0;
		margin-bottom: 4px;
		padding-right: 0;
		border-right: none;
		color: rgba(23, 42, 57, 0.3);
	}
	.destination .intro .textBloc .data span i{
		font-size: 12px;
		margin-top: 2px;
		display: inline-block;
		vertical-align: top;
		color: rgba(23, 42, 57, 0.6);
	}
	.destination .photosFeed{
		width: calc(90% + 2px);
		padding-bottom: 50px
	}
	.destination .photosFeed img.small{
		max-width: calc(100% - 2px);
	}
	.destination .photosFeed .btn{
		margin-top: 30px;
	}
	.destination .country{
		width: 100%;
	}
	footer{
		padding: 20px 0;
	}
	footer p{
		font-size: 9px;
		width: 90%;
		margin-bottom: 8px;
	}
}
/* Small Devices, Tablets, iPhone */
@media only screen and (max-width: 768px) {
	.home .country,
	.home .country:last-child{
		width: 100%;
		height: 33.333333%;
		border-right:0;
	}
	.country h2{
		font-size: 34px;
	}
	.country h3{
		margin-bottom: -60px;
	}
	.country:hover h3{
		margin-bottom: 10px;
	}
	header{
		height: 49px !important;
	}
	header .logo{
		font-size: 14px;
		padding: 0 10px 0 0;
	}
	header h2{
		font-size: 8px;
		letter-spacing: 1px;
		margin-top: 4px;
	}
	header .socialBtn a{
		font-size: 10px;
		margin-right: 2px;
	}
	header .socialBtn{
		margin: 0;
	}
	.midnightInner{
		padding: 10px 14px;
	}
	body.home header,
	body.singleMap header{
		padding: 10px 14px;
		width: calc(100% - 28px);
		height: 29px !important;
	}
	.start h1{
		font-size: 40px !important;
	}
	.half{
		width: 100%;
	}
	.half .intro img{
		margin-bottom: 20px !important;
		width: 70%;
	}
	.half .intro h2{
		font-size: 15px !important;
	}
	.half .intro p{
		width: 80% !important;
		font-size: 12px !important;
	}
	.half .intro .explore{
		font-size: 10px !important;
	}
	.half{
		width: 100% !important;
		display: block !important;
	}
	.half section .content .btn{
		width: 50%;
	}
	.feed #map{
		display: none;
	}
	.modal-content{
		width: 80%;
	}
	.modal-content span.profil,
	.modal.about p.small{
		display: none;
	}
	.modal.about p{
		font-size: 11px;
	}
	.modal.about .links br{
		display: block;
	}
	.modal.about p br{
		display: none;
	}
	.destination .hero .typebloc{
		width: 50%;
	}
	.destination .intro{
		margin-top: 0;
		width: 90%;
		padding: 10% 0;
	}
	.destination .intro .textBloc{
		width: 90%;
		margin: 0 5% 30px 5%;
	}
	.destination .intro .mapBloc{
		width: 100%;
	}
	.destination .intro .textBloc h1{
		font-size: 18px;
	}
	.destination .intro .textBloc p{
		margin-bottom: 8px;
		font-size: 12px;
		text-align: justify;
	}
	.destination .intro .textBloc .data{
		font-size: 10px;
		text-transform: uppercase;
		font-weight: 900;
		letter-spacing: 1px;
	}
	.destination .intro .textBloc .data span{
		display: block;
		text-align: center;
		margin-right: 0;
		margin-bottom: 4px;
		padding-right: 0;
		border-right: none;
		color: rgba(23, 42, 57, 0.3);
	}
	.destination .intro .textBloc .data span i{
		font-size: 12px;
		margin-top: 2px;
		display: inline-block;
		vertical-align: top;
		color: rgba(23, 42, 57, 0.6);
	}
	.destination .photosFeed{
		width: calc(90% + 2px);
		padding-bottom: 50px
	}
	.destination .photosFeed img.small{
		max-width: calc(100% - 20px);
	}
	.destination .photosFeed .btn{
		margin-top: 30px;
	}
	.destination .country{
		width: 100%;
	}

	footer{
		padding: 20px 0;
	}
	footer p{
		font-size: 9px;
		width: 90%;
		margin-bottom: 8px;
	}
}