:root {
	--blue: #f96506;
	--dark-blue: #d85000;
	--ink: #21252b;
	--muted: #6f7781;
	--footer: #f96506;
	--max: 1320px;
}

@font-face {
	font-family: "Elementskit";
	src: url("../fonts/elementskit.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #fff;
	color: var(--ink);
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.45;
}

a {
	color: inherit;
	text-decoration: none;
}

.wrap {
	width: min(var(--max), calc(100% - 64px));
	margin: 0 auto;
}

.top-strip {
	height: 40px;
	background: var(--blue);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.top-strip__inner {
	display: flex;
	gap: 28px;
	align-items: center;
	height: 100%;
}

.top-strip__inner > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.top-strip__email {
	font-weight: 400;
}

.top-strip .dashicons {
	width: 17px;
	height: 17px;
	font-size: 17px;
}

.main-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: #fff;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.main-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 68px;
	gap: 28px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 900;
	font-size: 29px;
	letter-spacing: 0;
}

.brand__image {
	display: block;
	width: auto;
	max-width: 180px;
	height: 36px;
	object-fit: contain;
}

.menu-toggle {
	display: none;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-left: auto;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}

.menu-toggle .dashicons {
	width: 28px;
	height: 28px;
	font-size: 28px;
}

.main-nav {
	flex: 1;
	font-size: 16px;
	font-weight: 800;
}

.main-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.main-nav__list > li {
	position: relative;
}

.main-nav__list a {
	display: block;
}

.main-nav__list > li > a {
	padding: 22px 0;
	transition: color 180ms ease;
}

.main-nav__list > li.current-menu-item > a,
.main-nav__list > li.current-menu-ancestor > a,
.main-nav__list > li.current-menu-parent > a,
.main-nav__list > li > a:hover,
.main-nav__list > li > a:focus {
	color: var(--blue);
}

.main-nav__list > .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 0 3px 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 360ms ease;
}

.main-nav__list > .menu-item-has-children:hover > a::after,
.main-nav__list > .menu-item-has-children:focus-within > a::after,
.main-nav__list > .has-mega-menu.is-desktop-open > a::after {
	position: relative;
	top: 4px;
	transform: rotate(225deg);
}

.main-nav__list > .menu-item:not(.has-mega-menu) > .sub-menu {
	position: absolute;
	top: 100%;
	left: -20px;
	min-width: 230px;
	padding: 12px 0;
	background: #fff;
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.main-nav__list > .menu-item:not(.has-mega-menu):hover > .sub-menu,
.main-nav__list > .menu-item:not(.has-mega-menu):focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-nav__list > .menu-item:not(.has-mega-menu) > .sub-menu a {
	padding: 11px 20px;
}

.main-nav__list > .menu-item:not(.has-mega-menu) > .sub-menu a:hover,
.main-nav__list > .menu-item:not(.has-mega-menu) > .sub-menu a:focus {
	color: var(--blue);
	background: #f5f6f7;
}

.main-nav__list > .has-mega-menu {
	position: static;
}

.main-nav__list > .has-mega-menu > .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	width: min(1320px, 96vw);
	min-height: 560px;
	padding: 0 0 0 280px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.main-nav__list > .has-mega-menu.has-mega-tabs > .sub-menu::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 280px;
	width: 1px;
	background: #e2e2e2;
	content: "";
}

.main-nav__list > .has-mega-menu.is-desktop-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.main-nav__list > .has-mega-menu.has-mega-tabs > .sub-menu {
	--mega-tabs-height: 78px;
	min-height: 720px;
	padding-top: var(--mega-tabs-height);
}

.main-nav__list > .has-services-mega > .sub-menu {
	width: min(760px, 92vw);
	min-height: 0;
	padding: 0;
}

.main-nav__list > .has-services-mega > .sub-menu > li:not(.smax-services-mega-panel) {
	display: none;
}

.has-services-mega > .sub-menu > .smax-services-mega-panel {
	position: static;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	width: auto;
	min-height: 0;
	margin: 0;
	padding: 25px 34px 32px;
	background: #fff;
}

.smax-services-mega-column {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.smax-services-mega-column a {
	padding: 10px 0;
	color: var(--ink);
	font-size: 14px;
	font-weight: 600;
	line-height: 16px;
}

.smax-services-mega-column a:hover,
.smax-services-mega-column a:focus {
	color: var(--blue);
}

.smax-services-mega-column .smax-services-mega-heading {
	margin-bottom: 8px;
	padding-top: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 18px;
}

.has-mega-menu > .sub-menu > .mega-menu-tabs {
	position: absolute;
	top: 0;
	left: 280px;
	right: 0;
	width: auto;
	height: var(--mega-tabs-height);
	margin: 0;
	padding: 18px 34px 38px;
	background: #fff;
}

.mega-menu-tabs__list {
	display: flex;
	align-items: center;
	gap: 30px;
	min-height: 22px;
}

.mega-menu-tabs__list a {
	padding: 8px 0;
	color: var(--ink);
	font-size: 15px;
	font-weight: 800;
	white-space: nowrap;
	transition: color 180ms ease;
}

.mega-menu-tabs__list a:hover,
.mega-menu-tabs__list a:focus,
.mega-menu-tabs__list .current-menu-item > a {
	color: var(--blue);
}

.has-mega-menu > .sub-menu > li {
	position: static;
	width: 280px;
	margin-left: -280px;
}

.has-mega-menu > .sub-menu > li > a {
	padding: 17px 24px;
	border-left: 4px solid transparent;
}

.has-mega-menu > .sub-menu > li.is-active > a,
.has-mega-menu > .sub-menu > li > a:hover,
.has-mega-menu > .sub-menu > li > a:focus {
	color: #fff;
	background: var(--blue);
	border-left-color: var(--dark-blue);
}

.has-mega-menu > .sub-menu > li > .sub-menu {
	position: absolute;
	top: 0;
	right: 0;
	left: 280px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 24px;
	padding: 34px 34px 40px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.has-mega-menu.has-mega-tabs > .sub-menu > li > .sub-menu {
	top: var(--mega-tabs-height);
	row-gap: 48px;
}

.has-mega-menu > .sub-menu > li.is-active > .sub-menu {
	opacity: 1;
	visibility: visible;
}

.main-nav__list > .has-mega-menu.is-desktop-open > .sub-menu > li.is-active > .sub-menu {
	pointer-events: auto;
}

.mega-product {
	min-width: 0;
}

.mega-product__link {
	height: 100%;
	text-align: center;
}

.mega-product__image {
	display: block;
	width: 100%;
	height: 150px;
	margin-bottom: 14px;
	object-fit: contain;
}

.mega-product__image--placeholder {
	background:
		linear-gradient(135deg, rgba(249, 101, 6, 0.18), transparent),
		repeating-linear-gradient(90deg, #dce4e9 0 30px, #8da0ad 30px 60px);
}

.mega-product__title,
.mega-product__excerpt {
	display: block;
}

.mega-product__title {
	padding-bottom: 10px;
	border-bottom: 1px solid #ccd2d6;
	font-size: 16px;
	line-height: 1.25;
}

.mega-product__excerpt {
	padding-top: 9px;
	color: #4f5961;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

.quote-button,
.blue-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--blue);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	padding: 11px 24px;
	box-shadow: 0 3px 7px rgba(249, 101, 6, 0.25);
}

.outline-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--blue);
	border-radius: 999px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 900;
	padding: 8px 20px;
}

