.sbi-home-carousel,
.sbi-home-carousel * {
	box-sizing: border-box;
}

.sbi-home-carousel {
	--sbi-carousel-container-max: 1200px;
	--sbi-carousel-content-gutter: max(24px, calc((100vw - var(--sbi-carousel-container-max)) / 2 + 24px));
	--sbi-carousel-blue: #133156;
	--sbi-carousel-ink: #11243f;
	--sbi-carousel-sky: #d9f3fb;
	--sbi-carousel-gold: #fdb71a;
	--sbi-carousel-orange: #f39e39;
	--sbi-carousel-teal: #0e7c86;
	--sbi-carousel-white: #ffffff;
	--sbi-carousel-shadow: 0 24px 60px rgba(17, 36, 63, .2);
	--sbi-carousel-interface-font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #ffffff;
	color: var(--sbi-carousel-ink);
	font-family: Glober, Arial, sans-serif;
	isolation: isolate;
	min-height: clamp(520px, 46vw, 640px);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.sbi-home-carousel__viewport {
	inset: 0;
	min-height: 100%;
	position: absolute;
	width: 100%;
}

.sbi-home-carousel__track {
	height: 100%;
	min-height: 100%;
	position: relative;
	width: 100%;
}

.sbi-home-carousel__slide {
	height: 100%;
	inset: 0;
	min-height: 100%;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(2%);
	transition: opacity .45s ease, transform .45s ease;
	width: 100%;
	z-index: 0;
}

.sbi-home-carousel__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
	z-index: 1;
}

.sbi-home-slot {
	align-items: stretch;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
	height: 100%;
	min-height: 100%;
	position: relative;
	width: 100%;
}

.sbi-home-slot__content {
	align-content: center;
	display: grid;
	gap: 18px;
	max-width: 760px;
	padding: clamp(42px, 4.6vw, 74px) clamp(28px, 6vw, 96px);
	position: relative;
	z-index: 2;
}

.sbi-home-slot__eyebrow {
	color: inherit;
	font-size: clamp(13px, 1.1vw, 15px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
}

.sbi-home-slot h2 {
	color: inherit;
	font-family: Glober, Arial, sans-serif;
	font-size: clamp(38px, 4.8vw, 62px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	max-width: 780px;
}

.sbi-home-slot p {
	color: inherit;
	font-family: Glober, Arial, sans-serif;
	font-size: clamp(18px, 1.7vw, 23px);
	font-weight: 400;
	line-height: 1.35;
	margin: 0;
	max-width: 620px;
}

.sbi-home-slot__cta {
	align-items: center;
	background: var(--sbi-carousel-blue);
	border: 2px solid var(--sbi-carousel-blue);
	border-radius: 6px;
	color: #ffffff;
	display: inline-flex;
	font-size: 17px;
	font-weight: 800;
	gap: 12px;
	justify-content: center;
	line-height: 1;
	min-height: 48px;
	padding: 14px 22px;
	text-decoration: none;
	width: max-content;
}

.sbi-home-slot__cta::after {
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	content: "";
	display: block;
	height: 9px;
	transform: rotate(45deg);
	width: 9px;
}

.sbi-home-slot__cta:hover,
.sbi-home-slot__cta:focus {
	color: #ffffff;
	text-decoration: none;
}

.sbi-home-slot__cta:focus-visible,
.sbi-home-carousel__tab:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 4px;
}

.sbi-home-slot__cta--light {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--sbi-carousel-blue);
}

.sbi-home-slot__cta--light:hover,
.sbi-home-slot__cta--light:focus {
	color: var(--sbi-carousel-blue);
}

.sbi-home-slot__cta--gold {
	background: var(--sbi-carousel-gold);
	border-color: var(--sbi-carousel-gold);
	color: var(--sbi-carousel-blue);
}

.sbi-home-slot__cta--gold:hover,
.sbi-home-slot__cta--gold:focus {
	color: var(--sbi-carousel-blue);
}

