/**
 * Homepage specific styling goes here. Excluded on all subpages
 *
 * @format
 */

/* For most builds, this stylesheet should be wiped and started fresh */

/* PRELOADER */
.preloader-outer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100vh;
	background-color: var(--color-white);
	transition: opacity 600ms ease-out;
}

.preloader-outer.active {
	visibility: visible !important;
}

.preloader-outer.preloader-remove {
	opacity: 0;
	pointer-events: none;
}

.preloader-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.preloader-inner p {
	margin-bottom: 15px;
}

.preloader-inner p:last-of-type {
	margin: 0;
}

.preloader-part {
	margin: 20px;
	display: none;
}

.preloader-part-left.active {
	display: block;
	-webkit-animation: fadeinright 800ms ease-out;
	animation: fadeInRight 800ms ease-out;
}

.preloader-part-right.active {
	display: block;
	-webkit-animation: fadeinleft 500ms ease-out;
	animation: fadeInLeft 500ms ease-out;
}

/* hero */
.hero {
	position: relative;
	color: var(--color-white);
	height: 100vh;
}

.hero h3 {
	font-size: 0.813rem;
	font-weight: 500;
	color: var(--color-white);
	text-transform: uppercase;
	margin-bottom: 11px;
	overflow: hidden;
}

.hero .animate {
	opacity: 0;
}

.hero-inner {
	width: 100%;
	display: flex;
	height: 100dvh;
	min-height: 580px;
	flex-direction: column;
	justify-content: flex-end;
}

.hero-info {
	z-index: 1;
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}

.hero-title {
	color: inherit;
	font-size: 3.25rem;
	margin-bottom: 12px;
	line-height: 1;
	font-style: italic;
}

.hero-title span {
	display: inline-block;
	opacity: 0;
	transform: translateY(60px);
}

.hero-title strong {
	display: block;
}

.hero-title-1,
.hero-title-2,
.hero-title-3 {
	opacity: 1;
}

.hero-title-1 {
	color: inherit;
}

.hero-text {
	position: relative;
	font-size: 0.688rem;
	font-weight: 300;
	line-height: 1.45;
	margin-bottom: 16px;
	max-width: 580px;
	overflow: hidden;
}

.hero-text p:last-of-type {
	margin-bottom: 0;
}

.hero-btn {
	overflow: hidden;
}

.hero-image,
.hero-image:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.hero-image picture,
.hero-image img {
	display: block;
	width: 100%;
	height: 100%;
}

.hero-image img {
	object-fit: cover;
}

.hero-dots {
	z-index: 3;
	bottom: 140px;
	position: relative;
	right: var(--gutter-size);
}

.hero-dots .swiper-pagination {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.hero {
		min-height: 620px;
	}

	.hero-inner {
		min-height: 750px;
		justify-content: center;
	}

	.hero-title {
		margin-bottom: 60px;
	}

	.hero h3 {
		font-size: 1.25rem;
		margin-bottom: 15px;
	}

	.hero-text {
		font-size: 0.938rem;
		margin-bottom: 26px;
	}

	.hero-dots {
		position: absolute;
		top: 50%;
		right: 40px;
		bottom: unset;
	}

	.hero-dots .swiper-pagination {
		row-gap: 10px;
		flex-direction: column;
		width: auto;
	}
}

@media screen and (min-width: 1025px) {
	.hero {
		min-height: 720px;
	}

	.hero-title {
		font-size: 5.625rem;
	}

	.hero-dots {
		right: calc(var(--gutter-size) + 20px);
	}
}

@media screen and (min-width: 1320px) {
	.hero-dots {
		right: 50%;
		margin-right: -620px;
	}
}

/*******************************************************************************************
FOOTER - Page bottom
*******************************************************************************************/
body.home .footer {
	margin-top: -60px;
}

.hero_content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
