/*
 * SBS Addons frontend styles.
 * Keep widget CSS scoped to avoid theme conflicts.
 */

:root {
	--sbs-primary: #111827;
	--sbs-secondary: #6b7280;
	--sbs-accent: #2563eb;
	--sbs-accent-hover: #1d4ed8;
	--sbs-border: #e5e7eb;
	--sbs-bg: #ffffff;
	--sbs-soft-bg: #f9fafb;
	--sbs-radius: 14px;
	--sbs-button-radius: 10px;
	--sbs-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
p{
	margin-top: 0;
	margin-bottom: 20px;
}
.sbs-remote-products-widget {
	width: 100%;
}

.sbs-remote-products-heading {
	margin: 0 0 28px;
	font-size: 32px;
	line-height: 1.15;
	font-weight: 700;
}

.sbs-remote-products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.sbs-remote-product-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sbs-remote-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.sbs-remote-product-image {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f7f7f7;
}

.sbs-remote-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.sbs-remote-product-card:hover .sbs-remote-product-image img {
	transform: scale(1.04);
}

.sbs-remote-product-body {
	padding: 20px;
}

.sbs-remote-product-title {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
}

.sbs-remote-product-title a {
	color: #111;
	text-decoration: none;
}

.sbs-remote-product-title a:hover {
	text-decoration: underline;
}

.sbs-remote-product-price {
	margin-bottom: 12px;
	font-weight: 700;
	font-size: 16px;
	color: #111;
}

.sbs-remote-product-excerpt {
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.sbs-remote-product-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	background: var(--sbs-primary, #111827);
	color: #ffffff;
	border: 0;
	border-radius: var(--sbs-button-radius, 10px);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sbs-remote-product-button:hover,
.sbs-remote-product-button:focus {
	background: var(--sbs-accent, #2563eb);
	color: #ffffff;
	transform: translateY(-1px);
}

.sbs-remote-products-empty {
	padding: 20px;
	border: 1px dashed rgba(0, 0, 0, 0.18);
	border-radius: 14px;
	background: #fafafa;
	color: #555;
}

@media (max-width: 1024px) {
	.sbs-remote-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.sbs-remote-products-heading {
		font-size: 26px;
	}

	.sbs-remote-products-grid {
		grid-template-columns: 1fr;
	}
}

/* SBS Affiliate Button Widget */
.sbs-affiliate-button-wrap {
	width: 100%;
}

.sbs-affiliate-button,
.sbs-affiliate-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 13px 22px;
	border: 0;
	border-radius: var(--sbs-button-radius, 10px);
	background: var(--sbs-primary, #111827);
	color: #ffffff;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.sbs-affiliate-button:hover,
.sbs-affiliate-link:hover {
	background: var(--sbs-accent, #2563eb);
	color: #ffffff;
	transform: translateY(-1px);
}


/* =========================
   SBS Button Widgets
========================= */
.sbs-dbtn-wrap {
	display: flex;
	width: 100%;
}

.sbs-dbtn-align-left .sbs-dbtn-wrap {
	justify-content: flex-start;
}

.sbs-dbtn-align-center .sbs-dbtn-wrap {
	justify-content: center;
}

.sbs-dbtn-align-right .sbs-dbtn-wrap {
	justify-content: flex-end;
}

.sbs-dbtn-align-justify .sbs-dbtn-wrap .sbs-dbtn {
	width: 100% !important;
}

.sbs-dbtn {
	--sbs-dbtn-hover-y: -3px;
	--sbs-dbtn-hover-scale: 1.01;
	--sbs-dbtn-icon-hover-x: 5px;

	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 305px;
	min-height: 60px;
	padding: 0 8px 0 28px;
	border: 1px solid transparent;
	border-style: solid;
	border-radius: 0;
	text-decoration: none !important;
	box-sizing: border-box;
	overflow: hidden;
	isolation: isolate;
	cursor: pointer;
	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		border-color 0.28s ease,
		transform 0.28s ease,
		box-shadow 0.28s ease;
}

.sbs-dbtn:hover,
.sbs-dbtn:focus {
	text-decoration: none !important;
	outline: none;
}

.sbs-dbtn--filled {
	background-color: #54be45;
	border-color: #54be45;
	color: #ffffff;
}

.sbs-dbtn--outline {
	background-color: rgba(0, 0, 0, 0.16);
	border-color: rgba(255, 255, 255, 0.85);
	color: #ffffff;
}

.sbs-dbtn--custom {
	background-color: transparent;
	border-color: currentColor;
	color: inherit;
}

.sbs-dbtn__text {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: inherit;
}

.sbs-dbtn__iconbox {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	flex: 0 0 auto;
	color: currentColor;
	border: 0 solid transparent;
	box-sizing: border-box;
	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		transform 0.28s ease,
		border-color 0.28s ease;
}

.sbs-dbtn--filled .sbs-dbtn__iconbox {
	background-color: #ffffff;
	color: #111111;
}

.sbs-dbtn--outline .sbs-dbtn__iconbox {
	background-color: transparent;
	color: #ffffff;
}

.sbs-dbtn__iconbox i,
.sbs-dbtn__iconbox svg,
.sbs-dbtn__iconbox img {
	display: block;
	transition: transform 0.28s ease, color 0.28s ease, fill 0.28s ease, stroke 0.28s ease;
}

.sbs-dbtn__iconbox svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.sbs-dbtn__iconbox svg path {
	fill: currentColor;
}

.sbs-dbtn__iconbox i {
	font-size: 26px;
	color: currentColor;
}

.sbs-dbtn__iconbox img {
	max-width: 26px;
	max-height: 26px;
	object-fit: contain;
}

.sbs-dbtn--anim-lift:hover {
	transform: translateY(var(--sbs-dbtn-hover-y)) scale(var(--sbs-dbtn-hover-scale));
}

.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox svg,
.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox i,
.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox img {
	transform: translateX(var(--sbs-dbtn-icon-hover-x));
}

.sbs-dbtn--anim-shine::before {
	content: "";
	position: absolute;
	inset: -40% auto -40% -70%;
	width: 45%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.32),
		transparent
	);
	transform: skewX(-18deg);
	z-index: 1;
	transition: left 0.7s ease;
}

.sbs-dbtn--anim-shine:hover::before {
	left: 125%;
}

.sbs-dbtn--anim-pulse:hover {
	animation: sbsDbtnPulse 0.65s ease;
}

@keyframes sbsDbtnPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.035);
	}

	100% {
		transform: scale(1);
	}
}

@media (max-width: 767px) {
	.sbs-dbtn {
		width: 100%;
	}

	.sbs-dbtn__text {
		white-space: normal !important;
	}
}
/* =========================
   SBS Dual Heading Widget
========================= */
.sbs-dual-heading-wrap {
	width: 100%;
}

.sbs-dual-heading {
	--sbs-dual-normal-gradient-1: #111827;
	--sbs-dual-normal-gradient-2: #2563eb;
	--sbs-dual-normal-gradient-angle: 90deg;
	--sbs-dual-highlight-gradient-1: #ffffff;
	--sbs-dual-highlight-gradient-2: #facc15;
	--sbs-dual-highlight-gradient-angle: 90deg;
	--sbs-dual-highlight-bg-gradient-1: #111827;
	--sbs-dual-highlight-bg-gradient-2: #2563eb;
	--sbs-dual-highlight-bg-gradient-angle: 90deg;
	--sbs-dual-anim-duration: 800ms;
	--sbs-dual-anim-delay: 0ms;
	--sbs-dual-marker-extend: 0.08em;
	--sbs-dual-marker-skew: -2deg;
	margin: 0;
	padding: 0;
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.04em;
	color: var(--sbs-primary, #111827);
}

.sbs-dual-heading-link {
	display: inline-flex;
	color: inherit;
	text-decoration: none !important;
}

.sbs-dual-heading-link:hover,
.sbs-dual-heading-link:focus {
	color: inherit;
	text-decoration: none !important;
}

.sbs-dual-heading__inner {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.sbs-dual-heading--block .sbs-dual-heading__inner {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
}

.sbs-dual-heading-align-left .sbs-dual-heading-wrap {
	text-align: left;
}

.sbs-dual-heading-align-center .sbs-dual-heading-wrap {
	text-align: center;
}

.sbs-dual-heading-align-right .sbs-dual-heading-wrap {
	text-align: right;
}

.sbs-dual-heading__part {
	display: inline-flex;
	align-items: center;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		background-position 0.45s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.sbs-dual-heading__normal {
	color: var(--sbs-primary, #111827);
}

.sbs-dual-heading--normal-gradient .sbs-dual-heading__normal,
.sbs-dual-heading--highlight-gradient .sbs-dual-heading__highlight-text {
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.sbs-dual-heading--normal-gradient .sbs-dual-heading__normal {
	background-image: linear-gradient(
		var(--sbs-dual-normal-gradient-angle),
		var(--sbs-dual-normal-gradient-1),
		var(--sbs-dual-normal-gradient-2)
	);
}

.sbs-dual-heading--highlight-gradient .sbs-dual-heading__highlight-text {
	background-image: linear-gradient(
		var(--sbs-dual-highlight-gradient-angle),
		var(--sbs-dual-highlight-gradient-1),
		var(--sbs-dual-highlight-gradient-2)
	);
}

.sbs-dual-heading--gradient-animate .sbs-dual-heading__normal,
.sbs-dual-heading--gradient-animate .sbs-dual-heading__highlight-text {
	animation: sbsDualGradientShift 4s ease infinite;
}

.sbs-dual-heading__highlight {
	position: relative;
	z-index: 1;
	color: #ffffff;
	background-color: var(--sbs-primary, #111827);
	border-radius: var(--sbs-button-radius, 10px);
	padding: 6px 14px;
	line-height: 1;
}


.sbs-dual-heading__highlight-text {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: inherit;
}

.sbs-dual-heading--highlight-bg-none .sbs-dual-heading__highlight,
.sbs-dual-heading--plain .sbs-dual-heading__highlight,
.sbs-dual-heading--marker .sbs-dual-heading__highlight,
.sbs-dual-heading--underline .sbs-dual-heading__highlight {
	background-color: transparent;
	background-image: none;
}

.sbs-dual-heading--highlight-bg-gradient .sbs-dual-heading__highlight {
	background-color: transparent;
	background-image: linear-gradient(
		var(--sbs-dual-highlight-bg-gradient-angle),
		var(--sbs-dual-highlight-bg-gradient-1),
		var(--sbs-dual-highlight-bg-gradient-2)
	);
}

.sbs-dual-heading--plain .sbs-dual-heading__highlight {
	color: var(--sbs-accent, #2563eb);
	padding: 0;
	border-radius: 0;
}

.sbs-dual-heading--marker .sbs-dual-heading__highlight {
	color: var(--sbs-primary, #111827);
	padding: 0 0.06em;
	border-radius: 0;
	background-color: transparent;
}

.sbs-dual-heading--marker .sbs-dual-heading__highlight::before {
	content: "";
	position: absolute;
	left: calc(var(--sbs-dual-marker-extend) * -1);
	right: calc(var(--sbs-dual-marker-extend) * -1);
	bottom: 0.05em;
	height: 0.42em;
	z-index: -1;
	border-radius: 999px;
	background-color: #facc15;
	opacity: 0.75;
	transform: skewX(var(--sbs-dual-marker-skew));
	transform-origin: left center;
}

.sbs-dual-heading--marker-anim-sweep .sbs-dual-heading__highlight::before,
.sbs-dual-heading--marker-anim-grow .sbs-dual-heading__highlight::before {
	animation: sbsDualMarkerSweep var(--sbs-dual-anim-duration) ease var(--sbs-dual-anim-delay) both;
}

.sbs-dual-heading--marker-anim-pulse .sbs-dual-heading__highlight::before {
	animation: sbsDualMarkerPulse 1.6s ease var(--sbs-dual-anim-delay) infinite;
}

.sbs-dual-heading--underline .sbs-dual-heading__highlight {
	color: var(--sbs-primary, #111827);
	padding: 0 2px 4px;
	border-radius: 0;
}

.sbs-dual-heading--underline .sbs-dual-heading__highlight::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	z-index: -1;
	border-radius: 999px;
	background-color: var(--sbs-accent, #2563eb);
	opacity: 0.35;
}

.sbs-dual-heading--outline .sbs-dual-heading__highlight {
	color: var(--sbs-primary, #111827);
	background-color: transparent;
	background-image: none;
	border: 1px solid currentColor;
}

.sbs-dual-heading-link:hover .sbs-dual-heading__highlight {
	background-color: var(--sbs-accent, #2563eb);
	color: #ffffff;
	transform: translateY(-1px);
}

.sbs-dual-heading--marker .sbs-dual-heading-link:hover .sbs-dual-heading__highlight,
.sbs-dual-heading--underline .sbs-dual-heading-link:hover .sbs-dual-heading__highlight,
.sbs-dual-heading--plain .sbs-dual-heading-link:hover .sbs-dual-heading__highlight {
	background-color: transparent;
}

.sbs-dual-heading-link:hover .sbs-dual-heading__normal {
	color: var(--sbs-accent, #2563eb);
}

.sbs-dual-heading-anim-fade-up,
.sbs-dual-heading-anim-slide-left,
.sbs-dual-heading-anim-zoom-in,
.sbs-dual-heading-anim-reveal,
.sbs-dual-heading-anim-word-pop .sbs-dual-heading__part {
	animation-duration: var(--sbs-dual-anim-duration);
	animation-delay: var(--sbs-dual-anim-delay);
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.sbs-dual-heading-anim-fade-up {
	animation-name: sbsDualFadeUp;
}

.sbs-dual-heading-anim-slide-left {
	animation-name: sbsDualSlideLeft;
}

.sbs-dual-heading-anim-zoom-in {
	animation-name: sbsDualZoomIn;
}

.sbs-dual-heading-anim-reveal {
	animation-name: sbsDualReveal;
}

.sbs-dual-heading-anim-word-pop .sbs-dual-heading__part {
	animation-name: sbsDualWordPop;
}

.sbs-dual-heading-anim-word-pop .sbs-dual-heading__part:nth-child(2) {
	animation-delay: calc(var(--sbs-dual-anim-delay) + 90ms);
}

.sbs-dual-heading-anim-word-pop .sbs-dual-heading__part:nth-child(3) {
	animation-delay: calc(var(--sbs-dual-anim-delay) + 180ms);
}

@keyframes sbsDualFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes sbsDualSlideLeft {
	from {
		opacity: 0;
		transform: translateX(24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes sbsDualZoomIn {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes sbsDualReveal {
	from {
		opacity: 0;
		clip-path: inset(0 100% 0 0);
	}
	to {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}

@keyframes sbsDualWordPop {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes sbsDualMarkerSweep {
	from {
		transform: scaleX(0) skewX(var(--sbs-dual-marker-skew));
	}
	to {
		transform: scaleX(1) skewX(var(--sbs-dual-marker-skew));
	}
}

@keyframes sbsDualMarkerPulse {
	0%, 100% {
		transform: scaleX(1) skewX(var(--sbs-dual-marker-skew));
		opacity: 0.75;
	}
	50% {
		transform: scaleX(1.04) skewX(var(--sbs-dual-marker-skew));
		opacity: 1;
	}
}

@keyframes sbsDualGradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@media (max-width: 767px) {
	.sbs-dual-heading {
		font-size: clamp(28px, 8vw, 42px);
	}

	.sbs-dual-heading__inner {
		gap: 6px;
	}
}

/* =========================================================
   SBS Icon List Widget
   ========================================================= */

.sbs-icon-list-wrap {
	width: 320px;
	max-width: 100%;
}

.sbs-icon-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.sbs-icon-list__item {
	margin: 0;
	padding: 0;
	position: relative;
}

.sbs-icon-list--separator .sbs-icon-list__item:not(:last-child) {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: rgba(255, 255, 255, 0.35);
}

.sbs-icon-list__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 15px 0;
	color: #f5f5f5;
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.sbs-icon-list__link:hover,
.sbs-icon-list__link:focus {
	color: #54c449;
	text-decoration: none;
	outline: none;
}

.sbs-icon-list__text {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.sbs-icon-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	color: currentColor;
	transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.sbs-icon-list__icon-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.sbs-icon-list__icon i,
.sbs-icon-list__icon svg {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 16px;
	line-height: 1;
	fill: currentColor;
	color: currentColor;
}

.sbs-icon-list--icon-left .sbs-icon-list__link {
	justify-content: flex-start;
}

.sbs-icon-list--icon-left .sbs-icon-list__text {
	flex: 1;
}

.sbs-icon-list--icon-right .sbs-icon-list__text {
	flex: 1;
}

.sbs-icon-list--hover-arrow-slide .sbs-icon-list__link:hover .sbs-icon-list__icon,
.sbs-icon-list--hover-arrow-slide .sbs-icon-list__link:focus .sbs-icon-list__icon {
	transform: translate(4px, -4px);
}

.sbs-icon-list--hover-lift .sbs-icon-list__link:hover,
.sbs-icon-list--hover-lift .sbs-icon-list__link:focus {
	transform: translateY(-2px);
}

.sbs-icon-list--hover-line-grow.sbs-icon-list--separator .sbs-icon-list__item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.3s ease;
}

.sbs-icon-list--hover-line-grow.sbs-icon-list--separator .sbs-icon-list__item:hover::after,
.sbs-icon-list--hover-line-grow.sbs-icon-list--separator .sbs-icon-list__item:focus-within::after {
	width: 100%;
}

@media (max-width: 767px) {
	.sbs-icon-list__link {
		font-size: 20px;
		padding: 13px 0;
	}
}

/* =========================
   SBS Animation Widget Pack
========================= */
.sbs-gradient-text {
	background-image: linear-gradient(90deg, #111827, #2563eb);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent !important;
}

.sbs-anim-item {
	will-change: transform, opacity, clip-path;
}

.sbs-split-unit {
	display: inline-block;
	white-space: pre-wrap;
}

.sbs-animate-title-wrap,
.sbs-animation-text {
	width: 100%;
}

.sbs-animate-title {
	margin: 0;
	font-size: clamp(36px, 6vw, 88px);
	line-height: 1.02;
	font-weight: 700;
	letter-spacing: -0.045em;
	color: var(--sbs-primary, #111827);
}

.sbs-animation-text {
	font-size: 18px;
	line-height: 1.7;
	color: var(--sbs-secondary, #6b7280);
}

.sbs-animation-text p:last-child {
	margin-bottom: 0;
}

/* Image Box */
.sbs-image-box,
.sbs-image-box-slide-inner,
.sbs-video-box,
.sbs-sticky-box,
.sbs-scroll-el-item {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
}

.sbs-image-box {
	position: relative;
	overflow: hidden;
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sbs-image-box-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.sbs-image-box-media,
.sbs-image-box-slide-inner > img,
.sbs-video-box-media,
.sbs-video-popup-trigger {
	position: relative;
	overflow: hidden;
}

.sbs-image-box-media {
	aspect-ratio: 4 / 3;
	background: #f3f4f6;
}

.sbs-image-box-media img,
.sbs-image-box-slide-inner img,
.sbs-image-widget-figure img,
.sbs-video-popup-trigger img,
.sbs-video-box video,
.sbs-scrollable-video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sbs-image-box-body {
	padding: 24px;
}

.sbs-image-box-title,
.sbs-image-box-slide-body h3,
.sbs-video-box-body h3,
.sbs-scroll-el-item h3,
.sbs-sticky-box h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--sbs-primary, #111827);
}

.sbs-image-box-text,
.sbs-image-box-slide-body p,
.sbs-video-box-body p,
.sbs-scroll-el-item p,
.sbs-sticky-content {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--sbs-secondary, #6b7280);
}

.sbs-hover-lift:hover,
.sbs-hover-float:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.sbs-hover-zoom:hover img,
.sbs-image-box.sbs-hover-zoom:hover img {
	transform: scale(1.08);
}

.sbs-image-box img,
.sbs-image-widget-figure img,
.sbs-video-popup-trigger img {
	transition: transform .45s ease, filter .45s ease;
}

.sbs-hover-shine::after,
.sbs-btn-shine::after {
	content: "";
	position: absolute;
	top: -60%;
	left: -120%;
	width: 60%;
	height: 220%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
	transform: rotate(25deg);
	transition: left .7s ease;
	pointer-events: none;
}

.sbs-hover-shine:hover::after,
.sbs-btn-shine:hover::after {
	left: 135%;
}

/* Basic Slider */
.sbs-basic-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.sbs-slider-track {
	display: flex;
	transition: transform .45s ease;
	will-change: transform;
}

.sbs-image-box-slide {
	flex: 0 0 calc(100% / 3);
	padding: 12px;
	box-sizing: border-box;
}

.sbs-image-box-slide-inner {
	overflow: hidden;
	height: 100%;
	transition: transform .35s ease, box-shadow .35s ease;
}

.sbs-image-box-slide-inner:hover {
	transform: translateY(-6px);
}

.sbs-image-box-slide-inner > a,
.sbs-image-box-slide-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.sbs-image-box-slide-inner img {
	aspect-ratio: 4 / 3;
	background: #f3f4f6;
}

.sbs-image-box-slide-body {
	padding: 22px;
}

.sbs-slider-nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 18px;
}

.sbs-slider-prev,
.sbs-slider-next {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.sbs-slider-prev:hover,
.sbs-slider-next:hover {
	background: var(--sbs-primary, #111827);
	color: #fff;
	transform: translateY(-2px);
}

/* SBS Image */
.sbs-image-widget-figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 24px;
	background: #f3f4f6;
	transition: transform .28s ease, box-shadow .28s ease;
}

.sbs-image-widget-figure figcaption {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255,255,255,.88);
	backdrop-filter: blur(10px);
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

/* Draw SVG */
.sbs-draw-svg {
	display: inline-block;
	width: 100%;
	color: var(--sbs-primary, #111827);
}

.sbs-draw-svg svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.sbs-draw-svg path,
.sbs-draw-svg line,
.sbs-draw-svg polyline,
.sbs-draw-svg polygon,
.sbs-draw-svg circle,
.sbs-draw-svg rect {
	visibility: hidden;
}

/* Brand Slider */
.sbs-brand-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.sbs-brand-track {
	display: flex;
	align-items: center;
	gap: 28px;
	width: max-content;
}

.sbs-brand-item {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	padding: 18px 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	background: #fff;
}

.sbs-brand-item img {
	display: block;
	width: auto;
	max-height: 68px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .72;
	transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.sbs-brand-item:hover img {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.04);
}

.sbs-marquee .sbs-brand-track {
	animation-name: sbsBrandMarquee;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.sbs-marquee:hover .sbs-brand-track {
	animation-play-state: paused;
}

@keyframes sbsBrandMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Animated Button */
.sbs-animated-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 16px 30px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--sbs-primary, #111827);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	overflow: hidden;
	transition: color .28s ease, transform .28s ease, border-color .28s ease;
	will-change: transform;
}

.sbs-animated-btn span,
.sbs-animated-btn i {
	position: relative;
	z-index: 2;
	font-style: normal;
}

.sbs-animated-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--sbs-accent, #2563eb);
	transform: translateY(102%);
	transition: transform .32s ease;
	z-index: 1;
}

.sbs-btn-fill:hover::before,
.sbs-btn-magnetic:hover::before,
.sbs-btn-arrow:hover::before {
	transform: translateY(0);
}

.sbs-btn-arrow i {
	transition: transform .25s ease;
}

.sbs-btn-arrow:hover i {
	transform: translateX(6px);
}

.sbs-animated-btn:hover,
.sbs-animated-btn:focus {
	color: #fff;
	transform: translateY(-2px);
}

/* Scrollable Video */
.sbs-scrollable-video {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 28px;
	background: #050505;
}

.sbs-scrollable-video video {
	min-height: 360px;
	background: #050505;
}

/* Scroll Elements */
.sbs-scroll-elements {
	display: grid;
	gap: 24px;
}

.sbs-scroll-layout-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sbs-scroll-layout-timeline {
	position: relative;
}

.sbs-scroll-layout-timeline::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 12px;
	bottom: 12px;
	width: 2px;
	background: rgba(15, 23, 42, .1);
}

.sbs-scroll-el-item {
	position: relative;
	padding: 28px;
}

.sbs-scroll-layout-timeline .sbs-scroll-el-item {
	margin-left: 58px;
}

.sbs-scroll-el-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: var(--sbs-primary, #111827);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.sbs-scroll-layout-timeline .sbs-scroll-el-num {
	position: absolute;
	left: -77px;
	top: 24px;
}

/* Text Animation */
.sbs-text-animation {
	font-size: clamp(32px, 5vw, 72px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.04em;
	color: var(--sbs-primary, #111827);
}

.sbs-text-dynamic {
	position: relative;
	display: inline-block;
	color: var(--sbs-accent, #2563eb);
}

.sbs-text-dynamic::after {
	content: "";
	display: inline-block;
	width: .08em;
	height: .9em;
	margin-left: .08em;
	background: currentColor;
	vertical-align: -.08em;
	animation: sbsBlink .9s steps(2) infinite;
}

@keyframes sbsBlink {
	50% { opacity: 0; }
}

/* Video Popup */
.sbs-video-popup-trigger {
	position: relative;
	display: block;
	width: 100%;
	min-height: 320px;
	padding: 0;
	border: 0;
	border-radius: 28px;
	background: #111827;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 18px 60px rgba(15, 23, 42, 0.14);
}

.sbs-video-popup-trigger::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,.55));
	z-index: 1;
}

.sbs-video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font-size: 28px;
	transform: translate(-50%, -50%);
	transition: transform .25s ease, background .25s ease;
}

.sbs-video-popup-trigger:hover .sbs-video-play {
	transform: translate(-50%, -50%) scale(1.08);
}

.sbs-video-title {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 24px;
	z-index: 2;
	font-size: 22px;
	font-weight: 700;
	text-align: left;
}

.sbs-video-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.sbs-video-modal.is-active {
	display: flex;
}

.sbs-video-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .78);
	backdrop-filter: blur(5px);
}

.sbs-video-modal-dialog {
	position: relative;
	z-index: 2;
	width: min(1080px, 100%);
}

.sbs-video-modal-close {
	position: absolute;
	right: -14px;
	top: -14px;
	z-index: 3;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.sbs-video-modal-content {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
}

.sbs-video-modal-content iframe,
.sbs-video-modal-content video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.sbs-video-modal-open {
	overflow: hidden;
}

/* Video Box */
.sbs-video-box {
	overflow: hidden;
}

.sbs-video-box-media {
	aspect-ratio: 16 / 9;
	background: #111;
}

.sbs-video-box-play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 72px;
	height: 72px;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.94);
	color: #111827;
	font-size: 24px;
	transform: translate(-50%, -50%);
	cursor: pointer;
	transition: transform .25s ease, opacity .25s ease;
}

.sbs-video-box.is-playing .sbs-video-box-play {
	opacity: 0;
}

.sbs-video-box:hover .sbs-video-box-play,
.sbs-video-box.is-playing:hover .sbs-video-box-play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.06);
}

.sbs-video-box-body {
	padding: 24px;
}

/* Sticky Elements */
.sbs-sticky-elements {
	position: relative;
	min-height: 1px;
}

.sbs-sticky-box {
	position: sticky;
	top: 120px;
	padding: 30px;
	z-index: 5;
}

.sbs-sticky-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.sbs-scroll-layout-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sbs-image-box-slide {
		flex-basis: calc(100% / 2);
	}
}

@media (max-width: 767px) {
	.sbs-animate-title,
	.sbs-text-animation {
		font-size: clamp(30px, 11vw, 52px);
	}

	.sbs-image-box-slide,
	.sbs-scroll-layout-grid {
		flex-basis: 100%;
		grid-template-columns: 1fr;
	}

	.sbs-scroll-layout-timeline::before {
		left: 18px;
	}

	.sbs-scroll-layout-timeline .sbs-scroll-el-item {
		margin-left: 46px;
	}

	.sbs-scroll-layout-timeline .sbs-scroll-el-num {
		left: -65px;
	}

	.sbs-video-popup-trigger {
		min-height: 240px;
	}

	.sbs-video-play {
		width: 64px;
		height: 64px;
		font-size: 22px;
	}

	.sbs-brand-item {
		min-width: 130px;
		padding: 14px 18px;
	}
}

/* SBS Animation Pack Enhanced Controls */
.sbs-anim-align{position:relative}.sbs-anim-heading{line-height:1.08}.sbs-gradient-text,.sbs-heading-gradient-yes .sbs-anim-heading{background-clip:text;-webkit-background-clip:text;color:transparent!important}.sbs-title-stroke{color:transparent;-webkit-text-stroke:1px currentColor}.sbs-title-outline-fill{color:transparent;-webkit-text-stroke:1px currentColor;transition:.35s}.sbs-title-outline-fill:hover{color:currentColor}.sbs-title-underline::after{content:"";display:block;width:70px;height:4px;background:currentColor;margin-top:.25em;transform-origin:left;animation:sbsLineGrow 1.1s ease both}.sbs-title-highlight{display:inline;background:linear-gradient(transparent 60%,rgba(255,220,64,.55) 0)}@keyframes sbsLineGrow{from{transform:scaleX(0)}to{transform:scaleX(1)}}.sbs-split-unit{display:inline-block;will-change:transform,opacity}.sbs-animation-text.sbs-text-quote{border-left:4px solid currentColor}.sbs-animation-text.sbs-text-badge{display:inline-flex;border-radius:999px}.sbs-animation-text.sbs-text-boxed{border-radius:16px}.sbs-animation-text.sbs-text-lead{font-size:clamp(20px,3vw,34px);line-height:1.35}.sbs-anim-card,.sbs-image-box,.sbs-image-box-slide-inner,.sbs-brand-item,.sbs-scroll-element-item,.sbs-sticky-box{transition:transform .35s ease,box-shadow .35s ease,background .35s ease;color:inherit;text-decoration:none}.sbs-image-box{display:block;position:relative;overflow:hidden}.sbs-image-box-media{overflow:hidden}.sbs-image-box-media img,.sbs-image-box-slide img,.sbs-anim-image img{display:block;width:100%;height:auto;transition:transform .55s ease,filter .35s ease}.sbs-image-box:hover img,.sbs-image-zoom:hover img{transform:scale(1.07)}.sbs-image-box-content{position:relative;z-index:2}.sbs-image-box-overlay .sbs-image-box-content,.sbs-image-box-floating .sbs-image-box-content,.sbs-image-box-reveal .sbs-image-box-content{position:absolute;left:24px;right:24px;bottom:24px;color:#fff}.sbs-image-box-overlay::after,.sbs-image-box-reveal::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(0,0,0,.72));z-index:1}.sbs-image-box-side{display:grid;grid-template-columns:42% 1fr;align-items:center}.sbs-image-box-side .sbs-image-box-content{padding:24px}.sbs-image-box-reveal .sbs-image-box-content{transform:translateY(35%);opacity:0;transition:.35s}.sbs-image-box-reveal:hover .sbs-image-box-content{transform:translateY(0);opacity:1}.sbs-image-box-number{position:absolute;top:18px;right:22px;z-index:3;font-size:44px;font-weight:800;opacity:.16}.sbs-image-box-slider{position:relative;overflow:hidden}.sbs-slider-viewport{overflow:hidden}.sbs-slider-track{display:flex;transition:transform .45s ease;will-change:transform}.sbs-image-box-slide{flex:0 0 33.333%;min-width:0}.sbs-image-box-slide-inner{display:block;overflow:hidden;text-decoration:none;color:inherit}.sbs-slider-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:42px;height:42px;border-radius:50%;border:0;background:#111;color:#fff;cursor:pointer}.sbs-slider-prev{left:10px}.sbs-slider-next{right:10px}.sbs-anim-image{display:inline-block;position:relative;overflow:hidden}.sbs-image-shine::after,.sbs-btn-shine::after{content:"";position:absolute;top:0;left:-120%;width:55%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);transform:skewX(-20deg);transition:.65s}.sbs-image-shine:hover::after,.sbs-btn-shine:hover::after{left:125%}.sbs-image-mask img{border-radius:32px 8px 32px 8px}.sbs-image-caption{display:block;margin-top:10px}.sbs-draw-svg svg{display:block;max-width:100%;height:auto;overflow:visible}.sbs-brand-slider{overflow:hidden}.sbs-brand-track{display:flex;align-items:center;gap:28px}.sbs-brand-marquee .sbs-brand-track,.sbs-marquee .sbs-brand-track{width:max-content;animation:sbsMarquee 28s linear infinite}.sbs-brand-slider:hover .sbs-brand-track{animation-play-state:paused}.sbs-brand-item{display:flex;align-items:center;justify-content:center;min-width:150px;min-height:80px;padding:18px;border-radius:16px;background:#fff}.sbs-brand-item img{max-width:140px;max-height:62px;object-fit:contain}.sbs-brand-grid .sbs-brand-track{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));width:100%}@keyframes sbsMarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}.sbs-animated-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;position:relative;overflow:hidden;text-decoration:none;transition:all .35s ease;padding:14px 28px;border-radius:999px;background:#111;color:#fff}.sbs-btn-outline{background:transparent;color:#111;border:1px solid currentColor}.sbs-btn-arrow .sbs-btn-icon{transition:.25s}.sbs-btn-arrow:hover .sbs-btn-icon{transform:translateX(5px)}.sbs-btn-circle::before,.sbs-btn-split::before{content:"";position:absolute;inset:auto auto 50% 50%;width:0;height:0;border-radius:50%;background:rgba(255,255,255,.22);transform:translate(-50%,50%);transition:.45s}.sbs-btn-circle:hover::before,.sbs-btn-split:hover::before{width:280%;height:280%}.sbs-btn-text,.sbs-btn-icon{position:relative;z-index:2}.sbs-scroll-video video{display:block;width:100%;height:80vh;object-fit:cover}.sbs-scroll-elements{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px}.sbs-scroll-elements-timeline{display:block;border-left:2px solid rgba(0,0,0,.12);padding-left:24px}.sbs-scroll-elements-stack{display:flex;flex-direction:column}.sbs-scroll-element-item{position:relative;padding:24px;border-radius:18px;background:#fff}.sbs-scroll-element-icon{display:inline-flex;font-size:28px;margin-bottom:12px}.sbs-text-animation{font-size:clamp(28px,5vw,72px);font-weight:800;line-height:1.1}.sbs-text-dynamic{display:inline-block;min-width:1ch}.sbs-video-popup-trigger{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:12px;border:0;background:#111;color:#fff;cursor:pointer;overflow:hidden}.sbs-video-popup-trigger img{display:block;width:100%;height:auto}.sbs-video-popup-image,.sbs-video-popup-overlay{min-height:260px;border-radius:22px}.sbs-video-popup-image .sbs-play-icon,.sbs-video-popup-overlay .sbs-play-icon,.sbs-video-popup-circle .sbs-play-icon{width:72px;height:72px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#fff;color:#111}.sbs-video-modal{position:fixed;inset:0;z-index:999999;display:none}.sbs-video-modal.is-active{display:block}.sbs-video-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.78)}.sbs-video-modal-dialog{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:min(980px,92vw);aspect-ratio:16/9}.sbs-video-modal-content,.sbs-video-modal-content iframe,.sbs-video-modal-content video{width:100%;height:100%;display:block;background:#000}.sbs-video-modal-close{position:absolute;right:-16px;top:-44px;width:38px;height:38px;border-radius:50%;border:0;background:#fff;cursor:pointer;font-size:24px}.sbs-video-box{position:relative;overflow:hidden}.sbs-video-box video{display:block;width:100%;height:auto}.sbs-video-box-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:68px;height:68px;border-radius:50%;border:0;background:#fff;color:#111;cursor:pointer}.sbs-video-box h3{position:absolute;left:24px;bottom:18px;color:#fff;margin:0}.sbs-sticky-wrap{position:relative}.sbs-sticky-box{position:sticky;top:80px}.sbs-empty{padding:18px;border:1px dashed #bbb;border-radius:12px;color:#777}@media(max-width:767px){.sbs-image-box-side{grid-template-columns:1fr}.sbs-image-box-slide{flex-basis:100%!important}.sbs-slider-arrow{width:36px;height:36px}.sbs-scroll-video video{height:60vh}}

/* SBS Hero Area Widget */
.sbs-lux-hero {
	position: relative;
	min-height: 900px;
	background: #111;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.sbs-lux-hero__slides,
.sbs-lux-hero__slide,
.sbs-lux-hero__bg,
.sbs-lux-hero__bg img,
.sbs-lux-hero__overlay {
	position: absolute;
	inset: 0;
}

.sbs-lux-hero__slides {
	z-index: 1;
}

.sbs-lux-hero__slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity .75s ease, visibility .75s ease;
}

.sbs-lux-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.sbs-lux-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.001);
}

.sbs-lux-hero__overlay {
	z-index: 2;
	pointer-events: none;
	background-color: rgba(0,0,0,.55);
}

.sbs-hero-gradient-yes .sbs-lux-hero__overlay {
	background-image:
		linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.66)),
		linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.18), rgba(0,0,0,.82));
}

.sbs-lux-hero__inner {
	position: relative;
	z-index: 3;
	min-height: inherit;
	display: flex;
	align-items: stretch;
}

.sbs-lux-hero__container {
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 1440px;
	min-height: inherit;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 40px 55px;
	display: flex;
	align-items: flex-end;
}

.sbs-lux-hero__content-panels {
	position: relative;
	z-index: 4;
	width: 100%;
}

.sbs-lux-hero__content-panel {
	display: none;
	width: 100%;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.sbs-lux-hero__content-panel,
.sbs-lux-rating,
.sbs-lux-hero__title,
.sbs-lux-hero__description,
.sbs-lux-hero__buttons,
.sbs-lux-hero__template > * {
	transform-origin: center center;
	will-change: transform, opacity;
}

.sbs-lux-hero__content-panel:not(.is-active) {
	display: none !important;
}

.sbs-lux-hero__content-panel.is-active {
	display: flex !important;
}

.sbs-lux-hero__content-panel--template.is-active {
	display: block !important;
}

.sbs-lux-hero__template {
	width: 100%;
}

.sbs-lux-hero__manual-left {
	max-width: 860px;
	min-width: 0;
}

.sbs-lux-hero__manual-right {
	width: 428px;
	max-width: 100%;
	flex: 0 0 auto;
}

.sbs-lux-rating {
	margin-bottom: 18px;
	color: #dedede;
	font-size: 18px;
	line-height: 1.55;
}

.sbs-lux-rating__avatars {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.sbs-lux-rating__avatars img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid #fff;
	margin-right: -10px;
	object-fit: cover;
	background: #ddd;
}

.sbs-lux-rating__text strong,
.sbs-lux-rating__text span {
	display: block;
}

.sbs-lux-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(42px, 5vw, 66px);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -1.5px;
}

.sbs-lux-hero__description {
	margin: 0 0 22px;
	color: #f0f0f0;
	font-size: 16px;
	line-height: 1.55;
}

.sbs-lux-hero__buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.sbs-lux-hero__btn {
	position: relative;
	min-height: 60px;
	padding: 0 12px 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	text-decoration: none !important;
	color: #fff;
	font-weight: 700;
	border: 1px solid rgba(255,255,255,.72);
	overflow: hidden;
	transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.sbs-lux-hero__btn:hover {
	transform: translateY(-2px);
	color: #fff;
}

.sbs-lux-hero__primary {
	background: #b88a2a;
	border-color: #b88a2a;
}

.sbs-lux-hero__secondary {
	background: transparent;
}

.sbs-lux-hero__btn-icon {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #111;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	transition: transform .25s ease;
	flex: 0 0 auto;
}

.sbs-lux-hero__btn-icon svg {
	width: 1em;
	height: 1em;
	display: block;
	fill: currentColor;
}

.sbs-lux-hero__btn-icon i {
	display: block;
	line-height: 1;
}

.sbs-lux-hero__btn:hover .sbs-lux-hero__btn-icon {
	transform: translateX(4px);
}

.sbs-lux-hero__side-nav {
	position: absolute;
	z-index: 6;
	top: auto;
	left: auto;
	right: var(--sbs-hero-side-right, 40px);
	bottom: 236px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 22px;
	pointer-events: auto;
}

.sbs-lux-hero__thumbs {
	width: 156px;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sbs-lux-hero__thumb {
	position: relative;
	box-sizing: border-box;
	width: 156px;
	height: 108px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	opacity: .86;
	transition: opacity .3s ease, transform .3s ease, border-color .3s ease, background-color .3s ease;
}

.sbs-lux-hero__thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform .45s ease;
}

.sbs-lux-hero__thumb::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	border-bottom: 4px solid transparent;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease, border-color .3s ease;
}

.sbs-lux-hero__thumb:hover,
.sbs-lux-hero__thumb.is-active {
	opacity: 1;
	transform: translateX(-3px);
}

.sbs-lux-hero__thumb:hover img,
.sbs-lux-hero__thumb.is-active img {
	transform: scale(1.06);
}

.sbs-lux-hero__thumb.is-active::after {
	border-color: #b88a2a;
	transform: scaleX(1);
}

.sbs-lux-hero__nav {
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	margin: 0;
}

.sbs-lux-hero__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 46px;
	border: 1px solid rgba(255,255,255,.45);
	background: transparent;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.sbs-lux-hero__arrow:hover {
	background: rgba(255,255,255,.12);
	transform: translateY(-2px);
}

.sbs-lux-hero__next {
	border-color: #b88a2a;
}

.sbs-lux-hero--static .sbs-lux-hero__side-nav {
	display: none;
}

.elementor-editor-active .sbs-lux-hero__slide:not(.is-active) {
	opacity: 0 !important;
	visibility: hidden !important;
}

.elementor-editor-active .sbs-lux-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.elementor-editor-active .sbs-lux-hero__content-panel:not(.is-active) {
	display: none !important;
}

.elementor-editor-active .sbs-lux-hero__content-panel.is-active {
	display: flex !important;
}

.elementor-editor-active .sbs-lux-hero__content-panel--template.is-active {
	display: block !important;
}

@media (max-width: 1024px) {
	.sbs-lux-hero__title {
		font-size: clamp(42px, 7vw, 60px);
	}

	.sbs-lux-hero__manual-right {
		width: 360px;
	}

	.sbs-lux-hero__side-nav {
		right: var(--sbs-hero-side-right, 30px);
		bottom: 250px;
	}
}

@media (max-width: 991px) {
	.sbs-lux-hero {
		min-height: 760px;
	}

	.sbs-lux-hero__container {
		padding: 40px 24px 35px;
	}

	.sbs-lux-hero__content-panel.is-active {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-end;
		gap: 28px;
	}

	.sbs-lux-hero__manual-left,
	.sbs-lux-hero__manual-right {
		width: 100% !important;
		max-width: 100% !important;
	}

	.sbs-hero-hide-nav-mobile-yes .sbs-lux-hero__side-nav {
		display: none;
	}

	.sbs-lux-hero__buttons {
		gap: 14px;
	}
}

@media (max-width: 575px) {
	.sbs-lux-hero {
		min-height: 720px;
	}

	.sbs-lux-hero__title {
		font-size: 42px;
		letter-spacing: -.6px;
	}

	.sbs-lux-rating {
		font-size: 16px;
	}

	.sbs-lux-hero__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.sbs-lux-hero__btn {
		width: 100%;
	}
}

/* SBS Hero Area - Video Background + Custom Thumbnail Support */
.sbs-lux-hero__bg video,
.sbs-lux-hero__bg iframe,
.sbs-lux-hero__video-poster {
	position: absolute;
	inset: 0;
}

.sbs-lux-hero__bg video,
.sbs-lux-hero__video-poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.sbs-lux-hero__bg--video-file video {
	z-index: 2;
	background: #111;
}

.sbs-lux-hero__bg--video-iframe {
	overflow: hidden;
	background: #111;
}

.sbs-lux-hero__bg--video-iframe .sbs-lux-hero__video-poster {
	z-index: 1;
}

.sbs-lux-hero__bg--video-iframe .sbs-lux-hero__iframe {
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 177.77777778vh;
	height: 100vh;
	min-width: 100%;
	min-height: 56.25vw;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.sbs-lux-hero__slide,
.sbs-lux-hero__content-panel {
	will-change: opacity, transform;
}

.sbs-lux-hero__thumb img {
	background: #222;
}

/* SBS Services Widget */
.sbs-services-empty {
	padding: 18px 20px;
	border: 1px dashed rgba(0, 0, 0, 0.25);
	background: rgba(0, 0, 0, 0.04);
	color: #222;
}

.sbs-services-accordion {
	--sbs-services-height: 180px;
	--sbs-services-min-collapsed: 72px;
	--sbs-services-active-grow: 4;
	--sbs-services-collapsed: 62px;
	--sbs-services-expanded: 28%;
	--sbs-services-active-scale: 1.05;
	display: flex;
	width: 100%;
	height: var(--sbs-services-height);
	gap: 6px;
	overflow: hidden;
	box-sizing: border-box;
}

.sbs-service-card {
	position: relative;
	display: block;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	background: #111;
	color: #fff;
	text-decoration: none !important;
	isolation: isolate;
	cursor: pointer;
	outline: none;
	box-sizing: border-box;
	will-change: flex-grow, flex-basis, transform;
}

.sbs-services-accordion--auto .sbs-service-card {
	flex: 1 1 0;
	flex-basis: 0;
	min-width: min(var(--sbs-services-min-collapsed), 100%);
}

.sbs-services-accordion--auto .sbs-service-card.is-active {
	flex-grow: var(--sbs-services-active-grow);
}

.sbs-services-accordion--fixed .sbs-service-card {
	flex: 0 0 var(--sbs-services-collapsed);
}

.sbs-services-accordion--fixed .sbs-service-card.is-active {
	flex-basis: var(--sbs-services-expanded);
}

.sbs-service-card__media,
.sbs-service-card__overlay,
.sbs-service-card__media img {
	position: absolute;
	inset: 0;
}

.sbs-service-card__media {
	z-index: 1;
}

.sbs-service-card__image,
.sbs-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.001);
	transition: transform .55s ease;
}

.sbs-service-card.is-active .sbs-service-card__image,
.sbs-service-card.is-active .sbs-service-card__media img {
	transform: scale(var(--sbs-services-active-scale));
}

.sbs-service-card__overlay {
	z-index: 2;
	background-color: rgba(0,0,0,.42);
	background-image: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.70) 100%);
	transition: background-color .35s ease;
}

.sbs-service-card__inner {
	position: relative;
	z-index: 3;
	height: 100%;
	padding: 14px 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}

.sbs-service-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.sbs-service-card__number {
	display: block;
	margin-bottom: 10px;
	color: rgba(255,255,255,.76);
	font-size: 22px;
	line-height: 1;
	font-weight: 300;
	letter-spacing: -0.04em;
}

.sbs-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .35s ease, transform .35s ease;
}

.sbs-service-card.is-active .sbs-service-card__icon {
	opacity: 1;
	transform: translateY(0);
}

.sbs-service-card__icon svg,
.sbs-service-card__icon i,
.sbs-service-card__icon img {
	display: block;
	width: 1em;
	height: 1em;
}

.sbs-service-card__icon svg {
	fill: currentColor;
}

.sbs-service-card__content {
	max-width: 100%;
	will-change: transform, opacity;
}

.sbs-service-card__category {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .35s ease, transform .35s ease;
}

.sbs-service-card.is-active .sbs-service-card__category {
	opacity: 1;
	transform: translateY(0);
}

.sbs-service-card__title {
	margin: 0 0 8px;
	color: #fff;
	font-size: 13px;
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.03em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: transform .35s ease;
}

.sbs-service-card:not(.is-active) .sbs-service-card__title {
	-webkit-line-clamp: 2;
}

.sbs-service-card__excerpt {
	margin: 0;
	color: #fff;
	font-size: 11px;
	line-height: 1.35;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .35s ease, transform .35s ease;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sbs-service-card.is-active .sbs-service-card__excerpt {
	opacity: 1;
	transform: translateY(0);
}

.sbs-service-card:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.85);
}

@media (max-width: 767px) {
	.sbs-services-mobile-stack-yes .sbs-services-accordion {
		height: auto;
		flex-direction: column;
		overflow: visible;
	}

	.sbs-services-mobile-stack-yes .sbs-service-card,
	.sbs-services-mobile-stack-yes .sbs-service-card.is-active {
		flex: none !important;
		flex-basis: auto !important;
		flex-grow: 1 !important;
		height: var(--sbs-services-height);
	}

	.sbs-services-mobile-stack-yes .sbs-service-card__icon,
	.sbs-services-mobile-stack-yes .sbs-service-card__category,
	.sbs-services-mobile-stack-yes .sbs-service-card__excerpt {
		opacity: 1;
		transform: none;
	}
}

/* ------------------------------------------------------------
 * SBS Scroll Slider Widget
 * ------------------------------------------------------------ */
.elementor-widget-sbs-scroll-slider,
.elementor-widget-sbs-scroll-slider > .elementor-widget-container {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	--container-widget-width: 100% !important;
	--container-widget-flex-grow: 1 !important;
	flex: 1 1 100% !important;
	align-self: stretch !important;
	box-sizing: border-box;
}

.elementor-widget-sbs-scroll-slider {
	display: block;
}

.sbs-scroll-slider {
	position: relative;
	min-height: var(--sbs-scroll-slider-section-height, 100vh);
	background: #171717;
	color: #fff;
	overflow: hidden;
	overscroll-behavior-x: contain;
	overscroll-behavior-y: auto;
	isolation: isolate;
	box-sizing: border-box;
	--sbs-scroll-slider-active-scale: 1.04;
	--sbs-scroll-slider-header-offset: 0px;
	--sbs-scroll-slider-section-height: 100vh;
}

.sbs-scroll-slider,
.sbs-scroll-slider * {
	box-sizing: border-box;
}

.sbs-scroll-slider--screen-fit {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}

.sbs-scroll-slider--screen-fit .sbs-scroll-slider__container {
	width: 100% !important;
	max-width: none !important;
}

.sbs-scroll-slider:not(.sbs-scroll-slider--screen-fit) {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.sbs-scroll-slider--contained {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.sbs-scroll-slider--contained .sbs-scroll-slider__container {
	max-width: min(100%, var(--sbs-scroll-slider-container-max, 1180px));
	overflow: hidden;
}

.sbs-scroll-slider--contained .sbs-scroll-slider__viewport {
	max-width: 100%;
	clip-path: inset(0);
}

.sbs-scroll-slider--left-to-right .sbs-scroll-slider__track {
	justify-content: flex-start;
}

.sbs-scroll-slider--pinning {
	overflow: hidden;
}

.sbs-scroll-slider--pin-active {
	contain: paint;
	overscroll-behavior-y: auto;
}

.sbs-scroll-slider--pin-active .sbs-scroll-slider__track {
	pointer-events: none;
}

.pin-spacer > .sbs-scroll-slider,
.pin-spacer .sbs-scroll-slider {
	max-width: 100% !important;
}

.pin-spacer:has(.sbs-scroll-slider--contained) {
	max-width: 100% !important;
	overflow: hidden !important;
}

.pin-spacer > .sbs-scroll-slider--screen-fit,
.pin-spacer .sbs-scroll-slider--screen-fit {
	max-width: 100vw !important;
}

.sbs-scroll-slider--viewport-fit {
	height: calc(var(--sbs-scroll-slider-js-vh, 100vh) - var(--sbs-scroll-slider-header-offset, 0px));
	min-height: calc(var(--sbs-scroll-slider-js-vh, 100vh) - var(--sbs-scroll-slider-header-offset, 0px));
	max-height: calc(var(--sbs-scroll-slider-js-vh, 100vh) - var(--sbs-scroll-slider-header-offset, 0px));
}

.sbs-scroll-slider__container {
	width: 100%;
	max-width: 1180px;
	min-height: inherit;
	height: auto;
	margin: 0 auto;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
}

.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__container {
	height: 100%;
	min-height: 0;
}

.sbs-scroll-slider__viewport {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	min-height: 0;
	min-width: 0;
	overscroll-behavior-x: contain;
	overscroll-behavior-y: auto;
	contain: paint;
}

.sbs-scroll-slider--fit-slides.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__viewport {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
}

.sbs-scroll-slider__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 12px;
	will-change: transform;
	min-width: 100%;
	width: 100%;
	max-width: none;
	transform: translate3d(0,0,0);
	backface-visibility: hidden;
}

.sbs-scroll-slider--fit-slides.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__track {
	height: 100%;
	align-items: center;
	width: 100%;
	min-width: 100%;
}

.sbs-scroll-slider__slide {
	position: relative;
	flex: 0 0 72%;
	height: 520px;
	overflow: hidden;
	background: #222;
	transform: translateZ(0);
}

.sbs-scroll-slider--fit-slides.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__slide {
	height: 100%;
	max-height: 100%;
}

.sbs-scroll-slider__link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none !important;
	overflow: hidden;
}

.sbs-scroll-slider__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.001);
	transition: transform .8s ease, filter .8s ease;
}

.sbs-scroll-slider__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.42);
	pointer-events: none;
	z-index: 1;
}

.sbs-scroll-slider__content {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 50%;
	max-width: 540px;
	padding: 0 70px;
	transform: translateY(-50%);
	display: block;
}

.sbs-scroll-slider__heading-row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.sbs-scroll-slider__title {
	margin: 0;
	font-size: 26px;
	line-height: 1.1;
	font-weight: 800;
	color: #fff;
}

.sbs-scroll-slider__description {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255,255,255,.72);
}