.sbi-home-slot__visual {
	min-height: inherit;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.sbi-home-slot__visual img {
	display: block;
	max-width: 100%;
}

.sbi-home-slot--legacy {
	align-items: center;
	background-color: #07192d;
	background-image:
		var(--sbi-legacy-pattern-image, none),
		linear-gradient(112deg, #07192d 0%, var(--sbi-carousel-blue) 56%, #0d5664 100%);
	background-position: center, center;
	background-repeat: no-repeat;
	background-size: cover, 100% 100%;
	color: var(--sbi-carousel-blue);
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: clamp(54px, 6vw, 84px) var(--sbi-carousel-content-gutter) clamp(118px, 9vw, 150px);
}

.sbi-home-slot--legacy.has-legacy-proximity-grid {
	background-image: linear-gradient(112deg, #07192d 0%, var(--sbi-carousel-blue) 56%, #0d5664 100%);
	background-size: 100% 100%;
}

.sbi-home-slot--legacy::after {
	background: linear-gradient(112deg, rgba(7, 25, 45, .04), rgba(13, 86, 100, .14));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.sbi-home-slot__legacy-inner {
	align-items: center;
	display: grid;
	gap: clamp(34px, 4.4vw, 64px);
	justify-content: center;
	position: relative;
	width: min(100%, var(--sbi-carousel-container-max));
	z-index: 3;
}

.sbi-home-slot__legacy-proximity-grid {
	--legacy-shape-active-opacity: .46;
	--legacy-shape-base-opacity: .34;
	--legacy-shape-color: #2b7895;
	--legacy-shape-max-scale: 1.5;
	--legacy-shape-step-x: 16px;
	--legacy-shape-step-y: 14px;
	--legacy-shape-width: 9.9px;
	display: block;
	inset: calc(var(--legacy-shape-step-y) * -1) calc(var(--legacy-shape-step-x) * -1);
	opacity: .92;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.sbi-home-slot__legacy-proximity-canvas {
	display: block;
	height: 100%;
	width: 100%;
}

.sbi-home-slot__legacy-lockup {
	align-items: center;
	background: #ffffff;
	border-radius: clamp(16px, 2vw, 28px);
	box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
	display: grid;
	gap: clamp(18px, 2.6vw, 40px);
	grid-template-columns: minmax(190px, .8fr) auto minmax(280px, 1.35fr);
	max-width: 1040px;
	padding: clamp(26px, 3.1vw, 48px) clamp(30px, 4vw, 66px);
	width: 100%;
}

.sbi-home-slot__legacy-southern-logo {
	display: block;
	height: auto;
	width: min(250px, 100%);
}

.sbi-home-slot__legacy-welcomes {
	color: var(--sbi-carousel-blue);
	font-size: clamp(28px, 4vw, 54px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: .95;
	text-transform: uppercase;
	white-space: nowrap;
}

.sbi-home-slot__legacy-logo {
	display: block;
	height: auto;
	justify-self: end;
	width: min(372px, 100%);
}

.sbi-home-slot__legacy-cta {
	align-items: center;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 22px 56px rgba(0, 0, 0, .24);
	display: flex;
	gap: clamp(18px, 3vw, 42px);
	justify-content: center;
	justify-self: end;
	max-width: min(680px, 58vw);
	padding: clamp(18px, 2vw, 30px) clamp(24px, 3vw, 44px);
}

.sbi-home-slot__legacy-cta p {
	color: var(--sbi-carousel-blue);
	font-size: clamp(18px, 1.8vw, 27px);
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
	max-width: 510px;
}

.sbi-home-slot__legacy-cta a {
	align-items: center;
	background: var(--sbi-carousel-blue);
	background-image: none;
	border: 2px solid var(--sbi-carousel-blue);
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(19, 49, 86, .18);
	color: #ffffff;
	display: inline-flex;
	font-family: Inter, system-ui, sans-serif;
	font-size: 15px;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	min-height: 48px;
	padding: 14px 22px;
	position: relative;
	text-decoration: none;
	text-shadow: none;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	white-space: nowrap;
	z-index: 2;
}

.sbi-home-slot__legacy-cta a::before,
.sbi-home-slot__legacy-cta a::after {
	content: none;
	display: none;
}

.sbi-home-slot__legacy-cta a:hover,
.sbi-home-slot__legacy-cta a:focus {
	background: #005a8b;
	background-image: none;
	border-color: #005a8b;
	box-shadow: 0 14px 30px rgba(0, 90, 139, .24);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.sbi-home-slot--uplift {
	--uplift-blue: #005a8b;
	--uplift-gold: #fac90e;
	--uplift-southern-blue: #008bd1;
	--uplift-text: #425466;
	background: #ffffff;
	color: var(--sbi-carousel-blue);
	display: flex;
	font-family: Poppins, Glober, Arial, sans-serif;
	justify-content: center;
	overflow: hidden;
	padding: clamp(74px, 7vw, 96px) var(--sbi-carousel-content-gutter) clamp(120px, 9vw, 150px);
}

.sbi-home-slot__uplift-shader {
	height: min(100%, 1200px);
	min-height: 760px;
	opacity: 1;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	transform-origin: 100% 0;
	width: min(100vw, 1600px);
	z-index: 0;
}

.sbi-home-slot__uplift-shader::before {
	background:
		radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 22%),
		linear-gradient(155deg, #005799 0%, #b3e5ff 32%, #25bfdc 48%, #fac90e 76%, #f5ce0a 100%);
	content: "";
	inset: 0;
	opacity: .96;
	position: absolute;
	transition: opacity 260ms ease;
}

.sbi-home-slot__uplift-shader::after {
	background: #ffffff;
	border-radius: 50%;
	content: "";
	height: 134%;
	left: -72%;
	position: absolute;
	top: -6%;
	transform: rotate(-10deg);
	width: 112%;
}

.sbi-home-slot__uplift-shader canvas {
	display: block;
	height: 100%;
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 260ms ease;
	width: 100%;
	z-index: 1;
}

.sbi-home-slot__uplift-shader.uplift-hero-shader--ready canvas {
	opacity: 1;
}

.sbi-home-slot__uplift-shader.uplift-hero-shader--ready::before,
.sbi-home-slot__uplift-shader.uplift-hero-shader--ready::after {
	opacity: 0;
}

.sbi-home-slot__uplift-inner {
	align-content: center;
	display: grid;
	gap: 28px;
	justify-items: center;
	max-width: var(--sbi-carousel-container-max);
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 1;
}

.sbi-home-slot__uplift-title {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	overflow-wrap: anywhere;
	padding: 0;
	position: absolute;
	white-space: normal;
	width: 1px;
}

.sbi-home-slot__uplift-identity {
	display: grid;
	justify-items: center;
	margin: 0 auto;
	max-width: 1040px;
	position: relative;
	z-index: 0;
}

.sbi-home-slot__uplift-identity::before {
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .76) 34%, rgba(255, 255, 255, .48) 58%, rgba(255, 255, 255, .18) 78%, rgba(255, 255, 255, 0) 100%);
	content: "";
	filter: blur(24px);
	inset: -84px -180px -72px;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.sbi-home-slot__uplift-lockup {
	align-items: center;
	display: flex;
	gap: 28px;
	justify-content: center;
	margin: 0 auto;
	max-width: 920px;
}

.sbi-home-slot__uplift-southern-logo {
	display: block;
	height: auto;
	object-fit: contain;
	width: 250px;
}

.sbi-home-slot__uplift-becoming {
	color: var(--uplift-text);
	font-family: Poppins, Glober, Arial, sans-serif;
	font-size: clamp(24px, 2.1vw, 30px);
	font-weight: 500;
	line-height: 1.2;
	text-shadow: 0 1px 18px rgba(255, 255, 255, .82);
	white-space: nowrap;
}

.sbi-home-slot__uplift-logo {
	display: block;
	height: auto;
	max-height: 82px;
	max-width: 176px;
	object-fit: contain;
	width: auto;
}

.sbi-home-slot--uplift .sbi-home-slot__uplift-lead {
	color: var(--uplift-text);
	display: block;
	font-family: Poppins, Glober, Arial, sans-serif;
	font-size: 24px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
	margin: 48px auto 0;
	max-width: 680px;
	text-align: center;
	text-shadow: 0 1px 18px rgba(255, 255, 255, .82);
	width: min(100%, 680px);
}

.sbi-home-slot__uplift-cta {
	align-self: center;
	background: var(--sbi-carousel-blue);
	background-image: none;
	border-color: var(--sbi-carousel-blue);
	box-shadow: 0 10px 24px rgba(19, 49, 86, .18);
	color: #ffffff;
	font-family: Inter, system-ui, sans-serif;
	font-size: 15px;
	font-weight: 800;
	justify-self: center;
	letter-spacing: 0;
	margin-top: 4px;
	position: relative;
	text-shadow: none;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	white-space: nowrap;
	z-index: 2;
}

.sbi-home-slot__uplift-cta::before,
.sbi-home-slot__uplift-cta::after {
	content: none;
	display: none;
}

.sbi-home-slot--uplift .sbi-home-slot__uplift-cta:hover,
.sbi-home-slot--uplift .sbi-home-slot__uplift-cta:focus,
.sbi-home-slot__uplift-cta:hover,
.sbi-home-slot__uplift-cta:focus {
	background: #005a8b;
	background-image: none;
	border-color: #005a8b;
	box-shadow: 0 14px 30px rgba(0, 90, 139, .24);
	color: #ffffff;
	transform: translateY(-1px);
}

.sbi-home-slot--tax {
	background: linear-gradient(135deg, #fff8e3 0%, #ffffff 44%, #d9f3fb 100%);
	color: var(--sbi-carousel-blue);
}

.sbi-home-slot__content--tax .sbi-home-slot__eyebrow {
	color: #b45e16;
}

.sbi-home-slot__visual--tax {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: clamp(28px, 5vw, 72px);
}

.sbi-home-slot__tax-photo {
	aspect-ratio: 4 / 5;
	border: 10px solid #ffffff;
	border-radius: 8px;
	box-shadow: var(--sbi-carousel-shadow);
	max-height: 450px;
	overflow: hidden;
	transform: rotate(2deg);
	width: min(340px, 68%);
}

.sbi-home-slot__tax-photo img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.sbi-home-slot__tax-badge {
	background: #ffffff;
	border: 1px solid rgba(19, 49, 86, .12);
	border-radius: 8px;
	box-shadow: 0 18px 38px rgba(19, 49, 86, .18);
	left: clamp(8px, 6vw, 72px);
	padding: 20px;
	position: absolute;
	top: clamp(64px, 9vw, 120px);
	width: min(260px, 48%);
}

.sbi-home-slot--debit {
	background: #f7faf8;
	color: var(--sbi-carousel-blue);
	grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
}

.sbi-home-slot--debit::before {
	background: var(--sbi-carousel-teal);
	content: "";
	inset: 0 0 0 46%;
	position: absolute;
}

.sbi-home-slot__content--debit .sbi-home-slot__eyebrow {
	color: var(--sbi-carousel-teal);
}

.sbi-home-slot__visual--debit {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: clamp(26px, 6vw, 88px);
}

.sbi-home-slot__debit-stage {
	position: relative;
	width: min(620px, 86%);
}

.sbi-home-slot__debit-stage img {
	filter: drop-shadow(0 32px 42px rgba(0, 0, 0, .28));
	position: relative;
	transform: rotate(-8deg);
	width: 100%;
	z-index: 2;
}

.sbi-home-slot__debit-shadow {
	background: rgba(19, 49, 86, .2);
	border-radius: 8px;
	height: 48%;
	left: 12%;
	position: absolute;
	top: 34%;
	transform: rotate(-8deg);
	width: 80%;
}

.sbi-home-slot__debit-chip {
	background: linear-gradient(135deg, #fff2bc, #c28b09);
	border-radius: 6px;
	height: 48px;
	left: 16%;
	position: absolute;
	top: 24%;
	transform: rotate(-8deg);
	width: 62px;
	z-index: 3;
}

.sbi-home-slot--wealth {
	background: #ffffff;
	color: var(--sbi-carousel-blue);
	display: block;
	overflow: hidden;
}

.sbi-home-slot__wealth-lockup {
	left: var(--sbi-carousel-content-gutter);
	max-width: min(840px, 66vw);
	position: absolute;
	text-align: left;
	top: 42%;
	transform: translateY(-50%);
	width: max-content;
	z-index: 3;
}

.sbi-home-slot__wealth-wave {
	bottom: -12%;
	height: 44%;
	left: -2%;
	opacity: 1;
	pointer-events: none;
	position: absolute;
	right: -2%;
	transform: rotate(0deg);
	z-index: 1;
}

.sbi-home-slot__wealth-wave::before {
	display: none;
}

.sbi-home-slot__wealth-wave canvas,
.sbi-home-slot__wealth-underline canvas {
	display: block;
	height: 100%;
	width: 100%;
}

@media (max-width: 1280px) {
	.sbi-home-slot__wealth-wave {
		bottom: -6%;
		height: 50%;
		left: -2%;
		right: -2%;
		transform: rotate(-16deg);
	}
}

.sbi-home-slot__wealth-lockup h2 {
	font-size: 1rem;
	line-height: 1;
	margin: 0;
	max-width: none;
}

.sbi-home-slot__wealth-line {
	display: block;
	font-family: Glober, Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 0;
	line-height: .88;
	white-space: nowrap;
}

@media (scripting: enabled) and (prefers-reduced-motion: no-preference) {
	.sbi-home-slot__wealth-lockup[data-intro-state="pending"] .sbi-home-slot__wealth-line--top,
	.sbi-home-slot__wealth-lockup[data-intro-state="pending"] .sbi-home-slot__wealth-for,
	.sbi-home-slot__wealth-lockup[data-intro-state="pending"] .sbi-home-slot__wealth-everyone {
		opacity: 0;
		transform: translateY(50px);
	}

	.sbi-home-slot__wealth-lockup[data-intro-state="animating"] .sbi-home-slot__wealth-line--top,
	.sbi-home-slot__wealth-lockup[data-intro-state="animating"] .sbi-home-slot__wealth-for,
	.sbi-home-slot__wealth-lockup[data-intro-state="animating"] .sbi-home-slot__wealth-everyone {
		opacity: 1;
		transform: translateY(0);
		transition:
			opacity 1.2s ease,
			transform 1.2s cubic-bezier(.22, 1, .36, 1);
	}

	.sbi-home-slot__wealth-lockup[data-intro-state="animating"] .sbi-home-slot__wealth-line--top {
		transition-delay: .2s;
	}

	.sbi-home-slot__wealth-lockup[data-intro-state="animating"] .sbi-home-slot__wealth-for {
		transition-delay: .3s;
	}

	.sbi-home-slot__wealth-lockup[data-intro-state="animating"] .sbi-home-slot__wealth-everyone {
		transition-delay: .4s;
	}

	.sbi-home-slot__wealth-lockup[data-intro-state="shown"] .sbi-home-slot__wealth-line--top,
	.sbi-home-slot__wealth-lockup[data-intro-state="shown"] .sbi-home-slot__wealth-for,
	.sbi-home-slot__wealth-lockup[data-intro-state="shown"] .sbi-home-slot__wealth-everyone {
		opacity: 1;
		transform: translateY(0);
		transition: none;
	}
}

.sbi-home-slot__wealth-line--top {
	color: #062d52;
	font-size: clamp(50px, 5.9vw, 110px);
}

.sbi-home-slot__wealth-line--bottom {
	align-items: baseline;
	display: flex;
	gap: clamp(12px, 1.7vw, 28px);
	justify-content: center;
	margin-top: clamp(0px, .3vw, 8px);
}

.sbi-home-slot__wealth-for {
	color: #062d52;
	font-size: clamp(50px, 5.9vw, 110px);
	font-weight: 800;
}

.sbi-home-slot__wealth-everyone {
	color: #0493d8;
	font-family: "Libel Suit", Glober, Arial, sans-serif;
	font-size: clamp(66px, 7.5vw, 136px);
	font-weight: 400;
	line-height: .72;
	position: relative;
}

.sbi-home-slot__wealth-period {
	font-family: inherit;
}

.sbi-home-slot__wealth-underline {
	border-top: clamp(5px, .55vw, 9px) solid #0493d8;
	border-radius: 50%;
	display: block;
	height: 56px;
	margin-left: 34%;
	margin-top: -13px;
	overflow: visible;
	position: relative;
	transform: rotate(-5deg);
	width: 62%;
}

.sbi-home-slot__wealth-underline.is-webgl-ready {
	border-top: 0;
	border-radius: 0;
}

.sbi-home-carousel__tabs {
	align-items: center;
	bottom: clamp(20px, 3vw, 34px);
	display: flex;
	gap: 10px;
	left: var(--sbi-carousel-content-gutter);
	max-width: min(960px, calc(100vw - var(--sbi-carousel-content-gutter) - 24px));
	overflow-x: auto;
	padding: 8px 4px 10px;
	position: absolute;
	scroll-padding: 8px;
	scrollbar-width: none;
	z-index: 5;
}

.sbi-home-carousel__tabs::-webkit-scrollbar {
	display: none;
}

.sbi-home-carousel__tab {
	--carousel-progress: 0;
	appearance: none;
	background: #ffffff;
	border: 1px solid rgba(19, 49, 86, .18);
	border-radius: 8px;
	box-shadow: none;
	color: var(--sbi-carousel-blue);
	cursor: pointer;
	display: flex;
	flex: 0 0 clamp(190px, 16vw, 230px);
	min-height: 50px;
	overflow: hidden;
	padding: 11px 14px 13px;
	position: relative;
	transition: background .2s ease, border-color .2s ease;
	width: clamp(190px, 16vw, 230px);
}

.sbi-home-carousel__tab::before,
.sbi-home-carousel__tab::after {
	border-radius: 999px;
	bottom: 5px;
	content: "";
	height: 3px;
	left: 14px;
	opacity: 0;
	position: absolute;
	right: 14px;
	transform-origin: left center;
	transition: opacity .2s ease;
}

.sbi-home-carousel__tab::before {
	background: rgba(4, 147, 216, .16);
}

.sbi-home-carousel__tab::after {
	background: #0493d8;
	transform: scaleX(var(--carousel-progress, 0));
}

.sbi-home-carousel__tab:hover,
.sbi-home-carousel__tab.is-active {
	background: #ffffff;
	border-color: rgba(4, 147, 216, .45);
	box-shadow: none;
	transform: none;
}

.sbi-home-carousel__tab.is-active::before,
.sbi-home-carousel__tab.is-active::after {
	opacity: 1;
}

.sbi-home-carousel__tab:focus-visible {
	outline-color: var(--sbi-carousel-gold);
}

.sbi-home-carousel__thumb-frame {
	align-items: center;
	display: flex;
	gap: 10px;
	height: 100%;
	justify-content: space-between;
	position: relative;
	width: 100%;
	z-index: 1;
}

.sbi-home-carousel__thumb-title {
	color: var(--sbi-carousel-blue);
	display: -webkit-box;
	font-family: var(--sbi-carousel-interface-font);
	font-size: clamp(12px, .92vw, 15px);
	font-weight: 800;
	-webkit-line-clamp: 2;
	line-height: 1.1;
	overflow: hidden;
	text-align: left;
	-webkit-box-orient: vertical;
}

.sbi-home-carousel__thumb-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	color: var(--sbi-carousel-blue);
	display: flex;
	flex: 0 0 18px;
	height: 18px;
	justify-content: center;
	margin-left: auto;
	opacity: 0;
	position: relative;
	transform: scale(.86);
	transition: opacity .2s ease, transform .2s ease;
	width: 18px;
	z-index: 4;
}

.sbi-home-carousel__tab.is-active .sbi-home-carousel__thumb-toggle {
	opacity: 1;
	transform: scale(1);
}

.sbi-home-carousel__thumb-toggle span {
	display: block;
	height: 10px;
	position: relative;
	width: 10px;
}

.sbi-home-carousel__thumb-toggle span::before,
.sbi-home-carousel__thumb-toggle span::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 10px;
	position: absolute;
	top: 0;
	width: 2px;
}

.sbi-home-carousel__thumb-toggle span::before {
	left: 2px;
}

.sbi-home-carousel__thumb-toggle span::after {
	right: 2px;
}

.sbi-home-carousel.is-paused .sbi-home-carousel__tab.is-active .sbi-home-carousel__thumb-toggle span::before {
	background: currentColor;
	border: 0;
	border-radius: 0;
	clip-path: polygon(16% 6%, 16% 94%, 96% 50%);
	height: 12px;
	left: 1px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath fill='black' d='M2.2 1.5C2.2.7 3.1.2 3.8.7l6.9 4.9c.6.4.6 1.4 0 1.8l-6.9 4.9c-.7.5-1.6 0-1.6-.8z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath fill='black' d='M2.2 1.5C2.2.7 3.1.2 3.8.7l6.9 4.9c.6.4.6 1.4 0 1.8l-6.9 4.9c-.7.5-1.6 0-1.6-.8z'/%3E%3C/svg%3E") center / contain no-repeat;
	top: -1px;
	width: 11px;
}

.sbi-home-carousel.is-paused .sbi-home-carousel__tab.is-active .sbi-home-carousel__thumb-toggle span::after {
	display: none;
}

@media (max-width: 980px) {
	.sbi-home-carousel {
		--sbi-carousel-content-gutter: 28px;
		min-height: clamp(600px, calc(100svh - 160px), 680px);
	}

	@supports not (height: 100svh) {
		.sbi-home-carousel {
			min-height: 660px;
		}
	}

	.sbi-home-carousel__viewport,
	.sbi-home-carousel__track,
	.sbi-home-carousel__slide,
	.sbi-home-slot {
		min-height: inherit;
	}

	.sbi-home-slot {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
	}

	.sbi-home-slot__content {
		padding: 52px 28px 24px;
	}

	.sbi-home-slot h2 {
		font-size: clamp(40px, 11vw, 58px);
	}

	.sbi-home-slot__wealth-lockup h2 {
		font-size: 1rem;
	}

	.sbi-home-slot p {
		font-size: 18px;
	}

	.sbi-home-slot__visual {
		min-height: 320px;
	}

	.sbi-home-slot--legacy {
		padding: 48px 28px 116px;
	}

	.sbi-home-slot__legacy-proximity-grid {
		--legacy-shape-step-x: 15px;
		--legacy-shape-step-y: 13px;
		--legacy-shape-width: 9.3px;
		opacity: .78;
	}

	.sbi-home-slot__legacy-lockup {
		gap: 18px;
		grid-template-columns: 1fr;
		justify-items: center;
		max-width: 760px;
		padding: 34px 40px;
	}

	.sbi-home-slot__legacy-logo {
		justify-self: center;
		width: min(390px, 88%);
	}

	.sbi-home-slot__legacy-cta {
		justify-self: center;
		max-width: 760px;
		width: 100%;
	}

	.sbi-home-slot--debit::before {
		inset: auto 0 0 0;
		height: 48%;
	}

	.sbi-home-slot--uplift {
		padding: 64px 28px 116px;
	}

	.sbi-home-slot__uplift-shader {
		height: 1200px;
		min-height: 1200px;
		right: -300px;
		top: 0;
		width: 1600px;
	}

	.sbi-home-slot__uplift-inner {
		gap: 24px;
	}

	.sbi-home-slot--uplift .sbi-home-slot__uplift-lead {
		font-size: 22px;
		margin-top: 40px;
	}

	.sbi-home-slot__wealth-lockup {
		max-width: calc(100vw - 56px);
		top: 34%;
		width: max-content;
	}

	.sbi-home-slot__wealth-wave {
		bottom: -6%;
		height: 50%;
		left: -2%;
		right: -2%;
		transform: rotate(-16deg);
	}

	.sbi-home-carousel__tabs {
		bottom: 16px;
		left: 28px;
		max-width: none;
		right: 28px;
	}
}

@media (max-width: 860px) {
	.sbi-home-slot__uplift-lockup {
		flex-direction: column;
		gap: 18px;
	}

	.sbi-home-slot__uplift-southern-logo {
		width: 198px;
	}

	.sbi-home-slot__uplift-becoming {
		font-size: 24px;
	}

	.sbi-home-slot__wealth-lockup {
		left: 50%;
		max-width: calc(100vw - 56px);
		text-align: center;
		top: 27%;
		transform: translate(-50%, -50%);
		width: min(calc(100vw - 56px), 560px);
	}

	.sbi-home-slot__wealth-lockup h2 {
		align-items: center;
		display: flex;
		flex-direction: column;
	}

	.sbi-home-slot__wealth-line--bottom {
		margin-left: 2rem;
		margin-top: clamp(2px, .8vw, 8px);
	}

	.sbi-home-slot__wealth-underline {
		margin-left: calc(34% + .5rem);
	}

	.sbi-home-slot__wealth-wave {
		bottom: -7.5%;
		height: 67%;
		left: -2%;
		right: -2%;
		transform: rotate(-3.5deg);
	}
}

@media (max-width: 640px) {
	.sbi-home-carousel {
		--sbi-carousel-content-gutter: 22px;
		min-height: clamp(480px, calc(100svh - 180px), 640px);
	}

	@supports not (height: 100svh) {
		.sbi-home-carousel {
			min-height: 620px;
		}
	}

	.sbi-home-carousel__viewport,
	.sbi-home-carousel__track,
	.sbi-home-carousel__slide,
	.sbi-home-slot {
		min-height: inherit;
	}

	.sbi-home-slot__content {
		gap: 14px;
		padding: 40px 22px 18px;
	}

	.sbi-home-slot__cta {
		font-size: 16px;
		min-height: 46px;
		padding: 13px 18px;
	}

	.sbi-home-slot__visual--tax,
	.sbi-home-slot__visual--debit {
		padding: 20px 20px 86px;
	}

	.sbi-home-slot--uplift {
		padding: 48px 22px 110px;
	}

	.sbi-home-slot__uplift-shader {
		height: 1120px;
		min-height: 1120px;
		right: -500px;
		top: 0;
		width: 1500px;
	}

	.sbi-home-slot__uplift-inner {
		gap: 20px;
		transform: translateY(36px);
	}

	.sbi-home-slot__uplift-identity::before {
		inset: -58px -88px -52px;
	}

	.sbi-home-slot__uplift-lockup {
		gap: 14px;
	}

	.sbi-home-slot__uplift-southern-logo {
		width: 176px;
	}

	.sbi-home-slot__uplift-becoming {
		font-size: 21px;
	}

	.sbi-home-slot__uplift-logo {
		max-height: 74px;
		max-width: 158px;
	}

	.sbi-home-slot--uplift .sbi-home-slot__uplift-lead {
		font-size: 20px;
		margin-top: 28px;
		max-width: 320px;
	}

	.sbi-home-slot__uplift-cta {
		margin-top: 0;
	}

	.sbi-home-slot__legacy-inner {
		gap: 22px;
	}

	.sbi-home-slot__legacy-proximity-grid {
		--legacy-shape-step-x: 14px;
		--legacy-shape-step-y: 12px;
		--legacy-shape-width: 8.7px;
		opacity: .72;
	}

	.sbi-home-slot__legacy-lockup {
		border-radius: 16px;
		gap: 14px;
		padding: 24px;
	}

	.sbi-home-slot__legacy-southern-logo {
		width: min(210px, 76%);
	}

	.sbi-home-slot__legacy-welcomes {
		font-size: 28px;
	}

	.sbi-home-slot__legacy-logo {
		width: min(260px, 84%);
	}

	.sbi-home-slot__legacy-cta {
		border-radius: 12px;
		flex-direction: column;
		gap: 14px;
		max-width: 100%;
		padding: 20px;
		text-align: center;
	}

	.sbi-home-slot__legacy-cta p {
		font-size: 18px;
	}

	.sbi-home-slot__legacy-cta a {
		min-height: 42px;
		width: min(190px, 100%);
	}

	.sbi-home-slot__tax-badge {
		left: 20px;
		top: 22px;
		width: min(210px, 54%);
	}

	.sbi-home-slot__tax-photo {
		width: min(300px, 72%);
	}

	.sbi-home-slot__wealth-line--top,
	.sbi-home-slot__wealth-for {
		font-size: clamp(34px, 10.8vw, 48px);
	}

	.sbi-home-slot__wealth-everyone {
		font-size: clamp(44px, 13.4vw, 62px);
	}

	.sbi-home-slot__wealth-line--bottom {
		gap: 8px;
		margin-left: clamp(16px, 7vw, 28px);
	}

	.sbi-home-slot__wealth-underline {
		height: 32px;
		margin-left: calc(34% + 6px);
		margin-top: -10px;
		width: 60%;
	}

	.sbi-home-slot__wealth-wave {
		bottom: -7.5%;
		height: 67%;
		left: -2%;
		right: -2%;
		transform: rotate(-3.5deg);
	}

	.sbi-home-carousel__tabs {
		bottom: 16px;
		gap: 8px;
		left: 18px;
		padding: 8px 4px;
		right: 18px;
	}

	.sbi-home-carousel__tab {
		flex-basis: 156px;
		min-height: 52px;
		padding: 10px 13px 12px;
		width: 156px;
	}

	.sbi-home-carousel__thumb-title {
		font-size: 12px;
	}

}

@media (max-width: 420px) {
	.sbi-home-carousel__tab {
		flex-basis: 156px;
		width: 156px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sbi-home-carousel__slide,
	.sbi-home-carousel__tab {
		transition: none;
	}

	.sbi-home-slot__wealth-wave {
		display: none;
	}
}
