html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

.large-container {
    background-color: #F2F2F2;
}

main {
  height: auto;
  overflow-x: hidden;
  overflow-y: hidden;
  margin: 0 auto;
  max-width: 1920px;
  padding: 0;
    background-color: #FFFFFF;
}

@media screen and (min-width: 1921px) {
    main {
        padding: 0 24px;
        box-sizing: content-box;
    }
}

ol, ul {
  list-style: none;
  font-family: 'Roboto', sans-serif;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
INDEX.HTML - START
*/
.top-menu-mobile {
  width: 100%;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
  background-color: var(--top-header-background-color);
}

.top-menu-mobile .contact-icons {
  border: none;
  padding: 0;
  width: 55px;
}

.top-menu-mobile .contact-icons span {
  padding: 3px 3px 0 3px;
  background-color: var(--top-header-icon-background-color);
  border-radius: 4px;
}

.top-menu-mobile .contact-icons span svg path {
    fill: var(--top-header-icon-color);
}

header, .scroll-header-wrapper {
  height: 90px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0px 60px;
  background-color: #FFF;
  max-width: 1968px;
  margin: 0 auto;
}

@media screen and (min-width: 1921px) {
  header, .scroll-header-wrapper {
    padding: 0 24px;
  }
  div.top-header-bar {
      padding: 0;
      max-width: 1968px;
  }
}

header img {
  width: 100%;
  height: 100%;
  max-height: 70px;
  display: block;
  min-width: 150px;
  object-fit: contain;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  gap: 40px;
}

header ul li {
  padding: 0px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header ul li a, header ul li .link-wrapper .navigation-link {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #707070;
  text-decoration: none;
  position: relative;
  /* Ensure the relative position for pseudo-elements */
  padding-bottom: 5px;
  white-space: nowrap;
  cursor: pointer;
}

header ul li a::after, header ul li .link-wrapper .navigation-link::after {
  content: "";
  position: absolute;
  left: 50%;
  /* Start from the center */
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--primary-color);
  -webkit-transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  /* Apply transition to width and left position */
}

header ul li a:hover::after, header ul li a.active::after {
  width: 100%;
  /* Expand the width to reach both ends */
  left: 0;
  /* Move to the starting position */
}

header ul li a.no-hover:hover::after {
    width: 0;
}

header ul li .link-wrapper .navigation-link.active::after, header ul li:hover .link-wrapper .navigation-link::after {
    width: 100%;
    left: 0;
}

@media screen and (max-width: 1100px) {
    header ul li .link-wrapper .navigation-link.active::after, header ul li:hover .link-wrapper .navigation-link::after {
        width: 0;
    }
}

.logo {
  margin-right: 50px;
  cursor: pointer;
  max-width: 300px;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header-content .mobile-nav-header {
  display: none;
}

nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.custom-header .dropdown li {
  border-left: 4px solid #707070;
  border-radius: 0;
  margin-bottom: 1px;
}

.custom-header .dropdown li:hover, .custom-header .dropdown li.active {
  border-left: 4px solid var(--primary-color);
}

.custom-header .dropdown li a {
  border-radius: 0;
}

.custom-header .dropdown li a:hover, .custom-header .dropdown li.active a {
  background-color: transparent;
  color: var(--primary-color);
}

.custom-header .dropdown > div > a:first-child {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-image-title-color);
  padding: 8px 32px 8px 0;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 18px;
  width: 100%;
  min-height: 68px;
  white-space: normal;
  transition: color 0.3s ease-in-out;
}

.custom-header .dropdown > div > a:first-child.active {
    color: var(--primary-color);
}

.custom-header .dropdown > div > a:first-child:hover {
    color: var(--primary-color);
}

.custom-header .dropdown > div > a:first-child::after {
  content: '';
  display: none;
}

.top-header-bar {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 32px;
  background-color: var(--top-header-background-color);
  padding: 0 60px 0 60px;
}

.top-header-bar .header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.top-header-bar .header-info .contact-icons {
  width: auto;
  gap: 35px;
  border: none;
  padding: 0;
}

.top-header-bar .header-info .contact-icons span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  color: #707070;
  text-decoration: none;
  gap: 8px;
  color: var(--top-header-icon-text-color);
}

.top-header-bar .header-info .contact-icons span a .img-container {
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--top-header-icon-background-color);
  border-radius: 4px;
  transition: background-color 0.3s ease-in;
}

.top-header-bar .header-info .contact-icons span a .img-container svg path {
    fill: var(--top-header-icon-color);
}

/* Define the shake animation */
@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(15deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

/* Apply the shake animation on hover */
.top-header-bar .header-info .contact-icons span a:hover .img-container svg, .scroll-header .header-info .contact-icons span a:hover svg {
    animation: shake 0.5s;
}

.employee-contact-information-phone-container:hover .employee-contact-information-phone svg, .employee-contact-information-email-container:hover .employee-contact-information-email svg {
    animation: shake 0.5s;
}

.employee-contact-information-phone-container span a, .employee-contact-information-email-container span a {
    transition: color 0.3 ease-in-out;
}

.employee-contact-information-phone-container:hover span a, .employee-contact-information-email-container:hover span a {
    color: var(--primary-color);
}




.custom-header.top-header .header-content {
  -webkit-box-pack: between;
      -ms-flex-pack: between;
          justify-content: space-between;
}

.custom-header.scroll-header {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  max-width: 100%;
  /* Ensures it takes up space in the layout */
}

.custom-header.scroll-header.visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.hamburger {
  display: none;
  background-color: var(--primary-color);
  border-radius: 4px;
  width: 40px;
  height: 36px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 4px;
  background-color: #FFF;
}

.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-content nav ul li:hover .dropdown, .dropdown:hover {
  max-height: 100%;
  /*Set the maximum height when hovered */
  height: auto;
   /*Allow the dropdown to expand to its content */
  padding: 60px 80px 60px 80px;
}

.dropdown {
  position: absolute;
  top: 122px;
  /* Position the dropdown below the parent <li> */
  left: 0;
  /* Position the dropdown at the left edge of the parent <li> */
  width: calc(100% - 10%);
  /* Make the dropdown full width */
  max-width: 1256px;
  max-height: 0;
  /* Set max-height to 0 initially */
  height: 0;
  padding: 0;
  overflow: hidden;
  /* Hide overflowing content */
  -webkit-box-shadow: 0px 4px 4px 0px #00000040;
          box-shadow: 0px 4px 4px 0px #00000040;
  background-color: #FFFFFF;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media screen and (min-width: 1920px) {
    .dropdown {
        left: 50%;
        right: 50%;
        transform: translateX(-55%);
    }
}


.custom-header.scroll-header .header-content nav ul li:hover .dropdown, .custom-header.scroll-header .header-content .dropdown:hover {
  top: 90px;
  max-height: 700px;
}

@media screen and (min-width: 1101px) {
  /* Disable CSS hover behavior for navigation links */
  header ul li:hover .link-wrapper .navigation-link::after {
    width: 0;
    left: 50%;
  }
  
  /* JavaScript controlled hover state */
  header ul li.js-nav-hover .link-wrapper .navigation-link::after {
    width: 100% !important;
    left: 0 !important;
  }
  
  /* Keep active state working normally */
  header ul li .link-wrapper .navigation-link.active::after {
    width: 100%;
    left: 0;
  }
}

/* Override hover behavior on larger screens for JavaScript control */
@media screen and (min-width: 1101px) {
  /* Disable CSS hover behavior */
  .header-content nav ul li:hover .dropdown,
  .dropdown:hover {
    max-height: 0;
    padding: 0;
  }
  
  /* JavaScript controlled show state */
  .dropdown.js-show {
    max-height: 100% !important;
    height: auto !important;
    padding: 60px 80px 60px 80px !important;
  }
  
  /* For scroll header */
  .custom-header.scroll-header .dropdown.js-show {
    top: 90px !important;
    max-height: 700px !important;
  }
}
.dropdown > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc(25% - 20px);
}

.dropdown > div > span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-image-title-color);
  padding: 8px 32px 8px 0;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 18px;
  width: 100%;
  min-height: 68px;
}

.dropdown > div > ul {
  display: block;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  color: #707070;
  text-transform: none;
  list-style-type: none;
  padding-left: 0px;
  width: 100%;
}

.dropdown > div > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  padding: 7px 0;
}

.dropdown > div > ul > li > a:hover, .dropdown > div > ul > li:hover > a {
  color: var(--primary-color);
}

.dropdown > div > ul > li > a:hover > .subdropdown-list li a {
  color: var(--primary-color);
}

.dropdown > div > ul > li > a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #707070;
  text-transform: none;
  width: 100%;
  display: inline-block;
  padding: 0 20px 0 20px;
  -webkit-transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
  border-radius: 4px;
  white-space: break-spaces;
}

.dropdown > div > ul > li > a::after {
  display: none;
  height: 0;
  width: 0;
}

.dropdown .subdropdown-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 10px;
  gap: 1px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.dropdown .subdropdown-list li {
  width: 180px;
  height: 32px;
  padding: 0;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: transparent;
  margin-left: 20px;
  -webkit-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
}

.dropdown .subdropdown-list li a {
  color: #707070;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  font-family: "Roboto", sans-serif;
  padding: 0;
  display: inline-block;
  width: 100%;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
  text-transform: none;
}

.dropdown .subdropdown-list li:hover {
  background-color: #707070;
}

.dropdown .subdropdown-list li:hover a {
  color: #FFFFFF;
}

header ul.subdropdown-list li a:hover::after, header ul.subdropdown-list li a.active::after {
  width: 0;
}

.contact-icons {
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  padding: 5px 30px;
  width: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-icons img, .search img {
  width: 18px;
  height: 18px;
  min-width: 0;
}

.work-hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 30px;
  font-family: "Open sans";
  font-weight: 500;
  font-size: 13px;
  line-height: 15.6px;
  white-space: nowrap;
  color: var(--top-header-text-color);
}

.scroll-header .work-hours {
    color: var(--scroll-header-text-color);
}

.search {
  padding-left: 30px;
}

form.search {
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  width: 340px;
  max-width: 50px;
  height: 48px;
}

form.search span svg path {
    fill: var(--primary-color);
}

form.search.expanded {
  max-width: 100%;
}

form.search.expanded input[type="search"] {
  display: block;
}

form.search.expanded span {
  width: 50px;
}

input[type="search"] {
  border: none;
  background: transparent;
  margin: 0;
  padding: 7px 8px;
  font-size: 14px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
  width: 100%;
}

input[type="search"]::-webkit-input-placeholder {
  color: #bbb;
}

input[type="search"]:-ms-input-placeholder {
  color: #bbb;
}

input[type="search"]::-ms-input-placeholder {
  color: #bbb;
}

input[type="search"]::placeholder {
  color: #bbb;
}

form.search input {
  display: none;
}

form.search span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  cursor: pointer;
  opacity: 1;
  margin: 0 auto;
}

form.search span:focus, input[type="search"]:focus {
  outline: none;
}

.banner {
    width: 100%; /* Full viewport width */
    height: calc(100vw * 795 / 1920); /* Maintain aspect ratio for desktop */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    --background-image: var(--image-desktop);
    background-image: var(--background-image);
}

/* Large screens (e.g., desktops and 4K monitors) */
@media (min-width: 1921px) {
    .banner {
        height: 800px; /* Fixed height for very large screens */
    }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .banner {
        --background-image: var(--image-tablet);
        height: calc(100vw * 1248 / 960); /* Maintain aspect ratio for tablet */
    }
}

/* Mobile screens (max-width: 600px) */
@media (max-width: 600px) {
    .banner {
        --background-image: var(--image-mobile);
        height: calc(100svh - 120px); /* Maintain aspect ratio for mobile */
        min-height: 500px; /* Ensure a minimum height for smaller devices */
        align-items: flex-start;
    }
}




.banner .banner-text {
  width: 100%;
  padding-left: 324px;
  overflow-y: hidden;
}

.banner .banner-text ul {
    list-style-type: disc;
    padding-left: 20px;
}

.banner-text h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 144px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.banner-text div {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 40px;
  color: #FFF;
}

.banner-text .cta-button {
  line-height: 180px;
}

