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

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

.title-line-h1 h1,
.title-line-h2 h2 {
	position: relative;
}

.title-line-h1 h1:before,
.title-line-h2 h2:before {
	display: none;
}

@media screen and (min-width: 768px) {
	.title-line-h1 h1:before,
	.title-line-h2 h2:before {
		display: block;
		position: absolute;
		top: 16px;
		left: -100%;
		width: 100%;
		height: 3px;
		content: '';
		background-color: var(--color-primary);
		margin-right: 5px;
		transition: 1s 1.5s ease-out;
	}

	.title-line-h1.black h1:before,
	.title-line-h2.black h2:before {
		background-color: var(--color-secondary);
	}
}

@media screen and (min-width: 1025px) {
	.title-line-h1 h1:before,
	.title-line-h2 h2:before {
		margin-left: -27px;
	}
}

/* hero */
.hero {
	position: relative;
	color: var(--color-white);
	margin-top: var(--height-header);
}

.hero .swiper-wrapper {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
}

.hero .swiper-slide {
	min-height: 320px;
	height: auto;
	display: flex;
	align-items: center;
}

.hero-inner {
	width: 100%;
	padding: 60px 0;
}

.hero-info {
	position: relative;
	z-index: 1;
}

.hero .h1 {
	display: block;
	color: inherit;
	font-family: var(--font-family-heading);
	font-weight: 600;
	line-height: 1.2;
	font-size: 2.5rem;
	margin-bottom: 5px;
	text-transform: capitalize;
}

.hero-title-1 {
	display: block;
	overflow: hidden;
	font-weight: 400;
	letter-spacing: -4px;
	line-height: 1.3;
}

.hero-title-1 span {
	animation-delay: 600ms;
	display: block;
}

.hero-title-2 {
	overflow: hidden;
	display: block;
	font-weight: 900;
	line-height: 1;
}

.hero-title-2 strong {
	animation-delay: 1200ms;
	display: block;
}

.hero-title-2 sup {font-weight: 100;}

.hero-text {
	position: relative;
	font-size: 1rem;
	font-weight: 600;
	padding-left: 28px;
	line-height: 1.45;
	animation-delay: 1800ms;
}

.hero-text:before {
	position: absolute;
	top: 4px;
	left: 6px;
	content: '';
	width: 6px;
	height: 0;
	transition: 1s 2.5s ease-out;
	background-color: var(--color-primary);
}

.hero-text.animated:before {
	height: 100%;
}

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

.hero-image {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

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

.hero-image:before {
	content: '';
	width: 32%;
	background-color: var(--color-secondary);
}

.hero-image:after {
	content: '';
	width: 70%;
	background: linear-gradient(to right, rgba(20, 36, 50, 1) 20%, rgba(20, 36, 50, 0) 50%);
	left: unset;
	right: 0;
	opacity: 0.89;
} */

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left;
}

.hero-arrow {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	color: var(--color-white);
	border: 2px solid var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 400;
	z-index: 1;
	transition: all 200ms ease-in-out;
}

.hero-arrow:hover,
.hero-arrow:focus {
	color: var(--color-primary);
	border-color: var(--color-primary);
	text-decoration: none;
}

.hero .swiper-autoplay-toggle {
	left: 20px;
	right: auto;
	color: var(--color-white);
}

.hero .swiper-autoplay-toggle:hover,
.hero .swiper-autoplay-toggle:focus {
	color: var(--color-primary);
}

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

	.hero .h1 {
		font-size: 3.75rem;
		margin-bottom: 20px;
	}

	.hero-text {
		font-size: 1.25rem;
		max-width: 503px;
		padding-left: 35px;
	}

	.hero-text:before {
		top: 0;
		width: 10px;
	}
}

@media screen and (min-width: 1025px) {
	.hero .h1 {
		font-size: 4.688rem;
	}

	.hero .swiper-slide {
		/* min-height: 651px; */
		min-height: calc(100vh - var(--height-header));
	}
}

@media screen and (min-width: 1441px) {
	/* .hero .swiper-slide {
		min-height: 760px;
	} */

	.hero .h1 {
		font-size: 5.938rem;
	}

	.hero-text {
		font-size: 1.5rem;
		max-width: 603px;
		padding-left: 45px;
	}
}

