/********************************/
/* PRIMARY
/********************************/

#primary { 
	direction: rtl;
}





/********************************/
/* PRIMARY: Tags
/********************************/

#primary h2 {
}
#primary h2 > .pre-heading,
#primary h2 > .post-heading {
}






/********************************/
/* SECTIONS: Layout
/********************************/


/* Page sections */
.page-section {
	position: relative;
	width: 100%;
	min-height: 50vh;
}
.screen-section {
	height: 100vh;
}
.min-screen-section {
	min-height: 100vh;
}

.section-container {
}

@media (min-width : 1200px) {
	.divided-section {
		display: flex;
		flex-direction: row;
	}
	.divided-section.odd-section {
		flex-direction: row;
	} 
	.divided-section.even-section {
		flex-direction: row-reverse;
	}
	.divided-section > .half-section {
		width: 50%;
	}
}
/***/



/* Section background */
.section-bg {
	position: absolute;
	inset: 0;
	overflow: clip;
}

.section-bg > video,
.section-bg > img,
.section-bg > picture {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-bg picture {
	display: block;
}

.section-bg > .swiper-container {
	height: 100%;
}
.section-bg .swiper-slide video, 
.section-bg .swiper-slide img,
.section-bg .swiper-slide picture {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-bg-spacer {
}
@media (min-width : 1200px) {
}
/***/



/* Section side background */
.section-side-bg {
	overflow: hidden;
	aspect-ratio: 1;
}
.section-side-bg > img {
	display: block;
	width: 100%;
}
@media (orientation : portrait) { 
}
@media (min-width : 1200px) {
	.section-side-bg {
		position: relative;
		flex: 1 0 auto;
		aspect-ratio: auto;
	}
}
/***/



/* Section image */
.section-img {
	position: relative;
	overflow: hidden;
}
.section-img > img,
.section-img > .fader-items img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-img.animate > img,
.section-img.fader.animate img {
	opacity: 0;
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
	-webkit-transition: all 1.2s ease;
			transition: all 1.2s ease;	
}
.section-img.animated > img,
.section-img.fader.animated img {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}

/*
@media (orientation : portrait) { 
	.section-img {
		aspect-ratio: 1;
	}
}
*/
@media (min-width : 1200px) {
	.divided-section .fluid-section-img {
		flex: 1 1 auto;
	}
}
/***/



/* Section side image */
.section-side-img {
	overflow: hidden;
}
.section-side-img > img,
.section-side-img > .fader-items img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (orientation : portrait) { 
	.section-side-img {
		aspect-ratio: 1;
	}
}
@media (min-width : 1200px) {
	.equal-divided-section .section-side-img {
		width: 50%;
	}
}
/***/



/* Section side */
.section-side {
}
@media (orientation : portrait) { 
}
@media (min-width : 1200px) {
	.equal-divided-section .section-side {
		width: 50%;
	}
}
/***/



/* Section main */
.section-main {
	position: relative; 
	overflow: clip;
}

/*
.section-bg ~ .section-main,
.section-side-bg ~ .section-main {
	z-index: 9;
}
*/

.section-main-content {
	padding-block: max(64px, 3.3333vw); 
	padding-inline: var(--gutter);
}

/*
.floating-main {
	-webkit-transform: none;
			transform: none;
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
			transition: 		transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
}
*/

@media (max-width : 1200px) {
	.section-main-content {
		text-align: center;
	}
}

@media (min-width : 1200px) {
	.divided-section .section-main {
	}
	
	.divided-section.odd-section .section-main-content {
		margin-inline-start: 0;
	} 
	.divided-section.even-section .section-main-content {
		margin-inline-end: 0;
	}
	
	
	/*
	.divided-section .section-main {
		align-content: center;
	}
	.equal-divided-section .section-main {
		width: 50%;
	}
	
	.odd-section .floating-main.closed {
		-webkit-transform: translateX(100%);
				transform: translateX(100%);	
	}
	.even-section .floating-main.closed {
		-webkit-transform: translateX(-100%);
				transform: translateX(-100%);	
	}
	*/
}
/***/



/* Section toggle button */
.section-toggle-btn {
	position: absolute;
	z-index: 99;
	top: max(6vw, 80px);
	width: 48px;
	height: 48px;
	outline: 0;
	margin: 0;
	border: 0;
	padding: 10px;
	background: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
	filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.75));
}
.section-main-content .section-toggle-btn {
	margin-top: 1.5em;
}
.odd-section .section-toggle-btn {
	left: var(--gutter);
}
.even-section .section-toggle-btn {
	right: var(--gutter);
}