.cta-button {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background: var(--primary-color);
  border-radius: 8px;
  padding: 21px 72px;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.cta-button:hover {
  background: var(--text-image-title-color);
}

.blob {
  background: #27BD51;
  border-radius: 50%;
  margin: 10px;
  height: 12px;
  width: 12px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(217, 217, 217, 0.7);
            box-shadow: 0 0 0 0 rgba(217, 217, 217, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(217, 217, 217, 0);
            box-shadow: 0 0 0 10px rgba(217, 217, 217, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(217, 217, 217, 0);
            box-shadow: 0 0 0 0 rgba(217, 217, 217, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(217, 217, 217, 0.7);
            box-shadow: 0 0 0 0 rgba(217, 217, 217, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(217, 217, 217, 0);
            box-shadow: 0 0 0 10px rgba(217, 217, 217, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(217, 217, 217, 0);
            box-shadow: 0 0 0 0 rgba(217, 217, 217, 0);
  }
}

.slider-container.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
  bottom: 35px;
}

.slick-dots li {
  width: 64px;
  border-radius: 8px;
  height: 4px;
  background-color: #FFFFFF;
  margin: 0 12px;
}

.about-us-slider .slick-dots li {
    width: 24px;
}

.slick-dots li.slick-active {
  background-color: var(--primary-color);
}

.slick-dots li button {
  width: 64px;
}

.slider-container {
  overflow-y: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

.slider-container .slick-dots li button:before {
  display: none;
}

.fixed-contact {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 1921px) {
  .fixed-contact {
    right: calc((100% - 1920px) / 2 + 10px); /* Adjust the right position based on the centered container */
  }
}

.fixed-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 56px;
  overflow: hidden;
  height: 56px;
  border-radius: 28px;
  background-color: #fff;
  text-decoration: none;
  padding-left: 8.2px;
  border: 1px solid var(--primary-color);
  margin-bottom: 10px;
  -webkit-transition: background-color 0.3s ease, border 0.3s ease, width 0.3s ease;
  transition: background-color 0.3s ease, border 0.3s ease, width 0.3s ease;
  text-align: left;
}

.fixed-contact a span {
  display: none;
  white-space: nowrap;
}

.fixed-contact a:hover span {
  display: inline-block;
}

.fixed-contact a:hover {
  background-color: var(--primary-color);
  width: 240px;
}

.fixed-contact a svg path {
  fill: var(--primary-color);
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.fixed-contact a:hover svg path {
  fill: #fff;
}

.fixed-contact a:hover span {
  color: #FFF;
}

.fixed-contact span {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  color: var(--primary-color);
  display: block;
  margin-left: 14px;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.secondary-banners {
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
  gap: 24px;
}

.secondary-banners a {
    width:33%;
    height: 210px;
    text-decoration: none;
}

.secondary-banner-item {
  width: 100%;
  height: 210px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.secondary-banner-item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.secondary-banner-item.active:first-child {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.secondary-banner-item.active:last-child {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.secondary-banner-item:first-child {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.secondary-banner-item:last-child {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.secondary-banner-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.secondary-banner-item:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.8;
  /* Adjust the alpha value (last parameter) to control darkness */
}

.secondary-banner-item .text {
  width: 100%;
  padding-left: 5%;
  z-index: 1;
}

.secondary-banner-item .text h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  text-transform: uppercase;
  color: #FFF;
}

.secondary-banner-item .text span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #FFF;
}

.used-vehicles-slider {
  margin: 52px 0 0 auto;
  max-width: 1920px;
  padding-left: 324px;
  box-sizing: border-box;
  border-bottom: 1px solid #D8D8D8;
  overflow: hidden;
}

.secondary-banners-arrows .next {
  border-radius: 50% 0 0 50%;
}

.secondary-banners-arrows .prev {
  border-radius: 0 50% 50% 0;
}

.secondary-banners-arrows .prev.disabled, .secondary-banners-arrows .next.disabled {
  opacity: 0;
}

button {
  background-color: #ddd;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 10px;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

button.slick-disabled {
  opacity: 0.6;
}

.title {
  border-bottom: 1px solid #D8D8D8;
  padding: 48px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 80px auto;
}

.text-center {
  text-align: center;
}

.border-bottom {
  border-bottom: 1px solid #D8D8D8;
}

.border-top {
  border-top: 1px solid #D8D8D8;
}

.used-vehicles-slider .title {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          margin: 0 auto 80px 0;
}

.title h3 {
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  color: var(--text-image-title-color);
}

.slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          gap: 8px;
}

.slider-arrows span:hover {
  background-color: var(--text-image-title-color);
}

.slider-arrows-mobile {
  display: none;
  margin-top: 53px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.secondary-banners-arrows {
  display: none;
  position: relative;
  top: -150px;
  overflow: hidden;
}

.used-vehicles-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
  margin-right: 24px;
  max-width: 1272px;
}

.list {
    margin: 0 -12px; /* Counteract padding on vehicle-container */
}

.less-vehicles .slick-track {
    margin-left: 0;
}

.vehicle-container {
    max-width: 432px; /* Adjusted to ensure responsiveness */
    width: 408px; /* Desired width of the container */
    margin: 0 auto; /* Center the container */
    padding: 0 12px; /* 12px spacing on each side */
    box-sizing: border-box;
    overflow: hidden; /* Ensure no overflow issues */
}

.vehicle-card {
    width: 100%; /* Take full width of the container */
    margin-right: 12px; /* Spacing between cards */
    box-sizing: border-box;
}

.vehicle-card:hover .vehicle-title h4 {
    color: var(--primary-color);
}

/* Ensure last vehicle-card has no right margin */
.vehicle-card:last-child {
    margin-right: 0;
}

.related-vehicles-no-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 308px;
}


.cta-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
  margin-right: 12px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.cta-contact .contact, .cta-contact .contact-mail, .cta-contact .contact-phone {
  background-color: var(--text-image-title-color);
  -webkit-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.cta-contact .contact {
  border-top-left-radius: 45.5px;
  border-bottom-left-radius: 45.5px;
}

.cta-contact .contact:hover, .cta-contact .contact-mail:hover, .cta-contact .contact-phone:hover {
  background-color: var(--primary-color);
}

.cta-contact .contact-phone {
  border-top-right-radius: 45.5px;
  border-bottom-right-radius: 45.5px;
}

.cta-contact a {
  text-decoration: none;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 24px;
  text-transform: uppercase;
  padding: 20px 20px;
}

.cta-contact .contact-mail {
  border-left: 1px solid #383838;
  border-right: 1px solid #383838;
}

.vehicle-next.disabled {
    cursor: not-allowed;
}

.vehicle-next.disabled:hover {
    background-color: var(--primary-color);
}

.used-vehicles-slider .title span, .slider-arrows span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  background-color: var(--primary-color);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}

.secondary-banners-arrows span.prev {
  position: relative;
  left: -15px;
}

.secondary-banners-arrows span.next {
  position: relative;
  right: -15px;
}

.used-vehicles-slider .title span:hover {
  background-color: var(--text-image-title-color);
}

.used-vehicles-slider .vehicle-card img {
    max-height: 308px;
    object-fit: contain;
    aspect-ratio: auto;
    min-height: 308px;
}

.vehicle-card img {
  width: 100%;
  width: 100%;
object-fit: contain;
aspect-ratio: 16 / 9;
max-height: 245px;
}

.vehicle-card .vehicle-title {
  padding: 32px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid #D8D8D8;
}

.vehicle-title-pill {
    padding: 4px 16px;
    border: 1px solid #D8D8D8;
    color: #707070;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    font-family: "Roboto", sans-serif;
    width: fit-content;
    white-space: nowrap;
}

.vehicle-title-pill-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 8px;
}

.pill-dot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
}

.pill-dot {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--text-image-title-color);
}

.vehicle-card .vehicle-title a {
    text-decoration: none;
}



.vehicle-card .vehicle-title h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--text-image-title-color);
  text-transform: uppercase;
  transition: color 0.3s ease-in;
}

.vehicle-card .vehicle-title h4:hover {
    color: var(--primary-color);
}

.vehicle-card .vehicle-title h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
}

.vehicle-info-container {
    margin-bottom: 22px;
}

.vehicle-info-container div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.vehicle-label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  text-align: left;
}

.vehicle-data {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 24px;
  text-align: right;
}

.vehicle-card .vehicle-price {
    margin-bottom: 20px;
}

.vehicle-price {
  background-color: #f2f2f2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px;
  margin-top: 10px;
}

.vehicle-price .label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
  text-transform: uppercase;
  text-align: left;
}

.vehicle-price .data {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  text-align: right;
}

.vehicle-price-regular {
  background-color: transparent;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px;
  margin-top: 10px;
  margin-bottom: 32px;
}

.vehicle-price-regular .label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #707070;
  text-transform: uppercase;
  text-align: left;
}

.vehicle-price-regular .data {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: #707070;
  text-align: right;
}

.popup-container {
    position: relative;
}

.popup-icon {
    cursor: pointer;
    width: 22px;
    height: 22px;
    margin-left: 8px;
}

.popup {
    display: none;
    position: absolute;
    width: 350px;
    background-color: #d6d6d9;
    padding: 12px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    left: 50%;
    right: 50%;
    transform: translateX(-73.5%) translateY(10px);
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.popup.active {
    display: flex;
}

.popup-close-icon, .vehicle-price-container .vehicle-price span.popup-close-icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.popup p {
    font-size: 12px;
    line-height: 16px;
}

.button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

.offer-button {
  border-radius: 8px;
  background-color: var(--primary-color);
  padding: 16px 32px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}

.offer-button:hover {
  background-color: var(--text-image-title-color);
}

.find-out-more-button {
  border-radius: 8px;
  padding: 16px 32px;
  background-color: #f2f2f2;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  color: #707070;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.find-out-more-button:hover {
  background-color: #707070;
  color: #FFFFFF;
}

.link-more {
  margin: 72px 0;
}

.link-more a {
  color: var(--primary-color);
  font-family: "Open sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.link-more a:hover {
    color: var(--text-image-title-color);
}

.cta-container {
  height: auto;
  width: 100%;
  max-width: 1920px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin: 72px auto 72px auto;
  gap: 24px;
  padding: 48px 0;
  background-image: var(--lg-cta-images-background-image);
}

@media screen and (max-width: 1271px) {
    .cta-container {
        background-image: var(--sm-cta-images-background-image);
    }
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust the alpha value (last parameter) to control darkness */
}

.cta-container .card {
  text-decoration: none;
  z-index: 1;
  width: 300px;
  height: 300px;
  border: 1px solid #FFFFFF;
  padding: 64px 28px;
  margin: 0;
  gap: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: transparent;
  cursor: pointer;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
  -webkit-transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.cta-container .card.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/* Ensure two cards per row, always centered */
@media screen and (max-width: 1271px) {
  .cta-container {
    display: grid;
    grid-template-columns: repeat(2, 300px); /* Always two items per row */
    justify-content: center; /* Center the grid */
    gap: 24px;
  }
}


.cta-container .card:hover {
  background-color: rgba(195, 74, 66, 0.8);
  border: 1px solid transparent;
}

.cta-container .card h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.text-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

.text-image ul, ul {
    list-style-type: disc;
    padding-left: 20px;
}

.text-image.inverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.text-image .text, .text-image .image {
  width: 50%;
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text-image.service .text {
    padding-top: 10px;
    padding-bottom: 10px;
}

.text-image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: none;
     object-fit: none;
}

.text-image .image {
    overflow: hidden;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
}

.text-image .image.active {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.text-image .text {
  background-color: #f2f2f2;
  padding-left: 192px;
  padding-right: 50px;
  gap: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
}

.text-image .text.active {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.text-image .text.active p {
    margin-bottom: 16px;
}

.text-image.inverse .image {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
}

.text-image.inverse .image.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.text-image.inverse .text {
  background-color: #f2f2f2;
  padding-left: 192px;
  padding-right: 82px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: -webkit-transform 0.7s ease-in-out;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
}

.text-image.inverse .text.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.text-image .text h4, .text-image.service .text h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
  margin-bottom: 24px;
}

.text-image.service .text h5 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-image .text span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 40px;
  color: var(--text-image-title-color);
  margin-bottom: 0;
}

.reserve-drive {
  height: 536px;
  width: 100%;
  max-width: 1920px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px auto 0 auto;
  background-position: center;
  background-image: var(--lg-reserve-drive-background-image);
}

@media screen and (max-width: 672px) {
    .reserve-drive {
        background-image: var(--sm-reserve-drive-background-image);
    }
}



.border {
  margin: 80px auto 80px auto;
  width: 100%;
  max-width: 1920px;
  border-top: 1px solid #D8D8D8;
}

.reserve-drive .container {
  width: 684px;
  height: 338px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 64px 100px 0 100px;
  background-color: rgba(0, 0, 0, 0.3);
}

.reserve-drive .container span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.reserve-drive .container h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.wrapping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 56px auto 24px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1320px;
}

.wrapping a, .wrapping div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
  height: 144px;
  border: 1px solid #D8D8D8;
  background: #f2f2f2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  margin: 12px;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wrapping a img {
    height: 60%;
    width: auto;
    object-fit: contain
}

