:root {
--ink:#10212b;
--blue:#087ec1;
--blue2:#eaf7ff;
--green:#5cae2d;
--lime:#dff4c9;
--muted:#647680;
--bg:#f7fafc;
--white:#fff;
--line:#dfe8ed;
--shadow:0 18px 55px rgba(15,45,62,.10);
--radius:18px
}
* {
	box-sizing: border-box
}
html {
	scroll-behavior: smooth
}
body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--ink);
	background: #fff;
	line-height: 1.65
}
.h1 {
	margin: 0;
	padding: 0
}
a {
	text-decoration: none;
	color: inherit
}
img {
	max-width: 100%;
	display: block
}
.container {
	width: min(1240px, 92%);
	margin: auto
}
.top {
	background: #0b2533;
	color: #d7e5eb;
	font-size: 13px;
	padding: 8px 0
}
.top .container {
	display: flex;
	justify-content: space-between
}
.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgb(255 255 255 / .96);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--line)
}
.navin {
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between
}
.logo {
	font-weight: 950;
	font-size: 31px;
	letter-spacing: 2px;
	color: var(--ink)
}
.logo i {
	font-style: normal;
	color: #006c5a
}
.links {
	display: flex;
	align-items: center;
	gap: 26px
}
.links a {
	font-size: 14px;
	font-weight: 700;
	color: #334a56
}
.links a:hover {
	color: #006c5a
}
.menu {
	display: none;
	border: 0;
	background: none;
	font-size: 28px
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	padding: 13px 21px;
	font-weight: 800;
	font-size: 14px;
	transition: .25s
}
.primary {
	background: #006c5a;
	color: #fff;
	box-shadow: 0 9px 22px rgb(8 126 193 / .18)
}
.primary:hover {
	transform: translateY(-2px)
}
.green {
	background: var(--green);
	color: #fff
}
.outline {
	border: 1px solid #b9ccd5;
	background: #fff;
	color: var(--ink)
}
.outline:hover {
	border-color: #006c5a;
	color: #006c5a
}
.hero {
	background: linear-gradient(110deg, #f8fcff, #eef8fb);
	overflow: hidden
}
.heroGrid {
	min-height: 560px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 65px;
	align-items: center
}
.eyebrow {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: 900;
	color: #006c5a;
	margin-bottom: 14px
}
.hero h1 {
	font-size: clamp(44px, 5vw, 60px);
line-height:;
	letter-spacing: -2px;
	margin: 0
}
.hero h1 span {
	color: #006c5a
}
.hero p {
	font-size: 18px;
	color: var(--muted);
	max-width: 630px;
	margin: 24px 0 30px
}
.actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}
.heroVisual {
	min-height: 500px;
	border-radius: 30px;
	background: linear-gradient(145deg, #dff4ff, #fff);
	border: 1px solid #d5e9f1;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center
}
.heroVisual:before {
	content: "";
	width: 390px;
	height: 390px;
	border-radius: 50%;
	background: radial-gradient(circle, #fff 0, #c9efff 50%, #9cdbf4 100%);
	position: absolute
}
.heroVisual:after {
	content: "WYTO • INDUSTRIAL SOLUTIONS";
	position: absolute;
	bottom: 22px;
	left: 22px;
	padding: 10px 13px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--line);
	font-size: 11px;
	font-weight: 900;
	color: #48616e
}
.visualBox {
	position: relative;
	width: 70%;
	height: 300px;
	border-radius: 22px;
	background: linear-gradient(145deg, #fff, #edf4f7);
	border: 1px solid #d9e7ed;
	box-shadow: 0 25px 50px rgb(23 73 98 / .14);
	display: grid;
	place-items: center;
	font-size: 46px;
	font-weight: 950;
	color: #8da6b1
}
.product-detail-sticky .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch
}
.product-image-col {
	position: relative
}
.fixedposition {
	position: sticky;
	position: -webkit-sticky;
	top: 100px;
	width: 100%
}
.fixedposition .imagePanel {
	width: 100%
}
.fixedposition .imagePanel img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 25px
}
@media (max-width:991px) {
.product-detail-sticky .row {
	display: block
}
.fixedposition {
	position: static
}
}
.section {
	padding: 45px 0
}
.alt {
	background: var(--bg)
}
.head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 30px;
	margin-bottom: 10px
}
.head h2 {
	font-size: 43px;
	line-height: 1.1;
	margin: 0;
	letter-spacing: -1px
}
.head p {
	max-width: 540px;
	color: var(--muted);
	margin: 0
}
.grid {
	display: grid;
	gap: 22px
}
.four {
	grid-template-columns: repeat(4, 1fr)
}
.three {
	grid-template-columns: repeat(3, 1fr)
}
.two {
	grid-template-columns: repeat(2, 1fr)
}
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 7px 25px rgb(20 55 70 / .04);
	transition: .3s;
	margin: 10px
}
.card:hover {
	transform: translateY(-7px);
	box-shadow: var(--shadow)
}
.pic {
height:;
	background: linear-gradient(145deg, #e9f2f5, #fbfdfe);
	display: grid;
	place-items: center;
	color: #78909b;
	font-weight: 950;
	font-size: 30px
}
.body {
	padding: 24px
}
.body h3 {
	font-size: 20px;
	margin: 0 0 8px
}
.body p {
	font-size: 14px;
	color: var(--muted);
	margin: 0
}
.arrow {
	display: inline-block;
	margin-top: 16px;
	color: #006c5a;
	font-weight: 900;
	font-size: 13px
}
.stats {
	background: #0b2533;
	color: #fff
}
.statsGrid {
	display: grid;
	grid-template-columns: repeat(5, 1fr)
}
.stat {
	padding: 36px 24px;
	border-right: 1px solid rgb(255 255 255 / .12)
}
.stat:last-child {
	border: 0
}
.stat b {
	display: block;
	font-size: 38px;
	color: #a8e875
}
.stat span {
	color: #b9cbd3;
	font-size: 13px
}
.twoCol {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 75px;
	align-items: center
}
.imagePanel {
	min-height: 480px;
	border-radius: 28px;
	background: linear-gradient(145deg, #e4f6ff, #f8fbfc);
	border: 1px solid #d5e6ed;
	display: grid;
	place-items: center;
	box-shadow: var(--shadow);
	font-size: 45px;
	font-weight: 950;
	color: #7f9aa6
}
.list {
	display: grid;
	gap: 18px;
	margin-top: 25px
}
.li {
	display: flex;
	gap: 15px
}
.tick {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: var(--lime);
	color: #478d21;
	display: grid;
	place-items: center;
	font-weight: 950;
	flex: none
}
.ribbon {
	background: #c8eaff;
	border-top: 1px solid #d4ecf8;
	border-bottom: 1px solid #d4ecf8;
	padding: 18px 0
}
.ribbonIn {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap
}
.ribbon strong {
	color: #006c5a
}
.pageHero {
	padding: 95px 0;
	background: linear-gradient(110deg, #f5fbfe, #edf7f7);
	border-bottom: 1px solid var(--line)
}
.pageHero h1 {
	font-size: 60px;
	line-height: 1.05;
	margin: 0;
	max-width: 850px
}
.pageHero p {
	max-width: 700px;
	color: var(--muted);
	font-size: 18px;
	margin-top: 18px
}
.breadcrumb {
	font-size: 13px;
	color: #72858e;
	padding: 18px 0;
	border-bottom: 1px solid var(--line)
}
.cta {
	padding: 65px;
	border-radius: 28px;
	background: linear-gradient(100deg, #0b2533, #0d5574);
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px
}
.cta h2 {
	font-size: 42px;
	margin: 0;
	line-height: 1.1
}
.cta p {
	color: #c0d2da
}
.filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 30px
}
.chip {
	padding: 9px 15px;
	border: 1px solid var(--line);
	border-radius: 99px;
	font-size: 13px;
	font-weight: 800;
	background: #fff
}
.timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0
}
.step {
	padding: 28px;
	border-top: 3px solid #006c5a;
	background: #fff;
	border-right: 1px solid var(--line)
}
.step b {
	font-size: 28px;
	color: #006c5a
}
.formgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}
.formgrid .full {
	grid-column: 1/-1
}
.input {
	width: 100%;
	padding: 14px;
	border: 1px solid #d4e0e5;
	border-radius: 9px;
	font: inherit
}
.textarea {
	min-height: auto;
	resize: vertical
}
.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-top: 22px;
	background: #fff;
	border: 1px solid #dfe8ed;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 8px 25px rgb(16 33 43 / .06)
}
.table th {
	background: #10212b;
	color: #fff;
	padding: 16px 20px;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .3px;
	border: 0
}
.table th:first-child {
	border-right: 1px solid rgb(255 255 255 / .25)
}
.table td {
	padding: 15px 20px;
	color: #334953;
	font-size: 15px;
	line-height: 1.5;
	border-bottom: 1px solid #e8eef1;
	vertical-align: middle
}
.table td:first-child {
	width: 42%;
	font-weight: 700;
	color: #10212b;
	border-right: 1px solid #dfe8ed
}
.table td:nth-child(2) {
	color: #087ec1;
	font-weight: 600
}
.table tr:nth-child(even) {
	background: #f7fafc
}
.table tr:hover {
	background: #eaf7ff;
	transition: 0.25s ease
}
.table tr:last-child td {
	border-bottom: 0
}
.table th:first-child {
	border-top-left-radius: 16px
}
.table th:last-child {
	border-top-right-radius: 16px
}
.table tr:last-child td:first-child {
	border-bottom-left-radius: 16px
}
.table tr:last-child td:last-child {
	border-bottom-right-radius: 16px
}
@media (max-width:767px) {
.table {
	font-size: 14px;
	border-radius: 12px
}
.table th, .table td {
	padding: 12px 14px
}
.table td:first-child {
	width: 40%
}
.table th {
	font-size: 13px
}
.table td {
	font-size: 14px
}
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0
}
h1 {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 52px;
	line-height: 1.08;
	font-weight: 800;
	color: var(--ink)
}
h2 {
	margin: 20px 0 18px 0;
	padding-top: 20px;
	font-size: 28px;
	line-height: 1.45;
	font-weight: 800;
	color: var(--ink)
}
h3 {
	margin: 0 0 15px 0;
	padding: 0;
	font-size: 20px;
	line-height: 1.25;
	color: var(--ink)
}
h4 {
	margin: 0 0 12px 0;
	padding: 0;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--ink)
}
h5 {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--ink)
}
h6 {
	margin: 0 0 8px 0;
	padding: 0;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 700;
	color: var(--ink)
}
p {
	margin: 0 0 16px 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	color: var(--muted)
}
.section h1, .section h2 {
	margin-top: 0
}
.section h3 {
	margin-top: 0
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child {
	margin-bottom: 0
}
@media (max-width:991px) {
h1 {
	font-size: 44px
}
h2 {
	font-size: 34px
}
h3 {
	font-size: 25px
}
h4 {
	font-size: 21px
}
h5 {
	font-size: 17px
}
h6 {
	font-size: 15px
}
p {
	font-size: 16px;
	line-height: 1.65
}
}
@media (max-width:767px) {
h1 {
	font-size: 36px;
	line-height: 1.12;
	margin-bottom: 16px
}
h2 {
	font-size: 30px;
	line-height: 1.18;
	margin-bottom: 15px
}
h3 {
	font-size: 23px;
	margin-bottom: 13px
}
h4 {
	font-size: 20px;
	margin-bottom: 10px
}
h5 {
	font-size: 17px;
	margin-bottom: 8px
}
h6 {
	font-size: 15px;
	margin-bottom: 7px
}
p {
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 14px
}
}
.footer {
	background: #071923;
	color: #b8cad2;
	padding: 70px 0 25px
}
.footgrid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
	gap: 40px
}
.footer h4 {
	color: #fff
}
.footer a {
	display: block;
	margin: 8px 0;
	font-size: 14px
}
.footer a:hover {
	color: #a8e875
}
.bottom {
	border-top: 1px solid rgb(255 255 255 / .12);
	margin-top: 45px;
	padding-top: 20px;
	font-size: 13px;
	display: flex;
	justify-content: space-between
}
.navdrop {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center
}
.dropbtn {
	border: 0;
	background: none;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	color: #334a56;
	cursor: pointer;
	padding: 10px 0
}
.dropbtn span {
	font-size: 16px;
	margin-left: 3px;
	color: #70828b
}
.dropmenu {
	position: absolute;
	top: calc(100% + 1px);
	left: -18px;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 9px;
	box-shadow: 0 18px 45px rgb(15 45 62 / .14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .2s;
	z-index: 200
}
.dropmenu.wide {
	min-width: 255px
}
.dropmenu a {
	display: block!important;
	padding: 10px 12px!important;
	border-radius: 7px;
	color: #344a56!important;
	font-size: 13px!important;
	white-space: nowrap
}
.dropmenu a:hover {
	background: var(--blue2);
	color: #006c5a!important
}
.navdrop:hover .dropmenu, .navdrop:focus-within .dropmenu {
opacity:1;
visibility:visible;
transform:translateY(0)
}
.navdrop:hover .dropbtn {
	color: #006c5a
}
@media(max-width:1000px) {
.navdrop {
	width: 100%;
	display: block;
	height: auto
}
.dropbtn {
	width: 100%;
	text-align: left;
	padding: 9px 0
}
.dropmenu {
	position: static;
	display: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: 0;
	padding: 0 0 6px 12px;
	min-width: 0!important
}
.navdrop:hover .dropmenu, .navdrop:focus-within .dropmenu {
display:block
}
.dropmenu a {
	padding: 8px 10px!important
}
}
@media(max-width:1000px) {
.links {
	display: none;
	position: absolute;
	top: 82px;
	left: 0;
	right: 0;
	background: #fff;
	padding: 22px;
	flex-direction: column;
	align-items: flex-start;
	border-bottom: 1px solid var(--line)
}
.links.open {
	display: flex
}
.menu {
	display: block
}
.heroGrid, .twoCol {
	grid-template-columns: 1fr
}
.four {
	grid-template-columns: repeat(2, 1fr)
}
.three {
	grid-template-columns: repeat(2, 1fr)
}
.statsGrid {
	grid-template-columns: repeat(3, 1fr)
}
.timeline {
	grid-template-columns: repeat(2, 1fr)
}
.footgrid {
	grid-template-columns: 1fr 1fr
}
.heroGrid {
	padding: 70px 0
}
}
@media(max-width:600px) {
.top .container {
	display: block
}
.top span {
	display: block
}
.section {
	padding: 65px 0
}
.head {
	display: block
}
.head h2 {
	font-size: 34px;
	margin-bottom: 12px
}
.four, .three, .two, .statsGrid, .timeline, .footgrid, .formgrid {
	grid-template-columns: 1fr
}
.pageHero h1 {
	font-size: 43px
}
.hero h1 {
	font-size: 45px
}
.cta {
	padding: 38px 25px;
	display: block
}
.cta .btn {
	margin-top: 20px
}
.heroVisual {
	min-height: 340px
}
.bottom {
	display: block
}
.bottom span {
	display: block;
	margin-top: 8px
}
}
.nav-chevron {
	font-size: 11px!important;
	margin-left: 5px;
	color: #70828b
}
.menu .fa {
	font-size: 24px
}
.iconPic {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center
}
.iconPic .fa {
	font-size: 54px;
	color: #006c5a
}
.iconPic span {
	font-size: 12px;
	letter-spacing: 1.2px;
	color: #78909b
}
.iconVisual {
	display: flex;
	flex-direction: column;
	gap: 18px
}
.iconVisual .fa {
	font-size: 82px;
	color: #006c5a
}
.iconVisual span {
	font-size: 20px;
	letter-spacing: 1px
}
.cardTitleIcon {
	color: #006c5a;
	font-size: 20px;
	margin-right: 10px
}
.arrow .fa {
	font-size: 11px;
	margin-left: 3px
}
.tick .fa {
	font-size: 14px
}
.sr-only {
	position: absolute!important;
	width: 1px!important;
	height: 1px!important;
	padding: 0!important;
	margin: -1px!important;
	overflow: hidden!important;
	clip: rect(0,0,0,0)!important;
	white-space: nowrap!important;
	border: 0!important
}
.imagePic, .imageVisual {
	overflow: hidden;
	position: relative;
	background: #eef7fb
}
.imagePic img, .imageVisual img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover
}
.imagePic {
min-height:;
	margin-top: 13px
}
.imageVisual {
	min-height: 300px
}
.imagePic img {
min-height:
}
.imageVisual img {
	min-height: 300px
}
.faq-section {
	background: #fff
}
.faq-header {
	max-width: 760px;
	margin: 0 auto 45px;
	text-align: center
}
.faq-header .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: #087ec1;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px
}
.faq-header h2 {
	margin-bottom: 14px
}
.faq-header p {
	max-width: 650px;
	margin: 0 auto
}
.faq-list {
	max-width: 900px;
	margin: 0 auto
}
.faq-item {
	margin-bottom: 14px;
	background: #fff;
	border: 1px solid #dfe8ed;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s ease
}
.faq-item:hover {
	border-color: #b9dbea;
	box-shadow: 0 8px 25px rgb(16 33 43 / .06)
}
.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px;
	border: 0;
	background: #fff0;
	color: #10212b;
	font-family: inherit;
	font-size: 17px;
	font-weight: 700;
	text-align: left;
	cursor: pointer
}
.faq-icon {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #eaf7ff;
	color: #087ec1;
	font-size: 13px;
	transition: all 0.25s ease
}
.faq-item.active {
	border-color: #087ec1
}
.faq-item.active .faq-icon {
	background: #087ec1;
	color: #fff
}
.faq-answer {
	display: none;
	padding: 0 24px 22px
}
.faq-item.active .faq-answer {
	display: block
}
.faq-answer p {
	margin: 0;
	color: #647680;
	font-size: 15px;
	line-height: 1.7
}
.faq-cta {
	max-width: 900px;
	margin: 50px auto 0;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	background: #10212b;
	border-radius: 18px
}
.faq-cta h3 {
	margin-bottom: 6px;
	color: #fff
}
.faq-cta p {
	margin: 0;
	color: #b9c8cf
}
@media (max-width:767px) {
.faq-header {
	margin-bottom: 30px
}
.faq-question {
	padding: 17px 18px;
	font-size: 15px
}
.faq-answer {
	padding: 0 18px 18px
}
.faq-icon {
	flex: 0 0 28px;
	width: 28px;
	height: 28px
}
.faq-cta {
	margin-top: 35px;
	padding: 24px 20px;
	flex-direction: column;
	align-items: flex-start
}
}
.product-image-col {
	position: relative
}
.product-main-image {
	position: relative;
	width: 100%;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 25px;
	overflow: hidden;
	cursor: zoom-in
}
.product-main-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.35s ease
}
.product-main-image:hover img {
	transform: scale(1.02)
}
.image-zoom-icon {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(16 33 43 / .85);
	color: #fff;
	border-radius: 50%;
	font-size: 16px;
	pointer-events: none
}
.product-thumbnails {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 14px
}
.product-thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f4f8fa;
	border: 2px solid #fff0;
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.25s ease, transform 0.25s ease
}
.product-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease
}
.product-thumb:hover img {
	transform: scale(1.06)
}
.product-thumb.active {
	border-color: #006c5a
}
.product-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgb(10 20 25 / .92)
}
.product-lightbox.active {
	display: flex
}
.product-lightbox-image {
	max-width: 92vw;
	max-height: 88vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgb(0 0 0 / .35)
}
.product-lightbox-close {
	position: fixed;
	top: 25px;
	right: 30px;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #10212b;
	font-size: 20px;
	cursor: pointer;
	z-index: 2
}
.product-lightbox-close:hover {
	background: #006c5a;
	color: #fff
}
@media (max-width:767px) {
.product-thumbnails {
	gap: 8px;
	margin-top: 10px
}
.product-thumb {
	border-radius: 9px
}
.product-lightbox {
	padding: 15px
}
.product-lightbox-image {
	max-width: 96vw;
	max-height: 82vh
}
.product-lightbox-close {
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px
}
}
.quote-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 25px;
	opacity: 0;
	transition: opacity .3s ease
}
.quote-modal.active {
	display: flex;
	opacity: 1
}
.quote-overlay {
	position: absolute;
	inset: 0;
	background: rgb(10 24 32 / .78);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px)
}
.quote-modal-box {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1000px;
	max-height: 92vh;
	display: grid;
	grid-template-columns: 38% 62%;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgb(0 0 0 / .25);
	transform: translateY(25px) scale(.97);
	transition: transform .3s ease
}
.quote-modal.active .quote-modal-box {
	transform: translateY(0) scale(1)
}
.quote-info {
	position: relative;
	padding: 45px 38px;
	background: linear-gradient(145deg, #10212b 0%, #123d50 55%, #087ec1 100%);
	color: #fff;
	overflow: hidden
}
.quote-info::after {
	content: "";
	position: absolute;
	width: 250px;
	height: 250px;
	right: -100px;
	bottom: -100px;
	border-radius: 50%;
	background: rgb(255 255 255 / .06)
}
.quote-info .eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	color: #bdeaff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px
}
.quote-info h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 38px;
	line-height: 1.1
}
.quote-info>p {
	color: rgb(255 255 255 / .78);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 30px
}
.quote-icon {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	border-radius: 16px;
	background: rgb(255 255 255 / .12);
	border: 1px solid rgb(255 255 255 / .15);
	color: #fff;
	font-size: 25px
}
.quote-product {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	margin-bottom: 28px;
	border-radius: 14px;
	background: rgb(255 255 255 / .09);
	border: 1px solid rgb(255 255 255 / .12)
}
.quote-product-icon {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #5cae2d;
	color: #fff
}
.quote-product strong {
	display: block;
	color: #fff;
	font-size: 14px;
	margin-bottom: 4px
}
.quote-product span {
	display: block;
	color: rgb(255 255 255 / .65);
	font-size: 12px
}
.quote-contact {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 14px
}
.quote-contact div {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgb(255 255 255 / .85);
	font-size: 13px
}
.quote-contact i {
	width: 20px;
	color: #bdeaff;
	text-align: center
}
.quote-form-wrap {
	padding: 38px 40px;
	background: #fff;
	overflow-y: auto
}
.quote-form-title {
	margin-bottom: 24px
}
.quote-form-title h3 {
	margin: 0 0 6px;
	color: var(--ink);
	font-size: 24px
}
.quote-form-title p {
	margin: 0;
	color: var(--muted);
	font-size: 14px
}
.quote-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}
.quote-field {
	margin-bottom: 17px
}
.quote-field label {
	display: block;
	margin-bottom: 7px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 700
}
.quote-field label span {
	color: #e53935
}
.quote-input {
	position: relative
}
.quote-input>i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #8a9ba4;
	font-size: 14px;
	pointer-events: none
}
.quote-input input, .quote-input textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #dfe8ed;
	border-radius: 11px;
	background: #f9fbfc;
	color: var(--ink);
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: border .2s ease, background .2s ease, box-shadow .2s ease
}
.quote-input input {
	height: 48px;
	padding: 0 14px 0 42px
}
.quote-input textarea {
	min-height: 105px;
	resize: vertical;
	padding: 13px 14px 13px 42px
}
.quote-input.textarea>i {
	top: 18px;
	transform: none
}
.quote-input input::placeholder, .quote-input textarea::placeholder {
color:#9baab1
}
.quote-input input:focus, .quote-input textarea:focus {
	border-color: #006c5a;
	background: #fff;
	box-shadow: 0 0 0 3px rgb(8 126 193 / .09)
}
.quote-submit {
	width: 100%;
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 0;
	border-radius: 11px;
	background: linear-gradient(135deg, #087ec1, #05649b);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease
}
.quote-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgb(8 126 193 / .25)
}
.quote-submit i {
	font-size: 13px
}
.quote-note {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	margin-top: 12px;
	color: #8a9ba4;
	font-size: 11px;
	line-height: 1.5;
	text-align: center;
	justify-content: center
}
.quote-note i {
	color: #5cae2d;
	margin-top: 2px
}
.quote-close {
	position: absolute;
	z-index: 10;
	top: 15px;
	right: 15px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgb(255 255 255 / .95);
	color: #10212b;
	cursor: pointer;
	font-size: 15px;
	box-shadow: 0 4px 15px rgb(0 0 0 / .12);
	transition: all .2s ease
}
.quote-close:hover {
	background: #10212b;
	color: #fff;
	transform: rotate(90deg)
}
@media (max-width:767px) {
.quote-modal {
	padding: 12px;
	align-items: flex-start;
	padding-top: 25px
}
.quote-modal-box {
	max-height: 94vh;
	display: block;
	overflow-y: auto;
	border-radius: 18px
}
.quote-info {
	padding: 30px 25px
}
.quote-info h2 {
	font-size: 30px
}
.quote-info>p {
	margin-bottom: 20px
}
.quote-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 20px
}
.quote-contact {
	display: none
}
.quote-form-wrap {
	padding: 28px 22px 30px
}
.quote-form-row {
	grid-template-columns: 1fr;
	gap: 0
}
.quote-close {
	top: 10px;
	right: 10px;
	width: 34px;
	height: 34px
}
}
.city-autocomplete {
	position: relative
}
.city-suggestions {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 5px);
	z-index: 9999;
	display: none;
	max-height: 220px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #dfe8ed;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgb(16 33 43 / .12)
}
.city-suggestions.active {
	display: block
}
.city-suggestion {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 15px;
	color: var(--ink);
	font-size: 14px;
	cursor: pointer;
	border-bottom: 1px solid #eef2f4;
	transition: .2s ease
}
.city-suggestion:last-child {
	border-bottom: 0
}
.city-suggestion:hover {
	background: #eaf7ff;
	color: #006c5a
}
.city-suggestion i {
	width: 18px;
	color: #006c5a;
	text-align: center
}
.city-suggestion strong {
	font-weight: 700
}
.city-suggestion small {
	display: block;
	margin-top: 2px;
	color: #8a9ba4;
	font-size: 11px
}
#quoteForm .quote-submit {
	display: flex!important;
	visibility: visible!important;
	opacity: 1!important;
	width: 100%!important;
	min-height: 52px!important;
	padding: 15px 22px!important;
	margin-top: 20px!important;
	margin-bottom: 15px!important;
	align-items: center!important;
	justify-content: center!important;
	gap: 10px!important;
	background: #087ec1!important;
	color: #ffffff!important;
	border: none!important;
	border-radius: 10px!important;
	font-family: inherit!important;
	font-size: 16px!important;
	font-weight: 700!important;
	cursor: pointer!important;
	position: relative!important;
	z-index: 10!important
}
#quoteForm .quote-submit span {
	display: inline-block!important;
	color: #ffffff!important
}
#quoteForm .quote-submit i {
	display: inline-block!important;
	color: #ffffff!important
}
#quoteForm .quote-submit:hover {
	background: #10212b!important
}
#quoteStatus {
	position: absolute!important;
	top: 0!important;
	left: 0!important;
	right: 0!important;
	bottom: 0!important;
	width: 100%!important;
	height: 100%!important;
	z-index: 9999!important;
	display: none!important;
	align-items: center!important;
	justify-content: center!important;
	background: #ffffff!important;
	text-align: center!important;
	box-sizing: border-box!important
}
#quoteStatus.active {
	display: flex!important
}
#quoteLoading {
	width: 100%;
	max-width: 430px;
	padding: 30px;
	box-sizing: border-box
}
.loading-spinner {
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	border-radius: 50%;
	border: 5px solid #eaf0f3;
	border-top-color: #087ec1;
	border-right-color: #5cae2d;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: quoteSpin 1s linear infinite
}
.loading-spinner i {
	font-size: 25px;
	color: #087ec1
}
.loading-spinner+h3 {
	margin: 0 0 8px!important;
	font-size: 24px!important;
	line-height: 1.2!important;
	color: #10212b!important
}
#quoteLoading p {
	margin: 0 0 25px!important;
	font-size: 14px!important;
	color: #647680!important
}
.loading-bar {
	width: 280px;
	height: 5px;
	margin: 0 auto;
	background: #e8eef1;
	border-radius: 20px;
	overflow: hidden
}
.loading-bar span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, #087ec1, #5cae2d);
	animation: quoteProgress 5s linear forwards
}
.loading-count {
	margin-top: 13px;
	font-size: 12px;
	color: #8a9ba4
}
.loading-count strong {
	color: #087ec1;
	font-size: 14px
}
#quoteThankyou {
	display: none;
	width: 100%;
	max-width: 500px;
	padding: 30px;
	box-sizing: border-box
}
#quoteThankyou.active {
	display: block
}
.thankyou-icon {
	width: 82px;
	height: 82px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #5cae2d;
	color: #fff;
	font-size: 36px;
	box-shadow: 0 12px 30px rgb(92 174 45 / .25);
	animation: quoteCheck .6s ease
}
#quoteThankyou>span {
	display: block;
	margin-bottom: 8px;
	color: #087ec1;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.5px
}
#quoteThankyou h2 {
	margin: 0 0 10px!important;
	color: #10212b!important;
	font-size: 38px!important
}
#quoteThankyou p {
	margin: 0!important;
	color: #647680!important;
	font-size: 15px!important;
	line-height: 1.6!important
}
#quoteThankyou #thankyouProduct {
	margin-top: 6px!important;
	color: #087ec1!important;
	font-size: 14px!important;
	font-weight: 600!important
}
@keyframes quoteSpin {
from {
transform:rotate(0deg)
}
to {
	transform: rotate(360deg)
}
}
@keyframes quoteProgress {
from {
width:0%
}
to {
	width: 100%
}
}
@keyframes quoteCheck {
0% {
transform:scale(0);
opacity:0
}
70% {
transform:scale(1.12)
}
100% {
transform:scale(1);
opacity:1
}
}
@media(max-width:767px) {
#quoteLoading {
	padding: 20px
}
.loading-bar {
	width: 220px
}
.loading-spinner {
	width: 65px;
	height: 65px
}
}
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 35px
}
.filters .chip {
	appearance: none;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	padding: 10px 18px;
	border-radius: 30px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s ease
}
.filters .chip:hover {
	border-color: #006c5a;
	color: #006c5a
}
.filters .chip.active {
	background: #006c5a;
	border-color: #006c5a;
	color: #fff;
	box-shadow: 0 6px 16px rgb(8 126 193 / .18)
}
.product-card {
	transition: opacity 0.25s ease, transform 0.25s ease
}
.product-card.hidden {
	display: none
}
@media (max-width:767px) {
.filters {
	gap: 8px;
	margin-bottom: 25px
}
.filters .chip {
	padding: 9px 14px;
	font-size: 13px
}
}
.links {
	margin-left: auto
}
.nav-list {
	display: flex;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0
}
.nav-list>li {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0
}
.nav-list>li>a, .nav-list>li>.dropbtn {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 70px;
	padding: 0 13px;
	color: var(--ink);
	background: #fff0;
	border: 0;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: color .25s ease
}
.nav-list>li>a:hover, .nav-list>li>.dropbtn:hover {
	color: #006c5a
}
.nav-chevron {
	font-size: 9px;
	margin-left: 2px;
	transition: transform .25s ease
}
.navdrop:hover>.dropbtn .nav-chevron {
	transform: rotate(180deg)
}
.navdrop {
	position: relative
}
.navdrop>.dropmenu {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: 0 15px 40px rgb(16 33 43 / .12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	z-index: 9999
}
.navdrop:hover>.dropmenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}
.dropmenu li {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0
}
.dropmenu li a {
	display: block;
	padding: 11px 17px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s ease, color .2s ease
}
.dropmenu li a:hover {
	color: #006c5a;
	background: var(--blue2)
}
.dropmenu.wide {
	min-width: 250px
}
.nav-list .nav-quote {
	margin-left: 8px
}
.nav-list .nav-quote .btn {
	height: auto;
	padding: 11px 18px;
	color: #fff;
	background: #063
}
@media (max-width:991px) {
.links {
	display: none
}
.links.open {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	padding: 15px 20px 25px;
	border-top: 1px solid var(--line);
	box-shadow: 0 15px 30px rgb(16 33 43 / .10);
	z-index: 9998
}
.nav-list {
	display: block
}
.nav-list>li {
	width: 100%
}
.nav-list>li>a, .nav-list>li>.dropbtn {
	width: 100%;
	height: auto;
	min-height: 48px;
	padding: 12px 5px;
	justify-content: space-between
}
.navdrop>.dropmenu {
	position: static;
	display: none;
	min-width: 0;
	width: 100%;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: 0;
	border-radius: 0;
	padding: 0 0 5px;
	background: #f7fafc
}
.navdrop:hover>.dropmenu {
	display: none
}
.navdrop.open>.dropmenu {
	display: block
}
.dropmenu li a {
	padding: 10px 18px
}
.nav-list .nav-quote {
	margin: 10px 0 0
}
.nav-list .nav-quote .btn {
	display: inline-flex;
	width: auto
}
}
.productHero {
	padding: 0!important;
	background: #f7fafc;
	overflow: hidden
}
.productHeroRow {
	min-height: 480px;
	align-items: center
}
.productHeroContent {
	padding: 70px 30px 70px 0
}
.productHeroContent .eyebrow {
	margin-bottom: 16px
}
.productHeroContent h1 {
	margin: 0 0 20px;
	font-size: 52px;
	line-height: 1.08;
	font-weight: 800;
	color: var(--ink)
}
.productHeroContent p {
	max-width: 560px;
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: var(--muted)
}
.productHeroSlider {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	border-radius: 24px;
	background: #eaf7ff;
	box-shadow: 0 20px 50px rgb(16 33 43 / .10)
}
.productHeroSlide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease, transform 5s ease;
	transform: scale(1.05)
}
.productHeroSlide.active {
	opacity: 1;
	transform: scale(1)
}
.productHeroSlide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover
}
@media(max-width:991px) {
.productHeroRow {
	min-height: 420px
}
.productHeroContent {
	padding: 50px 20px 50px 0
}
.productHeroContent h1 {
	font-size: 40px
}
.productHeroContent p {
	font-size: 16px
}
.productHeroSlider {
	height: 360px;
	border-radius: 20px
}
}
@media(max-width:767px) {
.productHero {
	padding: 40px 0!important
}
.productHeroRow {
	min-height: auto;
	display: flex;
	flex-direction: column
}
.productHeroContent {
	padding: 0 0 35px
}
.productHeroContent h1 {
	font-size: 34px;
	line-height: 1.12
}
.productHeroContent p {
	font-size: 15px;
	line-height: 1.6
}
.productHeroSlider {
	width: 100%;
	height: 300px;
	border-radius: 18px
}
}
@media(max-width:480px) {
.productHeroContent h1 {
	font-size: 30px
}
.productHeroSlider {
	height: 240px;
	border-radius: 15px
}
}
.shortQuoteModal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px
}
.shortQuoteModal.active {
	display: flex
}
.shortQuoteOverlay {
	position: absolute;
	inset: 0;
	background: rgb(16 33 43 / .78);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px)
}
.shortQuoteBox {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 620px;
	max-height: 92vh;
	overflow-y: auto;
	padding: 30px;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 30px 80px rgb(0 0 0 / .25);
	animation: shortQuoteIn .3s ease
}
@keyframes shortQuoteIn {
from {
opacity:0;
transform:translateY(20px) scale(.97)
}
to {
	opacity: 1;
	transform: translateY(0) scale(1)
}
}
.shortQuoteClose {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #f1f5f7;
	color: #647680;
	cursor: pointer;
	font-size: 15px;
	transition: .2s
}
.shortQuoteClose:hover {
	background: #087ec1;
	color: #fff
}
.shortQuoteHeader {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-right: 40px;
	margin-bottom: 25px
}
.shortQuoteIcon {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: #eaf7ff;
	color: #087ec1;
	font-size: 22px
}
.shortQuoteHeader span {
	display: block;
	margin-bottom: 3px;
	color: #087ec1;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.5px
}
.shortQuoteHeader h2 {
	margin: 0 0 4px!important;
	font-size: 28px!important;
	line-height: 1.15!important;
	color: #10212b!important
}
.shortQuoteHeader p {
	margin: 0!important;
	font-size: 13px!important;
	color: #647680!important
}
.shortQuoteGrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}
.shortQuoteField {
	min-width: 0
}
.shortQuoteField.full {
	grid-column: 1 / -1
}
.shortQuoteField label {
	display: block;
	margin-bottom: 7px;
	color: #10212b;
	font-size: 13px;
	font-weight: 700
}
.shortQuoteField label b {
	color: #087ec1
}
.shortQuoteInput {
	position: relative;
	display: flex;
	align-items: center
}
.shortQuoteInput>i {
	position: absolute;
	left: 14px;
	z-index: 2;
	color: #087ec1;
	font-size: 14px;
	pointer-events: none
}
.shortQuoteInput input, .shortQuoteInput select, .shortQuoteInput textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #dfe8ed;
	border-radius: 10px;
	background: #fff;
	color: #10212b;
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: .2s
}
.shortQuoteInput input, .shortQuoteInput select {
	height: 46px;
	padding: 0 14px 0 40px
}
.shortQuoteInput textarea {
	min-height: 85px;
	padding: 12px 14px 12px 40px;
	resize: vertical
}
.shortQuoteInput select {
	appearance: auto
}
.shortQuoteInput input:focus, .shortQuoteInput select:focus, .shortQuoteInput textarea:focus {
	border-color: #087ec1;
	box-shadow: 0 0 0 3px rgb(8 126 193 / .08)
}
.shortQuoteSubmit {
	width: 100%;
	min-height: 50px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, #087ec1, #05689f);
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: .25s
}
.shortQuoteSubmit:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgb(8 126 193 / .25)
}
.shortQuoteNote {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 12px;
	color: #8a9ba4;
	font-size: 11px
}
.shortQuoteNote i {
	color: #5cae2d
}
@media(max-width:600px) {
.shortQuoteModal {
	padding: 12px
}
.shortQuoteBox {
	max-height: 94vh;
	padding: 24px 18px;
	border-radius: 17px
}
.shortQuoteHeader {
	margin-bottom: 20px
}
.shortQuoteIcon {
	width: 46px;
	height: 46px;
	flex-basis: 46px
}
.shortQuoteHeader h2 {
	font-size: 24px!important
}
.shortQuoteGrid {
	grid-template-columns: 1fr;
	gap: 14px
}
.shortQuoteField.full {
	grid-column: auto
}
}
.quote-input select {
	width: 100%;
	height: 48px;
	padding: 0 14px 0 42px;
	box-sizing: border-box;
	border: 1px solid #dfe8ed;
	border-radius: 11px;
	background: #f9fbfc;
	color: var(--ink);
	font-family: inherit;
	font-size: 14px;
	outline: none
}
.quote-input select:focus {
	border-color: #006c5a;
	background: #fff;
	box-shadow: 0 0 0 3px rgb(8 126 193 / .09)
}
.quote-input select {
	width: 100%;
	height: 48px;
	box-sizing: border-box;
	padding: 0 14px 0 42px;
	border: 1px solid #dfe8ed;
	border-radius: 11px;
	background: #f9fbfc;
	color: var(--ink);
	font-family: inherit;
	font-size: 14px;
	outline: none;
	cursor: pointer;
	transition: border .2s ease, background .2s ease, box-shadow .2s ease
}
.quote-input select:focus {
	border-color: #006c5a;
	background: #fff;
	box-shadow: 0 0 0 3px rgb(8 126 193 / .09)
}
.clients-testimonials {
	padding: 50px 0;
	background: #f7fafc;
	overflow: hidden
}
.clients-testimonials .section-heading {
	max-width: 760px;
	margin: 0 auto 50px;
	text-align: center
}
.clients-testimonials .section-heading h2 {
	margin: 12px 0 14px;
	font-size: 42px;
	line-height: 1.15;
	color: var(--ink)
}
.clients-testimonials .section-heading h2 span {
	color: #006c5a
}
.clients-testimonials .section-heading p {
	max-width: 650px;
	margin: auto;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.8
}
.testimonial-slider {
	position: relative;
	width: 100%
}
.testimonial-window {
	overflow: hidden;
	margin: 0 52px
}
.testimonial-track {
	display: flex;
	transition: transform .65s cubic-bezier(.22, .61, .36, 1);
	will-change: transform
}
.testimonial-slide {
	flex: 0 0 33.333333%;
	padding: 10px;
	box-sizing: border-box
}
.testimonial-card {
	height: 100%;
	min-height: 275px;
	padding: 28px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgb(16 33 43 / .045);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}