/* intro */
.intro {
	position: relative;
	padding-top: 27px;
	padding-bottom: 125px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.intro-holder {
	margin-bottom: 60px;
}

.intro-image {
	margin-bottom: 57px;
	position: relative;
	z-index: 1;
}

.intro-image img {
	width: 100%;
	height: auto;
	display: block;
}

.intro-image:before {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	top: -27px;
	left: -20px;
	content: '';
	background-color: rgba(198, 174, 148, 0.5);
	width: 91%;
	height: calc(100% + 53px);
}

.intro-text {
	font-size: 1rem;
	position: relative;
	z-index: 1;
}

.intro-text h1 {
	max-width: 345px;
}

.intro-text p:has(+ h1) {
	font-size: var(--font-size-h4);
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 11px;
}

.intro-text.title-line-h1 h1:before {
	width: 0;
}

.intro-text.title-line-h1.animated h1:before {
	width: 100%;
}

.intro-text h2 {
	font-size: 1.125rem;
}

.intro-text strong {
	color: var(--color-primary);
}

.intro-holder.reverse {
	margin-bottom: 0;
}

.intro-holder.reverse .intro-image:before {
	left: unset;
	right: -20px;
	background-color: rgba(192, 178, 152, 0.5);
}

@media screen and (min-width: 768px) {
	.intro {
		padding-top: 81px;
		padding-bottom: 150px;
	}

	.intro-holder {
		margin-bottom: 100px;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	.intro-image {
		width: 43%;
		margin-bottom: 0;
	}

	.intro-image img {
		display: block;
	}

	.intro-image:before {
		top: -81px;
		left: unset;
		right: -20px;
		width: 100%;
		height: 100%;
	}

	.intro-text {
		width: 55%;
		font-size: 1.063rem;
	}

	.intro-text p:has(+ h1) {
		margin-bottom: 6px;
	}

	.intro-text h2 {
		font-size: 2.25rem;
		line-height: 1;
	}

	.intro-text h2 {
		font-size: 1.25rem;
		margin-bottom: 27px;
	}

	.intro-holder.reverse {
		margin-bottom: 0;
		flex-direction: unset;
	}

	.intro-holder.reverse .intro-image:before {
		left: -20px;
		right: unset;
		width: 100%;
		height: 100%;
	}

	.intro-holder.reverse .intro-text {
		padding-top: 7px;
		width: 52.3%;
	}

	.intro-holder.reverse .intro-text p {
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 1025px) {
	.intro-holder {
		margin-bottom: 161px;
	}

	.intro-image {
		width: 39.1%;
	}

	.intro-image img {
		width: auto;
	}

	.intro-image:before {
		right: -105px;
		width: calc(100% + 18px);
		height: calc(100% + 101px);
	}

	.intro-holder.reverse .intro-image:before {
		left: -80px;
		width: calc(100% + 20px);
		height: calc(100% + 127px);
	}

	.intro-holder.reverse .intro-image {
		margin-left: -25px;
	}

	.intro-holder.reverse .intro-text {
		padding-top: 7px;
		width: 52.3%;
	}

	.intro-text.title-line-heading h1:before {
		margin-left: -27px;
	}
}

@media screen and (min-width: 1441px) {
	.intro {
		padding-bottom: 234px;
	}

	.intro-image {
		width: 39.4%;
	}

	.intro-image:before {
		top: -81px;
		left: unset;
		right: 20px;
		width: 80.3%;
		height: calc(100% + 130px);
	}

	.intro-holder.reverse .intro-image {
		padding-left: 79px;
		margin-left: 0;
	}

	.intro-holder.reverse .intro-image:before {
		left: 0;
		width: 80.5%;
		height: calc(100% + 155px);
	}

	.intro-holder.reverse .intro-text {
		padding-top: 9px;
		width: 50.8%;
	}
}

/* solutions */
.solutions {
	position: relative;
	padding-top: 75px;
	padding-bottom: 118px;
}

.solutions-heading {
	text-align: center;
	margin-bottom: 72px;
}

.solutions-heading h2 {
	font-size: var(--font-size-h4);
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 5px;
}

.solutions-heading h3 {
	font-size: 2.25rem;
	margin-bottom: 14px;
}

.solutions-heading h4 {
	color: var(--color-secondary);
	text-transform: none;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0;
}

.solutions-tab-heading {
	position: relative;
	cursor: pointer;
	font-size: 1.125rem;
	color: var(--color-secondary);
	transition: all 0.3s;
	border-bottom: 1px solid var(--color-primary);
}

.solutions .content-tab-activate {
	width: 100%;
	text-align: left;
	padding: 20px 107px 20px 15px;
	font-size: 1.125rem;
	line-height: 1.3;
	text-transform: capitalize;
	position: relative;
	background-color: transparent;
	color: var(--color-secondary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-primary);
}

.solutions .content-tab-activate:after {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	font-size: 1.5rem;
	content: '\f067';
	font-family: var(--font-family-icon);
}

.solutions .content-tab-activate.active:after {
	content: '\f068';
	font-size: 1.25rem;
}

.solutions .content-tab-activate i {
	font-size: 1.5rem;
}

.solutions .content-tab-activate.active {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.solutions-tab-right {
	position: relative;
}

.solutions .content-tab {
	display: none;
	line-height: 1.6;
	font-size: 1rem;
	padding-top: 22px;
	margin-bottom: 35px;
}

.solutions-tab-content p {
	margin-bottom: 18px;
}

.solutions-tab-content p:last-of-type {
	margin-bottom: 0;
}

.solutions .content-tab.active {
	display: block;
}

.solutions-arrow-container {
	position: absolute;
	top: -72px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 120px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	overflow: hidden;
}

.solutions-arrow {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-100%);
	width: 120px;
	height: 120px;
	border: 2px solid var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.938rem;
	font-weight: 400;
}

.solutions-arrow:focus,
.solutions-arrow:hover {
	text-decoration: none;
	border: 2px solid var(--color-secondary);
}

.solutions-arrow i {
	font-weight: 400;
}

.solutions-tab-links {
	display: none;
}

@media screen and (min-width: 768px) {
	.solutions {
		padding-top: 113px;
		padding-bottom: 105px;
	}

	.solutions-heading {
		margin-bottom: 82px;
	}

	.solutions-tab {
		display: flex;
		justify-content: space-between;
	}

	.solutions-tab-links {
		width: 40%;
		display: block;
	}

	.solutions-tab-right {
		width: 55%;
		display: block;
	}

	.solutions-tab-right:before {
		display: block;
		position: absolute;
		top: 0;
		left: -20px;
		width: 1px;
		height: 100%;
		content: '';
		pointer-events: none;
		background-color: var(--color-near-gray);
	}

	.solutions-arrow-container {
		top: -59px;
	}

	.solutions-tab-heading:after {
		font-size: 1.125rem;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
		content: '\f061';
		font-family: var(--font-family-icon);
	}

	.solutions-tab-heading:focus,
	.solutions-tab-heading:hover,
	.solutions-tab-heading.active {
		color: var(--color-white);
		background-color: var(--color-primary);
	}

	.solutions-tab-heading:focus button,
	.solutions-tab-heading:hover button {
		color: var(--color-white);
	}

	.solutions-tab-heading button:after {
		display: none;
	}

	.solutions-tab-heading button {
		padding: 15px 50px 15px 10px;
		margin-bottom: 0;
	}

	.solutions-tab-content {
		margin-bottom: 0;
	}

	.solutions .content-tab-activate {
		padding: 20px 24px 24px 15px;
	}

	.solutions .content-tab-activate:after {
		display: none;
	}

	.solutions .content-tab {
		font-size: 1.063rem;
		padding-top: 0;
	}
}

@media screen and (min-width: 1025px) {
	.solutions-tab-content {
		font-size: 1.063rem;
	}

	.solutions-tab-links {
		width: 33.8%;
	}

	.solutions-tab-heading button {
		padding: 21px 80px 25px 13px;
	}

	.solutions-tab-heading:after {
		font-size: 1.438rem;
		right: 22px;
	}

	.solutions-tab-right {
		width: 60%;
	}

	.solutions-tab-right:before {
		left: -36px;
	}
}

@media screen and (min-width: 1441px) {
	.solutions {
		padding-bottom: 217px;
	}

	.solutions-tab-links {
		width: 29%;
	}

	.solutions-tab-heading button {
		padding: 20px 100px 25px 14px;
	}

	.solutions-tab-heading:after {
		font-size: 1.563rem;
		right: 27px;
	}

	.solutions-tab-right {
		width: 65.2%;
	}

	.solutions-tab-right:before {
		left: -41px;
	}
}

/* Services */
.services {
	position: relative;
	padding-bottom: 35px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.services-content {
	padding-top: 45px;
	padding-bottom: 50px;
}

.services-content p:last-of-type {
	margin-bottom: 0;
}

.services-logo {
	position: absolute;
	bottom: 100%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
	width: 100%;
	height: 87px;
}

.services-logo img {
	display: block;
	height: 87px;
}

.services-heading {
	position: relative;
	z-index: 1;
	font-size: 1.125rem;
	max-width: 746px;
	font-weight: 600;
	letter-spacing: -1px;
}

.services-heading h2 {
	font-size: 1.875rem;
	margin-bottom: 11px;
}

.services-heading .title-line-h2 h2:before {
	width: 0;
}

.services-heading.animated .title-line-h2 h2:before {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.services-content.active {
		position: relative;
		background-image: url(../images/services-mobile.webp);
		background-size: cover;
		background-repeat: no-repeat;
	}

	.services-content::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 10%;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 100%);
	}
}

@media screen and (min-width: 768px) {
	.services {
		padding-top: 72px;
		padding-bottom: 150px;
	}

	.services.active {
		background-image: url(../images/feature-bg.webp);
		background-size: cover;
		background-repeat: no-repeat;
	}

	.services-heading {
		font-size: 1.25rem;
	}

	.services-heading h2 {
		font-size: 2.25rem;
		margin-bottom: 3px;
	}

	.services-logo:before {
		position: absolute;
		bottom: 1px;
		left: 65px;
		content: '';
		height: 6px;
		width: 100%;
		background-color: var(--color-primary);
	}
}

@media screen and (min-width: 1025px) {
	.services-heading {
		margin-bottom: 86px;
	}
}

@media screen and (min-width: 1201px) {
	.services-logo {
		height: auto;
	}

	.services-logo img {
		height: auto;
	}

	.services-logo:before {
		left: 135px;
		height: 13px;
	}
}

.tagline{
	position: absolute;
    right: 30px;
    bottom: 15px;
    z-index: 1;
    text-align: right;
    font-style: italic;
	line-height: 1.2;
}

@media screen and (min-width: 1025px){
	.tagline{
		right: 110px;
		bottom: 40px;
	}
}