.wrapping a:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.wrapping a span {
  text-transform: uppercase;
}

.wrapping.class5 div, .wrapping.class9 div, .wrapping.class5 a, .wrapping.class9 a {
  -ms-flex-preferred-size: 33.3%;
      flex-basis: 33.3%;
}

.wrapping.class7 div, .wrapping.class7 a {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

@media (max-width: 950px) {
  .text-image, .text-image.inverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .text-image .text, .text-image .image {
    width: 100%;
  }
  .text-image .image {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.7s ease-in-out;
    transition: -webkit-transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  }
  .text-image .image.active {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .text-image .text {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.7s ease-in-out;
    transition: -webkit-transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  }
  .text-image .text.active {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .text-image.inverse .image {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: -webkit-transform 0.7s ease-in-out;
    transition: -webkit-transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  }
  .text-image.inverse .image.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .text-image.inverse .text {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.7s ease-in-out;
    transition: -webkit-transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out;
    transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  }
  .text-image.inverse .text.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .wrapping div, .wrapping a {
    -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
  }
  .wrapping.class5 div, .wrapping.class7 div, .wrapping.class5 a, .wrapping.class7 a {
    -ms-flex-preferred-size: 33.3%;
        flex-basis: 33.3%;
  }
}

@media (max-width: 640px) {
  .secondary-banner-item .text {
    padding-left: 8%;
  }
}

@media (max-width: 600px) {
  .wrapping div, .wrapping a {
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
        margin: 0;
  }
  .wrapping {
      gap: 24px
  }
  .wrapping.class5 div, .wrapping.class7 div, .wrapping.class9 div {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (max-width: 400px) {
  .wrapping div, .wrapping.class5 div, .wrapping.class7 div, .wrapping.class9 div, .wrapping a, .wrapping.class5 a, .wrapping.class7 a, .wrapping.class9 a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }

}

.text-image.service .text {
  padding-left: 97px;
  padding-right: 197px;
  gap: 0px;
}

.text-image.service .text .superscript {
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
}
.text-image.service .text p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
  margin-bottom: 34px;

  display: -webkit-box; /* Required for the line clamp */
  -webkit-box-orient: vertical; /* Specify vertical text orientation */
  overflow: hidden; /* Hide the overflowed content */
  text-overflow: ellipsis; /* Add the ellipsis (...) */
  -webkit-line-clamp: 5; /* Limit the text to 5 lines */
  max-height: calc(32px * 5); /* Calculate height based on line count */
}


.container {
  overflow-x: hidden;
  width: 100%;
  padding: 0 -12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1920px;
  margin: 0 auto;
}

.cta-images {
  width: auto;
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 24px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta-images div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: calc(530px - 12px);
      flex-basis: calc(530px - 12px);
  /* Fixed width of 530px with spacing */
  width: calc(530px - 12px);
  /* Fixed width of 530px with spacing */
  height: 300px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 0;
  /* Add spacing between div elements */
  -webkit-transition: margin 0.3s ease-in-out;
  transition: margin 0.3s ease-in-out;
  background-image: var(--lg-cta-image-background-image);
}

@media screen and (max-width: 1060px) {
    .cta-images div {
        background-image: var(--sm-cta-image-background-image);
    }
}

.cta-images div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust the alpha value (last parameter) to control darkness */
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}

.cta-images div:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(195, 74, 66, 0.75);
}

.cta-images div a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Styles for text inside div */
.cta-images div span {
  z-index: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.google-maps {
  max-width: 1920px;
  margin: 0 auto 24px auto;
  overflow: hidden;
}

.active .working-hours-details {
    display: block;
}

.working-hours-details {
    padding: 40px 24px 32px 24px;
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    position: absolute;
    left: 40%;
    z-index: 99;
    width: 300px;
    transform: translateY(-80%);
    display: none;
}

.working-hours-details h2 {
font-size: 18px;
font-style: normal;
font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
line-height: 32px;
margin-bottom: 16px;
color: var(--primary-color);
}
.working-hours-details p {
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.close {
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 10px;
    cursor: pointer;
}

.close svg path {
    fill: var(--primary-color)
}


footer {
  background-color: var(--footer-background-color);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.footer-container {
    background-color: #FFFFFF;
    max-width: 1968px;
    margin: 0 auto;
}

footer nav ul li a {
  color: #D8D8D8;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}

footer nav ul li a.active, footer nav ul li a:hover {
  color: var(--primary-color);
}

footer .notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #707070;
  border-top: 1px solid #707070;
  padding: 37px 325px 37px 325px;
}

footer .notice a {
  text-decoration: none;
  color: #707070;
  margin-right: 32px;
}

  footer .notice a:hover {
     text-decoration: underline;
  }

.footer-information {
  padding: 67px 16% 32px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          gap: 64px;
}

.footer-information nav {
  width: 20%;
}

/* Style for the navigation */
.footer-information ul {
  list-style: none;
  /* Remove default list styles */
  padding: 0;
  /* Remove default padding */
  margin: 0;
  /* Remove default margin */
  display: -ms-grid;
  display: grid;
  /* Use grid layout */
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  /* Two columns with equal width */
  gap: 5px;
  /* Add gap between columns */
}

/* Style for the list items */
.footer-information ul li {
  padding: 4px 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
  color: #D8D8D8;
}

.concessionaire-data {
  width: 46%;
}

.footer-custom-container {
    width: 16%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px
}

.footer-custom-container a {
    color: #D8D8D8;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}

.footer-custom-container a:hover {
    opacity: 0.7;
}

.concessionaire-data h6 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #FFFFFF;
  padding-bottom: 16px;
}

.concessionaire-data h6::after {
  content: '';
  display: block;
  margin-top: 16px;
  width: 84px;
  height: 1px;
  background-color: #707070;
}

.location-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          gap: 20px;
}

.location .name {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #B1B1B1;
}

.location .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 10px;
}

.location .contact a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  margin-left: 10px;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 5px;
  white-space: nowrap;
}

.location .contact a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.location .contact a:hover::after {
  width: 100%;
  left: 0;
}

/**
INDEX.HTML - END
*/
/**
NEWS.HTML - START
*/
.dark-title {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  background-color: #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0 24px 16%;
  min-height: 144px;
}

.back-button-container {
      padding: 44px 0 24px 16%;
}

.back-button-container button {
    margin: 0;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in;
}

.back-button-container button:hover {
    background-color: var(--primary-color);
}

.back-button-icon {
    transform: translateY(2px);
}

.back-button-icon svg path {
    fill: var(--scroll-header-text-color);
    transition: fill 0.3s ease-in;
}

.back-button-text {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--scroll-header-text-color);
    text-transform: uppercase;
    transition: color 0.3s ease-in;
}

.back-button-container button:hover .back-button-text {
    color: #FFF;
}

.back-button-container button:hover .back-button-icon svg path {
    fill: #fff;
}

.dark-title h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  color: #f2f2f2;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.dark-title h1.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.dark-title-subscript {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  min-height: 144px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 0 24px 16%;
  border-bottom: 1px solid #d2d2d2;
}

.dark-title-subscript h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: var(--text-image-title-color);
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.dark-title-subscript h2.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.dark-title-subscript h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
  margin-top: 0;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.dark-title-subscript h3.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.news-list {
  height: auto;
  padding: 128px 14% 200px 14%;
  background-color: #f2f2f2;
  overflow: hidden;
}

.news-highlighted-list {
    margin-bottom: 24px;
    padding-bottom: 64px;
}

.news-highlighted-list .news-card-wrapper {
    align-items: flex-start;
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 12px;
}

.news-highlighted-list .news-card-wrapper .news-card:nth-of-type(4) {
    display: none;
}

.news-highlighted-list .link-more {
    max-width: 1065px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 72px;
    padding-right: 0;
    padding-left: 0;
}


.news-highlighted-list .news-card {
    border: none;
    box-shadow: none;
    gap: 32px;
    justify-content: space-between;
    width: auto;
    padding: 0;
    height: 408px;
}

.news-highlighted-list .news-card div {
    max-width: 344px;
}

.news-card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-card {
  width: 408px;
  height: 624px;
  margin: 12px;
  padding: 32px;
  -webkit-box-shadow: 0px 0px 2px 0px #00000040;
          box-shadow: 0px 0px 2px 0px #00000040;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
    -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transition: opacity 0.6s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.news-card:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.news-highlighted-list .news-card:hover {
    box-shadow: none;
} 

.news-card.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.news-card img {
  width: 100%;
  height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-card span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #707070;
}

.news-card h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 16px;
}

.news-card h2 a {
    text-decoration: none;
    color: inherit;
}

.news-card .news-text {
  width: 344px;
  height: auto;
  /* Set height to auto */
  display: -webkit-box;
  /* Required for multi-line ellipsis in webkit browsers */
  -webkit-line-clamp: 4;
  /* Limit number of lines to 3 */
  -webkit-box-orient: vertical;
  /* Set content layout to vertical */
  overflow: hidden;
  /* Hide any content exceeding the height */
}

.news-card p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-image-title-color);
}

.news-card .news-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
}

.slider-arrows-news {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  margin-top: 12px;
}


@media screen and (max-width: 1128px) {
        .location-container {
        flex-wrap: wrap;
    }
  .concessionaire-data {
      width: 100%;
  }
  .footer-information {
    padding-top: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }
  .footer-information nav {
    width: 100%;
    display: flex;
  }
  .footer-information ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: flex-start;
        -ms-flex-pack: flex-start;
            justify-content: flex-start;
    width: 100%;
    gap: 0;
  }
  .footer-information ul li {
    text-align: left;
    width: auto;
    min-width: auto;
    padding-left: 0;
    padding-right: 10%;
  }
  
    .news-highlighted-list .news-card-wrapper .news-card:nth-of-type(4) {
        display: flex;
    }
    .news-highlighted-list .news-card {
        width: calc(50% - 24px);
        max-height: 520px;
        height: 100%;
    }
    .news-highlighted-list .news-card div {
        max-width: none;
        width: 100%;
    }
    .news-card img {
        height: auto;
    }
    .news-highlighted-list .link-more {
        padding-right: 24px;
    }
}

@media screen and (max-width: 750px) {
    .news-highlighted-list .news-card-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0;
    }
    .news-highlighted-list .link-more {
        padding-right: 24px;
        padding-left: 24px;
        padding-top: 48px;
        justify-content: flex-start;
    }
    .news-highlighted-list .link-more a {
        font-size: 20px;
        line-height: 24px;
    }
    .news-card h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .news-highlighted-list .news-card {
        height: auto;
        max-height: none;
        width: 100%;
        margin: 0;
        padding: 24px;
    }
    .news-highlighted-list .news-card img {
        height: auto;
    }
    .news-highlighted-list .news-card div {
        max-width: none;
    }
}

@media screen and (max-width: 580px) {
    .news-highlighted-list .news-card {
        padding: 0;
    }
    .news-highlighted-list .news-card-wrapper {
        padding: 0 5%;
    }
    .news-highlighted-list .link-more {
        padding: 48px 5% 0 5%;
    }
}

/**
NEWS.HTML - END
*/
/**
NEWS-DETAILS.HTML - START
*/
.news-text-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-bottom: 32px;
  padding: 48px 16% 32px 16%;
}

