/****************************************/
/* LAYOUT
/****************************************/


/* Sections */
.section {
	position: relative;
	direction: rtl;
}

.screen-section {
	min-height: 100vh;
}

.default-section {
	background: #032e40;
	color: #fff;
}
.light-section {
	background: #30738c;
	color: #fff;
}
.lighter-section {
	background: #bed8e4;
	color: #11303f;
}
.grey-section {
	background: #c3bdbf;
	color: #000;
}
.grey-section .em-text {
	color: #000;
}
.dark-section {
	background: #11303f;
	color: #fff;
}
.black-section {
	background: #000;
	color: #fff;
}

@media (min-width : 1200px) {
	.section:after {
		content: '';
		display: block;
		clear: both;
	}
	
}
/***/





/* Section background */
.section-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
}
/***/





/* Section image */
.section-img-box {
	position: relative;
}
.section-img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
}
@media screen and (orientation:portrait) {
	.section-img-box {
		padding-top: 66.66%;
	}
}
@media screen and (orientation:landscape) {
   	.section-img-box {
		padding-top: 56.25%;
	}
}
@media (min-width : 1200px) {
	.section-img-box {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 0;
	}
	.floating-section .section-img-box {
		-webkit-transform: translate3d(-280px,0,0);
				transform: translate3d(-280px,0,0);
		-webkit-transition: -webkit-transform 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
				transition: 		transform 1s cubic-bezier(0.770, 0.000, 0.175, 1.000);
	}
	.floating-section.floated .section-img-box {
		-webkit-transform: translate3d(0,0,0);
				transform: translate3d(0,0,0);
	}
}
@media (min-width : 1600px) {
	.floating-section .section-img-box {
		-webkit-transform: translate3d(-320px,0,0);
				transform: translate3d(-320px,0,0);
	}
}
/***/



/* Section image swiper */
.section-img.swiper-container {
	cursor: e-resize;
}

.section-img-box .swiper-button-prev,
.section-img-box .swiper-button-next {
	background-color: #30738c;
}
.section-img-box .swiper-button-prev {
	top: -50px;
	right: 50px;
	left: auto;
}
.section-img-box .swiper-button-next {
	top: -50px;
	right: 0;
	left: auto;
}
.section-img-box .swiper-slide {
	margin-bottom: 50px;
	overflow: visible;
}

.section-img-box .swiper-slide-caption {
	position: absolute;
	z-index: 10;
	bottom: -49px;
	/*right: 98px;*/
	right: 0;
	padding: 0.6666em 1.6666em;
	background-color: #032e40;
	color: #fff;
	font-weight: 500;
}

@media (min-width : 1200px) {
	.section-img-box .swiper-button-prev {
		top: 36px;
		right: 136px;
		left: auto;
	}
	.section-img-box .swiper-button-next {
		top: 36px;
		right: 85px;
	}
	.section-img-box .swiper-slide {
		overflow: hidden;
	}
	.section-img-box .swiper-slide-caption {
		top: 36px;
		bottom: auto;
		right: 187px;
		
	}
	.section-img-box .swiper-slide-next .swiper-slide-caption,
	.section-img-box .swiper-slide-prev .swiper-slide-caption {
		opacity: 0;
		-webkit-transition: opacity 0.5s ease 0s; 
				transition: opacity 0.5s ease 0s;
	}
	.section-img-box .swiper-slide-active .swiper-slide-caption {
		white-space: nowrap;
		opacity: 1;
		-webkit-transition: opacity 0.5s ease 1s; 
				transition: opacity 0.5s ease 1s;
	}
}
/***/



/* Section main */
.section-main-box {
	position: relative;
	width: 560px;
	max-width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	padding: 80px 20px 50px 20px;
	background-color: inherit;
	color: inherit;
}

@media (min-width : 1200px) {
	.section-main-box {
		width: 560px;
		float: right;
		padding: 48px 90px 50px 60px;
	}
	.floating-section .section-main-box {
		-webkit-transition: -webkit-transform 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) 0s;
				transition: 		transform 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) 0s;
	}
	.floating-section.floated .section-main-box {
		-webkit-transform: translate3d(100%,0,0);
				transform: translate3d(100%,0,0);
	}
}
@media (min-width : 1600px) {
}
/***/



/* Section toggle */
.section-toggle {
	display: none;
}
@media (min-width : 1200px) {
	.section-toggle {
		display: block;
		position: absolute;
		top: 36px;
		left: -50px;
		overflow: hidden;
		background-color: inherit;
		-webkit-transition: margin 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) 0s;
				transition: margin 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) 0s;
	}
	.floating-section.floated .section-toggle {
		margin-left: -84px;
	}
	.section-toggle:after {
		content: '';
		display: block;
		cursor: pointer;
		width: 48px;
		height: 48px;
		background: url('../img/buttons.png') -61px -61px no-repeat;
		-webkit-transition: -webkit-transform 0.5s ease 1s;
				transition: 		transform 0.5s ease 1s;
	}
	.floating-section.floated .section-toggle:after {
		-webkit-transform: rotate(225deg);
				transform: rotate(225deg);
	}
}
@media (min-width : 1600px) {
	
}
/***/


/* Section logo */
.section-logo {
	text-align: center;
}
@media (min-width : 1200px) {
	.section-logo {
		text-align: initial;
	}	
}	
/***/
	
	

/* Section secondary */
.section-secondary-box {
	padding: 50px 20px;
}
@media (min-width : 1200px) {
	.section-secondary-box {
		position: relative;
		padding: 50px 80px;		
	}
}
@media (min-width : 1600px) {
}
/***/




/* Section more botton / lightbox toggle */
.section-lightbox-toggle {
	position: absolute;
	top: -28px;
	right: 0;
	white-space: nowrap;
	overflow: hidden;
	background: #000;
	color: #8fbabf;
	line-height: 48px;
	font-size: 1.235em;
	font-weight: 500;
}
.section-lightbox-toggle a {
	padding: 0 2em;
	color: inherit;
}
.section-lightbox-toggle a:hover {
	color: #fff;
}
@media (min-width : 1200px) {
	.section-lightbox-toggle {
		top: 36px;
		right: 100%;
		margin-right: 52px;
		-webkit-transition: margin 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) 0s;
				transition: margin 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) 0s;
	}
	.floating-section.floated .section-lightbox-toggle {
		margin-right: 136px;
	}
}
/***/
