.yesti-gs-slider,
.yesti-gs-slider * {
	box-sizing: border-box;
}

.yesti-gs-slider {
	--yesti-gs-accent: #008f3f;
	--yesti-gs-black: #050505;
	--yesti-gs-title-color: #ffffff;
	--yesti-gs-text-color: #c6cbd0;
	--yesti-gs-stat-text: #101010;
	--yesti-gs-muted: #757b82;
	--yesti-gs-split: 52%;
	--yesti-gs-transition: 650ms;
	position: relative;
	width: 100%;
	min-height: var(--yesti-gs-height, 950px);
	overflow: hidden;
	background: var(--yesti-gs-black);
	color: var(--yesti-gs-title-color);
}

.yesti-gs-track,
.yesti-gs-slide {
	position: absolute;
	inset: 0;
}

.yesti-gs-slide {
	display: grid;
	grid-template-columns: var(--yesti-gs-split) minmax(0, 1fr);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--yesti-gs-transition) ease, visibility var(--yesti-gs-transition) ease;
}

.yesti-gs-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.yesti-gs-left {
	position: relative;
	min-width: 0;
	background: var(--yesti-gs-black);
}

.yesti-gs-copy {
	width: min(650px, calc(100% - 170px));
	margin-left: clamp(52px, 10.2vw, 210px);
	padding-top: clamp(94px, 13.4vh, 142px);
}

.yesti-gs-title {
	margin: 0;
	color: var(--yesti-gs-title-color);
	font-size: clamp(48px, 3.12vw, 64px);
	font-weight: 700;
	line-height: 1.48;
	letter-spacing: 0;
}

.yesti-gs-description {
	max-width: 570px;
	margin-top: 20px;
	color: var(--yesti-gs-text-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0;
}

.yesti-gs-description p {
	margin: 0;
}

.yesti-gs-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 288px;
	min-height: 70px;
	margin-top: 47px;
	padding: 0 36px;
	background: var(--yesti-gs-accent);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0;
	transition: background 180ms ease, transform 180ms ease;
}

.yesti-gs-button:hover,
.yesti-gs-button:focus {
	color: #ffffff;
	filter: brightness(.92);
	transform: translateY(-1px);
}

.yesti-gs-button-icon {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
	margin-left: 22px;
}

.yesti-gs-button-icon::before,
.yesti-gs-button-icon::after {
	position: absolute;
	content: "";
	background: #ffffff;
}

.yesti-gs-button-icon::before {
	top: 8px;
	left: 1px;
	width: 17px;
	height: 2px;
	transform: rotate(-45deg);
	transform-origin: center;
}

.yesti-gs-button-icon::after {
	top: 2px;
	right: 1px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	background: transparent;
}

.yesti-gs-right {
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: #22282c;
}

.yesti-gs-media,
.yesti-gs-media img,
.yesti-gs-media video,
.yesti-gs-media iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.yesti-gs-media img,
.yesti-gs-media video {
	display: block;
	object-fit: cover;
}

.yesti-gs-media iframe {
	border: 0;
}

.yesti-gs-caption {
	position: absolute;
	left: clamp(34px, 3.7vw, 75px);
	bottom: 118px;
	z-index: 3;
	max-width: min(520px, calc(100% - 120px));
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.yesti-gs-stats {
	position: absolute;
	left: clamp(40px, 5.95vw, 122px);
	bottom: 0;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: min(862px, calc(var(--yesti-gs-split) - 94px));
	min-height: 308px;
	clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
	background: #ffffff;
	color: var(--yesti-gs-stat-text);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .12);
}

.yesti-gs-stat {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 40px 48px 44px;
	border-right: 1px solid #d6d6d6;
}

.yesti-gs-stat:last-child {
	border-right: 0;
}

.yesti-gs-stat-value {
	color: #0b0b0b;
	font-size: clamp(46px, 3.25vw, 64px);
	font-weight: 300;
	line-height: 1.05;
	letter-spacing: 0;
}

.yesti-gs-stat-label {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-top: 16px;
	color: #68707a;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.yesti-gs-stat-label span {
	min-width: 0;
}

.yesti-gs-stat-label i {
	display: block;
	flex: 1 0 50px;
	height: 3px;
	background: var(--yesti-gs-accent);
}

.yesti-gs-stat-description {
	margin-top: auto;
	color: #77808a;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: 0;
}

.yesti-gs-dots {
	position: absolute;
	top: 190px;
	left: calc(var(--yesti-gs-split) - 28px);
	z-index: 8;
	display: flex;
	align-items: center;
	gap: 14px;
}

.yesti-gs-dot {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .28);
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.yesti-gs-dot.is-active {
	background: #ffffff;
	transform: scale(1.02);
}

.yesti-gs-arrows {
	position: absolute;
	right: 42px;
	bottom: 40px;
	z-index: 9;
	display: flex;
	gap: 12px;
}