.news-text-image .text, .news-text-image .image {
  width: 50%;
  height: 336px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.news-text-image .image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-text-image .text {
  padding-left: 33px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.news-text-image .text.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.news-text-image .image {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.news-text-image .image.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.news-text-image .text span {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 32px;
  color: #707070;
}

.news-text-image .text h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
}

.news-text-image.inverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.news-text-image.bordered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 28px 0;
  padding-top: 0;
}

.news-text-image.bordered .text, .news-text-image.bordered .image {
  width: 49%;
}

.news-text-image.bordered .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px 40px;
  border: 1px solid #707070;
  color: #707070;
  height: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.news-text-image.bordered .text a, .plain-text p a, .plain-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.news-text-image.bordered .text.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.news-text-image.bordered .image {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.news-text-image.bordered .image.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.news-text-image.bordered .text span {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 26px;
  line-height: 48px;
  color: #707070;
}

.plain-text {
  padding: 8px 16% 16px 16%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.plain-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-left: 10px;
    margin-bottom: 16px;
}

.plain-text h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 8px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.plain-text p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 32px;
  padding-bottom: 16px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.plain-text p i {
    font-style: italic;
}

.plain-text h3.active, .plain-text p.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.photo-gallery {
  margin: 32px 0;
  padding: 0 16%;
  overflow: hidden;
}

.photo-gallery h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.photo-gallery h4.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fancybox__counter,
.fancybox__caption {
    font-family: 'Roboto', sans-serif;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: var(--primary-color);
}

.image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 504px;
  gap: 24px;
  /* Add gap between large and small images */
}

.large-image {
  width: 840px;
  height: 504px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.large-image.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.small-images {
  width: 408px;
  /* 50% width minus half the gap */
  height: 504px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  /* Add gap between small images */
}

.large-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
    -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.small-images img:first-of-type, .last-image {
  height: 240px;
}

.small-images img,
.last-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.large-image a {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.small-images a {
    overflow: hidden; /* Ensure the container doesn't grow with the image */
    display: inline-block;
    height: 240px;
}

.small-images img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, filter 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    width: 100%; /* Ensure the image takes full width of the container */
    height: auto; /* Maintain aspect ratio */
}

.small-images img:hover, .large-image img:hover {
    transform: scale(1.2); /* Zoom in by 20% */
}



.small-images img.active, .last-image.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.small-images a {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.small-images a.active, .last-image.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.last-image {
  position: relative;
}

.last-image.counter img {
    filter: brightness(50%); /* Darkens the image by 50% */
}

.last-image.counter:hover img {
    filter: brightness(70%); /* Lighter when hovering */
}

.last-image.counter::after {
    content: attr(data-counter);
    position: absolute; /* Ensuring it appears over the image */
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: white; /* Make the number visible */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 24px; /* Adjust font size as needed */
    font-weight: bold;
}


.last-image span, .counterGallery {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 98%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #FFFFFF;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, background-color 0.3s ease-in;
}

.last-image .counterGallery {
    position: initial;
}

.last-image span.active, .counterGallery.active {
  opacity: 1;
}

.last-image span:hover, .counterGallery:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.video-gallery {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-bottom: 54px;
}

.video-gallery h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #000;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.video-gallery h4.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.video {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%;
  max-width: 838px;
  height: 100%;
  max-height: 490px;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.video.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/**
NEWS-DETAILS.HTML - END
*/
/**
ABOUT-US.HTML - START
*/
.light-title {
  width: 86%;
  max-width: 1272px;
  height: auto;
  min-height: 160px;
  text-align: center;
  padding-bottom: 40px;
  margin: 0 auto 32px auto; /* Centers the div horizontally */
  border-bottom: 1px solid #D8D8D8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* Centers content horizontally */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* Centers content vertically */
}


.light-title h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  color: var(--text-image-title-color);
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.light-title h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #707070;
  margin-top: 8px;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

strong, b {
    font-weight: 700;
}

h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 140px;
    font-weight: 700;
    line-height: 144px;
    text-align: left;
}

h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    text-align: left;
}

h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    text-align: left;
}

h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
}

h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    margin-bottom: 16px;
    padding-top: 10px;
}

h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
}

.text-slider-container {
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  max-width: 1272px;
  width: 86%;
  margin: 72px auto 80px auto;
    border-radius: 0;
    background-color: #F2F2F2;
}

.about-us-slider-container {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 0;
  overflow: hidden;
  /* Slider takes up 50% of the width */
}

.about-us-text {
  flex: 1 1 50%;
  max-width: 50%;
  padding-top: 0;
  padding-left: 64px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: flex-start;
  /* Text takes up 50% of the width */
}

.about-us-text div {
    width: 50%;
}

.about-us-slider img {
  width: 100%;
  height: auto;
  /* Makes sure slider images are responsive */
}

.about-us-slider.slick-dotted.slick-slider {
    margin-bottom: 0;
    border-radius: 6px;
}

.about-us-slider .slick-dots {
    bottom: 0;
}

.about-us-slider .slick-dots li button:before {
    content: '';
}

@media screen and (max-width: 1200px) {
  .text-slider-container {
    flex-direction: column;
    /* Stack slider and text on small screens */
    gap: 12px;
  }
  
  .about-us-slider-container,
  .about-us-text {
    max-width: 100%;
    /* Both slider a
    and text will take full width */
  }
  .about-us-text {
      padding: 12px 8% 32px 8%;
  }
}


.light-title h1.active, .light-title h2.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.light-title-linear-gradient {
    background: linear-gradient(180deg, rgba(234, 234, 234, 0.35) 0%, rgba(234, 234, 234, 0) 100%);
    height: 64px;
    width: 100%;
}

.employees {
  width: 100%;
  max-width: 1272px;
  height: auto;
  margin: 72px auto 80px auto;
  /* Adjust margin to center */
}

.employees-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* Align items to the start of the cross axis */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /* Align items to the left */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* Allow items to wrap */
  gap: 16px; /* Add gap to maintain equal spacing between items */
  width: 100%;
  max-width: 1248px;
}

.employees-list article {
  width: 300px;
  margin-bottom: 40px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.employees-list article.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.employees h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.employees h3.active {
  opacity: 1;
}

.employees img {
  width: 300px;
  height: 352px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 20%;
     object-position: 0 20%;
}

.employees .employee-name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 24px;
  color: var(--text-image-title-color);
  margin-bottom: 0;
  margin-top: 24px;
  opacity: 1;
}

.employee-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  color: #707070;
  margin-bottom: 16px;
}

.employees .icon {
  width: 15px;
  height: 15px;
  vertical-align: -3px;
  min-width: 15px;
  max-width: 15px;
}

.employees a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-image-title-color);
  text-decoration: none;
  margin-left: 8px;
}

.about-us-working-hours {
  width: 100%;
  height: auto;
  padding: 32px 16% 72px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #F2F2F2;
}

.about-us-working-hours h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  margin-bottom: 32px;
}

.about-us-working-hours h3.active {
  opacity: 1;
}

.working-hours-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

.working-hours-card {
  background-color: #FFFFFF;
  width: 408px;
  padding: 32px;
  -webkit-box-shadow: 0px 0px 2px 0px #00000040;
          box-shadow: 0px 0px 2px 0px #00000040;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.working-hours-card.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.working-hours-card h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--text-image-title-color);
  margin-bottom: 16px;
}

.working-hours-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #707070;
}

.working-hours-text a, .about-us-text a {
  color: var(--primary-color) !important;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}


.working-hours-text a:hover, .about-us-text a:hover {
    opacity: 0.7;
}

.about-us-notice {
  width: 100%;
  max-width: 1272px;
  height: auto;
  margin: 80px auto 104px auto;
}

.vehicle-not-found-notice {
  width: 100%;
  max-width: 1272px;
  height: auto;
  margin: 40px auto 40px auto;
}

.vehicle-not-found-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-direction: row;
    justify-content: center;
}

.about-us-notice ul {
    margin-bottom: 16px;
}

.about-us-notice h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
  margin-bottom: 64px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.about-us-notice h5.active {
  opacity: 1;
}

.about-us-notice p {
    margin-bottom: 16px;
}

.about-us-notice h3 {
    padding-top: 16px;
    margin-bottom: 16px;
}

.about-us-notice li, .plain-text-custom-page li {
  margin-left: 10px;
  list-style-type: disc;
  list-style-position: inside;
}

.about-us-notice, .vehicle-not-found-notice {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
}

.about-us-notice a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

.about-us-notice div {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.about-us-notice div.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/**
ABOUT-US.HTML - END
*/
/**
USED-VEHICLES.HTML - START
*/
.used-vehicles {
  width: 100%;
  height: auto;
  max-width: 1272px;
  margin: 127px auto 127px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.mobile-filters-toggle {
    display: none;
}

 .mobile-filters-container {
      width: 100%;
 }

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 32px;
  background-color: #EAEAEA;
  width: 384px;
  border-right: 1px solid #D8D8D8;
}

.filters h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #000;
  margin-bottom: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.filters h2.active {
  opacity: 1;
}

.filters h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.filters h3.active {
  opacity: 1;
}

.sorting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sorting h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--text-image-title-color);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.sorting h4.active {
  opacity: 1;
}

.sorting-label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #000;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.sorting-label.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sorting-select-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 400px;
}

#sto2_cms_cookie_consent {
    position: fixed;
    bottom: 0;
    padding: 12px 24px;
    width: 100%;
    max-width: 1920px;
    background-color: #fff;
}

#sto2_cms_cookie_consent > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

#sto2_cms_cookie_consent .cookie-consent-content-left p {
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}
#sto2_cms_cookie_consent #acceptCookies {
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#sto2_cms_cookie_consent .cookie-consent-content-left p a {
    color: var(--primary-color);
}

#sto2_cms_cookie_consent .cookie-consent-content-left p a:hover {
    text-decoration: none;
}


#sto2_cms_cookie_consent #acceptCookies:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.sorting-select-container .select-filter {
  width: 284px;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.used-vehicles-list {
  background-color: #f2f2f2;
  padding: 32px 40px;
  width: 888px;
}

.select-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100px;
  margin-top: 24px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.select-filter.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.select-filter label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #000;
  margin-bottom: 16px;
}

.select-filter select {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width: calc(100%);
  height: 48px;
  border: 1px solid #D8D8D8;
  background-color: #FFFFFF;
  padding: 12px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper .arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.select-filter select::-ms-expand {
  display: none;
}

.select-filter select:not(:checked) {
  color: #707070;
}

.select-filter select option {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.select-container-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 16px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.select-container-double.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.select-container-double .select-filter {
  width: 50%;
}

.checkbox-filter {
  margin-top: 24px;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.checkbox-filter.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.checkbox-filter span {
  display: block;
  padding-bottom: 16px;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #000;
  margin-bottom: 16px;
  border-bottom: 1px solid #707070;
}

.checkbox-filter label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-image-title-color);
  cursor: pointer;
}

.checkbox-filter input, .form-checkbox input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #D8D8D8;
  background-color: #FFFFFF;
  margin-right: 16px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Changed from align-content to align-items */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  /* Added position relative */
  cursor: pointer;
}

.checkbox-filter input::before, .form-checkbox input::before {
  content: "";
  /* Added content for pseudo-element */
  width: 14px;
  /* Adjust size as needed */
  height: 6px;
  /* Adjust size as needed */
  border-left: 4px solid var(--primary-color);
  /* Set color of checkmark */
  border-bottom: 4px solid var(--primary-color);
  /* Set color of checkmark */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  /* Rotate to create checkmark */
  position: absolute;
  /* Position relative to input */
  top: 20%;
  /* Center vertically */
  left: 10%;
  /* Center horizontally */
  -webkit-transform-origin: center;
          transform-origin: center;
  /* Center rotation point */
  opacity: 0;
  /* Initially hide checkmark */
}

.checkbox-filter input:checked::before, .form-checkbox input:checked::before {
  opacity: 1;
  /* Show checkmark when input is checked */
}

.select-wrapper, .form-container {
    position: relative;
}

.invalid-message {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; 
    text-align: left;
    margin-top: 5px; 
    color: var(--primary-color); 
    font-size: 14px;
    font-family: "Roboto", sans-serif
}

.checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 12px 0;
}

.checkbox-color-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 16px 0;
}

.filters-save-button, .filters-save-button-container {
    display: none;
}

.checkbox-color-wrapper span {
  display: inline;
  padding: 0;
  margin: 0;
  margin-right: 8px;
  border: none;
}

.color-label-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.vehicle-cards-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  overflow: hidden;
}

.no-data-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    height: 300px;
    padding-top: 40px;
}

.no-data-icon, .no-data-container h4 {
    position: absolute;
}

.used-vehicle {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 2px 0px #00000040;
          box-shadow: 0px 0px 2px 0px #00000040;
  padding: 32px;
  max-width: 808px;
  width: 100%;
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.used-vehicle.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.vehicle-data-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.vehicle-image {
  width: 40%;
}

.vehicle-data-container .vehicle-info-container {
  width: 60%;
}

.vehicle-image img {
  width: 100%;
  height: auto;
  max-height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
}

.used-vehicle-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-bottom: 16px;
}

