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

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

/* SLIDER INITIALIZATION PROTECTION */
/* Prevent layout breakage before sliders initialize */
.js-news-slider:not(.swiper-initialized) .swiper-wrapper,
.js-leaders-slider:not(.swiper-initialized) .swiper-wrapper,
.js-team-slider:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	gap: 20px;
}

.js-news-slider:not(.swiper-initialized) .swiper-slide,
.js-leaders-slider:not(.swiper-initialized) .swiper-slide,
.js-team-slider:not(.swiper-initialized) .swiper-slide {
	flex: 0 0 auto;
	width: 100%;
	max-width: 400px;
	scroll-snap-align: start;
}

/* Hide navigation buttons until slider is initialized */
.js-news-slider:not(.swiper-initialized) ~ .swiper-button-container,
.js-leaders-slider:not(.swiper-initialized) ~ .swiper-button-container,
.js-team-slider:not(.swiper-initialized) ~ .swiper-button-container {
	opacity: 0;
	pointer-events: none;
}

/* 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 {
	padding-top: 20px;
	position: relative;
	padding-bottom: 40px;
	margin-top: var(--height-header);
}

.hero:before {
	width: 100%;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	pointer-events: none;
	z-index: -1;
	opacity: 0.25;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 48%, rgba(0, 156, 203, 1) 100%);
}

.hero:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 160px;
	height: 190px;
	pointer-events: none;
	z-index: -1;
	background-image: url("../images/circle-bg.svg");
	background-size: 388px auto;
	background-position: left top;
	background-repeat: no-repeat;
}

.hero-main {
	margin-bottom: 40px;
}

.hero-logo {
	width: 100%;
	/* 	margin-bottom: 24px; */
	overflow: hidden;
}

.hero-logo img,
.hero-logo svg {
	width: 102%;
	margin-left: -1%;
	display: block;

	height: auto;
	margin-bottom: 15px;
}

.hero-mask-svg .hero-mask-image {
	will-change: transform;
	transform: translate(493.744px, 4596.633px);
	animation: heroMaskSlide 10s ease-out forwards;
}

@keyframes heroMaskSlide {
	from {
		transform: translate(493.744px, 4596.633px);
	}
	to {
		transform: translate(423.744px, 4596.633px);
	}
}

.hero-heading h1 {
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1.35;
	font-size: 1.375rem;
	letter-spacing: -0.012em;
}

.hero-features {
	margin-bottom: 50px;
}

.hero-title h2 {
	font-size: 1.875rem;
	letter-spacing: -0.015em;
}

.hero-text h2 {
	max-width: 300px;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	padding-left: 1.5rem;
	background-image: url("../images/dots.svg");
	background-repeat: no-repeat;
	background-position: left 4px;
	background-size: 12px auto;
	margin-bottom: 20px;
	min-height: 40px;
}

.hero-text p {
	line-height: 1.4;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 1.125rem;
}

.hero-bottom h6 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	letter-spacing: -0.015em;
}

.hero-bottom {
	font-size: 1.125rem;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {
	.hero-logo {
		width: 46.5%;
		margin-bottom: 0;
		margin-right: 31px;
	}

	.hero-heading {
		flex: 1;
	}

	.hero-main {
		display: flex;
		align-items: center;
		margin-bottom: 80px;
	}
}

@media screen and (min-width: 1025px) {
	.hero {
		padding-top: 40px;
		padding-bottom: 90px;
	}

	.hero-heading h1 {
		font-size: 1.688rem;
	}

	.hero-features {
		display: flex;
		margin-bottom: 80px;
		align-items: flex-start;
	}

	.hero:after {
		width: 392px;
		height: 554px;
		background-size: 834px auto;
	}

	.hero-text {
		flex: 1;
		position: relative;
		padding-left: 60px;
		padding-right: 40px;
	}

	.hero-text:before {
		top: 5px;
		left: 0;
		width: 24px;
		content: "";
		height: 104px;
		display: block;
		position: absolute;
		background-image: url("../images/dots.svg");
		background-size: contain;
		background-repeat: no-repeat;
		transition: all 1s ease-out 400ms;
	}

	.hero-text.animate:before {
		opacity: 0;
		transform: translateY(-50%);
	}

	.hero-text.animated:before {
		opacity: 1;
		transform: translateY(0);
	}

	.hero-text h2 {
		max-width: none;
		margin-bottom: 10px;
		font-size: 2.25rem;
		padding-left: 0;
		background: none;
	}

	.hero-bottom {
		font-size: 1.25rem;
	}

	.hero-bottom p {
		max-width: 85%;
	}

	.hero-text p {
		font-size: 1.25rem;
	}

	.hero-title {
		width: 260px;
		margin-right: 30px;
	}

	.hero-title h2 {
		font-size: 2.813rem;
		margin-bottom: 0;
	}

	.hero-logo img,
	.hero-logo svg {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1441px) {
	.hero {
		padding-top: 60px;
		padding-bottom: 115px;
	}

	.hero-logo {
		margin-right: 115px;
	}

	.hero-heading h1 {
		font-size: 1.875rem;
	}

	.hero-features {
		margin-bottom: 90px;
	}

	.hero-text {
		padding-right: 140px;
	}
}

/* CAREERS */
.careers-content {
	width: 90%;
	font-weight: 600;
	line-height: 1.4;
	font-size: 1.125rem;
	margin-bottom: 2rem;
}

.careers-content h2 {
	font-size: 1.875rem;
	color: var(--color-white);
	margin-bottom: 0.7rem;
}

.careers-logo {
	width: 100%;
}

.careers-logo img {
	width: 100%;
	display: block;
}

@media screen and (min-width: 768px) {
	.careers {
		display: flex;
	}

	.careers-content {
		flex: 1;
		width: 100%;
		margin-bottom: 0;
	}

	.careers-content h2 {
		font-size: 2.5rem;
	}

	.careers-logo {
		width: 300px;
		margin-left: 55px;
		padding-top: 60px;
	}
}

@media screen and (min-width: 1025px) {
	.careers-logo {
		width: 386px;
	}
}

@media screen and (min-width: 1441px) {
	.careers-logo {
		width: 386px;
		margin-left: 330px;
	}
}

/* CARD-USER */
.card-user {
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	text-decoration: none;
	width: 100%;
	min-height: 100%;
	position: relative;
	color: var(--color-white);
	background: var(--color-primary);
	padding: 2rem;
	box-sizing: border-box;
}

.card-user-image img {
	width: 100%;
	display: block;
	transition: all 0.2s ease-out;
}

.card-user-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 2.5rem;
}

.card-user-top {
	margin-bottom: 0.6rem;
}

.card-user-top span {
	display: block;
}

.card-user-link {
	color: var(--color-white);
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-secondary-dark);
}