.button-with-arrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-right: 8px;
}

.quote-button--placeholder {
	min-width: 180px;
	visibility: hidden;
}

.button-with-arrow::after {
	content: "";
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11'%3E%3Cpath d='M1.5 1.5l4 4-4 4' fill='none' stroke='%23f96506' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 7px 11px;
}

.button-with-arrow--theme-circle::after {
	background-color: var(--blue);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11'%3E%3Cpath d='M1.5 1.5l4 4-4 4' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.smax-service-feature.is-grey .button-with-arrow--theme-circle::after {
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11'%3E%3Cpath d='M1.5 1.5l4 4-4 4' fill='none' stroke='%23f96506' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* About Us and Contact Us */
.smax-about-hero,
.smax-contact-hero {
	position: relative;
	display: grid;
	background: #1a1b1e;
	overflow: hidden;
	isolation: isolate;
}

.smax-about-hero {
	min-height: calc(100vh - 108px);
}

.smax-contact-hero {
	min-height: 60vh;
}

.smax-page-hero__media,
.smax-page-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.smax-page-hero__media {
	z-index: 0;
	object-fit: cover;
}

.smax-page-hero__overlay {
	z-index: 1;
	background: rgba(0, 0, 0, 0.35);
}

.smax-about-hero__inner,
.smax-contact-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.smax-about-hero__inner {
	justify-content: flex-start;
	padding-left: 10.7%;
}

.smax-about-hero__copy {
	width: min(520px, 100%);
	text-align: left;
}

.smax-about-hero h1 {
	margin: 0 0 16px;
	font-size: 36px;
	line-height: 1.17;
}

.smax-about-hero p {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.2;
}

.smax-about-hero__button {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 5px 7px 5px 24px;
	border: 1px solid var(--blue);
	border-radius: 50px;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.smax-about-hero__button .dashicons {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	color: var(--blue);
	font-size: 17px;
}

.smax-about-hero__button:hover,
.smax-about-hero__button:focus-visible {
	background: var(--blue);
	border-color: var(--blue);
}

.smax-about-hero__curve {
	position: absolute;
	z-index: 3;
	right: -7%;
	bottom: -2px;
	width: 114%;
	height: 150px;
	fill: #fff;
	transform: rotate(180deg);
}

.smax-about-panel {
	position: relative;
	z-index: 4;
	padding: 40px 0 80px;
	background: #fff;
}

.smax-about-panel__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	max-width: 1170px;
	padding: 80px 54px;
	background: rgba(246, 246, 246, 0.9);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.smax-about-column h2 {
	margin: 0 0 20px;
	color: var(--blue);
	font-size: 40px;
	font-weight: 900;
}

.smax-about-column p {
	margin: 0 0 18px;
}

.smax-about-intro-image {
	display: block;
	width: 100%;
	max-width: 420px;
	height: auto;
	margin-top: 18px;
}

.smax-about-technologies {
	margin: 0;
	padding: 0;
	list-style: none;
}

.smax-about-technologies li {
	position: relative;
	padding: 5px 0 5px 26px;
	font-size: 16px;
}

.smax-about-technologies li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: var(--blue);
	font-weight: 900;
}

.smax-about-column--values {
	padding-top: 58px;
}

.smax-about-value-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px 18px;
	margin-top: 34px;
}

.smax-about-value {
	display: flex;
	gap: 15px;
}

.smax-about-value--wide {
	grid-column: 1 / -1;
}

.smax-about-value > .dashicons {
	width: 32px;
	height: 32px;
	color: var(--blue);
	font-size: 32px;
}

.smax-about-value h3 {
	margin: 0 0 8px;
	font-size: 18px;
}

.smax-about-value p {
	margin: 0;
}

.smax-contact-hero__inner h1 {
	margin: 100px 0 0;
	font-size: 46px;
	line-height: 1.1;
}

.smax-contact-main {
	padding: 60px 0;
}

.smax-contact-main__grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
	gap: 30px;
	max-width: 1270px;
}

.smax-contact-intro {
	margin: 0 10px 25px 0;
	font-size: 28px;
	line-height: 1.5;
	text-align: center;
}

.smax-contact-form {
	padding: 28px;
	background: #f6f6f6;
}

.smax-contact-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.smax-contact-form label span {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 700;
}

.smax-contact-form input,
.smax-contact-form select,
.smax-contact-form textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #d8dce0;
	border-radius: 3px;
	background: #fff;
	color: var(--ink);
	font: inherit;
}

.smax-contact-form textarea {
	resize: vertical;
}

.smax-contact-form__wide {
	grid-column: 1 / -1;
}

.smax-contact-captcha {
	display: grid;
	place-items: center;
	width: 260px;
	height: 72px;
	margin: 20px 0;
	border: 1px solid #d7d7d7;
	background: #fff;
	color: #777;
}