.vehicle-price-container .vehicle-price span {
  width: auto;
}

.vehicle-price-container .vehicle-price {
  margin-top: 0;
  background-color: #EAEAEA;
  padding: 4px 8px;
}

.used-vehicle-subtitle-container {
  width: 100%;
}

.used-vehicle-title .vehicle-price-container {
  width: 60%;
}

.used-vehicle-title h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  text-transform: uppercase;
  -webkit-columns:   color: var(--text-image-title-color);
          columns:   color: var(--text-image-title-color);
}

.used-vehicle-title h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  -webkit-columns:   color: var(--text-image-title-color);
          columns:   color: var(--text-image-title-color);
}

.vehicle-price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.used-vehicle .vehicle-price-regular {
  margin: 0;
}

.used-vehicle .button-wrapper {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0;
}

.used-vehicle .button-wrapper .find-out-more-button {
  margin-left: 5%;
}

.used-vehicle .vehicle-info-container div {
  margin-bottom: 12px;
}

.vehicle-cards-list .slider-arrows {
  margin: 12px auto 0 auto;
}

.vehicle-cards-list .slider-arrows span {
  margin: 0 12px;
}

.vehicle-cards-list .slider-arrows .pagination-numbers {
    display: flex;
}

.vehicle-cards-list .slider-arrows .pagination-numbers .page-number {
    margin: 0 4px;
    font-family: 'Roboto', sans-serif;
    color: #444444;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #444444;
    background-color: transparent;
    transition: background-color 0.3 ease-in;
}

.vehicle-cards-list .slider-arrows .pagination-numbers .page-number:hover {
    background-color: #fff;
}

.vehicle-cards-list .slider-arrows .pagination-numbers .page-number.active {
    background-color: #444444;
    color: #fff;
}

/**
USED-VEHICLES.HTML - END
*/
/**
VEHICLE-DETAILS.HTML - START
*/
.breadcrumbs-container {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 16%;
  border-bottom: 1px solid #707070;
}

.breadcrumbs-container.dark-title-breadcrumbs {
    background-color: #F2F2F2;
    border-bottom: none;
}

.breadcrumbs-container.light-title-breadcrumbs {
    width: 100%;
    margin: 0 auto;
    background-color: #F2F2F2;
    border-bottom: none;
    padding: 0;
}

.breadcrumbs-container.light-title-breadcrumbs .breadcrumbs {
    width: 100%;
    max-width: 1272px;
    margin: 0 auto;
}

.breadcrumbs-container a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #707070;
  text-decoration: none;
}

.breadcrumbs-container a:hover {
    color: #000;
}

.breadcrumbs-container a:last-child {
  font-weight: 700;
  color: var(--text-image-title-color);
}

.breadcrumbs-container a::after {
  content: '>';
  margin: 0 4px 0 8px;
}

.breadcrumbs-container a:last-child::after {
  content: '';
}

.vehicle-details {
  width: 100%;
  height: auto;
  padding: 32px 16% 54px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #F2F2F2;
  overflow: hidden;
}

.vehicle-details-data {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 167px;
  opacity: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.vehicle-details-data.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.vehicle-details-slider-container {
  width: 50%;
}

.vehicle-details-info-container {
  width: 50%;
}

.vehicle-details-info-container .vehicle-info-container {
  padding: 24px 0 16px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-bottom: 32px;
}

.vehicle-details-info-container .vehicle-info-container > div {
  margin-bottom: 8px;
}

.vehicle-details-info-container .button-wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 0;
}

.vehicle-details-large-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 560px;
  height: auto;
  margin-bottom: 40px;
}

.vehicle-details-large-slider .slide-container-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vehicle-details-large-slider .slide-container-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.vehicle-details-large-slider .slick-prev, .vehicle-details-small-slider .slick-prev {
  left: 0;
  z-index: 2;
}

.vehicle-details-large-slider .slick-next, .vehicle-details-small-slider .slick-next {
  right: 0;
  z-index: 2;
}

.vehicle-details-large-slider .slick-prev::before, .vehicle-details-large-slider .slick-next::before, .vehicle-details-small-slider .slick-prev::before, .vehicle-details-small-slider .slick-next::before {
  content: '';
}

.vehicle-details-large-slider .slick-prev, .vehicle-details-large-slider .slick-next {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--primary-color);
  width: 32px;
  height: 32px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.vehicle-details-large-slider .slick-prev:hover, .vehicle-details-large-slider .slick-next:hover {
  background-color: var(--text-image-title-color);
}

.vehicle-details-small-slider {
  width: 560px;
  overflow: hidden;
}

.vehicle-details-small-slider .slick-prev, .vehicle-details-small-slider .slick-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 100%;
  margin: 0;
  border-radius: 0;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.vehicle-details-small-slider .slick-prev:hover, .vehicle-details-small-slider .slick-next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.vehicle-details-small-slider .slick-list {
  margin: 0 -6px;
}

.vehicle-details-small-slider .slide-container-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    height: 80px; /* Or match image height */
    padding: 0 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vehicle-details-small-slider .slide-container-small img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}

.vehicle-details-accordion-category {
  width: 100%;
  margin-top: 74px;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.vehicle-details-accordion-category.active {
  opacity: 1;
}

.vehicle-details-accordion-category h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
}

.vehicle-details-accordion-wrapper {
  width: 100%;
  opacity: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.vehicle-details-accordion-wrapper.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.vehicle-details-accordion-wrapper .accordion {
  width: 100%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 2px 0px #00000040;
          box-shadow: 0px 0px 2px 0px #00000040;
  padding: 32px 32px 16px 32px;
  margin: 8px 0;
  cursor: pointer;
}

.vehicle-details-accordion-wrapper .accordion .accordion-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 16px;
}

.vehicle-details-accordion-wrapper .accordion .accordion-title h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--text-image-title-color);
}

.vehicle-details-accordion-wrapper .accordion .accordion-title .accordion-chevron {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.vehicle-details-accordion-wrapper .accordion.active .accordion-title .accordion-chevron {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.vehicle-details-accordion-wrapper .accordion .accordion-content {
  padding: 0;
  margin-top: 0;
  padding-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #707070;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-details-accordion-wrapper .accordion.active .accordion-content {
  margin-top: 24px;
  padding-bottom: 16px;
}

.vehicle-details-accordion-wrapper .accordion .accordion-border {
  width: 0;
  height: 1px;
  background-color: #D8D8D8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.vehicle-details-accordion-wrapper .accordion.active .accordion-border {
  width: 100%;
}

.vehicle-details-accordion-wrapper .accordion .accordion-content ul {
  list-style-type: none;
  padding: 0;
  -webkit-columns: 2;
          columns: 2;
}

.vehicle-details-accordion-wrapper .accordion .accordion-content ul li {
  -webkit-column-break-inside: avoid;
          break-inside: avoid;
}

/**
VEHICLE-DETAILS.HTML - END
*/
/**
CUSTOM-PAGE.HTML - START
*/
.text-image-classic {
  width: 100%;
  max-width: 1272px;
  margin: 0 auto;
  height: auto;
  padding: 32px 0 54px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.text-image-classic > div:first-of-type, .text-image-classic.inverse > div:last-of-type {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.text-image-classic > div:last-of-type, .text-image-classic.inverse > div:first-of-type {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.text-image-classic > div:first-of-type.active, .text-image-classic > div:last-of-type.active, .text-image-classic.inverse > div:first-of-type.active, .text-image-classic.inverse > div:last-of-type.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.text-image-classic.inverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.text-image-classic > div {
  width: 50%;
}

.accordion-single-container {
    max-width: 1272px;
    margin: 0 auto;
    background-color: #f2f2f2;
    padding: 16px;
    margin-bottom: 24px;
}

.accordion-single-container .accordion-button {
    cursor: pointer;
    padding: 19px 16px 13px 24px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    background-color: #fff;
    margin: 0;
    border-radius: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    text-transform: uppercase;
    color: #707070;
    box-shadow: 0px 0px 2px 0px #00000040;
}

.accordion-single-container .accordion-button:hover {
  background-color: #eee; 
}

.accordion-single-container .accordion-button.active + .panel {
    padding-top: 24px;
    padding-bottom: 24px;
}

.accordion-single-container .panel {
    padding: 0 18px;    
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, padding 0.3s ease-out;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    padding: 0 24px;
}

.panel ul ul li::marker {
    color: var(--top-header-icon-color);
}

.panel ul ul ul li::marker {
    color: var(--top-header-icon-background-color);
}

.accordion-single-container .panel p {
    margin-bottom: 12px;
}

.accordion-single-container .panel p a, .accordion-single-container .panel a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease-in;
}

.accordion-single-container .panel p a:hover, .accordion-single-container .panel a:hover {
    opacity: 0.7;
}

.accordion-single-container .panel p b, .accordion-single-container .panel p strong {
    font-weight: 700;
}

.accordion-single-container .accordion-button:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20ZM9 9H5V11H9V15H11V11H15V9H11V5H9V9Z"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20ZM9 9H5V11H9V15H11V11H15V9H11V5H9V9Z"/></svg>') no-repeat center;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}


.accordion-single-container .accordion-button.active:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" width="20" height="20" fill="none"%3E%3Cpath d="M10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20ZM9 9H5V11H9H11H15V9H11H9Z" fill="%23707070"/%3E%3C/svg%3E') no-repeat center;
}


.text-image-classic.full-width {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
}

.text-image-classic.full-width img {
  height: auto;
  max-height: 472px;
  margin: 0 auto;
  width; auto;
  display: block;
}

.text-image-classic.full-width h3 {
  margin-bottom: 0;
}

.text-image-classic.full-width h4 {
  margin-bottom: 16px;
}

.text-image-classic.full-width > div {
  width: 100%;
}

.text-image-classic img {
  width: 100%;
}

.text-image-classic h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
  margin-bottom: 8px;
}

.text-image-classic h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #707070;
  margin-bottom: 24px;
}

.text-image-classic .description {
  padding-right: 16px;
  margin: 32px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
}

.text-image-classic .description p {
  margin-bottom: 16px;
}

.text-image-classic .description ul {
  padding-left: 32px;
  list-style: disc;
  margin-bottom: 16px;
}

.text-image-classic .highlighted {
  width: 100%;
  padding: 32px;
  background-color: #f2f2f2;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

.text-image-classic .highlighted ul {
    margin-bottom: 16px;
}

.text-image-classic .highlighted a {
  color: var(--primary-color);
}

.text-image-classic .highlighted p {
    margin-bottom: 16px;
}

.text-image-classic img {
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.text-image-classic .text-bordered {
  border: 1px solid #707070;
  padding: 32px 40px;
  gap: 8px;
  margin-top: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 48px;
  color: #707070;
}

.text-image-classic .button-wrapper {
  width: 100%;
  margin-top: 32px;
  padding-left: 0;
}

.text-image-classic .text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  margin-top: 24px;
  color: #000000;
}

.text-image-classic .text p {
    margin-bottom: 16px;
}

.text-image-classic .text ul {
    margin-bottom: 16px;
}

.double-image {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  padding: 12px 16% 12px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.double-image > div {
  width: 50%;
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.double-image > div:first-of-type {
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}

.double-image > div.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.double-image img {
  width: auto;
  height: auto;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.double-image div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-image {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  padding: 12px 16% 12px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.full-image img {
  width: 100%;
  max-width: 1275px;
  height: auto;
  max-height: 472px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.full-image img.active {
  opacity: 1;
}

.image-gallery {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  padding: 12px 16% 12px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.image-gallery .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.image-gallery .gallery img {
  width: 284px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.image-gallery .gallery img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.image-gallery .gallery-item {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.image-gallery .gallery-item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.video-gallery-custom-page {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  padding: 12px 16% 12px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.video-gallery-custom-page .gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.video-gallery-custom-page .video-gallery-item {
  width: 388px;
  /* Adjusted width */
  margin-bottom: 24px;
  /* Add margin to the bottom */
}

.video-gallery-custom-page .gallery iframe {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.video-gallery-item h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--text-image-title-color);
  margin-top: 24px;
  margin-bottom: 8px;
}

.video-gallery-item h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #000000;
}

.plain-text-custom-page {
  width: 100%;
  max-width: 1272px;
  margin: 0 auto;
  height: auto;
  padding: 48px 0 12px 0;
}

.plain-text-custom-page h4 {
    margin-bottom: 16px;
}

.table-container {
    width: 100%;
    max-width: 1272px;
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background-color: #fff;
}

/* Style the table */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    color: #333;
}

/* Headings */
thead {
    background-color: #f4f6f8;
}

th {
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    color: #1a1a1a;
    white-space: nowrap;
}

/* Table rows */
td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eaeaea;
    vertical-align: middle;
    white-space: nowrap;
}

/* Hover effect */
tbody tr:hover {
    background-color: #f9fafb;
    cursor: pointer;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
    th, td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}


.plain-text-custom-page h3 {
    margin-bottom: 16px;
    padding-top: 16px;
    color: var(--text-image-title-color);
}

.ql-align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.plain-text-custom-page em, em, i {
    font-style: italic;
}

.plain-text-custom-page div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
}

.plain-text-custom-page p, .plain-text-custom-page ul {
  color: var(--text-image-title-color);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 16px;
}

.plain-text-custom-page p {
    width: 100%;
}

.plain-text-custom-page ul {
    list-style-type: disc;
    padding-left: 20px;
}

.plain-text-custom-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.plain-text-custom-page a:hover {
    text-decoration: underline;
}

.plain-text-custom-page.two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.plain-text-custom-page.two-columns > div {
  width: 50%;
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: auto;
}

.plain-text-custom-page.three-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding-top: 48px;
  width: 100%;
}

.plain-text-custom-page.three-columns > div {
  width: 33.33%;
  gap: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: auto;
}

.plain-text-custom-page div {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.plain-text-custom-page div.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.table-custom {
  width: 100%;
  height: auto;
  padding: 32px 16% 54px 16%;
}

.table-custom h4 {
  width: 100%;
  height: 79px;
  background-color: #444444;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 24px;
}

.table-custom table {
  width: 100%;
  border-collapse: collapse;
}

.table-custom th {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: #FFFFFF;
  background-color: #707070;
  padding: 16px;
  text-align: left;
}

.table-custom td {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  padding: 16px;
}

.table-custom tr:nth-child(even) {
  background-color: #F2F2F2;
}

.table-custom tr:nth-child(odd) {
  background-color: #FFFFFF;
}

.table {
  width: 100%;
  height: auto;
  padding: 32px 16% 54px 16%;
}

.table h4 {
  width: 100%;
  height: 79px;
  background-color: #444444;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 24px;
  border: 1px solid #FFFFFF;
}

.table table {
  width: 100%;
  border-spacing: 10px;
  overflow: scroll;
}

.table th {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: #FFFFFF;
  background-color: #707070;
  padding: 4px 0 4px 24px;
  text-align: left;
  border: 1px solid #FFF;
  border-top: none;
  width: 50px;
  min-width: 50px;
}

.table td {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
  padding: 4px 0 4px 24px;
  background-color: #D8D8D8;
  border: 1px solid #FFF;
  width: 50px;
  min-width: 50px;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:nth-child(odd) td {
  background-color: #EAEAEA;
}

.text-image.text-image.full-width {
  background-color: #f2f2f2;
  padding: 12px 16%;
  max-width: 1920px;
  margin: 12px auto 0 auto;
  gap: 24px;
}

.text-image.full-width .text,
.text-image.full-width .image {
  width: 50%;
  padding-left: 0;
}

.text-image.full-width .text h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
  margin-bottom: 8px;
}

.text-image.full-width .text h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #707070;
  margin-bottom: 24px;
}

.text-image.full-width .text div {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

.text-image.full-width .text div ul {
  padding-left: 32px;
  list-style: disc;
  margin-bottom: 16px;
  margin-top: 16px;
}

.video-custom {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  padding: 24px 16% 12px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.video-custom iframe {
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 24px;
}

.video-custom h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--text-image-title-color);
  margin-bottom: 8px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.video-custom h4.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.video-custom h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #000000;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.video-custom h5.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.small-text {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  padding: 12px 16% 24px 16%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}

/**
CUSTOM-PAGE.HTML - END
*/
/**
CONTACT.HTML - END
*/
.contact-vehicle {
  width: 100%;
  height: auto;
  padding: 32px 16% 26px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 194px;
}

.contact-title {
  width: 100%;
  height: auto;
  margin-top: 80px;
  padding: 0 16%;
}

.contact-title h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
}

.contact-vehicle .contact-vehicle-image {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-vehicle .contact-vehicle-details {
  width: 100%;
}

.contact-vehicle img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}

.contact-vehicle .contact-vehicle-details .vehicle-details-info-container .vehicle-info-container div {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.contact-vehicle .contact-vehicle-details .vehicle-details-info-container .vehicle-info-container div.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.contact-vehicle .contact-vehicle-details h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--text-image-title-color);
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.contact-vehicle .contact-vehicle-details h3.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.contact-vehicle .contact-vehicle-details h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
  margin-bottom: 0;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.contact-vehicle .contact-vehicle-details h4.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.contact-vehicle .vehicle-title-pill-container {
    padding-bottom: 42px;
}

.contact-vehicle-details .vehicle-details-info-container {
  width: 100%;
}

.grecaptcha-badge {
    display: none !important;
}

.contact-form {
  width: 100%;
  height: auto;
  padding: 32px 16% 54px 16%;
}

.contact-form form {
  padding: 56px 108px;
  background-color: #f2f2f2;
}

.contact-form .form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}

.contact-form .form-container label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
}

.contact-form .form-container input {
  height: 48px;
  width: 100%;
  border: 1px solid #D8D8D8;
  background-color: #FFFFFF;
  padding: 8px 16px 8px 16px;
  font-size: 24px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
}

.contact-form .form-container input.validation-error, .contact-form .form-container textarea.validation-error, .contact-form .form-container select.validation-error, .validation-error,
.contact-form .form-container input.is-invalid, .contact-form .form-container textarea.is-invalid, .contact-form .form-container select.is-invalid, .is-invalid,
.contact-form .form-container input.invalid, .contact-form .form-container textarea.invalid, .contact-form .form-container select.invalid, .invalid{
    border: 4px solid rgba(195, 74, 66, 0.2);
}

.contact-form .form-container textarea {
  width: 100%;
  border: 1px solid #D8D8D8;
  background-color: #FFFFFF;
  padding: 16px;
  font-size: 24px;
font-family: "Roboto", sans-serif;
}

.form-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
  margin: 24px 0;
  padding: 24px 0 0 0;
  border-top: 1px solid #707070;
}

.contact-notice-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #707070;
  margin-top: 32px;
}

.form-checkbox {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 24px 0;
}

.form-checkbox > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}