.sbs-scroll-slider__icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	background: #fff;
	color: #111;
	line-height: 1;
	transition: transform .35s ease, background-color .35s ease, color .35s ease;
}

.sbs-scroll-slider__icon i {
	font-size: 12px;
}

.sbs-scroll-slider__icon svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.sbs-scroll-slider__link:hover .sbs-scroll-slider__icon,
.sbs-scroll-slider__slide.is-active .sbs-scroll-slider__icon {
	transform: translate(3px, -3px);
}

.sbs-scroll-slider__slide.is-active .sbs-scroll-slider__image {
	transform: scale(var(--sbs-scroll-slider-active-scale));
}

.sbs-scroll-slider__arrows {
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	position: relative;
	z-index: 4;
}

.sbs-scroll-slider__arrow {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.15);
	background: rgba(255,255,255,.08);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: opacity .25s ease, transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.sbs-scroll-slider__arrow:hover {
	transform: translateY(-2px);
	background: rgba(255,255,255,.16);
	border-color: rgba(255,255,255,.32);
}

.sbs-scroll-slider__arrow.is-disabled {
	opacity: .35;
	pointer-events: none;
}

.elementor-editor-active .sbs-scroll-slider {
	overflow: hidden;
}

.elementor-editor-active .sbs-scroll-slider__track {
	transform: none !important;
}