.smax-contact-form button {
	margin-top: 22px;
	padding: 13px 36px;
	border: 0;
	border-radius: 3px;
	background: var(--blue);
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

/* Keep the Forminator contact form aligned with the existing contact-page design. */
.smax-contact-form .forminator-ui .forminator-label {
	display: block !important;
	margin-bottom: 7px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.smax-contact-form .forminator-ui .forminator-input,
.smax-contact-form .forminator-ui .forminator-select,
.smax-contact-form .forminator-ui .forminator-textarea {
	box-sizing: border-box !important;
	width: 100% !important;
	padding: 13px 14px !important;
	border: 1px solid #d8dce0 !important;
	border-radius: 3px !important;
	background: #fff !important;
	color: var(--ink) !important;
	font: inherit !important;
}

.smax-contact-form .forminator-ui .forminator-textarea {
	resize: vertical !important;
}

.smax-contact-form .forminator-ui .forminator-button-submit {
	margin-top: 22px !important;
	padding: 13px 36px !important;
	border: 0 !important;
	border-radius: 3px !important;
	background: var(--blue) !important;
	color: #fff !important;
	font: inherit !important;
	font-weight: 800 !important;
}

.smax-contact-details {
	padding-left: 30px;
}

.smax-contact-details > h2 {
	margin: 0 0 20px;
	color: var(--blue);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
}

.smax-contact-location {
	border: 1px solid #e1e4f0;
	border-radius: 8px;
}

.smax-contact-location__toggle {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	padding: 12px 18px;
	border: 0;
	background: transparent;
	color: #6f7073;
	font: inherit;
	font-size: 18px;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.smax-contact-location__symbol {
	position: relative;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #65bee0;
	flex: 0 0 26px;
}

.smax-contact-location__symbol::before {
	content: "";
	width: 12px;
	height: 2px;
	background: #fff;
}


.smax-contact-location__symbol::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 12px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.smax-contact-location.is-open .smax-contact-location__symbol::after {
	display: none;
}

.smax-contact-location__content {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows 420ms ease, opacity 250ms ease;
}

.smax-contact-location.is-open .smax-contact-location__content {
	grid-template-rows: 1fr;
	opacity: 1;
}

.smax-contact-location__content-inner {
	min-height: 0;
	overflow: hidden;
}

.smax-contact-location__list {
	display: grid;
	gap: 16px;
	margin: 20px 24px 34px 48px;
	padding: 0;
	list-style: none;
}

.smax-contact-location__list li {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.24;
}

.smax-contact-location__list .dashicons {
	width: 22px;
	height: 22px;
	margin-top: 1px;
	color: var(--blue);
	font-size: 22px;
}

.smax-contact-location__list a:hover,
.smax-contact-location__list a:focus-visible {
	color: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
	.smax-contact-location__content {
		transition: none;
	}
}

.smax-contact-qr {
	display: block;
	width: 130px;
	height: 132px;
	margin: 2px 8px 8px 36px;
	background: #e7e9eb;
	object-fit: cover;
}

.smax-contact-qr-copy {
	max-width: 260px;
	margin: 0 8px 16px 36px;
	font-size: 14px;
}

.smax-contact-locations li,
.smax-contact-support a {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 12px;
}

.smax-contact-locations .dashicons,
.smax-contact-support .dashicons {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	color: var(--blue);
	font-size: 16px;
}

.smax-contact-support h3 {
	margin: 20px 0 14px;
	color: var(--blue);
	font-size: 22px;
}

.site-footer {
	background: #28292d;
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.85fr 0.85fr 1.15fr;
	gap: 54px;
	width: min(1320px, calc(100% - 64px));
	padding: 58px 0 48px;
}

.footer-stack {
	display: grid;
	align-content: start;
	gap: 28px;
}

.footer-logo {
	color: #fff;
	font-size: 30px;
	font-weight: 900;
}

.footer-logo__image {
	display: block;
	width: auto;
	max-width: 200px;
	height: 42px;
	margin-bottom: 12px;
	object-fit: contain;
}

.site-footer h3 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 13px;
}

.site-footer a,
.site-footer p {
	display: block;
	margin: 0 0 10px;
	font-size: 12px;
}

.footer-stack a {
	padding: 4px 10px;
	margin-right: -10px;
	margin-left: -10px;
	font-size: 15px;
	font-weight: 400;
	transition: color 180ms ease, background-color 180ms ease;
}

.footer-stack h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 42px;
}

.footer-stack a:hover,
.footer-stack a:focus {
	background: #e4e4e4;
	color: #333;
}

.footer-contact__details {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.footer-contact__details p {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.footer-contact__details .dashicons {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	font-size: 16px;
	margin-top: 4px;
}

.footer-socials {
	display: flex;
	gap: 9px;
	margin-top: 28px;
}

.footer-socials a {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	margin: 0;
	border: 1px solid #5d6269;
	border-radius: 50%;
	color: #fff;
}

.footer-socials .dashicons {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.footer-grid > div:last-child h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 42px;
}

.footer-grid > div:last-child p {
	font-size: 16px;
	line-height: 1.5;
}

.copyright {
	background: var(--blue);
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	padding: 15px 0;
}

.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 72px;
	z-index: 30;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 220ms ease, transform 220ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: var(--dark-blue);
}

.back-to-top .dashicons {
	width: 22px;
	height: 22px;
	font-size: 22px;
}

/* Product category pages */
.smax-category-page {
	background: #fff;
}

.smax-category-hero {
	position: relative;
	display: grid;
	min-height: 60vh;
	padding-top: 180px;
	overflow: hidden;
	color: #fff;
	isolation: isolate;
}

.smax-category-hero__media,
.smax-category-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.smax-category-hero__media {
	z-index: -2;
	object-fit: cover;
}

.smax-category-hero__shade {
	z-index: -1;
	background: linear-gradient(90deg, rgba(0, 0, 0, .73), rgba(0, 0, 0, .27));
}

.smax-category-hero__content {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	max-width: var(--max);
	padding-bottom: 100px;
}

.smax-category-hero__content > * {
	width: 100%;
	max-width: 50%;
}

.smax-category-hero h1,
.smax-category-page h2,
.smax-category-page h3,
.smax-category-page p {
	margin-top: 0;
}

.smax-category-hero h1 {
	margin-bottom: 20px;
	font-size: 52px;
	font-weight: 400;
	line-height: 1.05;
}

.smax-category-hero p {
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 24px;
}

.smax-category-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.smax-category-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 15px 30px;
	border: 1px solid var(--blue);
	border-radius: 25px;
	background: #3c3f46;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	transition: background-color .2s, color .2s;
}

.smax-category-button--outline {
	border-color: #fff;
	background: transparent;
}

.smax-category-button:hover,
.smax-category-button:focus-visible {
	background: #fff;
	color: var(--blue);
}

.smax-category-intro {
	max-width: 1280px;
	padding-top: 50px;
	padding-bottom: 0;
	color: #3c4148;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}

.smax-category-intro p {
	margin-bottom: 16px;
}

.smax-category-features {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(2, clamp(220px, 27vw, 555px));
	gap: clamp(16px, 1.8vw, 38px);
	margin: 30px auto 0;
	border: 0;
}

.smax-category-features article {
	position: relative;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 5px;
	--feature-image: none;
	background-color: #4a5154;
	background-image: var(--feature-image);
	background-position: center;
	background-size: cover;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.25;
	overflow: hidden;
}

.smax-category-features article > span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	height: 20%;
	padding: 0 34px;
	background: rgba(44, 45, 52, .62);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.smax-category-features article:nth-child(-n + 3) { grid-column: span 2; }
.smax-category-features article:nth-child(4) { grid-column: span 4; }
.smax-category-features article:nth-child(5) { grid-column: span 2; }

.smax-category-features article:nth-child(4),
.smax-category-features article:nth-child(5) {
	text-align: center;
}

.smax-category-features article:nth-child(4) > span,
.smax-category-features article:nth-child(5) > span {
	justify-content: center;
}

.smax-category-features article:nth-child(1) { --feature-image: url("https://cdn.tr-smax.com/dz/1.1.png"); }
.smax-category-features article:nth-child(2) { --feature-image: url("https://cdn.tr-smax.com/dz/2.1.png"); }
.smax-category-features article:nth-child(3) { --feature-image: url("https://cdn.tr-smax.com/dz/3.1.png"); }
.smax-category-features article:nth-child(4) { --feature-image: url("https://cdn.tr-smax.com/dz/5.1.png"); }
.smax-category-features article:nth-child(5) { --feature-image: url("https://cdn.tr-smax.com/dz/4.1.png"); }


.smax-category-eyebrow {
	margin-bottom: 10px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .12em;
}

.smax-category-types > .wrap,
.smax-category-stock > .wrap,
.smax-laser-machines > .wrap {
	padding-top: 50px;
}

.smax-category-page h2 {
	margin-bottom: 20px;
	color: var(--ink);
	font-size: 48px;
	line-height: 1.08;
}

.smax-category-type-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 24px;
	margin-bottom: 36px;
}

.smax-category-type-row--split {
	grid-template-columns: 32fr 68fr;
}

.smax-category-type-row__copy {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 450px;
	padding: 42px 32px 36px;
	border-radius: 8px;
	background: #3c3f46;
	color: #fff;
}

.smax-category-type-row__copy h3,
.smax-laser-machines h3 {
	margin-bottom: 20px;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.12;
}

.smax-category-type-row__copy h3 { color: #fff; }

.smax-category-type-row__divider {
	width: 80%;
	height: 1px;
	margin-bottom: 28px;
	background: rgba(255, 255, 255, .3);
}

.smax-category-type-row__copy p,
.smax-laser-machines p {
	margin-bottom: 32px;
	color: #535a62;
	font-size: 15px;
	line-height: 20px;
}

.smax-category-type-row__copy p { color: #fff; }

.smax-category-type-row__copy a,
.smax-laser-machines a {
	color: var(--blue);
	align-self: flex-start;
	padding: 14px 25px;
	border: 1px solid #fff;
	border-radius: 26px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.smax-category-type-row__copy > a {
	margin-top: auto;
}

.smax-category-type-row__copy > a,
.smax-laser-machine-row__quote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 54px;
	padding: 14px 28px;
	border-radius: 999px;
	line-height: 1.2;
}

.smax-category-type-row__copy a span,
.smax-laser-machines a span {
	margin-left: 9px;
	font-size: 22px;
}

.smax-category-type-row__copy > a span,
.smax-laser-machines .smax-laser-machine-row__quote span {
	margin-left: 0;
	line-height: 1;
}


.smax-category-type-row__products {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.smax-category-type-row--split .smax-category-type-row__products {
	grid-template-columns: repeat(2, 1fr);
}

.smax-category-type-row__products a {
	display: grid;
	grid-template-rows: 1fr auto;
	min-width: 0;
	min-height: 450px;
	padding: 2%;
	border-radius: 8px;
	background: #f3f4f5;
	color: var(--ink);
	text-align: center;
}

.smax-category-type-row__products img {
	width: 100%;
	height: 360px;
	object-fit: contain;
}

.smax-category-type-row__products strong {
	align-self: end;
	padding: 0 8px 16px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.25;
}

.smax-category-customers {
	margin-top: 70px;
	padding: 70px 0;
	background: #f3f4f5;
	color: var(--ink);
}

.smax-category-customers h2 {
	color: var(--ink);
	margin-bottom: 20px;
	font-size: 40px;
	text-align: center;
}

.smax-category-logos {
	display: grid;
	grid-template-columns: 32px 1fr 32px;
	gap: 12px;
	align-items: center;
}

.smax-category-logos button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 22px;
	line-height: 1;
}

.smax-category-logos__track { min-height: 84px; }

.smax-category-stock {
	padding-top: 60px;
	padding-bottom: 10px;
}

.smax-category-stock h2 { font-size: 40px; }

.smax-category-stock__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.smax-category-stock__grid a {
	display: grid;
	gap: 8px;
	min-height: 300px;
	padding: 16px;
	background: #f5f6f7;
	color: var(--ink);
	transition: transform .2s, background-color .2s;
}

.smax-category-stock__grid a:hover {
	background: #eceef0;
	transform: translateY(-5px);
}

.smax-category-stock__grid img {
	width: 100%;
	height: 180px;
	object-fit: contain;
}

.smax-category-stock__grid strong {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
}

.smax-category-stock__grid small {
	font-size: 12px;
}

.smax-category-catalog {
	margin-top: 80px;
	background: #f3f4f5;
}

.smax-category-catalog__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
	min-height: 340px;
}

.smax-category-catalog h2 {
	max-width: 560px;
	margin-bottom: 30px;
	font-size: 36px;
	font-weight: 500;
	line-height: 45px;
}

.smax-category-catalog img {
	justify-self: end;
	max-width: 375px;
	max-height: 281px;
}

.smax-category-services {
	padding: 60px 0 50px;
}

.smax-category-services h2 {
	margin-bottom: 30px;
	font-size: 40px;
}

.smax-category-services > .wrap > div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.smax-category-services a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 104px;
	padding: 20px;
	background: #b5b6bb;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}

.smax-category-services a:not(:last-child) {
	margin-right: 12px;
}

.smax-category-services span {
	color: var(--blue);
}

.smax-laser-page .wrap {
	width: min(1270px, calc(100% - 40px));
}

.smax-laser-page .smax-category-hero__shade {
	background: rgba(26, 27, 30, .5);
}

.smax-laser-page .smax-category-hero__content > * {
	max-width: 50%;
}

.smax-laser-page .smax-category-hero h1 {
	margin-bottom: 20px;
	font-size: 52px;
	font-weight: 400;
	line-height: 1.05;
}

.smax-laser-hero__copy {
	margin-bottom: 20px;
	color: #fff;
	font-size: 15px;
	line-height: 24px;
}

.smax-laser-hero__copy p {
	margin: 0;
}

.smax-laser-hero__copy p + p {
	margin-top: 16px;
}

.smax-laser-page .smax-category-button {
	border-color: transparent;
	background: #3c3f46;
	font-weight: 500;
}

.smax-laser-page .smax-category-button--outline {
	border-color: #fff;
	background: transparent;
}

.smax-laser-page .smax-category-button:hover,
.smax-laser-page .smax-category-button:focus-visible {
	border-color: #222;
	background: #222;
	color: #fff;
}

.smax-laser-intro {
	max-width: 1280px;
	padding-top: 50px;
	padding-bottom: 30px;
	color: #4a5154;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}

.smax-laser-page .smax-laser-intro {
	width: min(1280px, calc(100% - 40px));
}

.smax-laser-intro p {
	margin: 0 0 16px;
}

.smax-laser-intro h2,
.smax-laser-machines h2 {
	color: #4a5154;
	font-size: 42px;
	font-weight: 600;
	line-height: 1.2;
}

.smax-laser-intro h2 {
	margin: 24px 0 0;
	text-align: center;
}

.smax-laser-advantages {
	padding: 0 0 0;
	background: #fff;
}

.smax-laser-advantages__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 26px;
	width: min(1290px, calc(100% - 30px));
	margin: 0 auto;
}

.smax-laser-flip-card {
	height: 380px;
	perspective: 1000px;
	outline: 0;
}

.smax-laser-flip-card__inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform .5s ease;
	transform-style: preserve-3d;
}

.smax-laser-flip-card:hover .smax-laser-flip-card__inner,
.smax-laser-flip-card:focus .smax-laser-flip-card__inner {
	transform: rotateY(180deg);
}

.smax-laser-flip-card__front,
.smax-laser-flip-card__back {
	position: absolute;
	inset: 0;
	display: flex;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.smax-laser-flip-card__front {
	align-items: flex-end;
	justify-content: center;
	background-color: #fff;
	background-image: var(--laser-card-image);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: var(--laser-card-size);
	color: #4a5154;
}

.smax-laser-flip-card__front h3 {
	width: 100%;
	margin: 0;
	padding: 15px 10px;
	border-radius: 0 0 4px 4px;
	background: rgba(60, 63, 70, .4);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	text-align: center;
}

.smax-laser-flip-card__back {
	align-items: center;
	justify-content: center;
	padding: 0 30px 5px;
	transform: rotateY(180deg);
	background: #3c3f46;
	color: #fff;
	text-align: center;
}

.smax-laser-flip-card__content {
	width: 100%;
	font-size: 15px;
	line-height: 20px;
}

.smax-laser-flip-card__content p {
	margin: 0 20px 16px;
}

.smax-laser-flip-card__content p:last-child {
	margin-bottom: 0;
}

.smax-laser-flip-card__content ul {
	margin: 0;
	padding: 0 20px 0 40px;
	text-align: center;
}

.smax-laser-flip-card__content li {
	margin-bottom: 15px;
	padding-right: 20px;
}

.smax-laser-machines {
	padding: 30px 0 60px;
}

.smax-laser-machines > .wrap {
	padding-top: 0;
}

.smax-laser-machines h2 {
	margin: 0 0 20px;
}

.smax-laser-machines__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.smax-laser-machine-row {
	display: grid;
	grid-template-columns: 49% 49%;
	gap: 2%;
	min-height: 450px;
}

.smax-laser-machine-row__copy,
.smax-laser-machine-row__product {
	min-height: 450px;
	border-radius: 4px;
}

.smax-laser-machine-row__copy {
	display: flex;
	flex-direction: column;
	padding: 42px 32px 36px;
	background: #3c3f46;
	color: #fff;
}

.smax-laser-machine-row__copy h3 {
	margin: 0 0 20px;
	color: #fff;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
}

.smax-laser-machine-row__divider {
	width: 80%;
	height: 1px;
	margin: -10px 0 20px;
	background: rgba(255, 255, 255, .3);
}

.smax-laser-machine-row__copy p {
	margin: 0;
	color: #fff;
	font-size: 18px;
	line-height: 1.45;
}

.smax-laser-machine-row__quote {
	align-self: flex-start;
	margin-top: auto;
	border: 1px solid #fff;
	font-size: 18px;
	font-weight: 500;
}

.smax-laser-machine-row__quote:hover,
.smax-laser-machine-row__quote:focus-visible {
	background: #fff;
	color: #4a5154;
}

.smax-laser-machine-row__product {
	display: flex;
	flex-direction: column;
	padding: 2%;
	background: #f3f4f5;
	color: #4a5154;
}

.smax-laser-machine-row__product a {
	align-self: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: #4a5154;
}

.smax-laser-machine-row__product img {
	display: block;
	width: 100%;
	height: 288px;
	margin: 0 auto;
	object-fit: contain;
}

.smax-laser-machine-row__product h4 {
	margin: 20px 0 14px 24px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.25;
}

.smax-laser-machine-row__more {
	align-self: flex-start;
	margin-left: 24px;
	padding: 10px 15px 10px 0;
	border: 0;
	border-radius: 26px;
	color: #4a5154;
	font-size: 22px;
	font-weight: 500;
}

.smax-laser-machine-row__more span {
	margin-left: 4px;
}

@media (max-width: 900px) {
	.main-nav__list > .has-mega-menu.has-mega-tabs > .sub-menu {
		min-height: 0;
		padding-top: 0;
	}

	.has-services-mega > .sub-menu > .smax-services-mega-panel {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 14px 18px 20px;
	}

	.has-mega-menu > .sub-menu > .mega-menu-tabs {
		position: static;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 12px 18px;
	}

	.mega-menu-tabs__list {
		flex-wrap: wrap;
		gap: 10px 18px;
	}

	.mega-menu-tabs__list a {
		padding: 4px 0;
		font-size: 14px;
	}

	.application-card {
		height: 320px;
	}

	.built > .section-photo__media {
		object-position: 0 0;
	}

	.smax-about-panel__inner,
	.smax-contact-main__grid {
		grid-template-columns: 1fr;
	}

	.smax-about-panel__inner {
		gap: 28px;
		padding: 54px 36px;
	}

	.smax-about-column--values,
	.smax-contact-details {
		padding: 0;
	}

	.smax-contact-details {
		max-width: 620px;
	}

	.finder__row,
	.video-channel {
		flex-direction: column;
		display: flex;
	}

	.wrap {
		width: min(var(--max), calc(100% - 36px));
	}

	.top-strip {
		display: none;
	}

	.top-strip__inner {
		justify-content: center;
		gap: 18px;
	}

	.main-header__inner {
		flex-wrap: wrap;
		min-height: 62px;
		gap: 12px;
	}

	.menu-toggle {
		display: none;
	}

	.quote-button {
		display: none;
	}

	.main-nav {
		display: none;
		flex: 0 0 100%;
		width: 100%;
		order: 4;
		padding-bottom: 14px;
	}

	.main-header.is-menu-open .main-nav {
		display: block;
	}

	.main-nav__list {
		display: block;
	}

	.main-nav__list > li > a {
		padding: 12px 4px;
		border-top: 1px solid #e9ecef;
	}

	.main-nav__list > .menu-item:not(.has-mega-menu) > .sub-menu,
	.main-nav__list > .has-mega-menu > .sub-menu {
		position: static;
		width: 100%;
		min-height: 0;
		padding: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
		display: none;
	}

	.main-nav__list > .menu-item.is-mobile-open > .sub-menu {
		display: block;
	}

	.main-nav__list > .menu-item:not(.has-mega-menu):hover > .sub-menu,
	.main-nav__list > .menu-item:not(.has-mega-menu):focus-within > .sub-menu {
		transform: none;
	}

	.has-mega-menu > .sub-menu > li {
		width: 100%;
		margin-left: 0;
	}

	.has-mega-menu > .sub-menu > li > .sub-menu {
		position: static;
		grid-template-columns: 1fr;
		padding: 14px 18px 20px;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
	}

	.has-mega-menu > .sub-menu > li.is-active > .sub-menu {
		display: none;
	}

	.has-mega-menu > .sub-menu > li.is-mobile-open > .sub-menu {
		display: grid;
	}

	.has-mega-menu > .sub-menu > li > a {
		padding: 12px 18px;
		border-left-width: 3px;
	}

	.mega-product__image {
		height: 110px;
	}

	.product-strip,
	.news-grid,
	.facebook-grid,
	.footer-grid,
	.product-hero__inner,
	.product-overview,
	.product-options,
	.product-video,
	.feature-grid,
	.detail-grid,
	.spec-table,
	.smax-product-hero__inner,
	.smax-product-config__body,
	.smax-product-standard__inner,
	.smax-product-card,
	.smax-product-control,
	.smax-product-advantage {
		grid-template-columns: 1fr;
	}

	.product-nav {
		position: static;
	}

	.product-nav__inner {
		flex-wrap: wrap;
		gap: 18px;
		padding: 16px 0;
	}

	.quick-links,
	.service-band,
	.application-grid {
		grid-template-columns: 1fr 1fr;
	}

	.video-carousel {
		grid-template-columns: 36px 1fr 36px;
		gap: 8px;
	}

	.video-cards {
		grid-template-columns: 1fr 1fr;
	}

	.video-card:nth-child(3) {
		display: none;
	}

	.product-strip {
		margin-top: -35px;
	}
}

@media (max-width: 900px) {
	.smax-category-hero {
		min-height: 420px;
		padding-top: 100px;
	}

	.smax-category-hero__content {
		padding-right: 0;
	}

	.smax-category-features,
	.smax-category-stock__grid,
	.smax-laser-advantages__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.smax-category-features {
		grid-template-rows: none;
		grid-auto-rows: 220px;
	}

	.smax-category-features article:nth-child(n) {
		grid-column: span 1;
	}

	.smax-category-type-row,
	.smax-category-catalog__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.smax-category-type-row__copy,
	.smax-category-type-row__products a {
		min-height: 330px;
	}

	.smax-category-type-row__products img {
		height: 245px;
	}

	.smax-category-catalog img {
		justify-self: start;
	}

	.smax-category-services > .wrap > div {
		grid-template-columns: 1fr;
	}

	.smax-category-services a:not(:last-child) {
		margin-right: 0;
	}
}

@media (max-width: 560px) {
	.smax-category-hero {
		min-height: 380px;
		padding-top: 70px;
	}

	.smax-category-hero__content {
		padding-right: 18px;
	}

	.smax-category-hero__content > * {
		max-width: 100%;
	}

	.smax-category-hero p {
		font-size: 16px;
	}

	.smax-category-hero h1 {
		font-size: 42px;
	}

	.smax-category-intro,
	.smax-category-types > .wrap,
	.smax-category-stock > .wrap {
		padding-top: 52px;
	}

	.smax-category-features,
	.smax-category-stock__grid,
	.smax-laser-advantages__grid {
		grid-template-columns: 1fr;
	}

	.smax-category-features {
		margin-bottom: 56px;
		grid-auto-rows: 180px;
	}

	.smax-category-features article:nth-child(n) {
		grid-column: 1 / -1;
		min-height: 180px;
		padding: 22px;
		font-size: 20px;
		line-height: 1.2;
		text-align: left;
	}

	.smax-category-features article:nth-child(4),
	.smax-category-features article:nth-child(5) {
		justify-content: flex-start;
		padding-bottom: 22px;
	}

	.smax-category-features article > span {
		height: auto;
		min-height: 54px;
		padding: 8px 22px;
	}

	.smax-category-features article:nth-child(4) > span,
	.smax-category-features article:nth-child(5) > span {
		justify-content: flex-start;
	}

	.smax-category-type-row--split .smax-category-type-row__products {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.smax-category-type-row {
		gap: 10px;
		margin-bottom: 10px;
	}

	.smax-category-type-row__copy,
	.smax-category-type-row__products a {
		min-height: 280px;
	}

	.smax-category-logos {
		grid-template-columns: 28px 1fr 28px;
	}

	.smax-category-catalog__inner {
		min-height: 0;
	}

	.smax-category-catalog img {
		max-width: 100%;
	}
}

@media (max-width: 560px) {
	.smax-about-hero {
		min-height: 620px;
	}

	.smax-contact-hero {
		min-height: 410px;
	}

	.smax-about-hero__inner {
		align-items: flex-end;
		padding-bottom: 180px;
	}

	.smax-about-hero h1 {
		font-size: 32px;
	}

	.smax-about-hero__curve {
		height: 90px;
	}

	.smax-about-panel {
		padding: 0;
	}

	.smax-about-panel__inner {
		width: 100%;
		padding: 38px 18px;
		box-shadow: none;
	}

	.smax-about-column h2,
	.smax-contact-details > h2 {
		font-size: 31px;
	}

	.smax-about-value-grid,
	.smax-contact-form__grid {
		grid-template-columns: 1fr;
	}

	.smax-about-value--wide,
	.smax-contact-form__wide {
		grid-column: auto;
	}

	.smax-contact-main {
		padding: 40px 0;
	}

	.smax-contact-hero__inner h1 {
		margin-top: 70px;
		font-size: 38px;
	}

	.smax-contact-intro {
		font-size: 17px;
		line-height: 1.55;
	}

	.smax-contact-form {
		padding: 22px 18px;
	}

	.smax-contact-location__toggle {
		padding: 12px 14px;
		gap: 12px;
		font-size: 17px;
	}

	.smax-contact-location__symbol {
		width: 24px;
		height: 24px;
		flex-basis: 24px;
	}

	.smax-contact-location__list {
		gap: 14px;
		margin: 18px 18px 28px 30px;
	}

	.smax-contact-location__list li {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 10px;
		font-size: 15px;
	}

	.smax-contact-location__list .dashicons {
		width: 20px;
		height: 20px;
		font-size: 20px;
	}

	.smax-contact-captcha {
		width: 100%;
	}

	.quick-links,
	.service-band {
		grid-template-columns: 1fr;
	}

	.top-strip__inner {
		justify-content: flex-start;
		gap: 12px;
		font-size: 11px;
	}

	.top-strip .dashicons {
		display: none;
	}

	.brand {
		font-size: 25px;
	}

	.brand__image {
		max-width: 160px;
		height: 32px;
	}

	.hero,
	.hero__content {
		min-height: 410px;
	}

	.hero h1 {
		max-width: 330px;
		font-size: 32px;
	}

	.product-strip {
		width: min(92vw, 430px);
		padding-bottom: 54px;
	}

	.product-card {
		min-height: 270px;
	}

	.built {
		min-height: 460px;
	}

	.built__panel {
		width: auto;
		margin: 0;
		padding: 30px 24px;
	}

	.built__panel h2 {
		font-size: 36px;
	}

	.finder {
		padding: 58px 0;
	}

	.finder h2 {
		font-size: 28px;
	}

	.finder h2 span {
		font-size: 82px;
	}

	.finder__buttons {
		flex-direction: column;
	}

	.quick-link {
		aspect-ratio: 2 / 1;
	}

	.video-channel {
		align-items: stretch;
		gap: 32px;
		padding: 54px 0 32px;
	}

	.video-channel h2,
	.applications h2,
	.news h2 {
		font-size: 36px;
	}

	.video-carousel {
		padding-bottom: 52px;
	}

	.video-cards {
		display: block;
	}

	.video-card {
		display: none;
		min-height: 92px;
	}

	.video-card.is-active,
	.video-card:nth-child(3).is-active {
		display: block;
	}

	.application-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.application-card {
		height: 280px;
		font-size: 17px;
	}

	.news-grid,
	.facebook-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		width: min(100% - 36px, 560px);
		gap: 34px;
	}

	.product-hero__actions,
	.product-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.product-options ul {
		grid-template-columns: 1fr;
	}

	.smax-product-thumb-row,
	.smax-product-gallery,
	.smax-product-monitor {
		grid-template-columns: 1fr;
	}

	.smax-product-standard ul,
	.smax-product-control ul,
	.smax-product-advantage ul {
		columns: 1;
	}
}

@media (max-width: 1024px) {
	.smax-laser-machine-row,
	.smax-laser-machine-row__copy,
	.smax-laser-machine-row__product {
		min-height: 350px;
	}

	.smax-laser-machine-row__product img {
		height: 220px;
	}
}

@media (min-width: 768px) and (max-width: 900px) {
	.smax-laser-advantages__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.smax-laser-page .wrap {
		width: calc(100% - 30px);
	}

	.smax-laser-page .smax-category-hero__content {
		padding-right: 0;
	}

	.smax-laser-page .smax-category-hero__content > * {
		max-width: 100%;
	}

	.smax-laser-page .smax-category-hero h1 {
		font-size: 36px;
		line-height: 1.2;
	}

	.smax-laser-hero__copy {
		font-size: 15px;
	}

	.smax-laser-intro {
		padding-top: 20px;
		padding-bottom: 10px;
	}

	.smax-laser-intro h2,
	.smax-laser-machines h2 {
		font-size: 32px;
		line-height: 1.2;
	}

	.smax-laser-advantages__grid {
		grid-template-columns: 1fr;
		width: calc(100% - 30px);
		gap: 30px;
	}

	.smax-laser-flip-card {
		height: 380px;
	}

	.smax-laser-flip-card__front h3 {
		font-size: 21px;
		line-height: 28px;
	}

	.smax-laser-machines {
		padding-top: 0;
		padding-bottom: 50px;
	}

	.smax-laser-machines > .wrap {
		padding-top: 0;
	}

	.smax-laser-machine-row {
		grid-template-columns: 1fr;
		gap: 30px;
		min-height: 0;
	}

	.smax-laser-machine-row__copy,
	.smax-laser-machine-row__product {
		min-height: 0;
	}

	.smax-laser-machine-row__copy {
		padding: 30px 25px;
	}

	.smax-laser-machine-row__copy h3 {
		font-size: 32px;
	}

	.smax-laser-machine-row__copy p {
		font-size: 17px;
	}

	.smax-laser-machine-row__product {
		padding: 15px 15px 20px;
	}

	.smax-laser-machine-row__product img {
		height: 220px;
	}

	.smax-laser-machine-row__product h4 {
		margin-left: 16px;
		font-size: 26px;
	}

	.smax-laser-machine-row__more {
		margin-left: 16px;
		font-size: 21px;
	}
}

/* Service pages reconstructed from the SMAX reference layouts. */
.smax-service-page {
	background: #fff;
	color: #222;
	font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

.smax-service-page * {
	box-sizing: border-box;
}

.smax-service-hero {
	position: relative;
	display: flex;
	min-height: calc(100vh - 108px);
	min-height: calc(100svh - 108px);
	overflow: hidden;
	background: #1a1b1e;
	color: #fff;
	isolation: isolate;
}

.smax-service-hero__media,
.smax-service-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.smax-service-hero__media {
	z-index: -2;
	object-fit: cover;
	object-position: center;
}

.smax-service-hero__shade {
	z-index: -1;
	background: rgba(0, 0, 0, .8);
}

.smax-service-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: min(1270px, calc(100% - 40px));
	min-height: calc(100vh - 108px);
	min-height: calc(100svh - 108px);
	padding-top: 80px;
	padding-bottom: 150px;
	animation: smax-service-hero-rise 1.35s cubic-bezier(.22, .61, .36, 1) .2s both;
}

@keyframes smax-service-hero-rise {
	from {
		opacity: 0;
		transform: translateY(52px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.smax-service-hero__content > * {
	width: min(494px, 100%);
	margin-left: 33.333%;
}

.smax-service-hero__label {
	margin: 0 0 16px;
	color: #fff;
	font-size: 26px;
	line-height: 1.2;
}

.smax-service-hero h1 {
	margin: 0 0 22px;
	color: #fcfcfc;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.17;
	text-transform: uppercase;
}

.smax-service-hero__copy {
	margin: 0;
	color: #fff;
	font-size: 16px;
	line-height: 1.45;
}

.smax-service-hero__curve {
	position: absolute;
	right: -10%;
	bottom: -79px;
	left: -10%;
	z-index: 2;
	height: 150px;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
	background: #fff;
}

.smax-service-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: fit-content;
	margin-top: 24px;
	padding: 12px 18px 12px 22px;
	border: 1px solid #fff;
	border-radius: 999px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.smax-service-hero__button span {
	font-size: 20px;
	line-height: 1;
}

.smax-backgauge-hero__footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.smax-backgauge-page .smax-service-hero__button {
	justify-content: flex-start;
	margin-left: 0;
	text-align: left;
}

.smax-backgauge-page .smax-backgauge-hero__footer {
	width: min(494px, 100%);
	margin-left: 0;
}

.smax-service-intro {
	padding: 80px 0 90px;
	background: #fff;
}

.smax-service-intro > .wrap {
	width: min(1200px, calc(100% - 40px));
}

.smax-service-intro__label {
	margin: 0 0 12px;
	color: #f56f0a;
	font-size: 18px;
	line-height: 1.2;
	text-align: center;
}

.smax-service-intro h2 {
	margin: 0 0 42px;
	color: #f56f0a;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.08;
	text-align: center;
}

.smax-service-intro__copy {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 38px;
	max-width: 1080px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.46;
}

.smax-service-intro__copy p {
	margin: 0;
}

.smax-service-feature {
	position: relative;
	padding: 28px 0;
	overflow: hidden;
}

.smax-service-feature__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
	align-items: stretch;
	min-height: 330px;
	overflow: hidden;
}

.smax-service-feature.is-orange .smax-service-feature__inner {
	background: #f97306;
	color: #fff;
}

.smax-service-feature.is-grey .smax-service-feature__inner {
	background: #efefef;
	color: #222;
}

.smax-service-feature__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 44px 40px 44px 48px;
}

.smax-service-feature.is-grey .smax-service-feature__copy {
	padding-top: 54px;
	padding-bottom: 54px;
}

.smax-service-feature__label {
	margin: 0 0 22px;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.2;
}

.smax-service-feature.is-grey .smax-service-feature__label {
	color: #f97306;
}

.smax-service-feature h3 {
	margin: 0;
	font-size: clamp(14px, 2.2vw, 20px);
	font-weight: 400;
	line-height: 1.14;
}

.smax-service-feature.is-grey h3 {
	color: #0d1030;
}

.smax-service-feature__points {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.smax-service-feature__points li {
	position: relative;
	margin: 6px 0;
	padding-left: 18px;
	font-size: 15px;
	line-height: 1.4;
}

.smax-service-feature__points li::before {
	position: absolute;
	top: .7em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	content: "";
	transform: translateY(-50%);
}

.smax-backgauge-products .smax-service-feature__inner {
	min-height: 380px;
}

.smax-backgauge-page .smax-service-features {
	position: relative;
	z-index: 4;
	margin-top: -1px;
	background: #fff;
}

.smax-backgauge-products .wrap {
	width: min(1400px, calc(100% - 64px));
}

.smax-backgauge-products .smax-service-feature__media img {
	height: 330px;
}

.smax-service-feature__button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	align-self: flex-start;
	min-width: 165px;
	margin-top: 28px;
	padding: 12px 18px 11px 20px;
	background: #fff;
	color: #f97306;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.smax-service-feature.is-grey .smax-service-feature__button {
	background: #f97306;
	color: #fff;
	box-shadow: none;
}

.smax-service-feature__button span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #f97306;
	color: #fff;
	font-size: 16px;
	line-height: 1;
}

.smax-service-feature.is-grey .smax-service-feature__button span {
	background: #fff;
	color: #f97306;
}

.smax-service-feature__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px 32px 26px 0;
}

.smax-service-feature__media img {
	display: block;
	width: 100%;
	height: 310px;
	object-fit: cover;
}

.smax-service-feature.is-contain .smax-service-feature__media img {
	padding: 10px 6px;
	background: #fff;
	object-fit: contain;
}

.smax-control-intro {
	padding: 28px 0;
	background: #fff;
}

.smax-control-intro > .wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
	align-items: stretch;
	min-height: 330px;
	background: #f97306;
	color: #fff;
}