.form-checkbox div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.form-checkbox div.checkbox-wrapper {
    gap: 24px;
}

.form-checkbox input {
  margin: 0;
  margin-right: 4px;
}

.contact-form .contact-select-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 417px;
  padding-bottom: 40px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D8D8D8;
}

.contact-form .contact-select-wrapper .form-container {
  width: 100%;
}

.contact-form .button-wrapper {
  padding: 0;
  padding-top: 32px;
  border-top: 1px solid #707070;
}

.contact-form .button-wrapper {
  padding: 0;
  padding-top: 32px;
  border-top: 1px solid #707070;
}

.contact-form .button-wrapper a, .contact-form .button-wrapper button {
  width: 208px;
}

.contact-form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-form .row > div {
  width: 50%;
}

.contact-notice-text a {
  color: var(--primary-color);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.contact-notice-text a:hover {
  color: var(--text-image-title-color);
}

/**
CONTACT.HTML - END
*/
/**
404.HTML - START
*/
.not-found-container {
  width: 100%;
  height: auto;
  padding: 32px 16% 54px 16%;
}

.not-found-container ul li {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  line-height: 40px;
}

.not-found-container ul li a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease-in;
}

.not-found-container ul li a:hover {
    opacity: 0.7;
}

.not-found-container ul {
  list-style: disc;
  list-style-position: inside;
}

.not-found-form.contact-form .button-wrapper {
  border-top: none;
}

.not-found-form.contact-form .form-title {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

.not-found-form.contact-form .form-title h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--text-image-title-color);
  text-transform: uppercase;
}

/**
404.HTML - END
*/
/**
CONTACT-MESSAGE.HTML - START
*/
.contact-message-container {
  width: 100%;
  height: 963px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  position: relative;
}

.contact-message-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.contact-message-container h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}

.contact-message-container p {
  max-width: 1270px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 100px;
  z-index: 2;
}

.contact-message-container img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 128px;
  z-index: 2;
}

.contact-message-container .button-wrapper {
  z-index: 2;
}

/**
CONTACT-MESSAGE.HTML - END
*/
/**
LOADING.HTML - START
*/
.loading-container {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F2F2F2;
  background-size: cover;
  padding: 0 24px;
}

.loading-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.57);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  z-index: 1;
}

.loading-container img {
  max-width: 870px;
  width: 100%;
  height: auto;
  opacity: 0.1;
  z-index: 2;
}

/* HTML: <div class="loader"></div> */
.loader {
  margin-top: 167px;
  height: 8px;
  width: 100%;
  max-width: 870px;
  --c:no-repeat linear-gradient(var(--primary-color) 0 0);
  background: var(--c), var(--c), #d9d9d9;
  border-radius: 50px;
  background-size: 33.33% 100%;
  -webkit-animation: l16 5s infinite;
          animation: l16 5s infinite;
  z-index: 2;
}

@-webkit-keyframes l16 {
  0% {
    background-position: -150% 0,-150% 0;
  }
  50% {
    background-position: 250% 0,-150% 0;
  }
  100% {
    background-position: 250% 0, 250% 0;
  }
}

@keyframes l16 {
  0% {
    background-position: -150% 0,-150% 0;
  }
  50% {
    background-position: 250% 0,-150% 0;
  }
  100% {
    background-position: 250% 0, 250% 0;
  }
}




/* HTML: <div class="loader"></div> */
.circle-loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--primary-color);
  margin: 0 auto;
  animation:
    l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}
@keyframes l20-1{
   0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
   12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
   25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
   50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
   100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes l20-2{ 
  0%    {transform:scaleY(1)  rotate(0deg)}
  49.99%{transform:scaleY(1)  rotate(135deg)}
  50%   {transform:scaleY(-1) rotate(0deg)}
  100%  {transform:scaleY(-1) rotate(-135deg)}
}

/**
LOADING.HTML - END
*/

/**
SEARCH.HTML - START
*/
.search-results-container {
  width: 100%;
  height: auto;
  padding: 72px 16% 54px 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.search-results-container section {
  width: 100%;
}

h3.search-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-image-title-color);
  margin-bottom: 32px;
}

.search-results-container .total-results-wrapper {
    display: inline-block;
    margin-bottom: 16px;
    font-family: 'Source Sans 3', sans-serif;
}

.search-results-container .total-results-wrapper .total-results {
    font-weight: 700;
}

.search-result-item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #D8D8D8;
  padding: 16px 0;
}

.search-result-item:last-of-type {
  border-bottom: 1px solid #D8D8D8;
}

.search-item-subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-image-title-color);
}

.search-result-item h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 16px;
}

.search-result-item a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
} 

.search-result-item a:hover {
    color: var(--primary-color);
}

.search-item-description {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: var(--primary-color);
}

/**
SEARCH.HTML - END
*/

/**
MEDIA QUERIES - START
*/
@media screen and (max-width: 1740px) {
  .button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .find-out-more-button {
    margin-top: 10px;
    width: 100%;
  }
  .not-found-container .find-out-more-button {
      width: auto;
  }
  .button-wrapper .offer-button {
    width: 100%;
  }
  .vehicle-details-info-container .offer-button {
    width: auto;
  }
  .vehicle-details-info-container .button-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .used-vehicle .button-wrapper .offer-button, .used-vehicle .button-wrapper .find-out-more-button {
    width: auto;
    margin-top: 0;
  }
}

