﻿@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/ubuntu/ubuntu-300-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ubuntu/ubuntu-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ubuntu/ubuntu-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/ubuntu/ubuntu-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: #111;
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
  line-height: 1.25;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.utility-bar {
  background: #006f52;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.utility-bar .container {
  min-height: 58px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 34px;
}
.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.icon-dot {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: #006f52;
  /*background: @white;*/
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
}
.main-nav .container {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  flex: 0 0 auto;
}
.brand img {
  width: 320px;
  max-width: 42vw;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: #006f52;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  font-size: 28px;
  line-height: 1;
}
.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  color: #063d2c;
  text-transform: uppercase;
}
.nav-menu a {
  position: relative;
  display: block;
  padding: 40px 0 32px;
}
.nav-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 5px;
  background: #bf2934;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-menu .btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 5px 28px;
  border: 0;
  border-radius: 25px;
  background: #bf2934;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1.6rem;
}
.nav-menu .btn-red:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(191, 41, 52, 0.28);
}
.nav-menu a:hover:after,
.nav-menu a.active:after {
  transform: scaleX(1);
}
.hero {
  position: relative;
  min-height: 610px;
  color: #fff;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 39, 34, 0.55);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  max-width: 1050px;
  margin: 0 0 22px;
  font-size: 62px;
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
}
.hero p {
  max-width: 980px;
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 700;
}
.page-hero h1 {
  font-size: 58px;
}
.breadcrumb-line {
  margin-bottom: 22px;
  font-size: 23px;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
}
.section {
  padding: 50px 0;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.section-title:before,
.section-title:after {
  content: "";
  flex: 1;
  height: 6px;
  background: #006f52;
}
.section-title span {
  white-space: nowrap;
  font-size: 27px;
}
.product-card,
.partner-card,
.service-card {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 111, 82, 0.18);
  height: 100%;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.product-card:hover,
.partner-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 111, 82, 0.24);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-body {
  position: relative;
  padding: 22px 56px 24px 28px;
}
.product-body h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
}
.product-body p {
  margin: 2px 0 0;
  font-size: 22px;
  line-height: 1.05;
}
.arrow-link {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #bf2934;
  color: #fff;
  font-weight: 700;
}
.service-strip,
.why-strip {
  background: #006f52;
  color: #fff;
  padding: 46px 0;
  margin-bottom: 25px;
}
.service-item,
.why-item,
.stat-item,
.value-item,
.step-item {
  display: flex;
  align-items: center;
  gap: 22px;
}
.line-icon {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  /*border: 5px solid currentColor;
    border-radius: 12px;*/
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 34px;
}
.service-item h3,
.why-item h3 {
  margin: 0 0 6px;
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
}
.service-item p,
.why-item p {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.stats {
  padding: 34px 0;
}
.stat-item {
  color: #006f52;
}
.stat-item strong {
  display: block;
  color: #000;
  font-size: 40px;
  line-height: 0.9;
  font-weight: 700;
}
.stat-item span {
  display: block;
  color: #000;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 3.5);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-carousel {
  position: relative;
}
.gallery-controls {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.gallery-control {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--comaco-red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gallery-control:hover {
  transform: scale(1.06);
}
.gallery-control:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
.gallery-controls[hidden] {
  display: none;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-track img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .gallery-track {
    grid-auto-columns: calc((100% - 18px) / 1.35);
  }
  .gallery-controls {
    padding: 0 10px;
  }
  .gallery-control {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 55px;
}
.sidebar h2 {
  margin: 0 0 14px;
  color: #006f52;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.category-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  font-size: 19px;
}
.category-list li {
  margin: 0 0 24px;
}
.category-list .active {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 18px;
  background: #bf2934;
  color: #fff;
  text-transform: uppercase;
}
.catalog-top {
  min-height: 44px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
}
.catalog-top strong {
  color: #006f52;
}
.sort-pill {
  min-width: 260px;
  border: 2px solid #333;
  border-radius: 16px;
  position: relative;
}
.sort-pill:after {
  content: "›";
  position: absolute;
  right: -2px;
  top: -7px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #bf2934;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta-box {
  margin: 64px 0 0;
  padding: 55px 24px;
  border: 5px solid #006f52;
  text-align: center;
}
.cta-box .line-icon {
  margin: 0 auto 18px;
  color: #bf2934;
}
.cta-box h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
}
.cta-box p {
  margin: 8px 0 28px;
  font-size: 34px;
}
.partner-card {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
  align-items: center;
  padding: 34px 48px;
  background: #f3f5f3;
  box-shadow: none;
}
.partner-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}
.partner-card h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.partner-card p {
  font-size: 21px;
  line-height: 1.05;
}
.text-image {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 78px;
  align-items: center;
}
.text-image h2 {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
}
.text-image p {
  font-size: 21px;
}
.value-item,
.step-item {
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.value-item .line-icon,
.step-item .line-icon {
  color: #006f52;
}
.value-item h3,
.step-item h3 {
  margin: 0;
  color: #006f52;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
}
.value-item p,
.step-item p {
  max-width: 210px;
  margin: 0 auto;
  font-weight: 700;
}
.sponsor-band {
  background: #f3f5f3;
  padding: 44px 0;
}
.sponsor-band h2 {
  font-size: 31px;
  font-weight: 700;
  text-transform: uppercase;
}
.sponsor-band p {
  font-size: 23px;
}
.assistance-grid .service-card {
  min-height: 260px;
  padding: 48px 58px;
  background: #f3f5f3;
  box-shadow: none;
}
.assistance-grid .service-card .line-icon {
  color: #006f52;
  margin-bottom: 24px;
}
.assistance-grid .service-card h3 {
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
}
.assistance-grid .service-card p {
  font-size: 20px;
  font-weight: 700;
}
.support-split {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 60px;
  align-items: center;
}
.support-split h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.support-split p {
  font-size: 20px;
  font-weight: 700;
}
.rental-process {
  background: #f3f5f3;
  padding: 44px 0;
}
.site-footer {
  background: #006f52;
  color: #fff;
  padding: 72px 0 58px;
  text-align: center;
}
.site-footer h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1199px) {
  .utility-bar .container {
    justify-content: center;
    gap: 18px;
    font-size: 15px;
  }
  .nav-menu {
    gap: 15px;
    font-size: 14px;
  }
  .hero h1 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .utility-bar {
    display: none;
  }
  .main-nav .container {
    min-height: 86px;
  }
  .brand img {
    width: 245px;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }
  .nav-menu a {
    padding: 14px 0;
  }
  .nav-menu a:after {
    bottom: 7px;
  }
  .nav-menu.is-open {
    display: flex;
  }
  .hero {
    min-height: 520px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }
  .hero p {
    font-size: 21px;
  }
  .layout-with-sidebar,
  .text-image,
  .support-split {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
  .partner-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 34px 0;
  }
  .hero {
    min-height: 480px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }
  .hero-actions {
    gap: 12px;
  }
  .btn-red {
    min-height: 48px;
    border-radius: 14px;
    padding: 10px 18px;
  }
  .section-title {
    gap: 12px;
  }
  .section-title span {
    font-size: 19px;
    white-space: normal;
  }
  .catalog-top,
  .service-item,
  .why-item,
  .stat-item {
    align-items: flex-start;
  }
  .catalog-top {
    flex-direction: column;
  }
  .product-body h3 {
    font-size: 21px;
  }
  .product-body p,
  .partner-card p {
    font-size: 17px;
  }
  .cta-box h2 {
    font-size: 28px;
  }
  .cta-box p {
    font-size: 22px;
  }
  .site-footer h2 {
    font-size: 42px;
  }
}
.read-more .arrow-link {
  position: static;
  width: 24px;
  height: 24px;
  font-size: 18px;
}
.sort-pill::after {
  content: ">";
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 0;
}
.arrow-link::before {
  content: ">";
  display: block;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}
.read-more .arrow-link::before {
  font-size: 16px;
}
@media (max-width: 767px) {
  .stats .row {
    --bs-gutter-y: 1.25rem;
  }
  .stats .stat-item {
    flex: 0 0 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }
  .stats .line-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    flex-basis: 58px;
    border-width: 4px;
    border-radius: 9px;
    font-size: 15px;
    overflow: hidden;
  }
  .stat-item strong {
    font-size: 34px;
    line-height: 1;
  }
  .stat-item span {
    font-size: 20px;
    line-height: 1.05;
  }
  .section-title {
    padding-inline: 14px;
  }
  .section-title::before,
  .section-title::after {
    min-width: 38px;
  }
}
.site-footer {
  background: #006f52;
  color: #fff;
  padding: 82px 0 72px;
  text-align: left;
}
.site-footer h2,
.site-footer h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}
.site-footer p {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 500;
}
.site-footer a,
.site-footer a:hover {
  color: #fff;
}
.site-footer a:hover {
  text-decoration: underline;
}
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-list li {
  margin-bottom: 21px;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-policy {
  margin-top: 24px;
}
.footer-policy a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.footer-brands {
  columns: 1;
  column-gap: 48px;
}
.footer-contact-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-mail-icon {
  position: relative;
  width: 28px;
  height: 20px;
  display: inline-block;
  border-radius: 3px;
  background: #fff;
}
.footer-mail-icon::before,
.footer-mail-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 15px;
  height: 2px;
  background: #006f52;
}
.footer-mail-icon::before {
  left: 2px;
  transform: rotate(32deg);
  transform-origin: left center;
}
.footer-mail-icon::after {
  right: 2px;
  transform: rotate(-32deg);
  transform-origin: right center;
}
.footer-webmail {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 52px 0 42px;
  }
  .site-footer h2,
  .site-footer h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .site-footer p,
  .footer-list li {
    font-size: 18px;
  }
  .footer-brands {
    columns: 1;
  }
  .footer-policy a,
  .footer-webmail {
    font-size: 21px;
  }
}
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}
/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}
/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #fff;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: alpha(opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: alpha(opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}
/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: alpha(opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: alpha(opacity=100);
  /*IE7 fix*/
  opacity: 1;
}
/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Web Forms components */
:root {
  --comaco-green: #006f52;
  --comaco-green-dark: #063d2c;
  --comaco-red: #bf2934;
  --comaco-soft: #f3f5f3;
  --comaco-shadow: 0 12px 28px rgba(0, 111, 82, 0.18);
}
html,
body {
  height: auto !important;
  min-height: 100%;
}
body {
  overflow-x: hidden;
}
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1030;
}
.bg-gray {
  background: var(--comaco-soft);
}
.nav-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle-input:checked ~ .nav-menu {
  display: flex;
}
.bg-page {
  min-height: 380px;
  background-position: center;
  background-size: cover;
}
.breadcrumb {
  --bs-breadcrumb-divider: ">";
  padding: 1.25rem 0;
  margin: 0;
  background: transparent;
  color: #505a55;
  font-size: 0.95rem;
  font-weight: 700;
}
.breadcrumb a {
  color: var(--comaco-green);
}
.page-section,
#prod-section {
  padding: 3rem 0;
}
.page-section > .container,
#prod-section > .container {
  padding: 2.5rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--comaco-shadow);
}
.prod-box h1,
.prod-box h2,
.prod-box h3,
.prod-box h4,
.page-section h1 {
  color: var(--comaco-green-dark);
  font-weight: 700;
  text-transform: uppercase;
}
.prod-box p,
.page-section p {
  color: #25302c;
  font-size: 1.0625rem;
  line-height: 1.6;
}
.grid-box {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--comaco-shadow);
}
.grid-box img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.grid-box:hover img {
  transform: scale(1.035);
}
.grid-box h4 {
  min-height: 5.75rem;
  margin: 0;
  padding: 1.4rem 3.4rem 1.25rem 1.5rem;
  position: relative;
  color: var(--comaco-green-dark);
  font-size: 1.4rem;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}
