/**
 * SMT Homepage
 *
 * Scoped under `.smt-home`.
 */

.smt-home {
	--smt-home-radius: 16px;
	--smt-home-border: #ececec;
	--smt-home-text: #222;
	--smt-home-muted: #7a7a7a;
	--smt-home-primary: var(--primary-color, #1e73be);
	--smt-reveal-duration: 2.1s;
}

.smt-home__section {
	margin: 26px 0;
	position: relative;
	padding: 18px 0;
}

/* Hero should sit flush under header */
.smt-home__section--hero,
#smt-home-hero {
	margin: 0 !important;
	padding: 0 !important;
}

/* Flatsome UX Builder section wraps shortcode with default 30px padding */
body.home #content > .section:first-child,
.section:has(#smt-home-hero),
.section:has(.smt-home-hero-slider) {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
}

.section:has(#smt-home-hero) > .section-content,
.section:has(#smt-home-hero) .row,
.section:has(#smt-home-hero) .col,
.section:has(#smt-home-hero) .col-inner {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.smt-home__section:nth-child(even) {
	background: linear-gradient(180deg, rgba(30,115,190,.04), rgba(255,255,255,0));
}

.smt-home__section:nth-child(even)::before {
	content: "";
	position: absolute;
	inset: -30px 0 auto 0;
	height: 180px;
	background: radial-gradient(circle at 20% 20%, rgba(30,115,190,.18), transparent 55%),
		radial-gradient(circle at 80% 0%, rgba(30,115,190,.10), transparent 52%);
	pointer-events: none;
	opacity: .7;
}

.smt-home-block__head {
	margin: 0 0 14px;
}

.smt-home-block__title {
	margin: 0;
	font-size: 28px;
	font-weight: 900;
	color: var(--smt-home-text);
	text-align: center;
	letter-spacing: .2px;
	position: relative;
}

.smt-home-block__title::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	margin: 10px auto 0;
	background: var(--smt-home-primary);
	border-radius: 3px;
	opacity: 0.9;
}

@media (max-width: 849px) {
	.smt-home-block__title {
		font-size: 22px;
	}
}

/* Hero slider */
.smt-home-hero-slider {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	background: #0b1a2e;
	color: #fff;
	isolation: isolate;
}

@media (min-width: 850px) {
	.smt-home-hero-slider {
		min-height: 650px;
	}
}

.smt-home-hero-slider__track {
	position: relative;
	min-height: inherit;
}

.smt-home-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .85s cubic-bezier(.4, 0, .2, 1), visibility .85s;
	z-index: 1;
}

.smt-home-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.smt-home-hero-slide__bg {
	position: absolute;
	inset: 0;
	background-image: var(--smt-slide-bg, none);
	background-size: cover;
	background-position: center;
	transform: scale(1.08);
	transition: transform 8s ease-out;
}

.smt-home-hero-slide.is-active .smt-home-hero-slide__bg {
	transform: scale(1);
}

.smt-home-hero-slide--v1 .smt-home-hero-slide__bg {
	background-image: var(--smt-slide-bg, linear-gradient(135deg, #0f2b4a 0%, #1e5f8a 45%, #0d2137 100%));
}

.smt-home-hero-slide--v2 .smt-home-hero-slide__bg {
	background-image: var(--smt-slide-bg, linear-gradient(135deg, #1a2744 0%, #2d4a7a 50%, #152238 100%));
}

.smt-home-hero-slide--v3 .smt-home-hero-slide__bg {
	background-image: var(--smt-slide-bg, linear-gradient(135deg, #0f2f2a 0%, #1e6b5c 48%, #0c1f1c 100%));
}

.smt-home-hero-slide__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(6, 14, 28, .88) 0%, rgba(6, 14, 28, .62) 42%, rgba(6, 14, 28, .28) 100%),
		radial-gradient(circle at 85% 20%, rgba(30, 115, 190, .22), transparent 55%);
}

.smt-home-hero-slide__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 40px 24px 56px;
}

@media (min-width: 850px) {
	.smt-home-hero-slide__inner {
		padding: 56px 32px 72px;
	}
}

.smt-home-hero-slide__tagline {
	display: inline-block;
	margin: 0 0 14px;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .92);
	background: rgba(30, 115, 190, .28);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	backdrop-filter: blur(6px);
	opacity: 0;
	transform: translateY(18px);
}

.smt-home-hero-slide.is-active .smt-home-hero-slide__tagline {
	animation: smtHeroFadeUp .7s cubic-bezier(.2, .8, .2, 1) .15s forwards;
}

.smt-home-hero-slide__title {
	margin: 0 0 14px;
	max-width: 16ch;
	font-size: 34px;
	line-height: 1.12;
	font-weight: 900;
	color: #fff;
	text-shadow: 0 8px 28px rgba(0, 0, 0, .35);
	opacity: 0;
	transform: translateY(22px);
}

.smt-home-hero-slide.is-active .smt-home-hero-slide__title {
	animation: smtHeroFadeUp .75s cubic-bezier(.2, .8, .2, 1) .28s forwards;
}

.smt-home-hero-slide__desc {
	margin: 0 0 22px;
	max-width: 58ch;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, .88);
	opacity: 0;
	transform: translateY(22px);
}

.smt-home-hero-slide.is-active .smt-home-hero-slide__desc {
	animation: smtHeroFadeUp .8s cubic-bezier(.2, .8, .2, 1) .42s forwards;
}

.smt-home-hero-slide__cta {
	opacity: 0;
	transform: translateY(22px);
}

.smt-home-hero-slide.is-active .smt-home-hero-slide__cta {
	animation: smtHeroFadeUp .85s cubic-bezier(.2, .8, .2, 1) .55s forwards;
}

.smt-home-hero-slide__btn {
	position: relative;
	overflow: hidden;
	border-radius: 999px !important;
	padding: 9px 20px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	min-height: 0 !important;
	letter-spacing: .04em;
	box-shadow: 0 10px 24px rgba(30, 115, 190, .28);
	transition: transform .2s ease, box-shadow .2s ease;
}

.smt-home-hero-slide__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(30, 115, 190, .34);
}

.smt-home-hero-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 5;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 7px;
}

.smt-home-hero-slider__dot {
	position: relative;
	flex-shrink: 0;
	width: 24px;
	height: 1px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .28);
	cursor: pointer;
	overflow: hidden;
	transition: background-color .25s ease, opacity .25s ease;
	opacity: .7;
}