.smax-control-intro__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 44px 40px 44px 48px;
}

.smax-control-intro__copy p {
	margin: 0 0 22px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.smax-control-intro__copy h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(14px, 2.2vw, 20px);
	font-weight: 400;
	line-height: 1.14;
}

.smax-control-intro__copy a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	align-self: flex-start;
	min-width: 165px;
	margin-top: 28px;
	padding: 12px 18px 11px 20px;
	background: #fff;
	color: #f97306;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

.smax-control-intro__copy a span {
	font-size: 20px;
}

.smax-control-intro__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px 32px 26px 0;
}

.smax-control-intro__media img {
	display: block;
	width: 100%;
	height: 310px;
	object-fit: cover;
}

.smax-control-systems {
	background: #fff;
}

.smax-control-block {
	padding: 92px 0 24px;
}

.smax-control-block + .smax-control-block {
	padding-top: 34px;
}

.smax-control-block__head {
	margin: 0 auto 62px;
	text-align: center;
}

.smax-control-block__head h2 {
	width: min(1140px, calc(100% - 40px));
	margin: 0 auto;
	color: #f96506;
	font-size: clamp(30px, 3.3vw, 48px);
	font-weight: 700;
	line-height: 1.1;
}

.smax-control-block__rule {
	width: min(420px, 40vw);
	height: 3px;
	margin: 18px auto 0;
	background: #f96506;
}