.grid-box h4:after {
  content: ">";
  position: absolute;
  right: 1.4rem;
  bottom: 1.7rem;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--comaco-red);
  border-radius: 50%;
  font-size: 1rem;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.categories a {
  display: block;
  padding: 0.7rem 1.1rem;
  color: var(--comaco-green-dark);
  background: #edf3f0;
  border-radius: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.categories a:hover {
  color: #fff;
  background: var(--comaco-red);
}
.products {
  padding: 3rem 0;
  background: var(--comaco-soft);
}
.products h3 {
  color: var(--comaco-green-dark);
  font-weight: 700;
  text-transform: uppercase;
}
.products .about-carousel .item {
  overflow: hidden;
  margin: 0.75rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--comaco-shadow);
}
.products .about-carousel .item img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.products .about-carousel .caption {
  min-height: 5.5rem;
  padding: 1.25rem;
  position: static;
  color: #111;
  background: #fff;
  text-align: left;
}
.products .about-carousel .caption h3 {
  margin: 0;
  font-size: 1.35rem;
}
.products .about-carousel .caption p {
  margin: 0;
  color: #444;
}
.form-control,
.form-select {
  min-height: 2.875rem;
  border: 2px solid #dbe4df;
  border-radius: 0.65rem;
  box-shadow: none;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--comaco-green);
  box-shadow: 0 0 0 0.2rem rgba(0, 111, 82, 0.12);
}
.btn-form,
.submit_btn,
.btn-mod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.5rem;
  color: #fff !important;
  background: var(--comaco-red) !important;
  border: 0 !important;
  border-radius: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.content-red {
  color: var(--comaco-red);
}
.prod-carousel,
.owl-prod {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.owl-prod img,
.prod-carousel img,
.full {
  display: block;
  width: 100%;
  height: auto;
}
.prod-carousel .owl-controls .owl-prev,
.prod-carousel .owl-controls .owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  height: 3.75rem;
  margin: auto 0 !important;
  display: grid;
  place-items: center;
  color: #fff !important;
  background: var(--comaco-red) !important;
  border-radius: 0 !important;
  font-size: 1.875rem !important;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.prod-carousel .owl-controls .owl-prev:hover,
.prod-carousel .owl-controls .owl-next:hover {
  opacity: 1;
}
.prod-carousel .owl-controls .owl-prev {
  left: 0.9rem;
}
.prod-carousel .owl-controls .owl-next {
  right: 0.9rem;
}
.sell {
  margin-top: 1.25rem;
  padding: 1.9rem;
  color: #fff;
  background: var(--comaco-green);
  border-radius: 0.5rem;
}
.sell h2 {
  color: #fff;
  font-weight: 700;
}
.sell-page-breadcrumb-wrap {
  padding-top: 14px;
  padding-bottom: 10px;
}
.sell-page-breadcrumb {
  gap: 5px;
  padding: 0;
  font-size: 14px;
  line-height: 1.35;
}
.sell-page-breadcrumb span {
  color: #77817d;
}
.page-section.sell-intro-section {
  padding: 0 0 1.5rem;
}
.sell-intro-section > .sell-intro-card {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 111, 82, 0.08);
  border-radius: 1rem;
}
.sell-intro-section > .sell-intro-card:after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border: 2.75rem solid rgba(0, 111, 82, 0.045);
  border-radius: 50%;
  pointer-events: none;
}
.sell-intro-copy {
  max-width: 920px;
  position: relative;
  z-index: 1;
}
.sell-intro-copy h4 {
  margin: 0 0 0.7rem;
  color: var(--comaco-green-dark);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}