.smt-home-hero-slider__dot:hover {
	opacity: 1;
	background: rgba(255, 255, 255, .42);
}

.smt-home-hero-slider__dot.is-active {
	opacity: 1;
	background: rgba(255, 255, 255, .2);
}

.smt-home-hero-slider__dot-progress {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	height: 100%;
	background: rgba(255, 255, 255, .95);
	border-radius: inherit;
}

.smt-home-hero-slider__dot.is-active .smt-home-hero-slider__dot-progress {
	animation: smtHeroDotProgress var(--smt-hero-autoplay, 6.5s) linear forwards;
}

.smt-home-hero-slider.is-paused .smt-home-hero-slider__dot.is-active .smt-home-hero-slider__dot-progress {
	animation-play-state: paused;
}

@keyframes smtHeroFadeUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes smtHeroDotProgress {
	from { width: 0; }
	to { width: 100%; }
}

@media (max-width: 849px) {
	.smt-home-hero-slide__title {
		font-size: 28px;
		max-width: 100%;
	}

	.smt-home-hero-slide__inner {
		padding: 32px 18px 48px;
	}

	.smt-home-hero-slide__btn {
		padding: 8px 16px !important;
		font-size: 12px !important;
		font-weight: 700 !important;
		line-height: 1.25 !important;
		min-height: 0 !important;
		letter-spacing: .04em;
		box-shadow: 0 8px 18px rgba(30, 115, 190, .22);
	}
}

/* Grids */
.smt-home-grid {
	display: grid;
	gap: 14px;
}