.yesti-gs-arrow {
	position: relative;
	display: grid;
	width: 48px;
	height: 80px;
	padding: 0;
	place-items: center;
	border: 0;
	background: var(--yesti-gs-accent);
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.yesti-gs-next {
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.yesti-gs-arrow:hover,
.yesti-gs-arrow:focus {
	filter: brightness(.92);
}

.yesti-gs-arrow span {
	position: relative;
	display: block;
	width: 17px;
	height: 17px;
}

.yesti-gs-arrow span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 17px;
	height: 2px;
	background: #ffffff;
	content: "";
	transform: translateY(-50%);
}

.yesti-gs-arrow span::after {
	position: absolute;
	top: 4px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	content: "";
}

.yesti-gs-prev span::after {
	left: 0;
	transform: rotate(-135deg);
}

.yesti-gs-next span::after {
	right: 0;
	transform: rotate(45deg);
}

@media (max-width: 1366px) {
	.yesti-gs-slider {
		--yesti-gs-split: 51%;
	}

	.yesti-gs-copy {
		width: min(560px, calc(100% - 100px));
		margin-left: clamp(44px, 7.2vw, 108px);
	}

	.yesti-gs-title {
		font-size: clamp(42px, 4.1vw, 56px);
		line-height: 1.42;
	}

	.yesti-gs-stats {
		width: min(760px, calc(var(--yesti-gs-split) - 68px));
	}

	.yesti-gs-stat {
		padding-right: 34px;
		padding-left: 34px;
	}
}

@media (max-width: 1024px) {
	.yesti-gs-slider {
		min-height: min(var(--yesti-gs-height, 820px), 900px);
	}

	.yesti-gs-slide {
		grid-template-columns: 48% minmax(0, 52%);
	}

	.yesti-gs-copy {
		width: calc(100% - 56px);
		margin-left: 32px;
		padding-top: 76px;
	}

	.yesti-gs-title {
		font-size: 42px;
		line-height: 1.36;
	}

	.yesti-gs-description {
		font-size: 15px;
		line-height: 1.68;
	}

	.yesti-gs-button {
		width: 238px;
		min-height: 62px;
		margin-top: 34px;
		padding: 0 28px;
	}

	.yesti-gs-stats {
		left: 28px;
		bottom: 0;
		width: min(610px, calc(100% - 56px));
		min-height: 250px;
	}

	.yesti-gs-stat {
		padding: 30px 26px 32px;
	}

	.yesti-gs-stat-value {
		font-size: 44px;
	}

	.yesti-gs-stat-label {
		gap: 14px;
		font-size: 12px;
	}

	.yesti-gs-stat-description {
		font-size: 14px;
		line-height: 1.55;
	}

	.yesti-gs-dots {
		top: 152px;
		left: calc(48% - 23px);
	}

	.yesti-gs-caption {
		bottom: 108px;
		font-size: 13px;
	}

	.yesti-gs-arrows {
		right: 28px;
		bottom: 28px;
	}
}

@media (max-width: 767px) {
	.yesti-gs-slider {
		min-height: 0;
		overflow: visible;
		background: #ffffff;
	}

	.yesti-gs-track {
		position: relative;
		inset: auto;
	}

	.yesti-gs-slide {
		position: absolute;
		inset: auto;
		display: none;
		grid-template-columns: 1fr;
		background: var(--yesti-gs-black);
	}

	.yesti-gs-slide.is-active {
		position: relative;
		display: flex;
		flex-direction: column;
		opacity: 1;
		visibility: visible;
	}

	.yesti-gs-left {
		order: 1;
		min-height: 0;
	}

	.yesti-gs-copy {
		width: 100%;
		margin-left: 0;
		padding: 54px 22px 34px;
	}

	.yesti-gs-title {
		font-size: 36px;
		line-height: 1.22;
	}

	.yesti-gs-description {
		max-width: none;
		margin-top: 22px;
		font-size: 15px;
		line-height: 1.68;
	}

	.yesti-gs-button {
		width: min(100%, 286px);
		min-height: 62px;
		margin-top: 32px;
		padding: 0 26px;
	}

	.yesti-gs-right {
		order: 2;
		height: 360px;
	}

	.yesti-gs-stats {
		position: relative;
		left: auto;
		bottom: auto;
		order: 3;
		grid-template-columns: 1fr;
		width: calc(100% - 28px);
		min-height: 0;
		margin: -20px 14px 0;
		clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
	}

	.yesti-gs-stat {
		min-height: 214px;
		padding: 30px 28px 32px;
		border-right: 0;
		border-bottom: 1px solid #d6d6d6;
	}

	.yesti-gs-stat:last-child {
		border-bottom: 0;
	}

	.yesti-gs-stat-value {
		font-size: 48px;
	}

	.yesti-gs-stat-label {
		font-size: 12px;
		gap: 16px;
	}

	.yesti-gs-stat-description {
		font-size: 15px;
	}

	.yesti-gs-caption {
		left: 22px;
		right: 96px;
		bottom: 26px;
		max-width: none;
		font-size: 12px;
	}

	.yesti-gs-dots {
		top: 22px;
		left: 22px;
		bottom: auto;
	}

	.yesti-gs-arrows {
		right: 14px;
		bottom: 0;
		transform: none;
	}

	.yesti-gs-arrow {
		width: 44px;
		height: 62px;
	}
}

@media (max-width: 380px) {
	.yesti-gs-title {
		font-size: 32px;
	}

	.yesti-gs-stat-value {
		font-size: 42px;
	}

	.yesti-gs-stat-label {
		align-items: flex-start;
		flex-direction: column;
	}

	.yesti-gs-stat-label i {
		flex: 0 0 auto;
		width: 52px;
	}
}