.sell-intro-copy p {
  margin-bottom: 1.4rem;
}
.sell-intro-copy ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}
.sell-intro-copy li {
  margin-bottom: 0.35rem;
}
.sell-intro-copy hr {
  margin: 1.75rem 0 0;
  border-color: rgba(0, 111, 82, 0.22);
  opacity: 1;
}
.page-section.sell-form-section {
  padding: 1.5rem 0 3.5rem;
}
.sell-form-section > .sell-form-shell {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 1rem;
}
.sell-form #frm_step2 {
  scroll-margin-top: 155px;
}
.sell-form .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.15rem;
}
.sell-form .form-control,
.sell-form .form-select {
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  background-color: #fbfcfb;
  border-color: #d6e2dc;
}
.sell-form textarea.form-control {
  height: 100%;
  min-height: 13.5rem;
  resize: vertical;
}
.sell-step-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 0.65rem;
  color: var(--comaco-green-dark);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
}
.sell-step-title:before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 0.75rem;
  background: var(--comaco-red);
  border-radius: 50%;
}
.sell-vehicle-fields {
  display: grid;
  gap: 1rem;
}
.sell-description-field {
  display: flex;
}
.sell-upload-panel {
  margin-top: 0.5rem;
  padding: 1.5rem;
  background: #f2f7f4;
  border-radius: 0.85rem;
}
.sell-upload-panel h5 {
  margin-bottom: 1rem;
  color: var(--comaco-green-dark);
  font-size: 1.05rem;
  font-weight: 700;
}
.sell-upload-panel input[type="file"] {
  padding: 0.45rem;
  background: #fff;
}
.sell-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.4rem;
}
.sell-form-actions small {
  color: #626d68;
}
.sell-form-actions .btn-form {
  gap: 0.65rem;
  flex: 0 0 auto;
}
.sell-form-actions .btn-form span {
  font-size: 1.5rem;
  line-height: 0.7;
}
.sell-privacy {
  padding-top: 0.45rem;
}
.sell-privacy input {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.45rem;
  accent-color: var(--comaco-green);
  vertical-align: -0.15rem;
}
.sell-privacy label {
  line-height: 1.45;
}
@media (max-width: 767.98px) {
  .page-section.sell-intro-section,
  .page-section.sell-form-section {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .sell-form textarea.form-control {
    min-height: 11rem;
  }
  .sell-form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .sell-form-actions .btn-form {
    width: 100%;
  }
}
.vehicle-breadcrumb-wrap {
  padding-top: 14px;
  padding-bottom: 10px;
}
.vehicle-breadcrumb {
  gap: 5px;
  padding: 0;
  font-size: 14px;
  line-height: 1.35;
}
.vehicle-breadcrumb span {
  color: #77817d;
}
#prod-section.vehicle-detail {
  padding: 10px 0 48px;
}
#prod-section.vehicle-detail > .container {
  padding: 32px;
}
#prod-section.vehicle-detail > .container > .row {
  --bs-gutter-x: 32px;
}
.vehicle-gallery-column {
  min-width: 0;
}
.vehicle-gallery-column #sync1 {
  position: relative;
  overflow: hidden;
  background: #f3f6f4;
  border-radius: 8px;
}
.vehicle-gallery-column #sync1 .owl-stage-outer {
  height: clamp(360px, 47vw, 600px);
}
.vehicle-gallery-column #sync1 .owl-stage,
.vehicle-gallery-column #sync1 .owl-item,
.vehicle-gallery-column #sync1 .item,
.vehicle-gallery-column #sync1 .item > a {
  height: 100%;
}
.vehicle-gallery-column #sync1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vehicle-gallery-column #sync1 .owl-controls {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}
.vehicle-gallery-column #sync1 .owl-nav {
  height: 100%;
}
.vehicle-gallery-column #sync1 .owl-prev,
.vehicle-gallery-column #sync1 .owl-next {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--comaco-red);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  font-size: 31px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.vehicle-gallery-column #sync1 .owl-prev:hover,
.vehicle-gallery-column #sync1 .owl-next:hover,
.vehicle-gallery-column #sync1 .owl-prev:focus,
.vehicle-gallery-column #sync1 .owl-next:focus {
  background: #aa2630;
  transform: translateY(-50%) scale(1.06);
}
.vehicle-gallery-column #sync1 .owl-prev.disabled,
.vehicle-gallery-column #sync1 .owl-next.disabled {
  opacity: 0.35;
}
.vehicle-gallery-column #sync1 .owl-prev {
  left: 16px;
}
.vehicle-gallery-column #sync1 .owl-next {
  right: 16px;
}
.vehicle-gallery-column #sync2 {
  margin-top: 12px;
  border-radius: 0;
}
.vehicle-gallery-column #sync2 .owl-stage-outer,
.vehicle-gallery-column #sync2 .owl-item,
.vehicle-gallery-column #sync2 .item {
  height: 96px;
}
.vehicle-gallery-column #sync2 img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border: 3px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.78;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.vehicle-gallery-column #sync2 .owl-item:hover img,
.vehicle-gallery-column #sync2 .owl-item.current img {
  border-color: var(--comaco-red);
  opacity: 1;
}
.vehicle-gallery-column #sync2 .owl-controls {
  display: none;
}
.vehicle-download-card {
  position: relative;
  margin-top: 18px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #edf6f2 0%, #f8fbf9 100%);
  border: 1px solid rgba(0, 111, 82, 0.14);
  border-radius: 12px;
}
.vehicle-download-card:after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(0, 111, 82, 0.045);
  border-radius: 50%;
  pointer-events: none;
}
.vehicle-download-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.vehicle-download-heading h3 {
  margin: 3px 0 0;
  color: var(--comaco-green-dark);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
}
.vehicle-download-kicker {
  color: var(--comaco-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vehicle-download-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vehicle-download-link {
  min-height: 64px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  color: var(--comaco-green-dark);
  background: #fff;
  border: 1px solid rgba(0, 111, 82, 0.15);
  border-radius: 9px;
  box-shadow: 0 5px 15px rgba(0, 70, 52, 0.07);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.vehicle-download-link:hover,
.vehicle-download-link:focus {
  color: var(--comaco-red);
  border-color: rgba(199, 38, 49, 0.4);
  box-shadow: 0 8px 20px rgba(0, 70, 52, 0.12);
  transform: translateY(-2px);
}
.vehicle-download-file-icon {
  position: relative;
  width: 26px;
  height: 32px;
  display: block;
  border: 2px solid var(--comaco-green);
  border-radius: 3px;
}
.vehicle-download-file-icon:before,
.vehicle-download-file-icon:after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 2px;
  background: var(--comaco-green);
}
.vehicle-download-file-icon:before {
  top: 11px;
  box-shadow: 0 6px 0 var(--comaco-green);
}
.vehicle-download-file-icon:after {
  top: 23px;
  right: 9px;
}
.vehicle-download-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--comaco-red);
  border-radius: 50%;
  font-size: 14px;
}
.vehicle-info-column {
  min-width: 0;
}
.vehicle-info-column > .item > h4 {
  margin-bottom: 10px;
  font-size: 27px;
  font-weight: 700;
}
.vehicle-info-column .prod-box h4 {
  margin-bottom: 20px;
  font-size: 24px;
}
.vehicle-sell-cta {
  position: relative;
  max-width: 920px;
  min-height: 138px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin: 32px auto 0;
  padding: 26px 34px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  background: linear-gradient(120deg, var(--comaco-green) 0%, #005944 100%);
  box-shadow: 0 10px 26px rgba(0, 111, 82, 0.2);
}
.vehicle-sell-cta:after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -76px;
  width: 210px;
  height: 210px;
  border: 32px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.vehicle-sell-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
}
.vehicle-sell-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.vehicle-sell-copy {
  position: relative;
  z-index: 1;
}
.vehicle-sell-copy h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
  text-transform: none;
}
.vehicle-sell-copy .btn {
  min-width: 145px;
  padding: 11px 20px;
  border: 0;
  border-radius: 18px;
  color: var(--comaco-green);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.vehicle-sell-copy .btn:hover,
.vehicle-sell-copy .btn:focus {
  color: #fff;
  background: var(--comaco-red);
}
@media (max-width: 991px) {
  #prod-section.vehicle-detail > .container {
    padding: 24px;
  }
  .vehicle-gallery-column #sync1 .owl-stage-outer {
    height: clamp(360px, 65vw, 540px);
  }
  .vehicle-sell-copy h2 {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .vehicle-breadcrumb-wrap {
    padding-top: 10px;
    padding-bottom: 6px;
  }
  #prod-section.vehicle-detail {
    padding-top: 6px;
  }
  #prod-section.vehicle-detail > .container {
    padding: 18px;
  }
  .vehicle-info-column {
    margin-top: 28px;
  }
  .vehicle-download-card {
    padding: 20px;
  }
  .vehicle-sell-cta {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
    text-align: center;
  }
  .vehicle-sell-icon {
    margin: 0 auto;
  }
  .vehicle-sell-copy h2 {
    align-items: center;
  }
}
.separator {
  margin: 2.5rem 0;
  border-color: #dbe4df;
  opacity: 1;
}
.galleria .item {
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.galleria img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}
.table {
  --bs-table-striped-bg: #f3f5f3;
}
.alert-warning {
  border: 0;
  background: #fff3cd;
}
@media (max-width: 767px) {
  .page-section,
  #prod-section {
    padding: 2rem 0;
  }
  .page-section > .container,
  #prod-section > .container {
    padding: 1.5rem 0.9rem;
    border-radius: 0;
    box-shadow: none;
  }
  .grid-box h4 {
    font-size: 1.2rem;
  }
}
/* Canva 2026 final layout */
:root {
  --comaco-green: #00775a;
  --comaco-dark: #003f32;
  --comaco-red: #c72d38;
  --comaco-soft: #f2f7f5;
}
body {
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1050;
  background: #fff;
}
.utility-bar {
  font-size: 14px;
  background: var(--comaco-green);
}
.utility-bar .container {
  min-height: 42px;
  gap: 25px;
}
.icon-dot {
  width: 23px;
  height: 23px;
  font-size: 12px;
}
.main-nav .container {
  min-height: 86px;
  gap: 28px;
}
.brand img {
  width: 235px;
  max-width: 29vw;
}
.nav-menu {
  gap: 22px;
  font-size: 14px;
}
.nav-menu a {
  padding: 30px 0 25px;
}
.nav-menu a:after {
  bottom: 20px;
  height: 3px;
  background: var(--comaco-red);
}
.nav-menu .btn-red:after {
  display: none !important;
}
.nav-menu .btn-red:hover,
.nav-menu .btn-red:focus {
  color: #fff;
  background: #ae2731;
  transform: translateY(-1px);
}
.hero {
  min-height: clamp(430px, 46.5vw, 650px);
  background-position: center 58%;
}
.hero.page-hero-noleggio {
  min-height: 380px;
}
.hero:before {
  background: linear-gradient(90deg, rgba(0, 48, 40, 0.78) 0%, rgba(0, 48, 40, 0.55) 48%, rgba(0, 48, 40, 0.32) 100%);
}
.hero h1 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: -1px;
}
.hero p {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.17;
}
.page-hero {
  min-height: 330px;
}
.page-hero h1 {
  font-size: 50px;
}
.page-hero .hero-lead {
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}
.breadcrumb-line {
  margin-bottom: 14px;
  font-size: 15px;
}
.section {
  padding: 54px 0;
}
.section-title {
  gap: 22px;
  margin-bottom: 32px;
}
.section-title:before,
.section-title:after {
  height: 4px;
}
.section-title span {
  font-size: 23px;
}
.home-products .section-title {
  margin-top: -6px;
}
.product-card {
  border-radius: 7px;
  box-shadow: 0 9px 22px rgba(0, 111, 82, 0.16);
}
.product-card img {
  aspect-ratio: 1;
  object-fit: contain;
}
.product-body {
  min-height: 128px;
  padding: 18px 50px 20px 22px;
}
.product-body h3 {
  font-size: 23px;
  line-height: 1.02;
}
.product-body p {
  font-size: 17px;
  line-height: 1.08;
}
.arrow-link {
  right: 18px;
  bottom: 18px;
  width: 27px;
  height: 27px;
  font-size: 22px;
}
.service-strip,
.why-strip {
  padding: 36px 0;
  background: var(--comaco-green);
}
.line-icon {
  flex-basis: 60px;
  width: 60px;
  height: 60px;
  border-width: 3px;
  border-radius: 9px;
  font-size: 24px;
}
.service-item,
.why-item,
.stat-item {
  gap: 15px;
}
.service-item h3,
.why-item h3 {
  font-size: 21px;
}
.service-item p,
.why-item p {
  font-size: 14px;
}
.stats {
  padding: 42px 0;
}
.stat-item strong {
  font-size: 30px;
}
.stat-item span {
  font-size: 15px;
}
.cta-box {
  margin-top: 42px;
  padding: 38px 22px;
  border-width: 4px;
}
.cta-box h2 {
  font-size: 32px;
}
.cta-box p {
  font-size: 20px;
}
.partner-card {
  min-height: 0;
  display: block;
  padding: 0;
  background: var(--comaco-soft);
  text-align: center;
}
.partner-card img {
  width: 100%;
  max-height: none;
  object-fit: cover;
}
.partner-card h3 {
  display: none;
}
.text-image {
  grid-template-columns: 0.85fr 1fr;
  gap: 55px;
}
.text-image h2 {
  font-size: 36px;
}
.text-image p {
  font-size: 18px;
}
.assistance-grid .service-card {
  min-height: 235px;
  padding: 32px;
  background: var(--comaco-soft);
}
.assistance-grid .service-card h3 {
  font-size: 22px;
}
.assistance-grid .service-card p {
  font-size: 16px;
}
.values-row .value-item {
  min-width: 150px;
}
.rental-process {
  padding: 0;
  background: transparent;
}
.hero.page-hero-noleggio {
  min-height: 320px;
  background-position: center 49%;
}
.rental-catalog {
  padding: 34px 0 26px;
}
.rental-catalog-layout {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.rental-sidebar {
  padding-top: 3px;
}
.rental-sidebar h2 {
  margin: 0 0 16px;
  color: var(--comaco-green);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.rental-category-all {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 15px;
  padding: 7px 16px;
  border-radius: 18px;
  background: var(--comaco-red);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.rental-category-all:hover,
.rental-category-all:focus {
  color: #fff;
  background: #aa2630;
}
.rental-category-nav {
  display: grid;
  gap: 10px;
}
.rental-category-nav a {
  color: #000;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
}
.rental-category-nav a:hover,
.rental-category-nav a:focus {
  color: var(--comaco-red);
}
.rental-toolbar {
  min-height: 35px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
  font-size: 13px;
}
.rental-toolbar p {
  display: flex;
  align-items: center;
  margin: 0;
  white-space: nowrap;
}
.rental-toolbar strong {
  margin: 0 3px;
  color: var(--comaco-green);
}
.rental-sort-line {
  width: 115px;
  height: 16px;
  margin-left: 7px;
  border-bottom: 2px solid #a9b7b3;
}
.rental-sort-arrow {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  margin-left: -1px;
  border-radius: 50%;
  background: var(--comaco-red);
  color: #fff;
  font-size: 17px;
  line-height: 1;
}
.rental-product-grid {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}
.rental-product-grid .product-card {
  height: 100%;
}
.rental-product-grid .product-body {
  min-height: 105px;
  padding: 14px 38px 14px 16px;
}
.rental-product-grid .product-body h3 {
  margin-bottom: 4px;
  font-size: 17px;
}
.rental-product-grid .product-body p {
  font-size: 14px;
  line-height: 1.08;
}
.rental-product-grid .arrow-link {
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  font-size: 18px;
}
.rental-contact-section {
  padding: 12px 0 30px;
}
.rental-contact {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 3px solid var(--comaco-green);
  text-align: center;
}
.rental-contact img {
  width: 68px;
  height: 68px;
  margin-bottom: 8px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(78%) saturate(2943%) hue-rotate(342deg) brightness(91%) contrast(88%);
}
.rental-contact h2 {
  margin: 0 0 3px;
  color: #000;
  font-size: 28px;
  line-height: 1.05;
}
.rental-contact p {
  margin: 0 0 12px;
  font-size: 18px;
}
.rental-contact .btn-red {
  min-width: 128px;
  min-height: 34px;
  padding: 7px 18px;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .rental-catalog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rental-category-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .hero.page-hero-noleggio {
    min-height: 280px;
  }
  .rental-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rental-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .rental-sort-line {
    width: 90px;
  }
  .rental-contact {
    min-height: 190px;
    padding: 22px 16px;
  }
  .rental-contact h2 {
    font-size: 23px;
  }
  .rental-contact p {
    font-size: 16px;
  }
}
.catalog-breadcrumb-wrap {
  padding-top: 14px;
  padding-bottom: 10px;
}
.catalog-breadcrumb {
  gap: 5px;
  padding: 0;
  font-size: 14px;
  line-height: 1.35;
}
.catalog-breadcrumb span {
  color: #77817d;
}
.catalog-subcategories {
  padding: 10px 0 50px;
  background: var(--comaco-soft);
}
.catalog-subcategory-panel {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--comaco-shadow);
}
.catalog-subcategory-title {
  margin-bottom: 30px;
}
.catalog-brand-heading {
  min-height: 54px;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.catalog-brand-heading img {
  width: auto;
  max-width: 170px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}
.catalog-category-card .catalog-category-link {
  height: 100%;
  display: block;
  color: inherit;
}
.catalog-category-card .product-body {
  min-height: 105px;
}
.catalog-category-card .product-body h3 {
  padding-right: 38px;
}
.catalog-category-count {
  min-width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin-top: 10px;
  padding: 0 8px;
  color: #fff;
  background: var(--comaco-green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.catalog-products .catalog-product .product-summary {
  max-height: 92px;
  overflow: hidden;
  font-size: 14px;
}
.catalog-products .catalog-product .product-summary p {
  font-size: 14px;
}
.accessory-catalog {
  padding: 12px 0 54px;
  background: var(--comaco-soft);
}
.accessory-catalog-title {
  margin-bottom: 28px;
}
.accessory-card {
  height: 100%;
}
.accessory-card .accessory-card-image {
  display: block;
  overflow: hidden;
  background: #f4f7f5;
}
.accessory-card .accessory-card-image img,
.accessory-card .accessory-card-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.accessory-card:hover .accessory-card-image img {
  transform: scale(1.025);
}
.accessory-card .product-body {
  min-height: 150px;
}
.accessory-card .product-body h3 {
  padding-right: 38px;
}
.accessory-card-placeholder {
  background: linear-gradient(135deg, transparent 47%, rgba(0, 111, 82, 0.08) 48%, rgba(0, 111, 82, 0.08) 52%, transparent 53%), #f4f7f5;
}
.atlas-page {
  padding: 10px 0 20px;
  background: var(--comaco-soft);
}
.atlas-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--comaco-shadow);
}
.atlas-intro h4 {
  margin: 0;
  color: var(--comaco-green-dark);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
}
.atlas-intro p {
  margin-bottom: 0;
}
.atlas-intro-copy {
  margin-top: 10px;
  color: #4f5c57;
}
.btn-atlas {
  flex: 0 0 auto;
  min-width: 210px;
  text-align: center;
}
.atlas-inventory {
  padding: 0 0 56px;
  background: var(--comaco-soft);
}
.atlas-inventory > .container {
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--comaco-shadow);
}
.atlas-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}
.atlas-toolbar h2 {
  margin: 3px 0 0;
  color: var(--comaco-green-dark);
  font-size: clamp(24px, 2.5vw, 32px);
}
.atlas-toolbar-kicker {
  color: var(--comaco-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.atlas-search {
  width: min(100%, 390px);
  color: var(--comaco-green-dark);
  font-size: 13px;
  font-weight: 700;
}
.atlas-search span {
  display: block;
  margin-bottom: 6px;
}
.atlas-table-wrap {
  overflow-x: auto;
  border: 1px solid #dce7e2;
  border-radius: 10px;
}
.atlas-table-wrap:empty {
  display: none;
}
.atlas-table {
  min-width: 760px;
  margin: 0;
  color: #26332e;
  font-size: 14px;
}
.atlas-table th {
  padding: 14px 12px;
  color: #fff;
  background: var(--comaco-green);
  border-bottom: 0;
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}
.atlas-table td {
  padding: 11px 12px;
  vertical-align: middle;
  border-color: #e3ebe7;
}
.atlas-table tr:nth-child(even) td {
  background: #f5f8f6;
}
.atlas-info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 34px;
  padding: 7px 13px;
  color: #fff;
  background: var(--comaco-red);
  border-radius: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.atlas-info-link:hover,
.atlas-info-link:focus {
  color: #fff;
  background: #aa2630;
}
.atlas-empty {
  margin: 20px 0 0;
  padding: 18px;
  color: #715b14;
  background: #fff4ca;
  border-radius: 8px;
}
.atlas-empty-static {
  margin-top: 0;
}
@media (max-width: 767px) {
  .accessory-catalog {
    padding-top: 6px;
  }
  .atlas-intro,
  .atlas-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .btn-atlas,
  .atlas-search {
    width: 100%;
  }
}
.product-links {
  margin-top: 14px;
  padding-right: 12px;
  font-size: 13px;
  color: var(--comaco-green);
}
.product-links .divider {
  margin: 0 5px;
  color: #aaa;
}
.site-footer {
  padding: 48px 0 38px;
  text-align: left;
  background: var(--comaco-green);
}
.site-footer h2 {
  font-size: 26px;
}
.site-footer h3 {
  font-size: 21px;
}
.site-footer p,
.site-footer li {
  font-size: 15px;
}
.utility-language {
  flex: 0 0 auto;
}
.utility-language .utility-language-toggle {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 16px;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}
.utility-language .utility-language-toggle:hover,
.utility-language .utility-language-toggle:focus,
.utility-language .utility-language-toggle[aria-expanded="true"] {
  color: var(--comaco-green);
  background: #fff;
}
.utility-language .dropdown-menu {
  min-width: 170px;
  margin-top: 7px !important;
  padding: 7px;
  border: 0;
  border-radius: 9px;
  box-shadow: 0 10px 28px rgba(0, 54, 43, 0.22);
}
.utility-language .dropdown-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--comaco-green-dark);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}
.utility-language .dropdown-item span {
  font-size: 11px;
  font-weight: 700;
}
.utility-language .dropdown-item:hover,
.utility-language .dropdown-item:focus,
.utility-language .dropdown-item.active {
  color: #fff;
  background: var(--comaco-green);
}
.utility-language .dropdown-item.disabled {
  color: #7b8782;
  background: transparent;
  opacity: 0.68;
  cursor: not-allowed;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover,
.footer-social a:focus {
  color: var(--comaco-green);
  background: #fff;
  border-color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .utility-bar {
    display: block;
  }
  .utility-bar .container {
    min-height: 38px;
    justify-content: flex-end;
    padding: 0 16px;
  }
  .utility-bar .utility-item {
    display: none;
  }
  .footer-social {
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .utility-bar .container {
    gap: 16px;
  }
  .nav-menu {
    gap: 13px;
    font-size: 12px;
  }
  .brand img {
    width: 205px;
  }
  .hero h1 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .main-nav .container {
    min-height: 76px;
  }
  .brand img {
    width: 210px;
    max-width: 62vw;
  }
  .nav-menu {
    top: 76px;
  }
  .nav-toggle-input:checked ~ .nav-menu {
    display: flex;
  }
  .hero {
    min-height: 440px;
  }
  .page-hero {
    min-height: 300px;
  }
  .partner-card {
    min-height: 190px;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 420px;
    background-position: 62% center;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }
  .hero p {
    font-size: 18px;
  }
  .page-hero .hero-lead {
    font-size: 23px;
  }
  .product-body {
    min-height: 116px;
  }
  .section {
    padding: 38px 0;
  }
  .section-title span {
    font-size: 18px;
  }
  .text-image {
    gap: 28px;
  }
  .text-image h2 {
    font-size: 29px;
  }
  .stats .stat-item {
    align-items: center;
  }
  .site-footer {
    text-align: center;
  }
}
/* Single, font-independent arrow used by every circular action. */
.arrow-link {
  font-size: 0 !important;
  line-height: 0;
}
.arrow-link::before,
.read-more .arrow-link::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}
/* Ricambi Canva fragment */
.ricambi-hero {
  background-position: center;
  background-color: var(--comaco-dark);
}
.ricambi-hero:before {
  background: linear-gradient(90deg, rgba(0, 54, 43, 0.94) 0%, rgba(0, 54, 43, 0.78) 48%, rgba(0, 54, 43, 0.38) 100%);
}
.ricambi-hero p:not(.hero-lead) {
  max-width: 790px;
  font-size: 17px;
}
.ricambi-card {
  height: 100%;
  padding: 32px 30px;
  border-radius: 8px;
  background: var(--comaco-soft);
  text-align: center;
}
.ricambi-card .line-icon {
  margin: 0 auto 22px;
  color: var(--comaco-green);
}
.ricambi-card h2 {
  margin: 0 0 12px;
  color: var(--comaco-green);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.ricambi-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.ricambi-card-secondary {
  background: #fff;
  border: 3px solid var(--comaco-green);
}
.ricambi-process {
  background: var(--comaco-soft);
}
.ricambi-process .section-title {
  background: #fff;
}
.ricambi-process .step-item p {
  max-width: 260px;
}
.ricambi-brand {
  height: 120px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 111, 82, 0.12);
}
.ricambi-brand img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.ricambi-support-box {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 50px;
  align-items: center;
  padding: 46px;
  border: 4px solid var(--comaco-green);
}
.ricambi-support-box .line-icon {
  margin-bottom: 18px;
  color: var(--comaco-red);
}
.ricambi-support-box h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}
.ricambi-support-box h3 {
  margin: 4px 0 14px;
  color: var(--comaco-green);
  font-size: 25px;
  font-weight: 700;
}
.ricambi-support-box p {
  margin: 0;
  font-size: 18px;
}
.ricambi-support-actions {
  text-align: center;
}
.ricambi-support-actions p {
  margin-bottom: 20px;
}
.ricambi-benefits .why-item h3 {
  font-size: 18px;
}
@media (max-width: 767px) {
  .ricambi-support-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
    text-align: center;
  }
  .ricambi-support-box .line-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .ricambi-support-box h2 {
    font-size: 27px;
  }
  .ricambi-card {
    padding: 26px 20px;
  }
}
.service-strip .line-icon {
  flex-basis: 90px;
  width: 90px;
  height: 90px;
}
.service-strip .service-item {
  align-items: flex-start;
}
.stats .line-icon {
  flex-basis: 90px;
  width: 90px;
  height: 90px;
}
.stats .service-item {
  align-items: flex-start;
}
.page-hero {
  min-height: 420px;
  padding: 44px 0;
}
.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.page-hero h1 {
  margin-bottom: 12px;
}
.page-hero .hero-lead {
  margin-bottom: 14px;
}
.page-hero p:not(.hero-lead) {
  max-width: 760px;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.28;
}
.page-hero-azienda {
  background-position: center 48%;
  min-height: clamp(430px, 46.5vw, 650px);
}
.page-hero-azienda::before {
  display: none;
}
.page-hero-servizi {
  background-position: center 55%;
  min-height: clamp(430px, 46.5vw, 650px);
}
.page-hero-ricambi {
  background-position: center;
  min-height: clamp(430px, 46.5vw, 650px);
}
.pictogram {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-grid;
  place-items: center;
  color: var(--comaco-green);
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
}
.pictogram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.canva-feature-grid .row {
  --bs-gutter-x: 12px;
}
.canva-feature-grid .service-card {
  min-height: 205px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 28px 30px;
  background: var(--comaco-soft);
  box-shadow: none;
  text-align: left;
}
.canva-feature-grid .service-card:hover {
  transform: none;
  box-shadow: none;
}
.canva-feature-grid .service-card .pictogram {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.canva-feature-grid .service-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 10px;
  color: #000;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}
.canva-feature-grid .service-card p {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 700;
}
.process-section {
  background: #fff;
}
.process-section .row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-section .row > * {
  width: auto;
}
.process-section .step-item {
  position: relative;
}
.process-section .step-item h3 {
  color: #000;
  font-size: 19px;
}
.process-section .step-item p {
  max-width: 250px;
  font-size: 14px;
  line-height: 1.25;
}
.process-section .step-number {
  position: absolute;
  top: 2px;
  left: calc(50% - 65px);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--comaco-green);
  color: #fff;
  font-weight: 700;
}
.process-section .pictogram {
  width: 70px;
  height: 70px;
  flex-basis: 70px;
  border: 0;
  border-radius: 0;
  font-size: 28px;
}
.process-section {
  padding-bottom: 10px;
}
.support-section {
  padding-top: 18px;
  padding-bottom: 32px;
}
.support-split {
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
}
.support-split > img {
  width: 100%;
  max-height: 310px;
  object-fit: cover;
}
.support-contact a,
.ricambi-support-actions a:not(.btn-red) {
  color: var(--comaco-green);
}
.support-contact strong::before,
.ricambi-support-actions strong::before {
  content: "\260E";
  display: inline-block;
  width: 24px;
  color: var(--comaco-green);
  font-size: 19px;
}
.support-contact a::before,
.ricambi-support-actions p a::before {
  content: "\2709";
  display: inline-block;
  width: 24px;
  color: var(--comaco-green);
  font-size: 17px;
}
.support-section .btn-red,
.ricambi-support-actions .btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 22px;
  border: 0;
  border-radius: 14px;
  background: var(--comaco-red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.company-story .text-image > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center 15%;
}
.company-story {
  padding: 42px 0 46px;
}
.company-story .text-image {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
}
.company-story h2 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.05;
}
.company-story p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.3;
}
.company-values {
  padding-bottom: 38px;
}
.company-values .section-title {
  margin-bottom: 28px;
}
.company-values .pictogram {
  width: 75px;
  height: 75px;
  margin-bottom: 4px;
  border: 0;
  border-radius: 0;
}
.company-values .pictogram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company-values .value-item {
  gap: 6px;
}
.company-values .value-item h3 {
  font-size: 17px;
}
.company-values .value-item p {
  max-width: 175px;
  font-size: 13px;
  line-height: 1.25;
}
.cms-stats {
  padding: 34px 0;
  background: var(--comaco-soft);
}
.cms-stats .stat-item {
  min-height: 72px;
  align-items: center;
}
.cms-stats .stat-item img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}
.cms-stats .stat-item strong {
  font-size: 26px;
}
.cms-stats .stat-item span {
  font-size: 14px;
}
.sponsor-images {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12px;
}
.sponsor-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .company-values .values-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }
  .company-values .values-row > * {
    width: auto;
  }
  .cms-stats .row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }
  .cms-stats .row > * {
    width: auto;
  }
  .sponsor-band {
    padding: 32px 0;
  }
  .sponsor-band .row {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
  }
  .sponsor-band .row > * {
    width: auto;
  }
  .sponsor-band h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .sponsor-band p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
  }
  .sponsor-images img {
    height: 168px;
  }
}
.ricambi-process {
  background: #fff;
}
.why-section-title {
  margin: 0;
  padding: 12px 0 10px;
  background: #fff;
}
.why-strip .row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.why-strip .row > * {
  width: auto;
}
.why-strip .line-icon {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
  border: 0;
  border-radius: 0;
}
.why-strip .line-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ricambi-brands {
  padding: 30px 0 34px;
}
.ricambi-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 24px;
  align-items: center;
}
.ricambi-brand {
  height: 76px;
  padding: 4px 8px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.ricambi-brand img {
  max-height: 68px;
}
.ricambi-wordmark {
  color: #000;
  font-size: 24px;
  line-height: 0.78;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}
.ricambi-wordmark-muted {
  color: #8e9493;
  font-size: 25px;
  line-height: 1;
  text-transform: lowercase;
}
.ricambi-wordmark-muted small {
  display: block;
  margin-top: 2px;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}
.ricambi-wordmark-blue {
  color: #214e9a;
  font-size: 20px;
  text-transform: none;
}
.ricambi-support {
  padding: 28px 0 34px;
}
.ricambi-support-box {
  grid-template-columns: 100px minmax(0, 1fr) 220px;
  gap: 20px;
  padding: 22px 32px;
  border-width: 3px;
  border-radius: 16px;
}
.ricambi-support-box .ricambi-support-icon {
  width: 92px;
  height: 92px;
  margin: 0;
  color: var(--comaco-green);
}
.ricambi-support-box h2 {
  font-size: 22px;
}
.ricambi-support-box h3 {
  margin: 2px 0 8px;
  font-size: 20px;
}
.ricambi-support-box p {
  font-size: 15px;
}
.ricambi-support-actions {
  text-align: left;
}
.ricambi-support-actions .btn-red {
  min-height: 42px;
  padding: 8px 22px;
  border-radius: 14px;
  font-size: 15px;
}
.ricambi-benefits {
  padding: 28px 0;
}
.ricambi-benefits .why-item {
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .page-hero {
    min-height: 390px;
  }
  .support-split {
    grid-template-columns: 1fr;
  }
  .company-story .text-image > img {
    height: 280px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .utility-bar {
    display: block;
    font-size: 12px;
  }
  .utility-bar .container {
    min-height: 26px;
    max-width: 100%;
    justify-content: flex-end;
    gap: 14px;
    padding: 0 18px;
  }
  .utility-item {
    gap: 5px;
  }
  .icon-dot {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .main-nav .container {
    min-height: 56px;
    max-width: 100%;
    gap: 18px;
    padding: 0 18px;
  }
  .brand img {
    width: 190px;
    max-width: 22vw;
  }
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    font-size: 12px;
  }
  .nav-menu a {
    padding: 20px 0 16px;
  }
  .nav-menu a:after {
    bottom: 12px;
    height: 3px;
  }
  .nav-menu .btn-red {
    min-height: 42px;
    padding: 6px 17px;
    border-radius: 14px;
    font-size: 15px;
  }
  .page-hero {
    min-height: 350px;
    padding: 30px 0;
  }
  .page-hero .container {
    max-width: calc(100% - 96px);
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .page-hero .hero-lead {
    font-size: 23px;
  }
  .page-hero p:not(.hero-lead) {
    max-width: 650px;
    font-size: 15px;
  }
  .page-hero-azienda {
    min-height: 430px;
    padding: 0;
  }
  .company-story .text-image > img {
    height: 300px;
  }
  .canva-feature-grid {
    padding: 30px 0;
  }
  .canva-feature-grid .container {
    max-width: calc(100% - 54px);
  }
  .canva-feature-grid .row > .col-md-6 {
    width: 33.333333%;
  }
  .canva-feature-grid .service-card {
    min-height: 145px;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px 24px;
  }
  .canva-feature-grid .service-card .pictogram {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .canva-feature-grid .service-card h3 {
    font-size: 17px;
  }
  .canva-feature-grid .service-card p {
    margin-top: 10px;
    font-size: 13px;
  }
  .process-section {
    padding: 24px 0 8px;
  }
  .process-section .container {
    max-width: calc(100% - 70px);
  }
  .process-section .step-item h3 {
    font-size: 16px;
  }
  .process-section .step-item p {
    font-size: 12px;
  }
  .support-split {
    max-width: calc(100% - 116px);
    grid-template-columns: 0.75fr 1fr;
  }
  .why-section-title {
    padding: 8px 0;
  }
  .why-strip {
    padding: 30px 0;
  }
  .why-strip .container {
    max-width: calc(100% - 70px);
  }
  .why-strip .line-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
  .why-strip .why-item {
    gap: 12px;
  }
  .why-strip .why-item h3 {
    font-size: 16px;
  }
  .why-strip .why-item p {
    font-size: 12px;
  }
  .ricambi-brands .container,
  .ricambi-support .container {
    max-width: calc(100% - 76px);
  }
}
@media (max-width: 767px) {
  .process-section,
  .site-footer {
    overflow-x: hidden;
  }
  .company-story .text-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .company-story .text-image > img {
    height: 240px;
  }
  .process-section .row,
  .site-footer .row {
    margin-right: 0;
    margin-left: 0;
  }
  .process-section .row,
  .why-strip .row {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 360px;
    padding: 34px 0;
  }
  .page-hero p:not(.hero-lead) {
    font-size: 15px;
  }
  .canva-feature-grid .service-card {
    min-height: 0;
    padding: 24px;
  }
  .section-title span {
    white-space: normal;
  }
  .process-section .step-number {
    left: calc(50% - 50px);
  }
  .cms-stats .stat-item {
    justify-content: flex-start;
  }
  .sponsor-images {
    grid-template-columns: 1fr 1fr;
  }
  .sponsor-images img {
    height: 160px;
  }
  .ricambi-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }
  .ricambi-support-box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
    text-align: center;
  }
  .ricambi-support-box .ricambi-support-icon {
    margin: 0 auto;
  }
  .ricambi-support-actions {
    text-align: center;
  }
}
.partner-showcase-grid > [class*="col-"] {
  display: flex;
}
.partner-showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(130px, 42%);
  width: 100%;
  min-height: 350px;
  overflow: hidden;
  border-radius: 10px;
  background: #f1f2f0;
}
.partner-showcase-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  padding: 32px 0 28px 34px;
  flex-direction: column;
  align-items: flex-start;
}
.partner-showcase-card__logo {
  width: auto;
  max-width: 230px;
  height: 72px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}