.smax-control-block__card {
	display: grid;
	grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
	align-items: center;
	gap: 54px;
	width: min(1140px, calc(100% - 40px));
	margin: 0 auto;
}

.smax-control-block__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.smax-control-block__brand {
	margin: 0 0 10px;
	color: #f96506;
	font-size: 20px;
	line-height: 1.2;
}

.smax-control-block__copy h3 {
	margin: 0 0 16px;
	color: #222;
	font-size: clamp(26px, 2.1vw, 32px);
	font-weight: 700;
	line-height: 1.18;
}

.smax-control-block__copy ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.smax-control-block__copy li {
	position: relative;
	margin: 5px 0;
	padding-left: 22px;
	color: #4d4d4d;
	font-size: 18px;
	line-height: 1.45;
}

.smax-control-block__copy li::before {
	position: absolute;
	top: .88em;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #f96506;
	content: "";
	transform: translateY(-50%);
}

@media (max-width: 1199px) {
	.smax-service-feature__copy,
	.smax-control-intro__copy {
		padding-left: 34px;
		padding-right: 28px;
	}

	.smax-service-feature__media,
	.smax-control-intro__media {
		padding-right: 22px;
	}
}

@media (max-width: 991px) {
	.smax-service-hero__content > * {
		margin-left: 0;
	}

	.smax-service-intro {
		padding-top: 60px;
		padding-bottom: 70px;
	}

	.smax-service-intro__copy,
	.smax-service-feature__inner,
	.smax-control-intro > .wrap,
	.smax-control-block__card {
		grid-template-columns: 1fr;
	}

	.smax-backgauge-products .smax-service-feature__inner {
		min-height: 0;
	}

	.smax-service-feature__copy,
	.smax-control-intro__copy {
		padding: 30px 18px 0;
	}

	.smax-service-feature__media,
	.smax-control-intro__media {
		padding: 18px;
	}

	.smax-service-feature__media img,
	.smax-control-intro__media img {
		height: auto;
		aspect-ratio: 1.45 / 1;
	}

	.smax-control-block {
		padding: 72px 0 10px;
	}

	.smax-control-block__head {
		margin-bottom: 40px;
	}

	.smax-control-block__media {
		order: -1;
	}

}

