/****************************************/
/* MAIN
/****************************************/



/* Page sections */
.page-section {
	position: relative;
	direction: rtl;
}

.screen-section {
	min-height: 100vh;
}
.default-section {
	background: #ffffff;
	color: #1d2945;
}


.white-section {
}
.lighter-section {
	background: #ffffff;
	color: #09383c;
}
.light-section {
	background: #e8e9ea;
	color: #1d2945;
}
.grey-section {
	background: #e8e9ea;
	color: #1d2945;
}
.grey-section .em-text {
	color: #000;
}
.dark-section {
	background: #303131;
	color: #d1dbd3;
}
.darker-section {
	background: #071025;
	color: #fff;
}
.black-section {
	background: #000;
	color: #fff;
}

.blue-section {
	background: #292d68;
	color: #fff;
}

@media (min-width : 1600px) {
	.page-section {
		margin-right: 320px;
	}	
}
/***/



/* Section background */
.section-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.section-bg .swiper-container {
	cursor: e-resize;
	height: 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(-360px,0,0);
				transform: translate3d(-360px,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 BG swiper */

/***/



/* Section main */
.section-main-box {
	position: relative;
	padding: 10px 0 30px 0;
	background-color: inherit;
	color: inherit;
}
.section-main {
	max-width: 640px;
	margin: 0 auto;
	padding: 15px;
}

@media (min-width : 1200px) {
	.section-main-box {
		width: 800px;
		min-height: 100vh;
		margin: 0 0 0 auto;
		padding: 75px 80px 60px 80px;
	}
	.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);
	}
}
/***/



/* Section toggle */
.section-toggle {
	display: none;
}
@media (min-width : 1200px) {
	.section-toggle {
		display: block;
		position: absolute;
		top: 50px;
		left: -24px;
		width: 48px;
		height: 48px;	
		overflow: hidden;
		background-color: #1d2945;
		-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;
		cursor: pointer;
	}
	.floating-section.floated .section-toggle {
		margin-left: -53px;
	}
	
	.section-toggle:before,
	.section-toggle:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		background: #fff;
		-webkit-transform: rotate(225deg);
				transform: rotate(225deg);
		-webkit-transition: -webkit-transform 0.5s ease 1s;
				transition: 		transform 0.5s ease 1s;
	}
	.section-toggle:before {
		width: 32px;
		height: 6px;
		margin: -3px 0 0 -16px;
	}
	.section-toggle:after {
		width: 6px;
		height: 32px;
		margin: -16px 0 0 -3px;
	}
	.floating-section.floated .section-toggle:before,
	.floating-section.floated .section-toggle:after	{
		-webkit-transform: none;
				transform: none;
	}
}
/***/


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

/* Section secondary */
.section-secondary-box {
	position: relative;
	padding: 0 0 60px 0;
}
.section-secondary {
	padding: 15px;
}
@media (min-width : 1200px) {
	.section-secondary-box {
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 120px 80px;
	}
	.floating-section .section-secondary-box {
		-webkit-transition: opacity 1s ease 1s;
				transition: opacity 1s ease 1s;
	}
	.floating-section.floated .section-secondary-box {
		opacity: 0;
	}
}
/***/



/* Section more botton / lightbox toggle */
.section-lightbox-toggle {
	position: absolute;
	top: -24px;
	right: 0;
	background: #1d2945;
	white-space: nowrap;
	overflow: hidden;
	line-height: 48px;
	font-size: 1.235em;
	font-weight: 500;
}
.section-lightbox-toggle a {
	padding: 0 20px;
	color: #fff;
}
@media (min-width : 1200px) {
	.section-lightbox-toggle {
		background: transparent;
		top: 50px;
		left: 30px;
		right: auto;
		-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;
	}
	.section-lightbox-toggle a {
		color: inherit;
	}
}
/***/





/****************************************/