@media (max-width: 1024px) {
	.sbs-scroll-slider__slide {
		flex-basis: 75%;
	}

	.sbs-scroll-slider__content {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 767px) {
	.sbs-scroll-slider--screen-fit {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.sbs-scroll-slider,
	.sbs-scroll-slider--viewport-fit {
		height: auto;
		min-height: auto;
		max-height: none;
		overflow: visible;
	}

	.sbs-scroll-slider__container,
	.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__container {
		height: auto;
		min-height: auto;
	}

	.sbs-scroll-slider__viewport,
	.sbs-scroll-slider--fit-slides.sbs-scroll-slider--viewport-fit .sbs-scroll-slider__viewport {
		display: block;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}

	.sbs-scroll-slider__track {
		transform: none !important;
		min-width: 100%;
		width: 100%;
	}

	.sbs-scroll-slider__slide {
		flex-basis: 86%;
		height: 420px;
		scroll-snap-align: center;
	}

	.sbs-scroll-slider__content {
		padding: 0 26px;
		max-width: 100%;
	}
}

/* SBS Scroll Icon Box Slider */
.sbs-scroll-iconbox-slider {
	position: relative;
	width: 100%;
	min-height: 720px;
	overflow: hidden;
	--sbs-sib-stagger-y: 44px;
}

.sbs-scroll-iconbox-slider__container {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding: 80px 30px;
	min-height: inherit;
	display: flex;
	align-items: center;
}

.sbs-scroll-iconbox-slider__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 8px 0 12px;
}

.sbs-scroll-iconbox-slider__track {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: max-content;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.sbs-scroll-iconbox-slider__card {
	position: relative;
	width: 310px;
	flex: 0 0 310px;
	min-height: 250px;
	padding: 48px 38px 42px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fff;
	color: inherit;
	text-decoration: none !important;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
	transition: transform .35s ease, box-shadow .35s ease;
	will-change: transform;
}

.sbs-scroll-iconbox-slider--linear .sbs-scroll-iconbox-slider__card {
	margin-top: calc(var(--sbs-sib-stagger-y) * var(--sbs-sib-i));
}

.sbs-scroll-iconbox-slider--alternate .sbs-scroll-iconbox-slider__card:nth-child(even) {
	margin-top: var(--sbs-sib-stagger-y);
}

.sbs-scroll-iconbox-slider--none .sbs-scroll-iconbox-slider__card {
	margin-top: 0;
}

.sbs-scroll-iconbox-slider__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.sbs-scroll-iconbox-slider__icon {
	width: 72px;
	height: 72px;
	margin: 0 0 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1fd21f;
	line-height: 1;
}

.sbs-scroll-iconbox-slider__icon i {
	font-size: 44px;
	line-height: 1;
}

.sbs-scroll-iconbox-slider__icon svg {
	width: 44px;
	height: 44px;
	display: block;
	fill: currentColor;
}

.sbs-scroll-iconbox-slider__title {
	margin: 0 0 14px;
	color: #111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.sbs-scroll-iconbox-slider__description {
	margin: 0;
	color: #666;
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 767px) {
	.sbs-scroll-iconbox-slider {
		min-height: auto;
		overflow: visible;
	}

	.sbs-scroll-iconbox-slider__container {
		min-height: auto;
		padding: 50px 20px;
	}

	.sbs-scroll-iconbox-slider__viewport {
		overflow-x: auto;
		overflow-y: visible;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.sbs-scroll-iconbox-slider__track {
		padding-bottom: 20px;
	}

	.sbs-scroll-iconbox-slider__card {
		scroll-snap-align: start;
	}

	.sbs-scroll-iconbox-slider--linear .sbs-scroll-iconbox-slider__card,
	.sbs-scroll-iconbox-slider--alternate .sbs-scroll-iconbox-slider__card:nth-child(even) {
		margin-top: 0;
	}
}