.partner-showcase-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}
.partner-showcase-card p {
  max-width: 330px;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.12;
}
.partner-showcase-card__link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 14px;
  color: #00775a;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.partner-showcase-card__link:hover,
.partner-showcase-card__link:focus-visible {
  color: #00775a;
  text-decoration: underline;
}
.partner-showcase-card__arrow {
  display: inline-grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border-radius: 50%;
  background: #c72d38;
  color: #fff;
  font-size: 29px;
  line-height: 1;
  text-decoration: none;
}
.partner-showcase-card__media {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 24px 0;
}
.partner-showcase-card__media img {
  width: 100%;
  max-height: 270px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@media (max-width: 1199px) {
  .partner-showcase-card {
    min-height: 330px;
  }
  .partner-showcase-card__content {
    padding-left: 28px;
  }
  .partner-showcase-card__logo {
    max-width: 210px;
    height: 64px;
  }
  .partner-showcase-card p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .partner-showcase-card {
    grid-template-columns: minmax(0, 62%) minmax(105px, 38%);
    min-height: 310px;
  }
  .partner-showcase-card__content {
    padding: 24px 0 22px 22px;
  }
  .partner-showcase-card__logo {
    max-width: 175px;
    height: 54px;
    margin-bottom: 18px;
  }
  .partner-showcase-card h3 {
    font-size: 20px;
  }
  .partner-showcase-card p,
  .partner-showcase-card__link {
    font-size: 16px;
  }
  .partner-showcase-card__media {
    padding: 18px 12px 18px 0;
  }
}