.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: rgb(8 126 193 / .22);
	box-shadow: 0 18px 40px rgb(16 33 43 / .09)
}
.testimonial-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px
}
.quote-mark {
	width: 43px;
	height: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	background: var(--blue2);
	color: #006c5a;
	font-size: 17px
}
.testimonial-stars {
	display: flex;
	align-items: center;
	gap: 3px
}
.testimonial-stars span {
	display: inline-block;
	color: #f5b82e!important;
	font-size: 16px!important;
	line-height: 1;
	font-family: Arial, sans-serif;
	font-weight: 700
}
.testimonial-arrow {
	position: absolute;
	top: 50%;
	z-index: 20;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	border: 1px solid #dfe8ed;
	border-radius: 50%;
	background: #fff;
	color: #10212b;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	box-shadow: 0 8px 22px rgb(16 33 43 / .12);
	transition: all .25s ease
}
.testimonial-prev {
	left: 0
}
.testimonial-next {
	right: 0
}
.testimonial-arrow span {
	display: block;
	color: #10212b!important;
	line-height: 1;
	margin-top: -3px
}
.testimonial-arrow:hover {
	background: #006c5a;
	border-color: #006c5a;
	color: #fff;
	transform: translateY(-50%) scale(1.08)
}
.testimonial-arrow:hover span {
	color: #ffffff!important
}
.testimonial-text {
	margin: 0 0 25px;
	color: #52636d;
	font-size: 14px;
	line-height: 1.75
}
.testimonial-person {
	display: flex;
	align-items: center;
	gap: 11px;
	padding-top: 17px;
	border-top: 1px solid #edf1f3
}
.person-avatar {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #006c5a, var(--green));
	color: #fff;
	font-size: 13px;
	font-weight: 800
}
.testimonial-person strong {
	display: block;
	margin-bottom: 2px;
	color: var(--ink);
	font-size: 12px
}
.testimonial-person span {
	display: block;
	color: var(--muted);
	font-size: 10px
}
.testimonial-arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	color: var(--ink);
	font-size: 19px;
	cursor: pointer;
	box-shadow: 0 8px 20px rgb(16 33 43 / .10);
	transition: .25s ease
}
.testimonial-prev {
	left: 0
}
.testimonial-next {
	right: 0
}
.testimonial-arrow:hover {
	background: #006c5a;
	border-color: #006c5a;
	color: #fff;
	transform: translateY(-50%) scale(1.08)
}
.testimonial-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	margin-top: 25px
}
.testimonial-dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 20px;
	background: #cbd6dc;
	cursor: pointer;
	transition: .3s ease
}
.testimonial-dot.active {
	width: 23px;
	background: #006c5a
}
@media (max-width:1100px) {
.testimonial-slide {
	flex: 0 0 50%
}
}
@media (max-width:767px) {
.clients-testimonials {
	padding: 70px 0
}
.clients-testimonials .section-heading {
	margin-bottom: 35px
}
.clients-testimonials .section-heading h2 {
	font-size: 31px
}
.testimonial-window {
	margin: 0 42px
}
.testimonial-slide {
	flex: 0 0 100%;
	padding: 7px
}
.testimonial-card {
	min-height: 280px;
	padding: 24px
}
.testimonial-text {
	font-size: 14px;
	line-height: 1.75
}
.testimonial-arrow {
	width: 35px;
	height: 35px;
	font-size: 16px
}
}
.testimonial-submit-wrap {
	display: flex;
	justify-content: center;
	margin-top: 28px
}
.testimonial-submit-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 13px 24px;
	border: 0;
	cursor: pointer
}
.testimonial-submit-btn span {
	font-size: 18px;
	transition: transform .25s ease
}
.testimonial-submit-btn:hover span {
	transform: translateX(4px)
}
.testimonial-form-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity .25s ease
}
.testimonial-form-modal.active {
	display: flex;
	opacity: 1
}
.testimonial-form-overlay {
	position: absolute;
	inset: 0;
	background: rgb(10 24 32 / .78);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px)
}
.testimonial-form-box {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 720px;
	max-height: 92vh;
	overflow-y: auto;
	padding: 38px;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 30px 80px rgb(0 0 0 / .25);
	transform: translateY(20px) scale(.97);
	transition: transform .25s ease
}
.testimonial-form-modal.active .testimonial-form-box {
	transform: translateY(0) scale(1)
}
.testimonial-form-close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: #f1f5f7;
	color: #10212b;
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
	transition: .2s ease
}
.testimonial-form-close:hover {
	background: #006c5a;
	color: #fff
}
.testimonial-form-header {
	text-align: center;
	margin-bottom: 28px
}
.testimonial-form-header h2 {
	margin: 0 0 8px;
	color: var(--ink);
	font-size: 32px;
	line-height: 1.2
}
.testimonial-form-header h2 span {
	color: #006c5a
}
.testimonial-form-header p {
	margin: 0;
	color: var(--muted);
	font-size: 14px
}
.testimonial-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}
.testimonial-form-field {
	margin-bottom: 10px
}
.testimonial-form-field label {
	display: block;
	margin-bottom: 7px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 700
}
.testimonial-form-field label span {
	color: #e14d4d
}
.testimonial-form-field input, .testimonial-form-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 13px 14px;
	border: 1px solid #dfe8ed;
	border-radius: 10px;
	background: #f9fbfc;
	color: var(--ink);
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: border .2s ease, background .2s ease, box-shadow .2s ease
}
.testimonial-form-field input {
	height: 47px
}
.testimonial-form-field textarea {
	min-height: 120px;
	resize: vertical
}
.testimonial-form-field input:focus, .testimonial-form-field textarea:focus {
	border-color: #006c5a;
	background: #fff;
	box-shadow: 0 0 0 3px rgb(8 126 193 / .08)
}
.testimonial-form-field input[type="file"] {
	padding: 10px;
	cursor: pointer
}
.rating-select {
	display: flex;
	gap: 8px;
	flex-wrap: wrap
}
.rating-select label {
	margin: 0;
	cursor: pointer
}
.rating-select input {
	display: none
}
.rating-select label span {
	display: block;
	padding: 8px 12px;
	border: 1px solid #dfe8ed;
	border-radius: 8px;
	background: #f9fbfc;
	color: #c8d0d5;
	font-size: 17px;
	letter-spacing: 1px;
	transition: .2s ease
}
.rating-select label:hover span, .rating-select input:checked+span {
	color: #f5b82e;
	border-color: #f5b82e;
	background: #fffaf0
}
.testimonial-form-submit {
	margin-top: 8px
}
.testimonial-form-submit button {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 0;
	border-radius: 10px;
	background: #006c5a;
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: .25s ease
}
.testimonial-form-submit button:hover {
	background: #066da8
}
.testimonial-form-submit button span {
	font-size: 18px
}
.testimonial-success {
	display: none;
	text-align: center;
	padding: 30px 10px 10px
}
.testimonial-success.active {
	display: block
}
.testimonial-success-icon {
	width: 65px;
	height: 65px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #e8f7df;
	color: var(--green);
	font-size: 30px;
	font-weight: 700
}
.testimonial-success h3 {
	margin: 0 0 8px;
	color: var(--ink);
	font-size: 26px
}
.testimonial-success p {
	max-width: 470px;
	margin: 0 auto 22px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7
}
.testimonial-success button {
	padding: 11px 22px;
	border: 0;
	border-radius: 9px;
	background: #006c5a;
	color: #fff;
	cursor: pointer
}
@media (max-width:767px) {
.testimonial-form-modal {
	padding: 12px;
	align-items: flex-start;
	padding-top: 25px
}
.testimonial-form-box {
	max-height: 94vh;
	padding: 30px 20px;
	border-radius: 18px
}
.testimonial-form-header h2 {
	font-size: 27px
}
.testimonial-form-row {
	grid-template-columns: 1fr;
	gap: 0
}
.rating-select {
	gap: 5px
}
.rating-select label span {
	padding: 7px 9px;
	font-size: 15px
}
}
.client-photo {
	width: 48px;
	height: 48px;
	padding: 0;
	overflow: hidden;
	border-radius: 50%;
	background: #eef5f8;
	flex-shrink: 0
}
.client-photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover
}
.applications-section {
	padding: 50px 0;
	background: #fff;
	overflow: hidden
}
.applications-section .section-heading {
	max-width: 760px;
	margin: 0 auto 55px;
	text-align: center
}
.applications-section .section-heading h2 {
	margin: 12px 0 15px;
	color: var(--ink);
	font-size: 42px;
	line-height: 1.15
}
.applications-section .section-heading h2 span {
	color: #006c5a
}
.applications-section .section-heading p {
	max-width: 680px;
	margin: 0 auto;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.8
}
.applications-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}
.application-card {
	position: relative;
	min-height: 245px;
	padding: 28px;
	background: #f8fbfc;
	border: 1px solid #e2eaee;
	border-radius: 18px;
	overflow: hidden;
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease
}
.application-card:hover {
	transform: translateY(-6px);
	background: #fff;
	border-color: rgb(8 126 193 / .25);
	box-shadow: 0 18px 45px rgb(16 33 43 / .09)
}
.application-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	border-radius: 14px;
	background: var(--blue2);
	color: #006c5a;
	font-size: 25px;
	font-weight: 600;
	transition: .3s ease
}
.application-card:hover .application-icon {
	background: #006c5a;
	color: #fff;
	transform: translateY(-2px)
}
.application-number {
	display: block;
	margin-bottom: 7px;
	color: #9aabb3;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px
}
.application-content h3 {
	margin: 0 0 10px;
	color: var(--ink);
	font-size: 19px;
	line-height: 1.3
}
.application-content p {
	max-width: 340px;
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.75
}
.application-arrow {
	position: absolute;
	right: 24px;
	bottom: 22px;
	color: #b7c5cc;
	font-size: 22px;
	transition: .3s ease
}
.application-card:hover .application-arrow {
	color: #006c5a;
	transform: translateX(5px)
}
.applications-cta {
	display: flex;
	justify-content: center;
	margin-top: 42px
}
.applications-cta .btn {
	display: inline-flex;
	align-items: center;
	gap: 12px
}
.applications-cta .btn span {
	font-size: 18px;
	transition: transform .25s ease
}
.applications-cta .btn:hover span {
	transform: translateX(4px)
}
@media (max-width:1000px) {
.applications-grid {
	grid-template-columns: repeat(2, 1fr)
}
}
@media (max-width:767px) {
.applications-section {
	padding: 70px 0
}
.applications-section .section-heading {
	margin-bottom: 35px
}
.applications-section .section-heading h2 {
	font-size: 31px
}
.applications-section .section-heading p {
	font-size: 14px
}
.applications-grid {
	grid-template-columns: 1fr;
	gap: 14px
}
.application-card {
	min-height: auto;
	padding: 24px
}
.application-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 22px
}
.application-content h3 {
	font-size: 18px
}
.application-content p {
	font-size: 13px
}
}
