.lym-banner {
	position: relative;
	width: 100%;
	min-height: 620px;
	overflow: hidden;
	isolation: isolate;
	background: #111;
}

.lym-banner,
.lym-banner * {
	box-sizing: border-box;
}

.lym-banner__swiper,
.lym-banner__wrapper,
.lym-banner__slide {
	width: 100%;
	height: 100%;
	min-height: inherit;
}


.lym-banner__wrapper {
	display: flex;
}

.lym-banner__slide {
	flex: 0 0 100%;
}

.lym-banner__swiper {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.lym-banner__slide {
	position: relative;
	display: flex;
	overflow: hidden;
}

.lym-banner__background,
.lym-banner__media,
.lym-banner__overlay {
	position: absolute;
	inset: 0;
}

.lym-banner__background {
	z-index: 1;
	background: #111;
}

.lym-banner__media {
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.lym-banner__media img,
.lym-banner__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lym-banner__media--mobile {
	display: none;
}

.lym-banner__media--youtube {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.lym-banner__youtube {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.lym-banner__overlay {
	z-index: 2;
	pointer-events: none;
}

.lym-banner__content,
.lym-banner__global-phrases {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: var(--lym-content-vertical, center);
	justify-content: var(--lym-content-horizontal, flex-start);
	width: 100%;
	min-height: inherit;
	padding: 60px 80px;
	pointer-events: none;
}

.lym-banner__content-inner,
.lym-banner__global-phrases-inner {
	display: flex;
	flex-direction: column;
	align-items: var(--lym-content-horizontal, flex-start);
	width: 100%;
	max-width: 720px;
	text-align: var(--lym-content-align, left);
	pointer-events: auto;
}

.lym-banner__content-inner,
.lym-banner__global-phrases-inner {
	gap: 20px;
}

.lym-banner__eyebrow,
.lym-banner__heading,
.lym-banner__description,
.lym-banner__description p,
.lym-banner__global-phrase-static {
	margin: 0;
}

.lym-banner__eyebrow {
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lym-banner__heading {
	color: #fff;
	font-size: clamp(2.25rem, 5vw, 5rem);
	font-weight: 700;
	line-height: 1.02;
}

.lym-banner__description {
	max-width: 640px;
	color: #fff;
	font-size: 1.05rem;
	line-height: 1.6;
}

.lym-banner__description > :first-child {
	margin-top: 0;
}

.lym-banner__description > :last-child {
	margin-bottom: 0;
}

.lym-phrase-ticker {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 76px;
	min-height: max(
		var(--lym-phrase-stack-min-height, 0px),
		calc(
			5.25em +
			var(--lym-phrase-row-gap, 10px) +
			var(--lym-phrase-row-gap, 10px) +
			var(--lym-phrase-row-gap, 10px) +
			var(--lym-phrase-row-gap, 10px)
		)
	);
	column-gap: var(--lym-phrase-bar-gap, 24px);
	font-size: clamp(2.1rem, 5vw, 5rem);
	font-weight: 700;
	line-height: 1.05;
	overflow: hidden;
	--lym-phrase-row-gap: 10px;
	--lym-phrase-step: calc(1.05em + var(--lym-phrase-row-gap, 10px));
	--lym-phrase-near-opacity: 0.55;
	--lym-phrase-outer-opacity: 0.22;
}

.lym-phrase-ticker__bar {
	position: relative;
	z-index: 2;
	display: block;
	flex: 0 0 auto;
	align-self: center;
	width: var(--lym-phrase-bar-width, 4px);
	height: var(--lym-phrase-bar-height, 100%);
	max-height: 100%;
	border-radius: var(--lym-phrase-bar-radius, 999px);
	background-color: var(--lym-phrase-bar-solid-color, #fff);
	pointer-events: none;
}

.lym-phrase-ticker__bar--gradient {
	background-color: transparent;
	background-image: linear-gradient(
		var(--lym-phrase-bar-gradient-angle, 180deg),
		var(--lym-phrase-bar-gradient-start, #fff),
		var(--lym-phrase-bar-gradient-end, rgba(255, 255, 255, 0.2))
	);
}

.lym-phrase-ticker__viewport {
	position: relative;
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	height: 100%;
	overflow: hidden;
}

.lym-phrase-ticker__item {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	margin: 0;
	color: #fff;
	font: inherit;
	line-height: inherit;
	opacity: 0;
	transform: translateY(calc(-50% - var(--lym-phrase-step) - var(--lym-phrase-step) - var(--lym-phrase-step))) scale(0.9);
	transition-property: opacity, transform, filter;
	transition-duration: var(--lym-phrase-transition, 550ms);
	transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	filter: blur(5px);
	pointer-events: none;
	will-change: opacity, transform, filter;
}

.lym-phrase-ticker__item.is-next-2 {
	opacity: var(--lym-phrase-outer-opacity, 0.22);
	transform: translateY(calc(-50% - var(--lym-phrase-step) - var(--lym-phrase-step))) scale(0.94);
	filter: blur(3px);
}

.lym-phrase-ticker__item.is-next-1 {
	opacity: var(--lym-phrase-near-opacity, 0.55);
	transform: translateY(calc(-50% - var(--lym-phrase-step))) scale(0.97);
	filter: blur(1.5px);
}

.lym-phrase-ticker__item.is-active {
	opacity: 1;
	transform: translateY(-50%) scale(1);
	filter: blur(0);
}

.lym-phrase-ticker__item.is-prev-1 {
	opacity: var(--lym-phrase-near-opacity, 0.55);
	transform: translateY(calc(-50% + var(--lym-phrase-step))) scale(0.97);
	filter: blur(1.5px);
}

.lym-phrase-ticker__item.is-prev-2 {
	opacity: var(--lym-phrase-outer-opacity, 0.22);
	transform: translateY(calc(-50% + var(--lym-phrase-step) + var(--lym-phrase-step))) scale(0.94);
	filter: blur(3px);
}

.lym-phrase-ticker__item.is-hidden-next {
	opacity: 0;
	transform: translateY(calc(-50% - var(--lym-phrase-step) - var(--lym-phrase-step) - var(--lym-phrase-step))) scale(0.9);
	filter: blur(5px);
}

.lym-phrase-ticker__item.is-hidden-prev {
	opacity: 0;
	transform: translateY(calc(-50% + var(--lym-phrase-step) + var(--lym-phrase-step) + var(--lym-phrase-step))) scale(0.9);
	filter: blur(5px);
}

.lym-banner__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: inherit;
	gap: 14px;
}

.lym-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 28px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.lym-banner__button:hover,
.lym-banner__button:focus {
	text-decoration: none;
	transform: translateY(-2px);
}

.lym-banner__button:focus-visible,
.lym-banner__arrow:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.lym-banner__button--primary {
	color: #111;
	background: #fff;
}

.lym-banner__button--secondary {
	color: #fff;
	border-color: #fff;
	background: transparent;
}

.lym-banner__global-phrases {
	position: absolute;
	inset: 0;
	z-index: 5;
}

.lym-banner__global-phrase-static {
	color: #fff;
	font-size: clamp(2rem, 4vw, 4.4rem);
	font-weight: 700;
	line-height: 1.08;
}

.lym-banner__arrow {
	position: absolute;
	top: 50%;
	z-index: 8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: rgba(0, 0, 0, 0.25);
	cursor: pointer;
	transform: translateY(-50%);
	transition: color 200ms ease, background-color 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.lym-banner__arrow:hover,
.lym-banner__arrow:focus {
	color: #111;
	background: #fff;
	transform: translateY(-50%) scale(1.05);
}

.lym-banner__arrow svg {
	width: 48%;
	height: 48%;
}

.lym-banner__arrow--prev {
	left: 24px;
}

.lym-banner__arrow--next {
	right: 24px;
}

.lym-banner__arrow.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

.lym-banner__pagination {
	position: absolute;
	z-index: 8;
	bottom: 28px;
	left: 50% !important;
	width: auto !important;
	transform: translateX(-50%);
}

.lym-banner__pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 5px !important;
	background: rgba(255, 255, 255, 0.45);
	opacity: 1;
	transition: width 220ms ease, border-radius 220ms ease, background-color 220ms ease;
}

.lym-banner__pagination .swiper-pagination-bullet-active {
	width: 28px;
	border-radius: 999px;
	background: #fff;
}

.lym-banner .swiper-fade .swiper-slide,
.lym-banner .swiper-fade .swiper-slide-active {
	pointer-events: auto;
}

@media (max-width: 767px) {
	.lym-banner__slide.has-mobile-background .lym-banner__media--desktop {
		display: none;
	}

	.lym-banner__media--mobile {
		display: block;
	}

	.lym-banner__content,
	.lym-banner__global-phrases {
		padding: 40px 24px 60px;
	}

	.lym-banner__arrow {
		top: auto;
		bottom: 18px;
		width: 42px;
		height: 42px;
		transform: none;
	}

	.lym-banner__arrow:hover,
	.lym-banner__arrow:focus {
		transform: scale(1.05);
	}

	.lym-banner__arrow--prev {
		left: 18px;
	}

	.lym-banner__arrow--next {
		right: 18px;
	}

	.lym-banner__pagination {
		bottom: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lym-banner *,
	.lym-banner *::before,
	.lym-banner *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.lym-phrase-ticker {
		height: auto;
		min-height: 1.2em;
	}

	.lym-phrase-ticker__item:not(.is-active) {
		display: none;
	}
}