@media screen and (max-width: 1550px) {
    .vehicle-not-found-notice {
        padding: 0 48px;    
    }
  header, .scroll-header-wrapper {
    padding: 10px 20px;
  }
  .top-header-bar {
      padding: 0 20px 0 10px;
  }
  .logo {
    margin-right: 20px;
  }
    header ul {
        gap: 30px;
    }
  form.search {
    width: 200px;
  }
  .banner .banner-text {
      padding-left: 200px;
  }
  .banner-text h2 {
      font-size: 66px;
      line-height: 80px;
  }
  .text-image .text {
    padding-left: 10%;
  }

  .wrapping {
    margin: 56px 224px;
  }
  .footer-information, footer .notice {
    padding-left: 10%;
    padding-right: 10%;
  }
  .vehicle-details-large-slider, .vehicle-details-small-slider {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .vehicle-details-data {
    gap: 64px;
  }
.text-image.service .text {
    padding: 20px 50px 20px 97px;
  }
}

@media screen and (max-width: 1300px) {
  .dropdown {
    left: 0;
    width: 100%;
  }
  .dark-title {
    padding-left: 8%;
  }
  .back-button-container {
      padding-left: 8%;
  }
  .breadcrumbs-container {
      padding-left: 8%;
      padding-top: 4px;
      padding-bottom: 4px;
      height: auto;
  }
  .dark-title-subscript {
    padding-left: 8%;
  }
  .news-list {
    padding: 80px 8% 120px 8%;
  }
  .employees {
    padding: 0 8%;
  }
  .about-us-notice {
    padding: 40px 8%;
    margin-top: 24px;
  }
  .vehicle-not-found-notice {
      padding: 0px 8%;
  }
  .about-us-working-hours {
    padding: 32px 8% 72px 8%;
  }
  .used-vehicles {
    padding: 0 20px;
    margin: 64px auto;
  }
  .vehicle-details {
    padding: 32px 8% 54px 8%;
  }
  .text-image-classic, .double-image, .full-image, .image-gallery, .video-gallery-custom-page, .plain-text-custom-page, .table-custom, .table, .video-custom, .small-text {
    padding: 32px 8% 54px 8%;
  }
  .text-image.full-width .text {
    padding-left: 8%;
  }
  .text-image.full-width .image {
    padding-right: 8%;
  }
  .breadcrumbs-container.light-title-breadcrumbs .breadcrumbs {
      padding: 0 8%;
  }
  .breadcrumbs-container.light-title-breadcrumbs {
      height: 50px;
  }
  .contact-title {
    padding: 0 8%;
    margin-top: 40px;
  }
  .contact-vehicle {
    padding: 32px 8% 26px 8%;
    gap: 150px;
  }
  .contact-form {
    padding: 32px 8% 54px 8%;
  }
  .news-text-image {
    padding: 20px 8% 16px 8%;
  }
  .plain-text {
    padding: 8px 8% 16px 8%;
  }
  .photo-gallery {
    padding: 0 8%;
  }
  .video-gallery {
    padding: 0 8%;
  }
  .not-found-container {
    padding: 32px 8% 32px 8%;
  }
  .search-results-container {
    padding: 32px 8% 54px 8%;
  }
}

@media screen and (max-width: 1275px) {
    .used-vehicles-slider {
        padding-left: 24px;
    }
}

@media screen and (max-width: 1260px) {
    .scroll-header-wrapper .header-info .work-hours {
        display: none;
    }
    .scroll-header-wrapper .header-info {
        margin-left: 20px;
    }
}

@media screen and (max-width: 1300px) {
        header ul li a, header ul li .link-wrapper .navigation-link {
        font-size: 14px;
        line-height: 22px;
    }
    header ul {
        gap: 20px;
    }
}

@media screen and (max-width: 1200px) {

  form.search {
    width: 48px;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  form.search.expanded {
    width: 180px;
  }
  input[type="search"] {
    display: none;
  }
  form.search span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
    .banner .banner-text {
      padding-left: 100px;
  }
  .footer-information, footer .notice {
    padding-left: 5%;
    padding-right: 5%;
  }
  .wrapping {
    margin: 56px 124px;
  }
  .cta-container {
    height: auto;
    padding: 24px;
    gap: 24px;
  }
  .cta-container .card {
    width: 300px;
    margin: 0;
  }
  .text-image .text, .text-image.inverse .text {
    padding-left: 5%;
    padding-right: 5%;
  }
  .used-vehicles-slider .title {
    width: 100%;
  }
  .slider-arrows, .cta-contact {
    display: none;
  }
  .slider-arrows.slider-arrows-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .slider-arrows-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width:95%;
  }
  .vehicle-cards-list .slider-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-form .contact-select-wrapper {
    gap: 200px;
  }
.text-image.service .text {
    padding: 56px 5% 56px 5%;
  }
}

.plus-icon, .minus-icon {
    display: none;
}

.minus-icon svg path {
    fill: var(--primary-color);
}

@media screen and (max-width: 1100px) {
     header, .scroll-header-wrapper {
    padding: 10px 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
    background-color: #FFFFFF;
    flex-direction: column;
    -webkit-transition: opacity 0.3s ease-in-out;
  }
  .header-content.expanded {
    display: flex;
  }
  .header-content .mobile-nav-header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
  }

.header-content .mobile-nav-header .hamburger {
    position: relative;
    padding: 8px;
    cursor: pointer;
    width: 40px;
    min-width: 40px;
}

.header-content .mobile-nav-header span {
    display: block;
    width: 24px; /* Width of each line */
    height: 3px; /* Thickness of each line */
    background-color: #fff; /* Color of the icon */
    position: absolute; /* Positioning for transformation */
    transition: transform 0.3s ease-in-out;
}

.header-content .mobile-nav-header span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.header-content .mobile-nav-header span:nth-child(2) {
    display: none; /* Hidden */
}

.header-content .mobile-nav-header span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
nav {
  width: 100%;
}
header ul {
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 43px 24px;
}
header ul li {
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  position: relative;
  overflow: visible;
}

header ul li a::after, header ul li a:hover::after, header ul li a.active::after {
  display: none;
}
header ul li span {
  width: 100%;
}
header ul li a, header ul li .link-wrapper .navigation-link {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  border-bottom: none;
  padding-bottom: 20px;
}
header ul li a, header ul li .link-wrapper .navigation-link.active {
    width: 0;
}
header ul li a.active {
  color: var(--primary-color);
}
.dropdown > div > ul {
    display: none;
}
.dropdown > div > ul.open {
    display: block;
}
.custom-header .dropdown > div > a:first-child {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: #707070;
}
.dropdown > div > ul > li > a:hover, .dropdown > div > ul > li:hover > a {
  background-color: #FFF;
  color: var(--primary-color);
}
.dropdown > div > ul > li:hover {
  border-left: 2px solid var(--primary-color);
}
.header-content nav ul li div.dropdown {
  z-index: 0;
  position: relative;
  top: 0;
  padding: 0;
  box-shadow: none;
  max-height: none;
  width: calc(100% - 10px);
}
header .header-content nav ul li div.dropdown {
  display: none;
  opacity: 0;
  padding: 0;
  margin-left: 10px;
  transition: opacity 0.3s ease;
}
.header-content nav ul li:hover .dropdown, .dropdown:hover {
  padding: 0;
}

header .header-content nav ul li div.dropdown.open {
  display: block;
  opacity: 1;
  max-height: 100%;
  height: auto;
}
.dropdown > div > ul > li {
  border-bottom: none;
  border-left: 2px solid #707070;
  border-radius: 0;
  margin-bottom: 1px;
  height: 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 40px;
}
.fixed-contact {
	display: none;
}
.dropdown > div {
    width: 100%;
}
.header-content nav ul li div.dropdown div span {
  display: none;
}
.header-content nav ul li div.dropdown div span.navigation-link-wrapper, .custom-header .dropdown > div > a:first-child {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-right: 0;
        color: #707070;
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        text-align: left;
        min-height: auto;
}

.header-content .link-wrapper {
        display: flex;
    width: 100%;
    justify-content: space-between;
}
.header-content nav ul li div.dropdown div span.navigation-link-wrapper .icon-toggle, .header-content nav ul li div.dropdown div a .icon-toggle, .icon-toggle {
    width: 80px;
}
.header-content nav ul li div.dropdown div span.plus-icon, .plus-icon, .header-content nav ul li div.dropdown div span.minus-icon, .minus-icon, .header-content nav ul li div.dropdown div span.navigation-link, .header-content nav ul li div.dropdown div span.icon-toggle, .icon-toggle {
    display: inline-block;
}
.header-content nav ul li div.dropdown div span.icon-toggle, .icon-toggle {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.header-content nav ul li div.dropdown div span.plus-icon, .plus-icon, .header-content nav ul li div.dropdown div span.minus-icon, .minus-icon {
    transform: translateY(3px);
}
.header-content nav ul li div.dropdown div span.plus-icon.hidden, .header-content nav ul li div.dropdown div span.minus-icon.hidden, .plus-icon.hidden, .minus-icon.hidden {
    display: none;
}
.header-content nav ul li div.dropdown div span.plus-icon.visible, .header-content nav ul li div.dropdown div span.minus-icon.visible, .plus-icon.visible, .minus-icon.visible {
    display: inline;
    width: auto;
}
.dropdown > div > ul > li a {
  border-bottom: none;
  min-height: auto;
}
  .header-info {
    display: none;
  }
  .top-header-bar {
    display: none;
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
            cursor: pointer;
  }
    .top-menu-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 40px;
  }
}