.smt-home-grid--cats {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.smt-home-grid--why {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.smt-home-grid--industries {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 700px) {
	.smt-home-grid--industries {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.smt-home-grid--testimonials {
	grid-template-columns: 1fr;
}

@media (min-width: 850px) {
	.smt-home-grid--cats {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
	.smt-home-grid--why {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.smt-home-grid--industries {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.smt-home-grid--testimonials {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Category card */
.smt-home-cat {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid #eef0f3;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff, #fbfcfe);
	padding: 14px;
	transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.smt-home-cat:hover {
	transform: translateY(-2px);
	border-color: rgba(30,115,190,.38);
	box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.smt-home-cat__media {
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background: radial-gradient(circle at 30% 20%, rgba(30,115,190,.12), transparent 55%),
		linear-gradient(135deg, #f7f8fa, #ffffff);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid #eef0f3;
}

.smt-home-cat__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
}

.smt-home-cat__placeholder {
	color: #c2c7d0;
	font-size: 18px;
}

.smt-home-cat__name {
	margin-top: 10px;
	font-weight: 900;
	color: var(--smt-home-text);
	font-size: 13.5px;
	line-height: 1.25;
}

.smt-home-cat__name::after {
	content: "→";
	display: inline-block;
	margin-left: 6px;
	color: rgba(30,115,190,.75);
	transform: translateX(-2px);
	transition: transform .15s ease;
}

.smt-home-cat:hover .smt-home-cat__name::after {
	transform: translateX(2px);
}

/* About (Vision/Mission) */
.smt-home-about {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: stretch;
}

@media (min-width: 850px) {
	.smt-home-about {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 22px;
	}
}

.smt-home-about__content {
	background: radial-gradient(circle at 20% 0%, rgba(30,115,190,.10), transparent 55%),
		linear-gradient(180deg, #ffffff, #fbfcff);
	border: 1px solid #eef0f3;
	border-radius: 20px;
	padding: 22px 22px;
	box-shadow: 0 18px 50px rgba(0,0,0,.08);
	position: relative;
	overflow: hidden;
}

.smt-home-about__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(30,115,190,.22);
	background: rgba(30,115,190,.08);
	color: #2b4f7f;
	font-weight: 900;
	font-size: 12px;
	letter-spacing: .3px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.smt-home-about__lead {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.75;
	font-weight: 900;
	color: #163a66;
}

.smt-home-about__p {
	margin: 0 0 12px;
	color: #444;
	line-height: 1.7;
}

.smt-home-about__cta {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.smt-home-about__cta .button {
	border-radius: 999px !important;
	padding: 9px 22px !important;
	font-weight: 800 !important;
	font-size: 13px !important;
	min-height: 0 !important;
	letter-spacing: .35px;
	text-transform: uppercase;
	line-height: 1.4 !important;
	transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .18s ease, box-shadow .22s ease;
	box-shadow: none !important;
}

.smt-home-about__cta .button.primary.is-outline {
	background: transparent !important;
	border-width: 2px !important;
	border-color: var(--primary-color, #82d43d) !important;
	color: var(--primary-color, #82d43d) !important;
}

.smt-home-about__cta .button.primary.is-outline:hover,
.smt-home-about__cta .button.primary.is-outline:focus {
	background: var(--primary-color, #82d43d) !important;
	color: #fff !important;
	border-color: var(--primary-color, #82d43d) !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(130, 212, 61, .28) !important;
}

.smt-home-about__cta .button.secondary.is-outline {
	background: transparent !important;
	border-width: 2px !important;
	border-color: var(--secondary-color, #cd704a) !important;
	color: var(--secondary-color, #cd704a) !important;
}

.smt-home-about__cta .button.secondary.is-outline:hover,
.smt-home-about__cta .button.secondary.is-outline:focus {
	background: var(--secondary-color, #cd704a) !important;
	color: #fff !important;
	border-color: var(--secondary-color, #cd704a) !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(205, 112, 74, .25) !important;
}

.smt-home-about__media {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #eef0f3;
	box-shadow: 0 22px 60px rgba(0,0,0,.14);
	min-height: 320px;
	position: relative;
}

.smt-home-about__img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: saturate(1.05) contrast(1.03);
}

.smt-home-about__img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,.25), rgba(0,0,0,0));
	pointer-events: none;
}

.smt-home-about__glass {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255,255,255,.14);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.22);
	color: #fff;
	box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.smt-home-about__glass-title {
	font-weight: 900;
	font-size: 18px;
	line-height: 1.1;
}

.smt-home-about__glass-sub {
	opacity: .9;
	font-size: 12.5px;
	margin-top: 3px;
}

/* Why us */
.smt-home-why {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 22px 18px;
	border: 1px solid #eef0f3;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff, #fbfcfe);
	box-shadow: 0 14px 36px rgba(0,0,0,.08);
	transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.smt-home-why:hover {
	transform: translateY(-2px);
	border-color: rgba(30,115,190,.35);
	box-shadow: 0 18px 46px rgba(0,0,0,.12);
}

.smt-home-why__icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: rgba(30,115,190,.08);
	color: var(--smt-home-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(30,115,190,.18);
}

.smt-home-why__icon svg {
	width: 26px;
	height: 26px;
	display: block;
}

.smt-home-why__body {
	width: 100%;
}

.smt-home-why__title {
	font-weight: 900;
	margin-bottom: 4px;
}

.smt-home-why__desc {
	color: #555;
	font-size: 13.5px;
	line-height: 1.55;
}

/* Industries */
.smt-home-industry {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 22px 16px;
	border: 1px solid #eef0f3;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff, #fbfcfe);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.smt-home-industry:hover {
	transform: translateY(-3px);
	border-color: rgba(30, 115, 190, .32);
	box-shadow: 0 18px 42px rgba(0, 0, 0, .1);
}

.smt-home-industry__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(30, 115, 190, .1);
	color: var(--smt-home-primary);
	border: 1px solid rgba(30, 115, 190, .16);
}

.smt-home-industry__icon svg {
	width: 26px;
	height: 26px;
}

.smt-home-industry__label {
	font-weight: 800;
	font-size: 14px;
	line-height: 1.4;
	color: var(--smt-home-text);
	max-width: 18ch;
}

/* Testimonials */
.smt-home-testimonial {
	padding: 14px;
	border: 1px solid var(--smt-home-border);
	border-radius: 14px;
	background: #fff;
}

.smt-home-testimonial__quote {
	color: #444;
	font-size: 14px;
	line-height: 1.65;
}

.smt-home-testimonial__meta {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.smt-home-testimonial__logo img {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	object-fit: cover;
}

.smt-home-testimonial__name {
	font-weight: 900;
}

.smt-home-testimonial__company {
	color: var(--smt-home-muted);
	font-size: 12.5px;
}

.smt-home-testimonial__rating {
	margin-left: auto;
	color: #f5a623;
	letter-spacing: 1px;
}

/* Contact */
.smt-home-block--contact {
	position: relative;
}

.smt-home-contact__panel {
	max-width: 920px;
	margin: 0 auto;
	padding: 28px 22px;
	border-radius: 20px;
	border: 1px solid rgba(30, 115, 190, .12);
	background:
		radial-gradient(circle at 10% 0%, rgba(30, 115, 190, .08), transparent 45%),
		linear-gradient(180deg, #ffffff, #f8fbff);
	box-shadow: 0 16px 44px rgba(20, 40, 70, .08);
}

.smt-home-contact__cards {
	display: grid;
	gap: 14px;
	margin-bottom: 22px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.smt-home-contact__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.smt-home-contact__card {
	display: block;
	padding: 22px 18px;
	border-radius: 16px;
	border: 1px solid #e8edf3;
	background: #fff;
	text-decoration: none;
	color: inherit;
	text-align: center;
	box-shadow: 0 8px 22px rgba(20, 40, 70, .05);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.smt-home-contact__card:hover {
	transform: translateY(-2px);
	border-color: rgba(30, 115, 190, .28);
	box-shadow: 0 14px 32px rgba(20, 40, 70, .1);
	color: inherit;
}

.smt-home-contact__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 12px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(30, 115, 190, .1);
	color: var(--smt-home-primary);
}

.smt-home-contact__icon svg {
	width: 22px;
	height: 22px;
}

.smt-home-contact__k {
	color: var(--smt-home-muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 800;
	margin-bottom: 8px;
}

.smt-home-contact__v {
	display: block;
	font-weight: 800;
	font-size: 15px;
	line-height: 1.45;
	color: var(--smt-home-primary);
}

.smt-home-contact__v--text {
	color: var(--smt-home-text);
	font-weight: 700;
	font-size: 14px;
}

.smt-home-contact__email-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}

.smt-home-contact__email-list .smt-home-contact__v:hover {
	text-decoration: underline;
}

.smt-home-contact__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 0;
}

.smt-home-contact__btn {
	border-radius: 999px !important;
	padding: 10px 22px !important;
	font-weight: 800 !important;
	font-size: 13px !important;
	min-height: 0 !important;
}

.smt-home-contact__btn--ghost {
	background: transparent !important;
	border: 2px solid var(--smt-home-primary) !important;
	color: var(--smt-home-primary) !important;
}

/* FAQ */
.smt-home-faq__q {
	width: 100%;
	text-align: left;
	padding: 14px 14px;
	border: 1px solid var(--smt-home-border);
	border-radius: 14px;
	background: #fff;
	font-weight: 900;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.smt-home-faq__icon {
	font-weight: 900;
	color: var(--smt-home-primary);
}

.smt-home-faq__a {
	padding: 0 14px 14px 14px;
	margin-top: -6px;
	color: #444;
}

/* Scroll reveal animations */
.smt-reveal {
	opacity: 0;
	pointer-events: none;
}

.smt-reveal--up {
	transform: translate3d(0, 64px, 0);
}

.smt-reveal--left {
	transform: translate3d(-68px, 0, 0);
}

.smt-reveal--right {
	transform: translate3d(68px, 0, 0);
}

.smt-reveal.is-visible {
	pointer-events: auto;
}

.smt-reveal.is-visible.smt-reveal--up {
	animation: smtRevealUp var(--smt-reveal-duration, 2.1s) cubic-bezier(.22, .84, .32, 1) forwards;
	animation-delay: var(--smt-reveal-delay, 0ms);
}

.smt-reveal.is-visible.smt-reveal--left {
	animation: smtRevealLeft var(--smt-reveal-duration, 2.1s) cubic-bezier(.22, .84, .32, 1) forwards;
	animation-delay: var(--smt-reveal-delay, 0ms);
}

.smt-reveal.is-visible.smt-reveal--right {
	animation: smtRevealRight var(--smt-reveal-duration, 2.1s) cubic-bezier(.22, .84, .32, 1) forwards;
	animation-delay: var(--smt-reveal-delay, 0ms);
}

@keyframes smtRevealUp {
	from {
		opacity: 0;
		transform: translate3d(0, 64px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes smtRevealLeft {
	from {
		opacity: 0;
		transform: translate3d(-68px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes smtRevealRight {
	from {
		opacity: 0;
		transform: translate3d(68px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media (max-width: 849px) {
	.smt-reveal--left,
	.smt-reveal--right {
		transform: translate3d(0, 52px, 0);
	}

	.smt-reveal.is-visible.smt-reveal--left,
	.smt-reveal.is-visible.smt-reveal--right {
		animation-name: smtRevealUp;
	}
}

@media (prefers-reduced-motion: reduce) {
	.smt-reveal {
		opacity: 1;
		transform: none !important;
		pointer-events: auto;
	}

	.smt-reveal.is-visible.smt-reveal--up,
	.smt-reveal.is-visible.smt-reveal--left,
	.smt-reveal.is-visible.smt-reveal--right {
		animation: none !important;
	}
}

/* Featured products slider */
.smt-home-featured-slider {
	position: relative;
	padding: 0 42px 8px;
}

.smt-home-featured-slider__viewport {
	overflow: hidden;
}

.smt-home-featured-slider__track {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: stretch;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	transition: transform .45s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}

.smt-home-featured-slider__track::before,
.smt-home-featured-slider__track::after {
	display: none !important;
	content: none !important;
}

.smt-home-featured-slider__track > .product {
	flex: 0 0 auto;
	width: var(--smt-fp-slide-width, 25%);
	max-width: none !important;
	margin: 0 !important;
	padding: 0 10px;
	box-sizing: border-box;
	float: none !important;
}

.smt-home-featured-slider__nav {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border: 1px solid #e6e9ef;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(15, 30, 55, .12);
	color: #333;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	transition: background .15s ease, color .15s ease;
}

.smt-home-featured-slider__nav:hover {
	background: var(--smt-home-primary, #82d13d);
	color: #fff;
	border-color: transparent;
}

.smt-home-featured-slider__nav--prev {
	left: 0;
}

.smt-home-featured-slider__nav--next {
	right: 0;
}

.smt-home-featured-slider__dots {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.smt-home-featured-slider__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: #cfd6df;
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.smt-home-featured-slider__dot.is-active {
	background: var(--smt-home-primary, #82d13d);
	width: 22px;
}

.smt-home-block--featured .products:not(.smt-home-featured-slider__track) {
	margin-top: 4px;
}

.smt-home-featured__cta {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

.smt-home-featured__view-all {
	border-radius: 999px !important;
	padding: 10px 24px !important;
	font-weight: 800 !important;
	font-size: 13px !important;
	min-height: 0 !important;
	letter-spacing: .35px;
	text-transform: uppercase;
	line-height: 1.4 !important;
	background: transparent !important;
	border: 2px solid var(--smt-home-primary) !important;
	color: var(--smt-home-primary) !important;
	box-shadow: none !important;
	transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .18s ease, box-shadow .22s ease;
}

.smt-home-featured__view-all:hover,
.smt-home-featured__view-all:focus {
	background: var(--smt-home-primary) !important;
	color: #fff !important;
	border-color: var(--smt-home-primary) !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(30, 115, 190, .22) !important;
}

@media (max-width: 849px) {
	.smt-home-featured-slider {
		padding: 0 36px 4px;
	}

	.smt-home-featured-slider__nav {
		width: 34px;
		height: 34px;
		font-size: 20px;
	}
}