.section-toggle-btn::before,
.section-toggle-btn::after {
	content: '';
	display: block;
	position: absolute;
	top: 23px;
	width: 28px;
	border-block: 1px solid;
	-webkit-transition: all 0.4s ease 1s;
			transition: all 0.4s ease 1s;
}
.section-toggle-btn::before {
	transform: rotateZ(45deg);
}
.section-toggle-btn::after {
	transform: rotateZ(-45deg);
}

.section-toggle-btn.animate::before,
.section-toggle-btn.animate::after {
	opacity: 0;
	transform: none;
}
.section-toggle-btn.animated::before {
	opacity: 1;
	transform: rotateZ(45deg);
}
.section-toggle-btn.animated::after {
	opacity: 1;
	transform: rotateZ(-45deg);
}

.section-main > .section-toggle-btn {
	visibility: hidden;
	opacity: 0;
	margin-inline: calc(-2 * var(--gutter) - 48px);
	will-change: opacity, transform;
}
.odd-section .section-main > .section-toggle-btn {
	margin-left: calc(-4 * var(--gutter) - 48px);
}
.section-main > .section-toggle-btn:before {
	transform: rotateZ(0deg);
}
.section-main > .section-toggle-btn:after {
	transform: rotateZ(90deg);
}
.floating-main.closed > .section-toggle-btn {
	visibility: visible;
	opacity: 1;
	background: rgba(0,0,0,0.2);
	-webkit-transition: all 0.4s ease 0.8s;
			transition: all 0.4s ease 0.8s;
}


.floating-main.closed > .section-toggle-btn.animate {
	opacity: 0;
	-webkit-transform: translateY(0.5em);
			transform: translateY(0.5em);
}
.floating-main.closed > .section-toggle-btn.animated {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}

@media (min-width : 1200px) {
}

@media (min-width: 1600px) {
}
/***/





/********************************/
/* SECTIONS: Elements 
/********************************/


/* Section logo */
.section-logo {
	margin-block: 1em;
}
.section-logo > img {
	display: block;
	max-width: 100%;
}
.section-logo.animate {
	opacity: 0;
	-webkit-transition: all 0.6s ease;
			transition: all 0.6s ease;
}
.section-logo.animated {
	opacity: 1;
}

@media (max-width : 1200px) {
	.section-logo > img {
		margin-inline: auto;
	}
}
/***/


/* Section menu */
/***/


/* Section breadcrumbs */
/***/


/* Section heading */
.section-heading {
	margin: 2em auto;
	font-weight: 700;
}
.section-heading h2 {
	margin: 0;
	line-height: 0.8;
} 

.section-heading.animate {
	opacity: 0;
    -webkit-transform: translateY(30px);
			transform: translateY(30px);
	-webkit-transition: all 0.8s ease;
			transition: all 0.8s ease;
}
@media (min-width : 1200px) {
	.section-heading.animate {
		-webkit-transform: translateX(-60px);
				transform: translateX(-60px);
	}
}
.section-heading.animated {
	opacity: 1;
    -webkit-transform: none;
			transform: none;
}
/***/


/* Section content */
.section-text-wrapper {
	max-width: 26.25em;
}
.section-text {
}

.section-text > .animate {
	opacity: 0;
    -webkit-transform: translateY(30px);
			transform: translateY(30px);
	-webkit-transition: all 0.8s ease;
			transition: all 0.8s ease;	
}
@media (min-width : 1200px) { 
	.section-text > .animate {
		-webkit-transform: translateX(-60px);
				transform: translateX(-60px);
	}
}
.section-text > .animated {
	opacity: 1;
    -webkit-transform: none;
			transform: none;
}
/***/



/* Section deco */
/***/



/* Section image disclaimer */
.section-img-disclaimer {
	position: absolute;
	z-index: 6;
	bottom: 0.75em;
	inset-inline-start: 1em;
	text-shadow: 0px 1px 2px #000;
	color: #fff;
}
.section-img-disclaimer.animate {
	opacity: 0;
    -webkit-transform: translateX(-1em);
			transform: translateX(-1em); 
	-webkit-transition: all 0.8s ease 1.6s;
			transition: all 0.8s ease 1.6s;	
}
.section-img-disclaimer.animated {
	opacity: 1;
    -webkit-transform: none !important;
			transform: none !important; 
}
@media (min-width : 1200px) { 
	.section-img-disclaimer {
		bottom: 1em;
		inset-inline-start: var(--gutter);
	}
	
	.odd-section .section-img-disclaimer,
	.even-section .section-img:first-child .section-img-disclaimer { 
		inset-inline-start: auto;
		inset-inline-end: var(--gutter);
	}
	.odd-section .section-img-disclaimer.animate, 
	.even-section .section-img:first-child .section-img-disclaimer.animate {
		-webkit-transform: translateX(1em);
				transform: translateX(1em); 
	}
}

/***/





/* Section Misc. */
.section-separator {
	height: var(--gutter);
}
.section-hook {
	clear: both;
}
/***/