@media (max-width: 640px) {
	.smax-service-hero {
		min-height: calc(100vh - 96px);
		min-height: calc(100svh - 96px);
	}

	.smax-service-hero__content {
		width: min(100%, calc(100% - 22px));
		min-height: calc(100vh - 96px);
		min-height: calc(100svh - 96px);
		padding: 35% 5% 130px;
	}

	.smax-service-hero__label {
		font-size: 18px;
	}

	.smax-service-hero h1 {
		font-size: 24px;
		line-height: 1.25;
	}

	.smax-service-hero__copy {
		font-size: 15px;
	}

	.smax-service-intro {
		padding: 58px 0 50px;
	}

	.smax-service-intro > .wrap,
	.smax-control-block__head h2,
	.smax-control-block__card {
		width: min(100%, calc(100% - 22px));
	}

	.smax-service-intro__copy {
		gap: 20px;
		font-size: 16px;
	}

	.smax-service-intro h2 {
		margin-bottom: 28px;
		font-size: 30px;
	}

	.smax-service-feature,
	.smax-control-intro {
		padding: 18px 0;
	}

	.smax-service-feature__label,
	.smax-control-intro__copy p {
		font-size: 24px;
	}

	.smax-service-feature h3,
	.smax-control-intro__copy h2 {
		font-size: 20px;
	}

	.smax-service-feature__copy,
	.smax-control-intro__copy {
		padding: 28px 18px 0;
	}

	.smax-service-feature__media,
	.smax-control-intro__media {
		padding: 18px;
	}

	.smax-control-block {
		padding: 58px 0 0;
	}

	.smax-control-block__head {
		margin-bottom: 28px;
	}

	.smax-control-block__head h2 {
		font-size: 30px;
	}

	.smax-control-block__rule {
		width: 180px;
	}

	.smax-control-block__brand {
		font-size: 18px;
	}

	.smax-control-block__copy h3 {
		font-size: 26px;
	}

	.smax-control-block__copy li {
		font-size: 16px;
	}

}