.card-user-link:hover {
	color: var(--color-white);
	background: var(--color-secondary);
}

.card-user:hover .card-user-image img {
	transform: scale(1.02);
}

@media screen and (min-width: 1025px) {
	.card-user {
		padding: 3.5rem;
	}
}

/* LOCATION */
.location {
	z-index: 2;
	position: relative;
	background: linear-gradient(to right, rgba(0, 156, 203, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.location h2 {
	font-size: 2.25rem;
}

.location:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
	background-image: url("../images/circle-bg.svg");
	background-size: 620px auto;
	background-position: -435px bottom;
	background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
	.location:after {
		background-position: calc(-645px + (100vw - 1025px) * 0.19) center;
	}
}

.location-block {
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	width: 161px;
	padding-top: 1rem;
	text-align: center;
	align-content: center;
	height: 161px;
	background: var(--color-white);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
	color: var(--color-primary);
}

.location-block span {
	display: block;
	width: 100%;
	color: var(--color-secondary);
	line-height: 1.2;
	font-weight: 700;
	font-size: 1.125rem;
}

.location-block span:after {
	content: "\f178";
	display: block;
	margin-top: 0.5rem;
	transition: all 0.3s ease-out;
	font-family: var(--font-family-icon), sans-serif;
}

.location-block strong {
	display: block;
	width: 100%;
	font-size: 2.813rem;
	font-weight: 700;
	line-height: 1;
}

.location-block:hover span:after,
.location-block:focus span:after {
	padding-left: 10px;
}

.location-select select {
	border: 0;
	color: var(--color-primary);
	font-size: 1.125rem;
	padding: 0.6rem 0;
	border-bottom: 6px solid var(--color-secondary);
	width: 100%;
	font-weight: 700;
	cursor: pointer;
	background-image: url("../images/select-arrow.svg");
	background-repeat: no-repeat;
	background-position: right center;
}

.location-select {
	margin: 0 auto;
	width: 100%;
	padding-top: 15px;
}

.location-bottom {
	width: 100%;
}

.location-left {
	width: 161px;
	margin: 20px auto 0;
}

.location-right img {
	width: 100%;
}

.location-link:after {
	left: calc(100% + 2px);
	position: absolute;
	width: 23px;
	height: 23px;
	top: 50%;
	transform: rotate(45deg) translateY(-50%);
	border-radius: 3px;
	content: "";
	display: none;
	transition: all 0.3s ease-out;
	opacity: 0;
	visibility: hidden;
	background: var(--color-white);
}

.location-link {
	width: 8px;
	height: 8px;
	display: block;
	z-index: 2;
	padding: 0;
	position: relative;
	background: var(--color-primary);
	transition: all 0.3s ease-out;
	cursor: pointer;
	border: 0;
}

.location-link--state {
	width: 10px;
	height: 10px;
	background: var(--color-secondary);
	transform: rotate(45deg);
	border-radius: 0;
}

.location-link--state:after {
	display: none !important;
}

.location-item {
	width: 8px;
	height: 8px;
	position: absolute;
}

.location-item--panel-left .location-link:after {
	left: auto;
	right: calc(100% + 18px);
}

.location-item--panel-left .location-link--state:after {
	transform: rotate(-45deg) translateY(-50%);
	display: none;
}

.location-text strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.location-text address {
	display: block;
	margin-bottom: 20px;
}

.location-text {
	line-height: 1.4;
	padding: 15px;
	text-align: center;
}

.location-item--state .location-text {
	padding: 22px 15px;
}

.location-panel {
	position: fixed;
	transition: all 0.3s ease-out;
	opacity: 0;
	display: none;
	visibility: hidden;
	background: var(--color-white);
	box-shadow: 0 3px 50px rgba(0, 0, 0, 0.16);
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 320px;
	z-index: 999;
}

.location-right {
	width: 302px;
	margin: 40px auto 0;
	position: relative;
}

.location-item.open {
	z-index: 10;
}

.location-item.open .location-panel {
	opacity: 1;
	visibility: visible;
	display: block;
}

.location-item.open .location-link {
	background: var(--color-secondary);
}

.location-item--state.open .location-link--state {
	background: var(--color-secondary);
}

@media screen and (min-width: 768px) {
	.location-select {
		width: 282px;
	}

	.location-link:after {
		display: block;
	}

	.location-panel {
		display: block;
		position: absolute;
		bottom: -80px;
		left: calc(100% + 8px);
		transform: none;
		min-width: 248px;
		width: auto;
		max-width: none;
		z-index: auto;
	}

	.location-item--panel-left .location-panel {
		left: auto;
		right: calc(100% + 8px);
	}

	.location-item--state .location-panel {
		left: calc(100% + 8px);
	}

	.location-item--state.location-item--panel-left .location-panel {
		left: auto;
		right: calc(100% + 8px);
	}

	.location-right {
		width: 700px;
	}

	.location-item,
	.location-link {
		width: 12px;
		height: 12px;
	}

	.location-link--state {
		width: 14px;
		height: 14px;
	}

	.location-text .button {
		padding: 15px 25px;
	}

	.location-item:hover,
	.location-item.hover-active {
		z-index: 10;
	}

	.location-item:hover .location-link,
	.location-item.hover-active .location-link {
		background: var(--color-secondary);
	}

	.location-item--state:hover .location-link--state,
	.location-item--state.hover-active .location-link--state {
		background: var(--color-secondary);
	}

	.location-item:hover .location-link:after,
	.location-item:hover .location-panel,
	.location-item.hover-active .location-link:after,
	.location-item.hover-active .location-panel {
		opacity: 1;
		visibility: visible;
	}

	.location-list:has(.location-item:hover) .location-item.open:not(:hover) .location-link {
		background: var(--color-primary);
	}

	.location-list:has(.location-item:hover)
		.location-item--state.open:not(:hover)
		.location-link--state {
		background: var(--color-secondary);
	}

	.location-list:has(.location-item:hover) .location-item.open:not(:hover) .location-link:after,
	.location-list:has(.location-item:hover) .location-item.open:not(:hover) .location-panel {
		opacity: 0;
		visibility: hidden;
	}
}

@media screen and (min-width: 1025px) {
	.location:after {
		background-size: 834px auto;
	}

	.location-item:not(.location-item--state),
	.location-link:not(.location-link--state) {
		width: 18px;
		height: 18px;
	}

	.location-bottom {
		display: flex;
		flex-wrap: wrap;
	}

	.location h2 {
		font-size: 2.5rem;
	}

	.location-left {
		margin: -20px 0 0;
	}

	.location-right {
		width: 810px;
		padding-left: 30px;
		order: 1;
		margin: 30px 0 0;
	}
}

@media screen and (min-width: 1280px) {
	.location-right {
		width: 800px;
		margin: 30px 0 0 65px;
	}
}

@media screen and (min-width: 1440px) {
	.location-right {
		width: calc(76.5% - 161px);
	}
}

/* STICKY-LINK */
.sticky-link {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: fixed;
	bottom: 10%;
	z-index: 8;
	right: 25px;
}

.sticky-link button {
	border: 0;
	padding: 0;
	width: 100%;
	display: flex;
	font-size: 0.625rem;
	background: none;
	font-weight: 600;
	color: var(--color-gray-new);
	justify-content: flex-end;
}

.sticky-link button + button {
	margin-top: 10px;
}

.sticky-link button:after {
	content: "";
	width: 10px;
	height: 10px;
	background: var(--color-primary);
	border-radius: 50%;
	margin-left: 10px;
	mix-blend-mode: multiply;
}

.sticky-link.is-dark button:after {
	background: var(--color-gray);
}

.sticky-link button.active,
.sticky-link button:hover,
.sticky-link button.active {
	color: var(--color-secondary);
}

.sticky-link button.active:after,
.sticky-link button:hover:after,
.sticky-link button.active:after,
.sticky-link.is-dark button.active:after,
.sticky-link.is-dark button:hover:after,
.sticky-link.is-dark button.active:after {
	background: var(--color-secondary);
}

@media screen and (min-width: 1920px) {
	.sticky-link {
		bottom: 50%;
		right: 150px;
		transform: translateY(50%);
	}
}