@media screen and (max-width: 1000px) {
  .secondary-banner-item .text {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
    .secondary-banner-item .text.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .secondary-banner-item, .secondary-banner-item.active {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .secondary-banner-item.active {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .secondary-banner-item.active:first-child, .secondary-banner-item.active:last-child, .secondary-banner-item:first-child, .secondary-banner-item:last-child {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .secondary-banners-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .banner .banner-text {
      padding-left: 100px;
  }
  .wrapping {
    margin: 56px 24px;
  }
  .container {
    padding: 0 24px;
  }

  .news-text-image.bordered .text, .news-text-image.bordered .image {
    height: 420px;
  }
  .used-vehicles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #F2F2F2;
    margin-top: 0;
    padding-top: 32px;
  }
  .filters {
    width: 100%;
    border-right: none;
    padding: 32px 24px;
    margin-bottom: 32px;
  }
  .mobile-filters-container {
      width: 100%;
      display: none;
  }
  .mobile-filters-container.filters-opened {
      display: block;
  }
  .mobile-filters-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
  }
  .filters h3 {
      margin-bottom: 32px;
  }
  .mobile-filters-toggle .plus-icon {
      display: block;
    }
    
      .mobile-filters-toggle.filters-opened .plus-icon {
      display: none;
    }

  .mobile-filters-toggle .minus-icon {
  display: none;
}
  .mobile-filters-toggle.filters-opened .minus-icon {
  display: block;
}
  .mobile-filters-toggle div {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 18px;
  }
  .mobile-filters-toggle span {
      display: inline-block;
  }
  .used-vehicles-list {
    padding: 32px 0;
    width: 100%;
  }
  .used-vehicle {
    max-width: 100%;
  }
  .vehicle-details-data {
    gap: 32px;
  }
  .contact-form form {
    padding: 28px 54px;
  }
  .contact-vehicle {
    gap: 50px;
  }
  .filters-save-button-container {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 24px;
  }
  .filters-save-button {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 6px;
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 40px;
      cursor: pointer;
  }
  .filters-save-button span {
      text-decoration: none;
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: 0;
    color: #fff;
    width: auto;
  }
  .filters-save-button span.icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
}

@media screen and (max-width: 1300px) {
        .text-image.service, .text-image.service.inverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .text-image.service .text, .text-image.service .image {
      width: 100%;
      height: auto;
  }
    .text-image.service .text {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .text-image.service .text p {
        text-overflow: unset;
        max-height: none;
        -webkit-line-clamp: none;
        overflow: visible;
    }
}

@media screen and (max-width: 900px) {
  .news-text-image.bordered {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .news-text-image.bordered .text, .news-text-image.bordered .image {
    width: 100%;
    height: auto;
  }
  .news-text-image.bordered .image {
    margin-bottom: 24px;
  }
  .image-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    margin-bottom: 24px;
  }
  .large-image {
    width: 100%;
    height: auto;
  }
  .small-images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: auto;
  }
  .small-images > img:first-child {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .news-text-image.inverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .news-text-image .text, .news-text-image .image {
    width: 100%;
    height: auto;
  }
  .news-text-image .text {
    padding-left: 0;
    margin-top: 24px;
  }
}

@media screen and (max-width: 800px) {
  .used-vehicle .button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-us-notice {
      margin-top: 40px;
  }
  .about-us-notice h5 {
      margin-bottom: 32px;
  }
  .used-vehicle .button-wrapper .find-out-more-button {
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
  }
  .used-vehicle .button-wrapper .offer-button {
    width: 100%;
  }
  .text-image.full-width .image {
    padding-right: 8%;
    padding-left: 8%;
  }
  .text-image.full-width .text {
    height: auto;
    padding-bottom: 32px;
  }
.text-image .text {
    padding-top: 10%;
    padding-bottom: 10%;
  }
    .text-image .image img {
    -o-object-fit: contain;
       object-fit: contain;
       width: 100%;
  }
  .text-image .text, .text-image .image {
    height: auto;
  }
  .contact-form .contact-select-wrapper {
    gap: 100px;
  }
}

@media screen and (max-width: 714px) {
	.fixed-contact {
		display: none;
	}
  .employees-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .employees-list article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
  .employees-list article img {
    margin-right: 16px;
    width: 158px;
    height: 180px;
  }
  .employees-list article div {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .employees .icon {
    margin-right: 0;
  }
  .employees {
    padding: 0 2% 0 8%;
  }
  .contact-form .contact-select-wrapper {
    gap: 24px;
  }
  .contact-vehicle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding-bottom: 0;
  }
  .contact-form {
    padding-top: 0;
  }
}

@media screen and (max-width: 700px) {
    .breadcrumbs-container {
        display: none;
    }
  .reserve-drive .container {
    width: 90%;
    height: auto;
    padding-bottom: 64px;
  }
  .title h3 {
    font-size: 44px;
    line-height: 48px;
  }
  .used-vehicles-slider .title {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 0;
    padding-left: 0;
    border-bottom: 1px solid transparent;
  }
  .title {
    padding-left: 5%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .cta-images div {
    height: 200px;
  }
  .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .vehicle-details {
    margin-bottom: 88px;
  }
  .image-gallery .gallery img {
    width: 100%;
    height: auto;
  }
  .video-gallery-custom-page .video-gallery-item {
    width: 100%;
  }
  .video-gallery-custom-page .gallery iframe {
    height: 300px;
  }
  .contact-message-container h1 {
    font-size: 44px;
    line-height: 48px;
  }
  .contact-message-container p {
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 56px;
    margin-top: 24px;
  }
  .contact-message-container img {
    max-width: 300px;
    margin-bottom: 72px;
  }
  .location-container {
      flex-direction: column;
          justify-content: flex-start;
    align-items: flex-start;
  }
    footer .notice {
      flex-direction: column;
          justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
  }
}

@media screen and (max-width: 672px) {
      .cta-container {
          display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
      }

  .card img {
    width: 70px;
    height: auto;
  }

  .cta-container .card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
            width: 100%;
            height: auto;
            padding: 42px 28px;
  }
  .cta-container .card h3 {
      font-size: 24px;
      line-height: 28px;
      white-space: nowrap;
  }

}

@media screen and (max-width: 600px) {
    .vehicle-not-found-actions {
        flex-direction: column;
        gap: 16px;
    }
        .vehicle-not-found-notice {
        padding: 0 24px;  
    }
    .about-us-text {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }
    .about-us-text div {
        width: 100%;
    }
  .dark-title h1, .light-title h1, h1 {
    font-size: 44px;
    line-height: 48px;
  }
  .dark-title-subscript h2, .light-title h2, h2 {
    font-size: 28px;
    line-height: 32px;
  }
  h3, .text-image-classic h3 {
      font-size: 32px;
    line-height: 42px;
  }
  .footer-information nav {
      display: none;
  }
  .plain-text-custom-page {
      padding-bottom: 12px;
  }
  .plain-text-custom-page p {
      font-size: 16px;
      line-height: 28px;
  }
  .dark-title-subscript {
    height: auto;
    min-height: auto;
    padding: 24px 24px;
  }
  .light-title {
    min-height: 130px;
  }
  .breadcrumbs-container.light-title-breadcrumbs {
      height: auto;
      padding-top: 12px;
      padding-bottom: 12px;
  }
  .breadcrumbs-container.light-title-breadcrumbs .breadcrumbs {
      padding: 0 24px;
  }
  .employees h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .dark-title {
      height: auto;
    min-height: 112px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .back-button-container {
      padding-left: 24px;
  }
  .news-list {
    padding: 24px 8% 48px 8%;
  }
  .small-images > img:first-child, .last-image {
    max-height: 150px;
  }
  .small-images .last-image img {
    height: 100%;
  }
    .banner-text div {
    font-size: 18px;
    line-height: 28px;
    padding-left: 5%;
  }
  .banner-text .cta-button {
    line-height: 24px;
    padding: 18px 48px;
  }
  .banner .banner-text {
      position: relative;
      height: 100%;
  }
  div.cta-button-container {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 180px;
    padding-left: 0;
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
.vehicle-image img {
  max-height: none;
}
  .banner .banner-text {
    padding-top: 0%;
    padding-left: 0;
  }
  .banner-text h2 {
    font-size: 50px;
    line-height: 60px;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 24px;
  }
  .sorting {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .used-vehicle-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .sorting-select-container {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sorting-label {
      width: 80%;
  }
  .used-vehicle-title .vehicle-price-container, .used-vehicle-title span, .vehicle-image, .vehicle-data-container .vehicle-info-container {
    width: 100%;
  }
  .used-vehicle-title span.pill-dot {
      width: 3px;
  }
  
  .vehicle-data-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vehicle-details-data.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vehicle-details-slider-container, .vehicle-details-info-container {
    width: 100%;
  }
  .text-image-classic, .double-image, .full-image, .image-gallery, .video-gallery-custom-page, .plain-text-custom-page, .table-custom, .table, .video-custom, .small-text {
    padding: 32px 24px 54px 24px;
  }
  .plain-text-custom-page {
      padding-bottom: 12px;
  }
  .cta-container {
      margin-top: 12px;
  }
  .full-image {
      padding-bottom: 0;
  }
  .plain-text-custom-page h2 {
        margin-bottom: 16px;
  }
  .text-image-classic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-image-classic > div {
    width: 100%;
  }
  .text-image-classic.inverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-image-classic.inverse > div {
    width: 100%;
  }
  .double-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .double-image > div {
    width: 100%;
  }
  .plain-text-custom-page.two-columns, .plain-text-custom-page.three-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .plain-text-custom-page.two-columns > div, .plain-text-custom-page.three-columns > div {
    width: 100%;
  }
  .table-custom table, .table table {
    width: 100%;
  }
  .table-custom th, .table th {
    padding: 16px 0 16px 24px;
  }
  .table-custom td, .table td {
    padding: 16px 0 16px 24px;
  }
  .table h4, .table-custom h4, .table th, .table-custom th, .table td, .table-custom td {
    padding-left: 12px;
  }
  .video-custom {
    padding: 32px 24px 54px 24px;
  }
  .video-custom iframe {
    height: 240px;
  }
  .text-image.text-image.full-width {
    padding: 0;
    padding-bottom: 5%;
  }
  .text-image.full-width .text {
    padding-top: 5%;
  }
  .contact-form .contact-select-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .contact-form .contact-select-wrapper .form-container .select-filter {
    margin-top: 0;
  }
  .contact-form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-form .row > div {
    width: 100%;
  }
  .contact-form .button-wrapper a, .contact-form .button-wrapper button {
    width: 100%;
  }
  .contact-title {
    padding: 0 24px;
  }
  .contact-vehicle {
    padding: 32px 24px 26px 24px;
    gap: 24px;
  }
  .contact-form {
    padding: 0 24px 54px 24px;
  }
  .contact-form form {
    padding: 28px 24px;
  }
  .news-text-image {
    padding: 20px 24px 16px 24px;
  }
  .plain-text {
    padding: 8px 24px 16px 24px;
  }
  .photo-gallery {
    padding: 0 24px;
    margin: 24px 0;
  }
  .video-gallery {
    padding: 0 24px;
  }
  .not-found-container {
    padding: 32px 24px 32px 24px;
  }
    .search-results-container {
    padding: 32px 24px 54px 24px;
  }
  h3.search-title {
    font-size: 32px;
    line-height: 40px;
  }
  .search-result-item h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .search-item-description, .search-item-subtitle {
    font-size: 14px;
    line-height: 28px;
  }
}



@media screen and (max-width: 500px) {
  footer .notice {
    padding-left: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer .notice a {
    margin-bottom: 10px;
  }
  .cta-images div {
    height: 200px;
  }
  .reserve-drive .container {
    padding: 32px 20px;
  }
  .cta-container .card {
    padding-top: 32px;
    padding-bottom: 32px;
    justify-content: space-between;
  }

  .used-vehicles-slider {
      margin-left: 0;
      width: 100%;
      padding-left: 10%;
      padding-right: 5%;
  }
  .popup {
      width: 230px;
      align-items: flex-start;
  }
  .slick-dots li {
      width: 32px;
  }
  .used-vehicles-slider .title {
    padding-left: 0;
    padding-right: 0;
  }
  .used-vehicles-slider .title h3 {
    font-size: 38px;
  }
  .text-image .text h4, .text-image.service .text h5 {
    font-size: 32px;
    line-height: 40px;
  }
  .cta-button {
    font-size: 15px;
    line-height: 16px;
  }
  .working-hours-card {
    width: 100%;
    padding: 16px;
  }
  .vehicle-details-accordion-wrapper .accordion .accordion-content ul {
    -webkit-columns: 1;
            columns: 1;
  }
  .vehicle-details-info-container .offer-button {
    width: 100%;
  }
  .text-image.service .text p {
        margin-bottom: 64px;
        display: block;
        overflow: visible;
        max-height: none;
        -webkit-line-clamp: unset;
  }
}

@media screen and (max-width: 600px) {
    .banner .banner-text {
        padding-top: 10%;
    }
    #sto2_cms_cookie_consent > div {
        gap: 24px
    }
}

@media screen and (max-width: 420px) {
  #sto2_cms_cookie_consent {
      padding-bottom: 0;
  }
  #sto2_cms_cookie_consent > div {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media screen and (max-width: 408px) {
    .footer-information ul {
        flex-direction: column;
        align-items: flex-start;
    }
  .vehicle-card {
    width: 100%;
  }
  .cta-container .card {
      gap: 16px;
  }
  .offer-button {
    font-size: 15px;
    line-height: 16px;
  }
  .button-wrapper .find-out-more-button {
    margin-left: 5px;
  }
  .button-wrapper .offer-button {
    padding: 16px 24px;
  }
  .link-more a {
    display: block;
    width: 100%;
  }
  .button-wrapper {
    padding: 0;
  }
  .cta-container .card {
    padding-top: 16px;
    padding-bottom: 16px;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .banner-text h2, .banner-text div {
    padding-left: 4%;
  }
  .news-card {
    padding: 24px;
    width: 100%;
    height: auto;
  }
  .news-card .news-text {
    width: 100%;
    margin-bottom: 20px;
  }
  .news-list {
    padding: 24px 4% 48px 4%;
  }
  .sorting-select-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sorting-select-container .select-filter {
    height: auto;
    margin-bottom: 24px;
    margin-top: 8px;
  }
  .sorting-label {
    margin-top: 16px;
  }
  .dark-title {
    height: auto;
    padding: 24px 24px;
  }
  .back-button-container {
      padding-left: 24px;
  }
  .text-image-classic .text-bordered {
    padding: 16px 24px;
    font-size: 22px;
    line-height: 40px;
  }
  .reserve-drive .container h5 {
      font-size: 36px;
      line-height: 44px;
  }
  .reserve-drive .container span {
      font-size: 16px;
  }
  .cta-images div span {
      font-size: 24px;
      line-height: 28px;
  }
  .banner-text h2 {
      font-size: 40px;
      line-height: 50px;
  }
  .banner-text div {
      font-size: 15px;
  }
}

@media screen and (max-width: 345px) {
  header, .scroll-header-wrapper {
    padding: 10px 10px;
  }
  .top-menu-mobile {
      padding: 0 10px;
  }
  .button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .button-wrapper .offer-button, .button-wrapper .find-out-more-button {
    width: 100%;
  }
  .button-wrapper .find-out-more-button {
    margin-top: 12px;
  }
  .not-found-form.contact-form .form-title h3 {
    text-align: center;
  }
}

@media screen and (max-width: 300px) {
  .cta-images div {
    height: 120px;
    margin: 3px 6px;
  }
  .container {
    padding: 0 12px;
  }
  .text-image.service .text {
    padding-left: 10px;
    padding-right: 10px;
  }
  .top-menu-mobile {
    padding: 10px;
  }
}

/**
MEDIA QUERIES - END
*/
/*# sourceMappingURL=style.css.map */