@charset "UTF-8";
*,
html,
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

body {
  font-size: 16px;
  min-height: 79vh;
}

p,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

:root {
  --light-text-color: #f3f3f3;
  --light-bg-color: #f7f5f2;
  --light-blue-color: #0078d6;
  --medium-blue-color: #015aba;
  --white-color: #fff;
  --accent-color: #b89e7e;
  --dark-color: #242728;
  --black-color: #000000;
  --light-grey: #a49f9f;
}

/* REUSABLE CLASSES */
.section-heading {
  color: var(--dark-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.067px;
  text-transform: uppercase;
}
@media only screen and (max-width: 520px) {
  .section-heading {
    font-size: 28px;
    line-height: 37.41px;
    letter-spacing: 0.9333333373px;
  }
}

@media screen and (min-width: 1800px) {
  .padding-class {
    padding-right: 200px;
    padding-left: 200px;
  }
}
@media screen and (min-width: 1360px) and (max-width: 1800px) {
  .padding-class {
    padding-right: 110px;
    padding-left: 110px;
  }
}
@media screen and (min-width: 451px) and (max-width: 1359px) {
  .padding-class {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 450px) {
  .padding-class {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.padding-left-class {
  padding-left: 30px;
}
@media screen and (min-width: 1800px) {
  .padding-left-class {
    padding-left: 200px;
  }
}
@media screen and (min-width: 1800px) and (max-width: 1200px) {
  .padding-left-class {
    padding-left: 110px;
  }
}
@media screen and (max-width: 450px) {
  .padding-left-class {
    padding-left: 10px;
  }
}

.padding-class-sm {
  padding: 0 30px;
}
@media screen and (min-width: 1800px) and (max-width: 1200px) {
  .padding-class-sm {
    padding: 0 110px;
  }
}
@media screen and (max-width: 450px) {
  .padding-class-sm {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1800px) {
  .padding-class-sm {
    padding: 0 100px;
  }
}

/* HEADER */
/* ISMAILOS HEADER  */
.home header::before {
  content: " ";
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  height: 140px;
  width: 100%;
  display: block;
  position: absolute;
  z-index: 90;
}
@media only screen and (max-width: 1200px) {
  .home header::before {
    height: 350px;
    background: linear-gradient(180deg, #000 25%, rgba(0, 0, 0, 0) 60%);
  }
}

header::before {
  display: none;
}

.vehicle-details-page header::after {
  content: " ";
  height: 80px;
  width: 100%;
  display: block;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.0001) 100%);
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 450px) {
  .vehicle-details-page header::after {
    height: 40px;
  }
}

.header-wrapper {
  background-color: var(--black-color);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.home header .header-wrapper {
  width: 100%;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.0001) 100%);
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

header .lang-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  height: 30px;
}
header .lang-btn-wrapper .account-icon-wrapper {
  display: flex;
  position: relative;
  right: 80px;
  cursor: pointer;
}
header .lang-btn-wrapper .account-icon-wrapper p {
  color: var(--accent-color);
  font-family: "Geologica";
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--accent-color);
  align-self: center;
}
header .lang-btn-wrapper .account-icon-wrapper img {
  width: 100%;
  height: 100%;
}
header .lang-btn-wrapper .lang-btn {
  color: var(--black-color);
  background-color: var(--accent-color);
  padding: 1px 10px;
  height: 50px;
  position: absolute;
  z-index: 1000000;
  top: -25px;
  transition: all 0.15s;
  border-radius: 0 0 15px 15px;
  -webkit-border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  display: flex;
  flex-direction: row;
}
header .lang-btn-wrapper .lang-btn .lang-wrapper {
  display: flex;
  flex-direction: column;
}
header .lang-btn-wrapper .lang-btn .gr {
  cursor: pointer;
  font-family: "Geologica";
}
header .lang-btn-wrapper .lang-btn .en {
  cursor: pointer;
  font-family: "Geologica";
}
header .lang-btn-wrapper .lang-btn .arrow-down {
  width: 18px;
  height: 18px;
  margin-top: auto;
  margin-left: 3px;
  margin-bottom: 3px;
  cursor: pointer;
}

header .nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* align-items: center; */
}

.ismailos header .logo-wrapper {
  height: 100%;
}
.ismailos header .logo-wrapper a {
  height: 100%;
  display: block;
}
.ismailos header .logo-wrapper a img {
  width: 270px;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 995px) {
  .ismailos header .logo-wrapper a img {
    width: 200px;
    height: 60px;
  }
}

header .desktop-menu {
  display: block;
}

header .menu-list {
  padding-top: 17px;
  margin-right: -30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

header .menu-item {
  padding: 0 25px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

header .has-dropdown:hover .dropdown-content {
  display: block;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 10px;
  padding-left: 10px;
}

header .dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  /* width: 100%; */
  /* margin-left: -25px; */
  padding-bottom: 20px;
  padding-top: 42px;
  top: -15px;
  min-width: 100%;
  /* @media screen and (min-width: 1470px) {
    margin-left: -30px;
  } */
}
header .dropdown-content .dropdown-line {
  display: block;
  background-color: var(--white-color);
  height: 7px;
  width: 35px;
  flex-shrink: 0;
  margin: 20px auto 15px;
  border: none;
}
header .dropdown-content .dropdown-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  width: max-content;
  max-width: max-content;
  margin: 0 auto;
}
header .dropdown-content .dropdown-list a {
  text-decoration: none;
  color: var(--white-color);
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.433px;
}
header .dropdown-content .dropdown-list li {
  width: 100%;
  text-align: center;
  /* padding: 0 15px; */
}
header .dropdown-content .dropdown-list li:hover a {
  font-weight: 800;
}

header .menu-link {
  color: var(--white-color);
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 200;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
}

header .menu-link.gold-color {
  color: var(--accent-color);
}

/* BURGER MENU */
.burger-menu {
  display: block;
  height: 40px;
  cursor: pointer;
}

.burger-icon {
  top: 14px;
}

.burger-icon,
.burger-icon::before,
.burger-icon::after {
  width: 35px;
  height: 1.5px;
  background-color: var(--white-color);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  position: relative;
}
@media screen and (max-width: 480px) {
  .burger-icon,
  .burger-icon::before,
  .burger-icon::after {
    width: 30px;
  }
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  display: block;
}

.burger-icon::before {
  top: -12px;
}

.burger-icon::after {
  bottom: -12px;
}

@media screen and (max-width: 480px) {
  .burger-icon::before {
    top: -10px;
  }
  .burger-icon::after {
    bottom: -10px;
  }
}
.navbar-toggler {
  border: none;
  color: var(--white-color);
  font-size: 30px;
  padding: 0;
}
.navbar-toggler:focus, .navbar-toggler:active {
  box-shadow: none;
}

.offcanvas,
.offcanvas-body {
  background-color: var(--black-color);
}

.offcanvas.offcanvas-end {
  border-left: none;
}
@media only screen and (max-width: 530px) {
  .offcanvas.offcanvas-end {
    width: 100%;
  }
}

.close-menu-btn {
  background-color: var(--black-color);
  padding-top: 40px;
  margin: 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.close-menu-btn .close-logo {
  width: 180px;
}
@media only screen and (min-width: 530px) {
  .close-menu-btn .close-logo {
    visibility: hidden;
  }
}
.close-menu-btn .close-btn {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .close-menu-btn {
    padding-top: 25px;
  }
}

.navbar-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.nav-item {
  width: 100%;
  text-align: center;
}

.offcanvas-body .languages {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.offcanvas-body .languages .lang-btn {
  background-color: transparent;
  border: none;
  font-family: "Geologica";
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 21px; /* 131.25% */
  letter-spacing: 0.433px;
}

.offcanvas-body .languages .active {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: unset;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
  color: var(--white-color);
}

.dropdown-menu {
  position: unset !important;
  inset: unset !important;
  transform: unset !important;
  background-color: var(--black-color);
  text-align: center;
}

.dropdown-menu.show {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 10px;
}

.dropdown-item {
  color: var(--white-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 161.538% */
  letter-spacing: 0.433px;
}

.dropdown-item:hover {
  background-color: inherit;
  color: var(--white-color);
  font-weight: 800;
}

.dropdown-toggle::before {
  content: "";
  margin-left: auto;
  vertical-align: 0.255em;
  width: 24px;
  height: 24px;
  border: none;
}

.dropdown-toggle::after {
  content: "";
  background-image: url(../assets/plus.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  display: inline-block;
  margin-left: auto;
  vertical-align: 0.255em;
  width: 24px;
  height: 24px;
  border: none;
}

.dropdown-toggle.show::after {
  content: "";
  background-image: url(../assets/minus.svg);
}

/* HERO SECTION */
.hero-banner {
  position: relative;
}

/* VIDEO */
.hero-banner .video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  height: 900px;
  background-color: black;
}



@media only screen and (min-width: 995px) and (max-width: 1400px) {
  .hero-banner .video-container {
    margin-top: -35px;
  }
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
}

@media only screen and (max-width: 640px) {
  .ismailos.home:has(.video-container) .hero-banner {
    padding-bottom: 140px;
  }
}
@media only screen and (min-width: 641px) and (max-width: 995px) {
  .ismailos.home:has(.video-container) .hero-banner {
    padding-bottom: 220px;
  }
}

.ismailos.home:has(.video-container) .hero-banner::after {
  background: linear-gradient(0deg, #000 55.14%, rgba(255, 255, 255, 0) 65%);
  height: 400px;
}


.ismailos.home:has(.video-container) .hero-txt-wrapper {
  bottom: 60px;
  gap: 10px;
}


.ismailos:has(.video-container) .search-stock.relative-position .search-stock-wrapper {
  margin-top: -50px;
}
@media only screen and (min-width: 645px) and (max-width: 995px) {
  .ismailos:has(.video-container) .search-stock.relative-position .search-stock-wrapper {
    margin-top: -80px;
  }
}


@media only screen and (min-width: 996px) and (max-width: 1480px) {
  .ismailos:not(.home) .hero-banner::after {
    height: 300px;
  }
}
/* @media only screen and (min-width: 490px) and (max-width: 640px) {
  .ismailos:not(.home) .hero-banner {
    margin-top: 80px;
  }
} */

@media only screen and (max-width: 640px) {
  .ismailos:not(.home) .hero-txt-wrapper {
    /* bottom: 20px; */
    bottom: 10%;
  }
}

/* VIDEO-END */
.ismailos .hero-banner {
  margin-bottom: -5px;
}

@media only screen and (max-width: 995px) {
  /* =========================
     HERO BANNER STACKING LOGIC
     ========================= */

  /* 1. Cleanup: Remove left-to-right gradient (before) */
  .ismailos.home .hero-banner::before {
    content: none;
  }

  /* 2. Overlay gradient */
  .ismailos.home .hero-banner::after,
  .ismailos.home:has(.video-container) .hero-banner::after,
  .ismailos .hero-banner.white::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: linear-gradient(0deg, #000 55.14%, rgba(255, 255, 255, 0) 65%) !important;
    height: 600px !important;
    left: 0;
    width: 100%;
    bottom: 0;
    pointer-events: none;
  }

  /* 3. Image fallback layout */
  .ismailos.home .hero-banner .hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: cover;
    margin-top: 90px;
    margin-bottom: 330px !important;
    aspect-ratio: 16/9;
  }

  .ismailos .hero-banner .hero-img {
    margin-bottom: 330px ;
    aspect-ratio: 16/9 !important;
    height: 100% !important;
  }

  /* 4. Video layout */
  .hero-banner .video-container {
    position: relative;
    width: 100%;
    height: 360px;
    margin-top: 40px;
    overflow: hidden;
    background-color: black;
    border-radius: 12px;
    z-index: 1;
  }

  @media only screen and (min-width: 641px) {
    .hero-banner .video-container {
      height: 500px;
    }
  }

  .video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
  }

  /* 5. Text wrapper */
  .ismailos.home .hero-txt-wrapper {
    position: absolute;
    z-index: 3;
    bottom: 180px;
  }

  .ismailos .hero-txt-wrapper {
    position: absolute;
    z-index: 3;
    bottom: 90px;
    left: 30px;
  }

  @media only screen and (min-width: 645px) {
    .ismailos.home:has(.video-container) .hero-txt-wrapper {
      bottom: 100px;
    }
  }

  /* 6. Padding to make space for text inside hero */
  @media only screen and (min-width: 641px) {
    .ismailos.home:has(.video-container) .hero-banner {
      padding-bottom: 220px;
    }
  }

  /* 7. Optional: Adjust search form margin if needed */
  @media only screen and (min-width: 645px) {
    .ismailos:has(.video-container) .search-stock.relative-position .search-stock-wrapper {
      margin-top: -80px;
    }
  }
}


.ismailos .hero-banner.white::before {
  content: "";
  background: linear-gradient(90deg, #000 30.14%, rgba(255, 255, 255, 0) 91%);
  position: absolute;
  z-index: 100;
  height: 100%;
  bottom: 0;
  width: 40%;
}
@media only screen and (max-width: 995px) {
  .ismailos .hero-banner.white::before {
    content: none;
  }
}
.ismailos .hero-banner.white::after {
  content: "";
  background: linear-gradient(0deg, #000 20.14%, rgba(255, 255, 255, 0) 91%);
  position: absolute;
  z-index: 100;
  height: 30%;
  left: 0;
  width: 100%;
  bottom: 0;
}

@media only screen and (max-width: 550px) {
  .ismailos .hero-banner.white::after {
    background: linear-gradient(0deg, #000 55.14%, rgba(255, 255, 255, 0) 65%);
    height: 450px !important;
  }
}

.ismailos.home:has(.video-container) .header-wrapper {
  background-color: black !important;
}

.ismailos.home:has(.video-container) header:before {
  content: none;
}
.ismailos.home:has(.video-container) header:after {
  content: none;
}

.ismailos .hero-banner:has(.video-container)::before {
  content: none;
}

.ismailos.home .hero-banner {
  margin-bottom: -5px;
}
.ismailos.home .hero-banner::before {
  content: "";
  background: linear-gradient(90deg, #000 30.14%, rgba(255, 255, 255, 0) 91%);
  position: absolute;
  z-index: 100;
  height: 100%;
  bottom: 0;
  width: 40%;
}

.ismailos.home .hero-banner::after {
  content: "";
  background: linear-gradient(0deg, #000 20.14%, rgba(255, 255, 255, 0) 91%);
  position: absolute;
  z-index: 100;
  height: 30%;
  left: 0;
  width: 100%;
  bottom: 0;
}


.ismailos.home .hero-banner .hero-img {
  width: 100%;
  object-fit: cover;
  position: relative;
  margin-top: 0;
}

@media only screen and (min-width: 1451px) and (max-width: 1670px) {
  .ismailos.home .hero-banner .hero-img {
    aspect-ratio: 2/0.9;
  }
}
@media only screen and (max-width: 1450px) {
  .ismailos.home .hero-banner .hero-img {
    aspect-ratio: 13/7;
  }
}

.ismailos .hero-banner .hero-img {
  width: 100%;
  object-fit: cover;
  position: relative;
  margin-top: 90px;
}
@media only screen and (max-width: 1450px) {
  .ismailos .hero-banner .hero-img {
    aspect-ratio: 13/7;
    height: 800px;
  }
}

@media only screen and (max-width: 550px) {
  .ismailos .hero-banner .hero-img {
    margin-bottom: 250px;
  }
}

.ismailos.home .hero-txt-wrapper {
  position: absolute;
  bottom: 15%;
  left: 110px;
  z-index: 999;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1801px) {
  .ismailos.home .hero-txt-wrapper {
    left: 200px;
  }
}
@media screen and (max-width: 1359px) {
  .ismailos.home .hero-txt-wrapper {
    left: 30px;
  }
}

@media screen and (max-width: 450px) {
  .ismailos.home .hero-txt-wrapper {
    left: 10px;
    gap: 15px;
  }
}

.ismailos .hero-txt-wrapper {
  position: absolute;
  bottom: 10%;
  left: 110px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1801px) {
  .ismailos .hero-txt-wrapper {
    left: 200px;
  }
}
@media screen and (max-width: 1359px) {
  .ismailos .hero-txt-wrapper {
    left: 30px;
  }
}

@media screen and (max-width: 550px) {
  .ismailos .hero-txt-wrapper {
    bottom: 20px;
    left: 0;
    width: 100%;
  }
}

.ismailos .hero-header {
  font-family: "Geologica";
  font-size: 46px;
  font-weight: 600;
  line-height: 61.46px;
  letter-spacing: 1.5333333015px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  padding-right: 20px;
}
@media only screen and (max-width: 1100px) {
  .ismailos .hero-header {
    font-size: 35px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .ismailos .hero-header {
    font-size: 28px;
    line-height: normal;
    letter-spacing: 0.767px;
  }
}
@media screen and (max-width: 550px) {
  .ismailos .hero-header {
    padding-left: 20px;
  }
}
.ismailos .hero-header .dark-txt {
  color: var(--accent-color);
}
.ismailos .hero-header .light-txt {
  color: var(--white-color);
}

.ismailos.home .hero-header {
  padding-left: 0;
}

.ismailos .hero-btn {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  width: 312px;
  padding: 13px 0;
  color: var(--light-text-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 996px) {
  .ismailos .hero-btn {
    margin-bottom: 30px;
  }
  .ismailos .hero-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
  }
}
@media only screen and (max-width: 550px) {
  .ismailos .hero-btn {
    margin: 0 auto;
  }
}

.ismailos.home .hero-btn {
  margin: 0;
}

/* SEARCH STOCK */
.ismailos .search-stock.relative-position .search-stock-wrapper {
  position: relative;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -90px;
}
@media only screen and (max-width: 995px) {
  .ismailos .search-stock.relative-position .search-stock-wrapper {
    margin-top: -150px;
  }
}

.ismailos .search-stock-wrapper {
  padding: 30px 60px;
  background-color: var(--light-bg-color);
  border-bottom: 3px solid var(--dark-color);
}
@media only screen and (max-width: 995px) {
  .ismailos .search-stock-wrapper {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .ismailos .search-stock-wrapper {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .ismailos .search-stock-wrapper {
    padding: 30px 10px;
  }
}
.ismailos .search-stock-wrapper h2 {
  margin-bottom: 25px;
  text-align: left;
}
.ismailos .search-stock-wrapper .search-stock-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 860px) {
  .ismailos .search-stock-wrapper .search-stock-form {
    gap: 15px;
  }
}
.ismailos .search-stock-wrapper .search-stock-row {
  padding: 4px;
  background-color: var(--white-color);
  border: 1px solid var(--dark-color);
  display: flex;
  flex-direction: row;
  flex: 1;
}
.ismailos .search-stock-wrapper .search-stock-label {
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 400;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  padding: 12px 0;
  width: 33.333333%;
  cursor: pointer;
}
@media only screen and (max-width: 420px) {
  .ismailos .search-stock-wrapper .search-stock-label {
    font-size: 14px;
  }
}
.ismailos .search-stock-wrapper .search-stock-label:has([type=radio]:checked) {
  background-color: var(--dark-color);
  color: var(--white-color);
}
.ismailos .search-stock-wrapper .search-stock-input {
  display: none;
  cursor: pointer;
}
.ismailos .search-stock-wrapper .search-stock-upper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 79.4%;
}
@media only screen and (max-width: 1200px) {
  .ismailos .search-stock-wrapper .search-stock-upper {
    width: 100%;
  }
}
@media only screen and (max-width: 860px) {
  .ismailos .search-stock-wrapper .search-stock-upper {
    flex-direction: column;
    gap: 15px;
  }
}
.ismailos .search-stock-wrapper .grey-txt {
  color: var(--light-grey) !important;
}
.ismailos .search-stock-wrapper .search-stock-lower {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 30px;
}
@media only screen and (max-width: 1200px) {
  .ismailos .search-stock-wrapper .search-stock-lower {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 30px 30px;
    grid-template-areas: "upper-line-left upper-line-right" "middle-line-left middle-line-right" ". lower-line";
  }
  .ismailos .search-stock-wrapper .search-stock-lower .input-wrapper:nth-of-type(1) {
    grid-area: upper-line-left;
  }
  .ismailos .search-stock-wrapper .search-stock-lower .input-wrapper:nth-of-type(2) {
    grid-area: upper-line-right;
  }
  .ismailos .search-stock-wrapper .search-stock-lower .input-wrapper:nth-of-type(3) {
    grid-area: middle-line-left;
  }
  .ismailos .search-stock-wrapper .search-stock-lower .input-wrapper:nth-of-type(4) {
    grid-area: middle-line-right;
  }
  .ismailos .search-stock-wrapper .search-stock-lower .search-button {
    grid-area: lower-line;
  }
}
@media only screen and (max-width: 860px) {
  .ismailos .search-stock-wrapper .search-stock-lower {
    gap: 15px 15px;
  }
}
.ismailos .search-stock-wrapper .select-input {
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 400;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 17px 20px;
  color: var(--white-color);
  text-transform: uppercase;
  background-color: var(--dark-color);
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: 1px solid var(--dark-color);
  width: 100%;
  cursor: pointer;
  position: absolute;
}
@media only screen and (max-width: 480px) {
  .ismailos .search-stock-wrapper .select-input {
    padding: 17px 10px;
  }
}
@media only screen and (max-width: 420px) {
  .ismailos .search-stock-wrapper .select-input {
    font-size: 14px;
  }
}
.ismailos .search-stock-wrapper .select-input:focus, .ismailos .search-stock-wrapper .select-input:active {
  border: 1px solid var(--dark-color);
  outline: none;
}
.ismailos .search-stock-wrapper .input-wrapper {
  flex: 1;
  position: relative;
}
.ismailos .search-stock-wrapper .input-wrapper::after {
  content: "";
  background-image: url(../assets/chevron-right.png);
  background-repeat: no-repeat;
  color: var(--white-color);
  font-family: "Font Awesome 6 Pro";
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.7px;
  display: block;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  position: absolute;
  right: 20px;
  top: 40%;
  z-index: 100;
  pointer-events: none;
}
@media only screen and (max-width: 480px) {
  .ismailos .search-stock-wrapper .input-wrapper::after {
    right: 10px;
  }
}
.ismailos .search-stock-wrapper .input-wrapper:has(.grey-txt)::after {
  filter: brightness(0) saturate(100%) invert(77%) sepia(1%) saturate(1195%) hue-rotate(355deg) brightness(83%) contrast(97%);
}
.ismailos .search-stock-wrapper .search-button {
  background-color: var(--white-color);
  color: var(--dark-color);
  text-transform: uppercase;
  padding: 17px 0;
  border: 1px solid var(--dark-color);
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 400;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 var(--dark-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (max-width: 420px) {
  .ismailos .search-stock-wrapper .search-button {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1000px) {
  .ismailos .search-stock-wrapper .search-button:hover {
    box-shadow: inset 400px 0 0 0 var(--dark-color);
    color: var(--white-color);
  }
}

/* CARS CAROUSEL */
.ismailos .cars-carousel {
  margin: 70px 0;
}
.ismailos .cars-carousel .carousel {
  margin: 10px 40px;
  display: flex;
}
@media only screen and (max-width: 1400px) {
  .ismailos .cars-carousel .carousel {
    /* width: 95%; */
  }
}
.ismailos .cars-carousel .carousel-item-next,
.ismailos .cars-carousel .carousel-item-prev,
.ismailos .cars-carousel .carousel-item.active {
  display: flex;
  justify-content: space-evenly;
}
.ismailos .cars-carousel .carousel-inner {
  align-self: end;
  padding: 80px 0;
  margin: 0 auto;
}
.ismailos .cars-carousel .carousel-control-next,
.ismailos .cars-carousel .carousel-control-prev {
  width: 60px;
  opacity: 1;
}
.ismailos .cars-carousel .carousel-control-next:hover, .ismailos .cars-carousel .carousel-control-next:focus, .ismailos .cars-carousel .carousel-control-next:active,
.ismailos .cars-carousel .carousel-control-prev:hover,
.ismailos .cars-carousel .carousel-control-prev:focus,
.ismailos .cars-carousel .carousel-control-prev:active {
  opacity: 1;
}
.ismailos .cars-carousel .carousel-control-next-icon,
.ismailos .cars-carousel .carousel-control-prev-icon {
  width: 2.5rem;
  height: 3rem;
}
.ismailos .cars-carousel .carousel-control-next-icon {
  background-image: url(../assets/thin-arrow.png);
}
.ismailos .cars-carousel .carousel-control-prev-icon {
  background-image: url(../assets/thin-arrow.png);
  transform: rotate(180deg);
}
@media only screen and (min-width: 1100px) {
  .ismailos .cars-carousel {
    margin: 70px 40px;
  }
}
.ismailos .cars-carousel .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  align-self: center;
  margin-right: 0;
}
.ismailos .cars-carousel .swiper-slide img {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.ismailos .cars-carousel .carousel-control-next,
.ismailos .cars-carousel .carousel-control-prev {
  width: 60px;
  opacity: 1;
}
.ismailos .cars-carousel .carousel-control-next:hover, .ismailos .cars-carousel .carousel-control-next:focus, .ismailos .cars-carousel .carousel-control-next:active,
.ismailos .cars-carousel .carousel-control-prev:hover,
.ismailos .cars-carousel .carousel-control-prev:focus,
.ismailos .cars-carousel .carousel-control-prev:active {
  opacity: 1;
}

/* CARD SECTION */
.ismailos .card-section {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--light-bg-color);
  position: relative;
}
.ismailos .card-section h2 {
  padding-bottom: 50px;
  margin-bottom: 0;
  text-align: center;
}
.ismailos .card-section .card-main-wrapper {
  margin: 0 auto;
  padding-bottom: 30px;
  color: var(--dark-color);
  display: flex;
  flex-direction: row;
  gap: 35px;
  overflow-x: auto;
  scroll-snap-type: both mandatory;
  overscroll-behavior-x: contain;
  cursor: grab;
}
@media only screen and (max-width: 450px) {
  .ismailos .card-section .card-main-wrapper {
    gap: 15px;
  }
}
@media only screen and (max-width: 1800px) {
  .ismailos .card-section .card-main-wrapper {
    margin: 0 110px;
  }
}
@media only screen and (max-width: 1100px) {
  .ismailos .card-section .card-main-wrapper {
    margin: 0 60px;
  }
}
@media only screen and (max-width: 545px) {
  .ismailos .card-section .card-main-wrapper {
    margin: 0 40px;
  }
}
.ismailos .card-section .card-main-wrapper::-webkit-scrollbar {
  scrollbar-width: thin;
  height: 10px;
}
.ismailos .card-section .card-main-wrapper::-webkit-scrollbar-thumb {
  background: var(--dark-color);
  border-radius: 10px;
}
.ismailos .card-section .card-main-wrapper::-webkit-scrollbar-track {
  background: var(--white-color);
  border-radius: 10px;
}
.ismailos .card-section .card {
  width: 350px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--dark-color);
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
@media only screen and (max-width: 450px) {
  .ismailos .card-section .card {
    width: 300px;
  }
}
.ismailos .card-section .card .card-image-wrapper {
  width: 100%;
  position: relative;
}
.ismailos .card-section .card .card-image-wrapper .card-image {
  width: 100%;
  aspect-ratio: 9/6;
  object-fit: cover;
}
.ismailos .card-section .card .card-image-wrapper .display-none {
  display: none;
}
.ismailos .card-section .card .card-image-wrapper .card-image-text {
  position: absolute;
  background-color: #015aba;
  padding: 8px 15px;
  z-index: 10;
  top: 0;
}
.ismailos .card-section .card .card-image-wrapper .card-image-text p {
  text-transform: uppercase;
  font-family: "Geologica";
  font-size: 12px;
  font-weight: 600;
  line-height: 16.03px;
  letter-spacing: 0.400000006px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text-color);
  margin-top: 1px;
}
.ismailos .card-section .card .card-text-wrapper {
  height: 100%;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 450px) {
  .ismailos .card-section .card .card-text-wrapper {
    padding: 20px;
  }
}
.ismailos .card-section .card .card-text-wrapper .upper-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ismailos .card-section .card .card-text-wrapper .upper-content-wrapper button {
  outline: none;
  border: none;
  background-color: transparent;
  align-self: flex-start;
  margin-top: 5px;
  cursor: pointer;
}
.ismailos .card-section .card .card-text-wrapper .upper-content-wrapper img {
  width: 25px;
  height: 23px;
}
.ismailos .card-section .card .card-text-wrapper p:first-of-type {
  font-family: "Geologica";
  font-size: 21px;
  font-weight: 600;
  line-height: 28.06px;
  letter-spacing: 0.6999999881px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.ismailos .card-section .card .card-text-wrapper p:nth-of-type(2) {
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 600;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 15px;
}
.ismailos .card-section .card .card-text-wrapper p:nth-of-type(3) {
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 600;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.ismailos .card-section .card .card-text-wrapper .card-price {
  font-family: "Geologica";
  font-size: 26px;
  font-weight: 800;
  line-height: 34.74px;
  letter-spacing: 0.8666666746px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.ismailos .card-section .card .card-text-wrapper .car-details-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 15px;
}
.ismailos .card-section .card .card-text-wrapper .car-details {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.ismailos .card-section .card .card-text-wrapper .car-details img {
  width: 23px;
  height: 23px;
}
.ismailos .card-section .card .card-text-wrapper .car-details p {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.ismailos .card-section .card .card-text-wrapper .card-btn {
  padding: 10px 0;
  display: block;
  width: 100%;
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 600;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-decoration: none;
  text-transform: uppercase;
}
.ismailos .card-section .card .card-text-wrapper .light {
  margin: 20px 0;
  color: var(--dark-color);
  background-color: var(--white-color);
  border: 1px solid var(--accent-color);
  box-shadow: inset 0 0 0 0 var(--accent-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .ismailos .card-section .card .card-text-wrapper .light:hover {
    box-shadow: inset 400px 0 0 0 var(--accent-color);
    color: var(--white-color);
  }
}
.ismailos .card-section .card .card-text-wrapper .dark {
  color: var(--light-text-color);
  background-color: var(--dark-color);
  border: 1px solid var(--dark-color);
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .ismailos .card-section .card .card-text-wrapper .dark:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--dark-color);
  }
}
.ismailos .card-section .card .card-text-wrapper .btn-bottom {
  margin-top: auto;
}
.ismailos .card-section .button-container button {
  position: absolute;
  z-index: 100;
  top: 50%;
  background-color: transparent;
  border: none;
  width: 2.5rem;
  height: 3rem;
}
.ismailos .card-section .button-container button img {
  width: 100%;
  height: 100%;
}
.ismailos .card-section .button-container .prev {
  left: 140px;
}
.ismailos .card-section .button-container .prev img {
  transform: rotate(180deg);
}
.ismailos .card-section .button-container .next {
  right: 140px;
}
@media only screen and (max-width: 1800px) {
  .ismailos .card-section .button-container .prev {
    left: 90px;
  }
  .ismailos .card-section .button-container .next {
    right: 90px;
  }
}
@media only screen and (max-width: 1100px) {
  .ismailos .card-section .button-container .prev {
    left: 35px;
  }
  .ismailos .card-section .button-container .next {
    right: 35px;
  }
}
@media only screen and (max-width: 545px) {
  .ismailos .card-section .button-container .prev {
    left: 5px;
  }
  .ismailos .card-section .button-container .next {
    right: 5px;
  }
}

/* CAROUSEL - COMPACT */
.ismailos .carousel-compact {
  margin: 50px 0;
}
@media only screen and (max-width: 1025px) {
  .ismailos .carousel-compact {
    margin: 50px 0 180px 0;
  }
}
.ismailos .carousel-compact h2 {
  padding-bottom: 40px;
  text-align: center;
}
.ismailos .carousel-compact .carousel {
  margin: 10px 80px 10px 0;
}
@media only screen and (min-width: 1800px) {
  .ismailos .carousel-compact .carousel {
    margin: 10px 190px 10px 0;
  }
}
@media only screen and (max-width: 1280px) {
  .ismailos .carousel-compact .carousel {
    margin: 10px 0 10px 0;
  }
}
@media only screen and (max-width: 995px) {
  .ismailos .carousel-compact .carousel {
    margin: 0;
  }
}
.ismailos .carousel-compact .carousel-inner {
  margin: 0;
  padding: 0;
}
.ismailos .carousel-compact .carousel-control-next,
.ismailos .carousel-compact .carousel-control-prev {
  width: 60px;
  opacity: 1;
}
.ismailos .carousel-compact .carousel-control-next-icon,
.ismailos .carousel-compact .carousel-control-prev-icon {
  width: 2.5rem;
  height: 3rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.ismailos .carousel-compact .carousel-control-prev {
  filter: brightness(0) saturate(100%) invert(97%) sepia(33%) saturate(49%) hue-rotate(314deg) brightness(104%) contrast(91%);
  margin-left: 190px;
}
@media only screen and (max-width: 1800px) {
  .ismailos .carousel-compact .carousel-control-prev {
    margin-left: 80px;
  }
}
@media only screen and (max-width: 1280px) {
  .ismailos .carousel-compact .carousel-control-prev {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 1025px) {
  .ismailos .carousel-compact .carousel-control-prev {
    left: 300px;
    filter: unset;
    margin-left: 0;
  }
}
@media only screen and (max-width: 740px) {
  .ismailos .carousel-compact .carousel-control-prev {
    left: 200px;
  }
}
@media only screen and (max-width: 550px) {
  .ismailos .carousel-compact .carousel-control-prev {
    left: 150px;
  }
}
@media only screen and (max-width: 430px) {
  .ismailos .carousel-compact .carousel-control-prev {
    left: 110px;
  }
}
.ismailos .carousel-compact .carousel-control-prev-icon {
  background-image: url(../assets/thin-arrow.png);
  transform: rotate(180deg);
}
@media only screen and (max-width: 1025px) {
  .ismailos .carousel-compact .carousel-control-next {
    right: 300px;
  }
}
@media only screen and (max-width: 740px) {
  .ismailos .carousel-compact .carousel-control-next {
    right: 200px;
  }
}
@media only screen and (max-width: 550px) {
  .ismailos .carousel-compact .carousel-control-next {
    right: 150px;
  }
}
@media only screen and (max-width: 430px) {
  .ismailos .carousel-compact .carousel-control-next {
    right: 110px;
  }
}
.ismailos .carousel-compact .carousel-control-next-icon {
  background-image: url(../assets/thin-arrow.png);
}
@media only screen and (max-width: 1025px) {
  .ismailos .carousel-compact .carousel-control-next,
  .ismailos .carousel-compact .carousel-control-prev {
    bottom: -80px;
    top: unset;
  }
}
.ismailos .carousel-compact .inner-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-right: 60px;
  height: 100%;
}
@media only screen and (max-width: 1025px) {
  .ismailos .carousel-compact .inner-wrapper {
    flex-direction: column;
    margin-right: 10px;
  }
}
.ismailos .carousel-compact .img-container {
  flex-basis: 45%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ismailos .carousel-compact .img-container {
    flex-basis: 45%;
  }
}
@media only screen and (max-width: 1025px) {
  .ismailos .carousel-compact .img-container {
    flex-basis: unset;
    height: 100%;
  }
}
.ismailos .carousel-compact .img-container img {
  height: 100%;
  aspect-ratio: 11/8;
  object-fit: cover;
}
@media only screen and (max-width: 1025px) {
  .ismailos .carousel-compact .img-container img {
    aspect-ratio: 5/3;
  }
}
.ismailos .carousel-compact .txt-container {
  background-color: var(--dark-color);
  padding: 50px 50px 50px 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  flex-basis: 60%;
}
@media only screen and (min-width: 2200px) {
  .ismailos .carousel-compact .txt-container {
    justify-content: center;
  }
}
@media only screen and (max-width: 1799px) {
  .ismailos .carousel-compact .txt-container {
    padding: 50px 50px 50px 150px;
  }
}
@media only screen and (max-width: 1280px) {
  .ismailos .carousel-compact .txt-container {
    padding: 50px 50px 50px 80px;
  }
}
@media only screen and (max-width: 1025px) {
  .ismailos .carousel-compact .txt-container {
    padding: 50px 40px;
    flex-basis: unset;
  }
}
@media only screen and (max-width: 480px) {
  .ismailos .carousel-compact .txt-container {
    padding: 40px 20px;
  }
}
.ismailos .carousel-compact .txt-container h3 {
  color: var(--accent-color);
  font-family: "Geologica";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.867px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ismailos .carousel-compact .txt-container p:first-of-type {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.ismailos .carousel-compact .txt-container p:not(:first-of-type) {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ismailos .carousel-compact .txt-container .carousel-btn {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--light-text-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  border: 1px solid var(--accent-color);
  background: var(--dark-color);
  margin-right: auto;
  margin-top: 40px;
  padding: 14px 40px;
  box-shadow: inset 0 0 0 0 var(--accent-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .ismailos .carousel-compact .txt-container .carousel-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--accent-color);
    color: var(--dark-color);
  }
}
@media only screen and (max-width: 480px) {
  .ismailos .carousel-compact .txt-container .carousel-btn {
    margin-right: unset;
  }
}

/* SERVICES SECTION */
.ismailos .services-section {
  display: flex;
  flex-direction: column;
  margin: 70px 50px;
}
@media only screen and (max-width: 1100px) {
  .ismailos .services-section {
    margin: 70px 0 70px 0;
  }
}
.ismailos .services-section h2 {
  padding-bottom: 50px;
  text-align: center;
}
.ismailos .services-section .services-wrapper {
  display: flex;
  flex-direction: row;
  gap: 3%;
}
@media only screen and (min-width: 1400px) {
  .ismailos .services-section .services-wrapper {
    gap: 8%;
  }
}
@media only screen and (max-width: 995px) {
  .ismailos .services-section .services-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.ismailos .services-section .services-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 33.333%;
}
@media only screen and (max-width: 995px) {
  .ismailos .services-section .services-item {
    width: 100%;
  }
}
.ismailos .services-section .services-item .services-img {
  width: 100%;
}
.ismailos .services-section .services-item .services-img img {
  width: 100%;
  aspect-ratio: 30/24;
  object-fit: cover;
}
@media only screen and (max-width: 1100px) {
  .ismailos .services-section .services-item .services-img img {
    aspect-ratio: 10/7;
  }
}
@media only screen and (max-width: 520px) {
  .ismailos .services-section .services-item .services-img img {
    aspect-ratio: 1/1;
  }
}
.ismailos .services-section .services-txt-wrapper {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.ismailos .services-section .services-txt-wrapper h3 {
  color: var(--accent-color);
  font-family: "Geologica";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.867px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.ismailos .services-section .services-txt-wrapper .services-txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.ismailos .services-section .services-txt-wrapper .services-txt p {
  color: var(--dark-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ismailos .services-section .services-txt-wrapper .services-txt p:last-of-type {
  margin-bottom: 20px;
}
.ismailos .services-section .services-btn {
  display: block;
  margin-top: auto;
  max-width: 280px;
  padding: 14px 40px;
  color: var(--light-text-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .ismailos .services-section .services-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--dark-color);
  }
}
@media only screen and (max-width: 480px) {
  .ismailos .services-section .services-btn {
    width: 100%;
    max-width: unset;
  }
}

/* TERMS AND CONDITIONS */
.terms-and-conditions.full-height {
  height: calc(100vh - 230px - 158.7px);
  padding-top: 120px;
}
@media only screen and (max-width: 1100px) {
  .terms-and-conditions.full-height {
    padding-top: 80px;
    height: 43vh;
  }
}
@media only screen and (max-width: 995px) {
  .terms-and-conditions.full-height {
    padding-top: 50px;
  }
}
.terms-and-conditions.full-height .terms-main-header {
  margin-bottom: 50px;
}

.terms-and-conditions {
  margin: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 995px) {
  .terms-and-conditions {
    margin: 110px 20px 20px;
  }
}
.terms-and-conditions .terms-main-header {
  font-size: 28px;
  color: #b89e7e;
  font-size: 20px;
  text-align: center;
  width: 50%;
  border-bottom: 1px solid #b89e7e;
  /* line-height: 0.1rem; */
  margin: 40px 0 100px;
}
.terms-and-conditions .terms-main-header span {
  background-color: #fff;
  padding: 10px;
  font-size: 1.5rem;
}
.terms-and-conditions .terms-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 70%;
}
.terms-and-conditions .terms-container .terms-subcontainer .terms-header {
  color: #b89e7e;
  font-size: 20px;
  width: 350px;
  text-align: left;
  border-bottom: 1px solid #b89e7e;
  line-height: 0.1rem;
  margin: 10px 0 20px;
  padding-left: 20px;
}
.terms-and-conditions .terms-container .terms-subcontainer .terms-header span {
  background-color: #fff;
  padding: 10px 0;
  padding-left: 0;
  font-size: 1.5rem;
}

header + .terms-and-conditions {
  margin: 150px 20px 80px;
}
@media only screen and (max-width: 995px) {
  header + .terms-and-conditions {
    margin: 120px 20px 80px;
  }
}

@media only screen and (max-width: 544px) {
  .terms-and-conditions {
    align-items: start;
  }
  .terms-and-conditions .terms-main-header {
    width: 100%;
  }
  .terms-and-conditions .terms-container {
    width: 100%;
  }
  .terms-and-conditions .terms-container .terms-header {
    width: 100% !important;
  }
}
/* ABOUT US SECTION */
.about-us-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 50px 0 20px 50px;
}
@media only screen and (max-width: 1470px) {
  .about-us-section {
    margin: 50px 0 20px 50px;
  }
}
@media only screen and (max-width: 995px) {
  .about-us-section {
    flex-direction: column;
    margin: 40px 0;
  }
}
.about-us-section .about-img-wrapper {
  flex: 1;
}
.about-us-section .about-img-wrapper img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media only screen and (max-width: 995px) {
  .about-us-section .about-img-wrapper {
    width: 100%;
  }
}
.about-us-section .about-txt-wrapper {
  background-color: var(--dark-color);
  padding: 56px 15% 50px 59px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
@media only screen and (max-width: 1470px) {
  .about-us-section .about-txt-wrapper {
    padding: 56px 8% 50px 59px;
  }
}
@media only screen and (max-width: 995px) {
  .about-us-section .about-txt-wrapper {
    width: 100%;
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .about-us-section .about-txt-wrapper {
    padding: 40px 20px;
  }
}
.about-us-section .about-txt-wrapper h3 {
  color: var(--accent-color);
  font-family: "Geologica";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.867px;
  text-transform: uppercase;
}
.about-us-section .about-txt-wrapper h5 {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
}

.about-us-section .about-txt-wrapper p {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-us-section .about-txt-wrapper ul, .about-us-section .about-txt-wrapper h5, .about-us-section .about-txt-wrapper b {
  color: var(--light-text-color);
}
.about-us-section .about-txt-wrapper .about-btn {
  border: 1px solid var(--dark-color);
  background: var(--white-color);
  padding: 14px 40px;
  display: block;
  margin-right: auto;
  margin-top: 30px;
  color: var(--dark-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: inset 0 0 0 0 var(--accent-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .about-us-section .about-txt-wrapper .about-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--accent-color);
    color: var(--dark-color);
  }
}
@media only screen and (max-width: 480px) {
  .about-us-section .about-txt-wrapper .about-btn {
    margin-right: unset;
  }
}

/* LOCATIONS SECTION */
.active-tab {
  display: flex !important;
}

.locations-section {
  display: flex;
  flex-direction: column;
  margin: 0 50px;
}
@media only screen and (max-width: 995px) {
  .locations-section {
    margin: 40px 0 0 0;
  }
}
.locations-section h2 {
  margin: 50px auto;
}
.locations-section .mobile-map {
  display: block;
}
@media only screen and (min-width: 995px) {
  .locations-section .mobile-map {
    display: none;
  }
}
.locations-section .mobile-map > *:focus, .locations-section .mobile-map > *:active, .locations-section .mobile-map > *:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.locations-section .mobile-map .accordion-item {
  border: 0;
  outline: 0;
}
.locations-section .mobile-map .accordion-item:focus, .locations-section .mobile-map .accordion-item:active, .locations-section .mobile-map .accordion-item:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.locations-section .mobile-map .accordion-item .accordion-header {
  margin: 0;
}
.locations-section .mobile-map .accordion-item .accordion-header:focus, .locations-section .mobile-map .accordion-item .accordion-header:active, .locations-section .mobile-map .accordion-item .accordion-header:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.locations-section .mobile-map .accordion-item .accordion-header .accordion-button {
  color: rgba(184, 158, 126, 0.5);
  font-family: "Geologica";
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border: 2px solid var(--white-color);
  background: var(--light-bg-color);
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  .locations-section .mobile-map .accordion-item .accordion-header .accordion-button {
    padding: 20px;
  }
}
.locations-section .mobile-map .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.locations-section .mobile-map .accordion-item .accordion-header .accordion-button::after {
  content: "";
  transition: none;
  --b: 2px; /* the thickness*/
  --c: #0000 90deg, var(--accent-color) 0; /* the coloration */
  aspect-ratio: 1;
  background: conic-gradient(from 90deg at var(--b) var(--b), var(--c)) calc(100% + var(--b) / 2) calc(100% + var(--b) / 2)/calc(51% + var(--b)) calc(50% + var(--b));
}
.locations-section .mobile-map .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "";
  background: var(--accent-color);
  width: 18px;
  height: 2px;
  border-radius: 3px;
}
.locations-section .mobile-map .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  color: var(--accent-color);
}
.locations-section .mobile-map .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
  outline: none;
  border: none;
}
.locations-section .mobile-map .accordion-item .accordion-collapse {
  margin-top: -2px;
}
.locations-section .mobile-map .accordion-item .accordion-body {
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  padding: 10px 40px;
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.533px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.locations-section .mobile-map .accordion-item .accordion-body:focus, .locations-section .mobile-map .accordion-item .accordion-body:active, .locations-section .mobile-map .accordion-item .accordion-body:focus-visible {
  /* border: none; */
  outline: none;
  box-shadow: none;
}
@media only screen and (max-width: 480px) {
  .locations-section .mobile-map .accordion-item .accordion-body {
    padding: 20px;
  }
}
.locations-section .mobile-map .accordion-item .accordion-body .map-wrapper {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .locations-section .mobile-map .accordion-item .accordion-body .map-wrapper {
    aspect-ratio: 1/1;
  }
}
.locations-section .mobile-map .accordion-item .accordion-body .map-wrapper img {
  width: 100%;
  height: 100%;
}
.locations-section .mobile-map .accordion-item .accordion-body .location-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-bottom: 20px;
}
.locations-section .mobile-map .accordion-item .accordion-body .location-info .location-img {
  width: 100%;
}
.locations-section .mobile-map .accordion-item .accordion-body .location-info .location-img img {
  width: 100%;
  aspect-ratio: 10/5;
  object-fit: cover;
}
.locations-section .mobile-map .accordion-item .accordion-body .location-info .decoration-line {
  background: var(--accent-color);
  height: 1px;
  width: 54px;
}
.locations-section .mobile-map .accordion-item .accordion-body .location-info .opening-hours {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media only screen and (max-width: 500px) {
  .locations-section .mobile-map .accordion-item .accordion-body .location-info .opening-hours {
    flex-direction: column;
    gap: unset;
  }
}
.locations-section .desktop-map {
  display: none;
}
@media only screen and (min-width: 995px) {
  .locations-section .desktop-map {
    display: block;
  }
}
.locations-section .tabs-wrapper {
  /* #content-tab-1 {
    display: flex;
  } */
}
.locations-section .tabs-wrapper .tabs-content {
  display: none;
}
.locations-section .tabs-wrapper input {
  display: none;
}
.locations-section .tabs-wrapper label {
  flex: 1;
  color: rgba(184, 158, 126, 0.5);
  font-family: "Geologica";
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid var(--white-color);
  background: var(--light-bg-color);
  padding: 16px 0;
  cursor: pointer;
}
.locations-section .tabs-wrapper .tabs-labels {
  display: flex;
}
.locations-section .tabs-wrapper input:checked + label {
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  color: var(--accent-color);
}
.locations-section .tabs-wrapper .tabs-content {
  display: none;
  flex-direction: column;
  padding: 40px;
  background-color: var(--dark-color);
}
.locations-section .tabs-wrapper .tabs-content .map-wrapper {
  width: 70%;
  height: 500px;
}
.locations-section .tabs-wrapper .tabs-content .map-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.locations-section .tabs-wrapper .tabs-content .location-info {
  padding: 5px 10px 0 40px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: 0.533px;
}
.locations-section .tabs-wrapper .tabs-content .location-info .upper-container {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
}
.locations-section .tabs-wrapper .tabs-content .location-info .middle-container {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: 0.533px;
}
.locations-section .tabs-wrapper .tabs-content .location-info .lower-container {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.533px;
}
.locations-section .tabs-wrapper .tabs-content .location-info h3 {
  color: var(--accent-color);
  font-family: "Geologica";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.867px;
  /* text-transform: uppercase; */
  margin-bottom: 5px;
}
.locations-section .tabs-wrapper .tabs-content .location-info .location-img {
  width: 350px;
}
.locations-section .tabs-wrapper .tabs-content .location-info .location-img img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.locations-section .tabs-wrapper .tabs-content .location-info .decoration-line {
  background: var(--accent-color);
  height: 1px;
  width: 54px;
}

/* ROW-IMAGE-TEXT NO-CTA CSS*/
/* .no-cta .row-main-wrapper .row-image-wrapper img {
aspect-ratio: 7 / 4;
} */
.no-cta .row-main-wrapper .row-text-wrapper p:last-of-type {
  margin-bottom: 0;
}

.no-cta .row-main-wrapper .row-text-wrapper p {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.no-cta .row-main-wrapper .row-text-wrapper a {
  display: none;
}

.row-image-text.reversed .row-main-wrapper {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1100px) {
  .row-image-text.reversed .row-main-wrapper {
    flex-direction: column;
  }
}

.row-image-text.reversed .row-main-wrapper .row-text-wrapper {
  flex-basis: 40%;
}

.row-image-text.reversed .row-main-wrapper .row-image-wrapper {
  flex-basis: 60%;
}

/* ROW-IMAGE-TEXT */
.row-image-text.black-bg {
  background-color: var(--black-color);
  color: var(--white-color);
}

.row-image-text.white-bg {
  background-color: var(--white-color);
  color: var(--dark-color);
}

.row-image-text.white-bg .row-text-header {
  font-family: "Geologica";
  font-size: 35px !important;
  font-weight: 400;
  line-height: 39.44px;
  letter-spacing: 1.1666666269px;
  text-align: left;
}

.row-image-text .main-header {
  text-align: center;
  font-family: "Geologica";
  font-size: 45px;
  font-weight: 400;
  line-height: 50.71px;
  text-align: center;
  padding-top: 60px;
}
.row-image-text .row-main-wrapper {
  margin: 0 auto;
  padding: 60px 50px;
  /* max-height: 600px; */
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  gap: 30px;
}
@media only screen and (min-width: 1470px) {
  .row-image-text .row-main-wrapper {
    gap: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  .row-image-text .row-main-wrapper {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1100px) {
  .row-image-text .row-main-wrapper {
    flex-direction: column;
    padding: 40px 0;
    max-height: unset;
  }
}
.row-image-text .row-image-wrapper {
  width: 100%;
  flex: 1;
}
.row-image-text .row-image-wrapper img {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 10 / 6; */
  object-fit: cover;
  /* @media only screen and (min-width: 2100px) {
    aspect-ratio: 15 / 8;
  } */
}
.row-image-text .row-text-wrapper {
  flex: 1;
  font-size: 25px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* span {
      font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
      font-size: 18px;
      font-weight: 700;
      line-height: 23.29px;
      text-align: left;
      text-underline-position: from-font;
      text-decoration-skip-ink: none;
  } */
  /* p:last-of-type {
      margin-bottom: 50px;
  } */
}
@media only screen and (max-width: 995px) {
  .row-image-text .row-text-wrapper {
    padding: 20px 20px 0;
  }
}
@media only screen and (max-width: 450px) {
  .row-image-text .row-text-wrapper {
    padding: 0 20px;
  }
}
.row-image-text .row-text-wrapper .row-text-header {
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--black-color);
  font-family: "Geologica";
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 450px) {
  .row-image-text .row-text-wrapper .row-text-header {
    font-size: 40px;
  }
}
.row-image-text .row-text-wrapper p:first-of-type {
  margin-top: 30px;
}
.row-image-text .row-text-wrapper p {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.row-image-text .row-text-wrapper .row-text-btn {
  max-width: 312px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: var(--light-text-color);
  font-family: "Geologica";
  letter-spacing: 0.6px;
  background-color: var(--accent-color);
  padding: 13px 0;
  margin-top: 50px;
  border: 1px solid var(--accent-color);
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .row-image-text .row-text-wrapper .row-text-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--accent-color);
  }
}
@media only screen and (max-width: 480px) {
  .row-image-text .row-text-wrapper .row-text-btn {
    max-width: unset;
  }
}

/* FULLWIDTH-IMG SECTION */
.fullWidth-img {
  margin: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 1100px) {
  .fullWidth-img {
    margin: 0;
    padding: 0 !important;
  }
}
.fullWidth-img .fullWidth-txt-wrapper {
  width: 700px;
}
@media only screen and (max-width: 1100px) {
  .fullWidth-img .fullWidth-txt-wrapper {
    margin: 50px 20px 0;
    padding: 0 3%;
    width: unset;
  }
}
.fullWidth-img .fullWidth-txt-wrapper h2 {
  color: var(--black-color);
  font-family: "Geologica";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
}
@media only screen and (max-width: 480px) {
  .fullWidth-img .fullWidth-txt-wrapper h2 {
    font-size: 35px;
  }
}
.fullWidth-img .fullWidth-txt-wrapper p {
  color: var(--black-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.fullWidth-img .fullWidth-txt-wrapper p:first-of-type {
  margin-bottom: 15px;
}
.fullWidth-img .fullWidth-img-wrapper {
  width: 100%;
}
.fullWidth-img .fullWidth-img-wrapper img {
  width: 100%;
  aspect-ratio: 6/2;
  object-fit: cover;
}
@media only screen and (max-width: 1440px) {
  .fullWidth-img .fullWidth-img-wrapper img {
    aspect-ratio: 5/2;
  }
}
@media only screen and (max-width: 1440px) {
  .fullWidth-img .fullWidth-img-wrapper img {
    aspect-ratio: 4/2;
  }
}

/* CONTACT */
.contact-wrapper {
  margin: 60px auto;
  padding: 40px 60px;
  border-bottom: 2px solid var(--dark-color);
  background-color: var(--light-bg-color);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 995px) {
  .contact-wrapper {
    padding: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-wrapper {
    padding: 30px 20px 40px;
  }
}
.contact-wrapper h2 {
  color: var(--dark-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.067px;
  text-transform: uppercase;
}
@media only screen and (max-width: 520px) {
  .contact-wrapper h2 {
    font-size: 28px;
    line-height: 37.41px;
    letter-spacing: 0.9333333373px;
  }
}
.contact-wrapper .details-form-group {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media only screen and (max-width: 995px) {
  .contact-wrapper .details-form-group {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-wrapper .details-form-group .details-item {
  flex: 1;
}
.contact-wrapper .details-form-group .details-item label {
  position: absolute;
  z-index: 100;
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10.5px 0 0 10.3px;
}
.contact-wrapper .details-form-group .details-item input {
  width: 100%;
  position: relative;
  height: 58px;
  padding-left: 9px;
  padding-top: 22px;
  border: 1px solid var(--dark-color);
  border-radius: 0;
  background: var(--white-color);
}
.contact-wrapper .details-form-group .details-item input:focus, .contact-wrapper .details-form-group .details-item input:active {
  outline: none;
  padding-top: 22px;
}
.contact-wrapper .interests-container {
  padding-top: 23px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 936px) {
  .contact-wrapper .interests-container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 35px;
    gap: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .contact-wrapper .interests-container {
    gap: 70px;
  }
}
.contact-wrapper .interests-container p {
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
}
.contact-wrapper .interests-container .checkbox-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media only screen and (max-width: 936px) {
  .contact-wrapper .interests-container .checkbox-wrapper {
    left: 15px;
  }
}
.contact-wrapper .interests-container .checkbox-wrapper label {
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  margin-left: 30px;
}
.contact-wrapper .interests-container .checkbox-wrapper input {
  position: absolute;
  z-index: 1000;
  left: -15px;
  opacity: 0;
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.contact-wrapper .interests-container .checkbox-wrapper input:checked ~ .checkbox__checkmark {
  background-color: var(--white-color);
}
.contact-wrapper .interests-container .checkbox-wrapper input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.contact-wrapper .interests-container .checkbox-wrapper .checkbox__checkmark {
  position: absolute;
  left: -15px;
  height: 25px;
  width: 25px;
  background-color: var(--white-color);
  border: 1px solid var(--dark-color);
  transition: background-color 0.25s ease;
  cursor: pointer;
}
.contact-wrapper .interests-container .checkbox-wrapper .checkbox__checkmark::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 8px;
  height: 13px;
  border: 7px solid var(--black-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.contact-wrapper .select-store-container {
  padding-top: 23px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 936px) {
  .contact-wrapper .select-store-container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 35px;
    gap: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .contact-wrapper .select-store-container {
    gap: 70px;
  }
}
.contact-wrapper .select-store-container p {
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  width: 200px;
}
.contact-wrapper .select-store-container select {
  background: none;
  border: 1px solid black;
  background-color: #fff;
  padding: 17.5px;
  width: 100%;
}
.contact-wrapper .details-form-submit {
  color: var(--white-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  padding: 14px 5px 14px 30px;
  margin-top: 40px;
  margin-left: auto;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 0 0 var(--light-bg-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .contact-wrapper .details-form-submit:hover {
    box-shadow: inset 400px 0 0 0 var(--light-bg-color);
    color: var(--dark-color);
  }
  .contact-wrapper .details-form-submit:hover::after {
    filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(313%) hue-rotate(149deg) brightness(93%) contrast(88%);
  }
}
@media only screen and (max-width: 480px) {
  .contact-wrapper .details-form-submit {
    margin-left: 0;
    width: 100%;
    margin-top: 60px;
  }
}
.contact-wrapper .details-form-submit::after {
  content: "";
  background-image: url(../assets/chevron-right.png);
  background-repeat: no-repeat;
  color: var(--white-color);
  font-family: "Font Awesome 6 Pro";
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.7px;
  display: block;
  width: 24px;
  height: 24px;
  margin: 4px 10px 0 130px;
}
@media only screen and (max-width: 480px) {
  .contact-wrapper .details-form-submit::after {
    margin-left: auto;
  }
}

/* BLOG-PAGE */
.blog-page-header {
  font-size: 28px;
  color: #b89e7e;
  text-align: center;
  width: 50%;
  border-bottom: 1px solid var(--accent-color);
  line-height: 0.1rem;
  margin: 180px auto 80px;
}
.blog-page-header span {
  background-color: #fff;
  padding: 10px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 580px) {
  .blog-page-header {
    width: 70%;
  }
}

.blog-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  row-gap: 40px;
  column-gap: 40px;
  margin: 40px 0 80px;
}
@media only screen and (max-width: 900px) {
  .blog-page-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-page-wrapper .blog-item .blog-image-wrapper {
  width: 100%;
}

.blog-page-wrapper .blog-item .blog-image-wrapper img {
  width: 100%;
  aspect-ratio: 8/4;
  object-fit: cover;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--accent-color);
}
@media only screen and (max-width: 490px) {
  .blog-page-wrapper .blog-item .blog-image-wrapper img {
    aspect-ratio: 8/5;
  }
}

.blog-page-wrapper .blog-item .blog-text-wrapper .blog-date {
  font-size: 12px;
  font-family: "Geologica";
  color: var(--dark-color);
  margin-top: 10px;
}

.blog-page-wrapper .blog-item .blog-text-wrapper .blog-header {
  margin-bottom: 10px;
  margin-top: 5px;
}

.blog-page-wrapper .blog-item .blog-text-wrapper .blog-header a {
  font-family: "Geologica";
  font-size: 26px;
  font-weight: 600;
  line-height: 34.74px;
  letter-spacing: 0.8666666746px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-decoration: none;
  color: var(--accent-color);
}
.blog-page-wrapper .blog-item .blog-text-wrapper .blog-header a:hover {
  opacity: 0.85;
}

.blog-page-wrapper .blog-item .blog-text-wrapper .blog-description {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--dark-color);
}

.blog-page-wrapper .blog-item .blog-text-wrapper .read-more {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-decoration: none;
  color: var(--accent-color);
}
.blog-page-wrapper .blog-item .blog-text-wrapper .read-more::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
}
.blog-page-wrapper .blog-item .blog-text-wrapper .read-more:hover::after {
  width: 65px;
  transition: width 0.3s;
}
@media screen and (max-width: 1000px) {
  .blog-page-wrapper .blog-item .blog-text-wrapper .read-more {
    border-bottom: 1px solid var(--accent-color);
  }
  .blog-page-wrapper .blog-item .blog-text-wrapper .read-more:after {
    content: none;
  }
}

.blog-page .wp-pagenavi {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 0;
  padding-bottom: 50px;
}

/* USED-CARS PAGE */
.used-cars fieldset input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.used-cars label:has(input[type=checkbox]:checked) .styled-checkbox::after {
  opacity: 1;
}

.used-cars fieldset .styled-checkbox {
  height: 15px;
  width: 15px;
  border: 1px solid var(--accent-color);
  position: relative;
  cursor: pointer;
}
.used-cars fieldset .styled-checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 5px;
  height: 11px;
  border: 5px solid var(--black-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.used-cars fieldset label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  color: var(--dark-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.range-item {
  position: relative;
  width: 100%;
  height: 5px;
  margin: 30px 0;
  background-color: var(--black-color);
}

.range-item input {
  position: absolute;
  width: 100%;
  background: none;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
}

input[type=range]::-webkit-slider-thumb {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 3px solid var(--white-color);
  background: var(--white-color);
  pointer-events: auto;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5625rem -0.125rem rgba(0, 0, 0, 0.25);
}

.slider-track {
  height: 100%;
  position: absolute;
  background-color: var(--light-blue-color);
}

.tooltip {
  padding: 0.25rem 0.5rem;
  border: 0;
  background: var(--black-color);
  color: var(--white-color);
  font-size: 0.75rem;
  line-height: 1.2;
  border-radius: 0.25rem;
  display: block;
  width: fit-content;
}

.min-tooltip {
  left: 50%;
  transform: translateX(-2%) translateY(-100%);
  z-index: 5;
  opacity: 1;
  position: absolute;
  top: -15px;
}

.max-tooltip {
  transform: translateX(-2%) translateY(-100%);
  z-index: 5;
  opacity: 1;
  position: absolute;
  top: 43px;
}

.used-cars {
  margin: 180px 0 70px;
}

.used-cars.margin-sm {
  margin: 0px 0 40px;
}

.used-cars.margin-md {
  margin: 10px 0 120px;
}

.used-cars h1 {
  color: var(--black-color);
  font-family: "Geologica";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 91.429% */
  letter-spacing: -0.583px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.used-cars .search-result {
  color: var(--black-color);
  font-family: "Geologica";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 128% */
  letter-spacing: -0.417px;
}

@media only screen and (max-width: 995px) {
  .used-cars .main-content .filter-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
  }
}
@media only screen and (max-width: 414px) {
  .used-cars .main-content .filter-wrapper {
    gap: 10px;
  }
}

.used-cars .main-content .sort-by {
  float: right;
  position: relative;
  color: var(--black-color);
  font-family: Hind;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (min-width: 996px) {
  .used-cars .main-content .sort-by {
    margin-top: -70px;
  }
}

.used-cars .main-content .sort-by label {
  margin-right: 20px;
}
@media only screen and (max-width: 995px) {
  .used-cars .main-content .sort-by label {
    display: none;
  }
}

.used-cars .main-content .sort-by select {
  border: 1px solid var(--accent-color);
  background: var(--light-bg-color-secondary);
  color: var(--black-color);
  width: 180px;
  padding: 9px 15px;
  cursor: pointer;
  -webkit-appearance: none;
}

.used-cars .main-content .sort-by::after {
  content: "";
  background-image: url(../assets/caret-down.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 30%;
  pointer-events: none;
}

.used-cars .main-content .result-wrapper {
  display: flex;
  flex-direction: row;
  gap: 55px;
}
@media only screen and (max-width: 1260px) {
  .used-cars .main-content .result-wrapper {
    gap: 30px;
  }
}
@media only screen and (min-width: 996px) {
  .used-cars .main-content .result-wrapper {
    margin-top: 100px;
  }
}

.used-cars .main-content .result-wrapper .filter-search {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 1260px) {
  .used-cars .main-content .result-wrapper .filter-search {
    width: 30%;
  }
}
@media only screen and (max-width: 995px) {
  .used-cars .main-content .result-wrapper .filter-search {
    display: none;
  }
}

.used-cars .main-content .filter-mobile {
  width: 180px;
  padding: 9px 15px;
  border: 1px solid var(--accent-color);
  background: var(--light-bg-color-secondary);
  color: var(--dark-color);
  font-family: Hind;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.used-cars .main-content .filter-mobile::after {
  content: "";
  background-image: url(../assets/filter-icon.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  height: 20px;
  width: 20px;
}
@media only screen and (min-width: 996px) {
  .used-cars .main-content .filter-mobile {
    display: none;
  }
}

@media only screen and (max-width: 995px) {
  .used-cars .main-content .filter-search.open {
    background-color: var(--white-color);
    display: flex;
    padding: 0 30px 30px;
    position: absolute;
    z-index: 100;
    width: 100%;
  }
}
@media only screen and (max-width: 496px) {
  .used-cars .main-content .filter-search.open {
    padding: 0;
  }
}

.used-cars .main-content:has(.filter-search.open) .items-result::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 10;
}

.used-cars .main-content .filter-search.open h2 {
  display: none;
}

@media only screen and (max-width: 995px) {
  .used-cars .main-content .result-wrapper {
    position: relative;
  }
}

.used-cars .main-content .result-wrapper .filter-search h2 {
  color: var(--black-color);
  font-family: "Geologica";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 128% */
  letter-spacing: -0.417px;
  margin-bottom: 20px;
}

.used-cars .select-item {
  position: relative;
  color: var(--dark-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.used-cars .select-item::after {
  content: "";
  background-image: url(../assets/caret-down-single.svg);
  background-repeat: no-repeat;
  background-size: 60%;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 5px;
  top: 43%;
  pointer-events: none;
}

.used-cars .label-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--black-color);
  text-align: center;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 18px;
  margin-bottom: 10px;
}
.used-cars .label-name span {
  white-space: nowrap;
  padding: 0 15px;
}

.used-cars .black-line {
  height: 1px;
  width: 100%;
  background-color: var(--black-color);
}

.used-cars .select-item select {
  border: 1px solid var(--accent-color);
  background: var(--light-bg-color-secondary);
  width: 100%;
  padding: 9px 15px;
  -webkit-appearance: none;
  cursor: pointer;
}

.used-cars .price {
  display: flex;
  flex-direction: row;
}

.used-cars .background-container {
  width: 45px;
  height: 41px;
  background: var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

.used-cars .select-item .background-container::after {
  content: "";
  background-image: url(../assets/sterling-sign.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 21%;
  left: 7px;
}

.used-cars .select-item .background-container + select {
  margin-left: -4px;
}

.used-cars .row-radio-buttons {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--accent-color);
  background: var(--white-color);
}
.used-cars .row-radio-buttons label {
  text-transform: uppercase;
  text-align: center;
  color: var(--dark-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: var(--white-color);
  cursor: pointer;
  padding: 8px 0;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.used-cars .row-radio-buttons input {
  display: none;
}
.used-cars .row-radio-buttons label:has([type=radio]:checked) {
  background-color: var(--accent-color);
  border: 4px solid white;
  color: var(--white-color);
}

.used-cars .form-submit-btn {
  padding: 9px 15px;
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: var(--white-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .used-cars .form-submit-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--accent-color);
  }
  .used-cars .form-submit-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(75%) sepia(8%) saturate(1127%) hue-rotate(353deg) brightness(86%) contrast(87%);
  }
}
@media only screen and (min-width: 690px) and (max-width: 995px) {
  .used-cars .form-submit-btn {
    width: 300px;
    margin-left: auto;
  }
}

.used-cars .form-submit-btn::after {
  content: "";
  background-image: url(../assets/icon.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  display: block;
  height: 20px;
  width: 20px;
}

.used-cars .btn-wrapper {
  margin: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.used-cars .btn-wrapper .reset-btn,
.used-cars .btn-wrapper .save-btn {
  background-color: transparent;
  border: none;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.used-cars .btn-wrapper .reset-btn {
  color: var(--accent-color);
  font-size: 14px;
}
.used-cars .btn-wrapper .reset-btn:hover {
  opacity: 0.7;
}
.used-cars .btn-wrapper .save-btn {
  color: var(--black-color);
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.used-cars .btn-wrapper .save-btn:hover {
  opacity: 0.7;
}
.used-cars .btn-wrapper .save-btn::after {
  content: "";
  background-image: url(../assets/save.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  display: block;
  width: 20px;
  height: 20px;
}

.used-cars .main-content .result-wrapper .items-result {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* MODAL */
.vehicle-details-page .modal-backdrop {
  opacity: 0.95 !important;
}

.vehicle-details-page .modal .swiper-slide {
  background-size: cover;
  background-position: center;
}
.vehicle-details-page .modal .image-counter {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.vehicle-details-page .modal .modalSwiper {
  padding-bottom: 40px;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1040px) {
  .vehicle-details-page .modal .modalSwiper {
    width: 100%;
  }
}
.vehicle-details-page .modal .modalSwiper .swiper-slide img {
  aspect-ratio: 4/2;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
@media only screen and (max-width: 765px) {
  .vehicle-details-page .modal .modalSwiper .swiper-slide img {
    aspect-ratio: 8/5;
  }
}
.vehicle-details-page .modal .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-details-page .modal .swiper-button-next,
.vehicle-details-page .modal .swiper-button-prev {
  color: var(--light-text-color);
}
@media only screen and (max-width: 765px) {
  .vehicle-details-page .modal .swiper-button-next,
  .vehicle-details-page .modal .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 45%);
  }
}
.vehicle-details-page .modal .thumbsSlider {
  cursor: grab;
  padding: 20px;
  border-top: var(--bs-modal-footer-border-width) solid var(--accent-color);
  border-bottom: var(--bs-modal-footer-border-width) solid var(--accent-color);
}
@media only screen and (max-width: 765px) {
  .vehicle-details-page .modal .thumbsSlider {
    padding: 20px 0;
  }
}
.vehicle-details-page .modal .thumbsSlider img {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 5/4;
  opacity: 0.3;
}
.vehicle-details-page .modal .thumbsSlider .swiper-slide {
  width: 25%;
  height: 100%;
  background-color: black;
}
.vehicle-details-page .modal .thumbsSlider .swiper-slide-thumb-active img {
  opacity: 1;
}
.vehicle-details-page .modal .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.vehicle-details-page .modal:not(.show) .modal-dialog {
  opacity: 0;
}

.vehicle-details-page .modal-dialog {
  max-width: unset;
  padding: 0 50px;
  opacity: 1;
  transform: unset !important;
  transition: opacity 1s !important;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 765px) {
  .vehicle-details-page .modal-dialog {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .vehicle-details-page .modal-dialog {
    padding: 0;
  }
}

.vehicle-details-page .modal-header {
  border-bottom: unset;
}

.vehicle-details-page .modal-header .btn-close {
  filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(241%) hue-rotate(215deg) brightness(116%) contrast(100%);
  opacity: 1;
}

@media only screen and (max-width: 520px) {
  .vehicle-details-page .modal-body {
    margin-top: 100px;
  }
}

.vehicle-details-page .modal-content {
  background-color: transparent;
  border: none;
}

.vehicle-details-page .image-counter {
  color: var(--white-color);
  text-align: center;
  padding: 20px 0;
}

/*  */
.used-cars .main-content .result-wrapper .items-result .item,
.vehicle-details .lower-wrapper .item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.used-cars .main-content .result-wrapper .items-result .item .item-img-container,
.used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper,
.vehicle-details .lower-wrapper .item .item-img-container,
.vehicle-details .lower-wrapper .item .item-content-wrapper {
  flex: 1;
}
.used-cars .main-content .result-wrapper .items-result .item .item-img-container,
.vehicle-details .lower-wrapper .item .item-img-container {
  position: relative;
}
.used-cars .main-content .result-wrapper .items-result .item .like-container,
.vehicle-details .lower-wrapper .item .like-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.used-cars .main-content .result-wrapper .items-result .item .like-container img,
.vehicle-details .lower-wrapper .item .like-container img {
  width: 28px;
  height: 25px;
}
.used-cars .main-content .result-wrapper .items-result .item .album-container,
.vehicle-details .lower-wrapper .item .album-container {
  position: absolute;
  left: 0;
  bottom: 0;
  border: 0.835px solid var(--dark-color);
  background-color: var(--dark-color);
  margin: 12px 15px;
  padding: 11px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media only screen and (max-width: 450px) {
  .used-cars .main-content .result-wrapper .items-result .item .album-container,
  .vehicle-details .lower-wrapper .item .album-container {
    padding: 8px;
  }
}
.used-cars .main-content .result-wrapper .items-result .item .album-container img,
.vehicle-details .lower-wrapper .item .album-container img {
  width: 22px;
  height: 22px;
}
.used-cars .main-content .result-wrapper .items-result .item .album-container p,
.vehicle-details .lower-wrapper .item .album-container p {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 17.533px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.584px;
}

@media only screen and (max-width: 1260px) {
  .used-cars .main-content .result-wrapper .items-result .item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1100px) {
  .vehicle-details .lower-wrapper .item {
    flex-direction: column;
  }
}

.vehicle-details .lower-wrapper .item iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 2000px) {
  .vehicle-details .lower-wrapper .item iframe {
    aspect-ratio: 3/1.3;
  }
}
@media only screen and (max-width: 1100px) {
  .vehicle-details .lower-wrapper .item iframe {
    aspect-ratio: 5/3;
  }
}
@media only screen and (max-width: 550px) {
  .vehicle-details .lower-wrapper .item iframe {
    aspect-ratio: 1/1;
  }
}

.vehicle-details .lower-wrapper .item-img-container img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}
@media only screen and (max-width: 1100px) {
  .vehicle-details .lower-wrapper .item-img-container img {
    aspect-ratio: 5/3;
  }
}
@media only screen and (max-width: 550px) {
  .vehicle-details .lower-wrapper .item-img-container img {
    aspect-ratio: 1/1;
  }
}

.used-cars .main-content .result-wrapper .items-result .item .car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 10/6;
}
@media only screen and (min-width: 2100px) {
  .used-cars .main-content .result-wrapper .items-result .item .car-img {
    aspect-ratio: 10/5;
  }
}
@media only screen and (max-width: 1100px) {
  .used-cars .main-content .result-wrapper .items-result .item .car-img {
    aspect-ratio: 15/8;
  }
}
@media only screen and (max-width: 580px) {
  .used-cars .main-content .result-wrapper .items-result .item .car-img {
    aspect-ratio: 3/2.3;
  }
}

.used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper {
  padding: 20px 20px 20px 30px;
  background-color: var(--dark-color);
  color: var(--light-text-color);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 20px;
}
@media only screen and (min-width: 1920px) {
  .used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper {
    padding: 15px 38px 25px 55px;
  }
}
@media only screen and (max-width: 1260px) {
  .used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper {
    padding: 20px;
  }
}
.used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper .car-description {
  font-family: "Geologica";
  font-size: 15.028px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.501px;
  margin-top: -10px;
}

.used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper h3 {
  font-family: "Geologica";
  font-style: normal;
  line-height: normal;
}
.used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper h3 .price {
  font-size: 33.397px;
  font-weight: 500;
  letter-spacing: 1.113px;
}
.used-cars .main-content .result-wrapper .items-result .item .item-content-wrapper h3 .car-heading {
  font-size: 25.047px;
  font-weight: 200;
  letter-spacing: 0.835px;
}

.used-cars .main-content .gold-line,
.vehicle-details .lower-wrapper .item .gold-line {
  height: 1px;
  width: 100%;
  background-color: var(--accent-color);
}

/* .vehicle-details .item .details-grid {
margin: 0;
font-size: 16px;
line-height: 20.7px;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

@media only screen and (max-width: 1400px) {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

@media only screen and (min-width: 900px) and (max-width: 1205px) {
  grid-template-columns: 1fr 1fr;
}
} */
.used-cars .main-content .result-wrapper .details-grid {
  margin: 10px;
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.vehicle-details .item .details-grid {
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.used-cars .main-content .result-wrapper .details-grid,
.vehicle-details .item .details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  row-gap: 20px;
}
@media only screen and (min-width: 2000px) {
  .used-cars .main-content .result-wrapper .details-grid,
  .vehicle-details .item .details-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media only screen and (min-width: 1261px) and (max-width: 1950) {
  .used-cars .main-content .result-wrapper .details-grid,
  .vehicle-details .item .details-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
}
@media only screen and (max-width: 1260px) {
  .used-cars .main-content .result-wrapper .details-grid,
  .vehicle-details .item .details-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media only screen and (max-width: 517px) {
  .used-cars .main-content .result-wrapper .details-grid,
  .vehicle-details .item .details-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    column-gap: 20px;
    margin: 0;
  }
}
.used-cars .main-content .result-wrapper .details-grid .grid-item,
.vehicle-details .item .details-grid .grid-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.used-cars .main-content .result-wrapper .location-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  color: var(--light-text-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 15.028px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.501px;
}
@media only screen and (max-width: 480px) {
  .used-cars .main-content .result-wrapper .location-item {
    gap: 7px;
  }
}
.used-cars .main-content .result-wrapper .location-item img {
  align-self: baseline;
}

/* CAR DETAILS PAGE */
.vehicle-details {
  background-color: var(--dark-color);
  margin-top: 100px;
  position: relative;
}
@media only screen and (max-width: 995px) {
  .vehicle-details {
    margin-top: 90px;
  }
}

.vehicle-details .content {
  padding: 85px 100px 50px;
}
@media only screen and (min-width: 1800px) {
  .vehicle-details .content {
    padding: 85px 240px 50px;
  }
}
@media only screen and (max-width: 1206px) {
  .vehicle-details .content {
    padding: 85px 40px 50px;
  }
}
@media only screen and (max-width: 450px) {
  .vehicle-details .content {
    padding: 50px 10px 30px;
  }
}

.vehicle-details .upper-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1100px) {
  .vehicle-details .upper-wrapper {
    flex-direction: column;
  }
}

.vehicle-details .details-header-wrapper h1 {
  font-family: "Geologica";
  color: var(--light-text-color);
  font-size: 32px;
  font-weight: 400;
  line-height: 42.75px;
  letter-spacing: 1.0666667223px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.vehicle-details .details-header-wrapper h1 .price {
  font-size: 40px;
  font-weight: 800;
  line-height: 53.44px;
  letter-spacing: 1.3333333731px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media only screen and (max-width: 450px) {
  .vehicle-details .details-header-wrapper h1 {
    font-size: 18px;
    line-height: 24.05px;
    letter-spacing: 0.6000000238px;
  }
  .vehicle-details .details-header-wrapper h1 .price {
    font-size: 30px;
    line-height: 40.08px;
    letter-spacing: 1px;
  }
}

.vehicle-details .details-header-wrapper .heart-header {
  width: 28px;
  display: inline-flex;
  height: 25px;
  margin-right: 10px;
  cursor: pointer;
}
.vehicle-details .details-header-wrapper .heart-header img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 450px) {
  .vehicle-details .details-header-wrapper .heart-header {
    width: 18px;
    height: 15px;
    margin-right: 5px;
  }
}

.vehicle-details .details-btn {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media only screen and (max-width: 1100px) {
  .vehicle-details .details-btn {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 830px) {
  .vehicle-details .details-btn {
    position: fixed;
    bottom: 0;
    z-index: 100;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    gap: 0;
  }
}
.vehicle-details .details-btn button {
  height: 50px;
  width: 240px;
  font-family: "Geologica";
  color: var(--light-text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 21.38px;
  text-transform: uppercase;
  letter-spacing: 0.5333333611px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 830px) {
  .vehicle-details .details-btn button {
    height: 45px;
    width: 170px;
  }
}
.vehicle-details .details-btn .transparent-btn {
  background-color: transparent;
  border: 2px solid var(--medium-blue-color);
  box-shadow: inset 0 0 0 0 var(--medium-blue-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .vehicle-details .details-btn .transparent-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--medium-blue-color);
  }
}
@media only screen and (max-width: 830px) {
  .vehicle-details .details-btn .transparent-btn {
    font-family: "Geologica";
    font-size: 14.4px;
    font-weight: 400;
    line-height: 19.24px;
    letter-spacing: 0.4800000191px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark-color);
    background-color: var(--light-bg-color);
    border: 0.9px solid var(--medium-blue-color);
  }
}
.vehicle-details .details-btn .transparent-btn::before {
  content: "";
  background-image: url(../assets/pen-to-square.svg);
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(261deg) brightness(108%) contrast(101%);
  width: 20px;
  display: block;
  height: 20px;
}
@media only screen and (max-width: 830px) {
  .vehicle-details .details-btn .transparent-btn::before {
    filter: brightness(0) saturate(100%) invert(9%) sepia(8%) saturate(653%) hue-rotate(149deg) brightness(96%) contrast(84%);
  }
}
.vehicle-details .details-btn .blue-btn {
  background-color: var(--medium-blue-color);
  border: 2px solid var(--medium-blue-color);
}
@media only screen and (max-width: 830px) {
  .vehicle-details .details-btn .blue-btn {
    font-family: "Geologica";
    font-size: 14.4px;
    font-weight: 400;
    line-height: 19.24px;
    letter-spacing: 0.4800000191px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
}
.vehicle-details .details-btn .blue-btn::before {
  content: "";
  background-image: url(../assets/credit-card.svg);
  background-repeat: no-repeat;
  width: 20px;
  display: block;
  height: 20px;
}

.vehicle-details .lower-wrapper .item .item-content-wrapper {
  padding: 0 0 0 25px;
  background-color: var(--dark-color);
  color: var(--light-text-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (min-width: 1500px) {
  .vehicle-details .lower-wrapper .item .item-content-wrapper {
    padding: 0 0 0 55px;
  }
}
@media only screen and (max-width: 1100px) {
  .vehicle-details .lower-wrapper .item .item-content-wrapper {
    padding: 20px 0 0 0;
  }
}

.vehicle-details .lower-wrapper .item .item-content-wrapper h3 {
  font-family: "Geologica";
  font-size: 21px;
  font-weight: 400;
  line-height: 28.06px;
  letter-spacing: 0.6999999881px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media only screen and (max-width: 450px) {
  .vehicle-details .lower-wrapper .item .item-content-wrapper h3 {
    font-size: 18px;
    line-height: 24.05px;
    letter-spacing: 0.6000000238px;
  }
}

.vehicle-details .item .location-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 10px;
  column-gap: 15px;
  grid-template-areas: "location address address" "phone message share";
  /* @media only screen and (max-width: 380px) {
    grid-template-rows: 1fr 2fr 1fr 1fr;
    row-gap: 0px;
    grid-template-areas:
      "location ."
      "address address"
      "phone ."
      "message .";
  } */
  /* @media only screen and (min-width: 1100px) and (max-width: 1400px) {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  } */
}
@media only screen and (min-width: 1100px) and (max-width: 1380px) {
  .vehicle-details .item .location-item {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "location address address address" "phone phone message message" "share share . . ";
  }
}
@media only screen and (max-width: 620px) {
  .vehicle-details .item .location-item {
    row-gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 20px 20px 5px 1fr 1fr;
    grid-template-areas: "location ." "address address" ". ." "phone message " "share . ";
  }
}

.vehicle-details .addtoany_share_save {
  grid-area: share;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.29px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text-color);
  text-decoration: none;
  margin-left: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}
@media only screen and (min-width: 1101px) and (max-width: 1381px) {
  .vehicle-details .addtoany_share_save {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 620px) {
  .vehicle-details .addtoany_share_save {
    margin-left: 0px;
  }
}

.vehicle-details .addtoany_share_save::before {
  content: "";
  background-image: url(../assets/share-icon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transition-delay: 0.2s;
  transition-property: filter;
  display: block;
  width: 20px;
  height: 20px;
}

.vehicle-details .location {
  grid-area: location;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 27.17px;
  letter-spacing: 0.6999999881px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text-color);
}

.vehicle-details .address {
  grid-area: address;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.29px;
  letter-spacing: 0.6000000238px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text-color);
}

.vehicle-details .phone {
  grid-area: phone;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.29px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text-color);
}

.vehicle-details .message {
  grid-area: message;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.29px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text-color);
}
.vehicle-details .message p {
  cursor: pointer;
}

.vehicle-details .location-item .phone,
.vehicle-details .location-item .message {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.vehicle-details .location-item .phone img,
.vehicle-details .location-item .message img {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 450px) {
  .vehicle-details .location-item .phone,
  .vehicle-details .location-item .message {
    gap: 8px;
  }
}

.vertical-padding {
  padding: 0 30px;
}
@media only screen and (max-width: 658px) {
  .vertical-padding {
    padding: 0;
  }
}

.albumSwiper {
  margin: 0;
  cursor: pointer;
  /* .swiper-slide-active,
  .last-slider {
      position: relative;

      &::after {
          content: "";
          background: rgba(255, 255, 255, 0.6);
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          z-index: 100;
      }
  } */
}
.albumSwiper .swiper-slide {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  margin-right: 0 !important;
}
.albumSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.albumSwiper .carousel-prev {
  left: 11.5%;
}
.albumSwiper .carousel-next {
  right: 11.5%;
}
@media only screen and (min-width: 900px) and (max-width: 1499px) {
  .albumSwiper .carousel-prev {
    left: 15%;
  }
  .albumSwiper .carousel-next {
    right: 15%;
  }
}
@media only screen and (min-width: 700px) and (max-width: 899px) {
  .albumSwiper .carousel-prev {
    left: 18%;
  }
  .albumSwiper .carousel-next {
    right: 18%;
  }
}
@media only screen and (max-width: 760px) {
  .albumSwiper .carousel-prev {
    left: 23%;
  }
  .albumSwiper .carousel-next {
    right: 23%;
  }
}
@media only screen and (max-width: 480px) {
  .albumSwiper .carousel-prev {
    left: 30%;
  }
  .albumSwiper .carousel-next {
    right: 30%;
  }
}
.albumSwiper .carousel-next,
.albumSwiper .carousel-prev {
  height: 40px;
  width: 40px;
  background-color: var(--dark-color);
  opacity: 1;
  border: none;
  position: absolute;
  z-index: 1000;
  top: 40%;
}
.albumSwiper .carousel-next:hover, .albumSwiper .carousel-next:focus, .albumSwiper .carousel-next:active,
.albumSwiper .carousel-prev:hover,
.albumSwiper .carousel-prev:focus,
.albumSwiper .carousel-prev:active {
  opacity: 1;
}
@media only screen and (max-width: 899px) {
  .albumSwiper .carousel-next,
  .albumSwiper .carousel-prev {
    height: 30px;
    width: 30px;
  }
}
.albumSwiper .carousel-control-next-icon,
.albumSwiper .carousel-control-prev-icon {
  width: 25px;
  height: 25px;
  /* margin-top: 4px; */
  display: block;
  margin: auto;
}
@media only screen and (max-width: 899px) {
  .albumSwiper .carousel-control-next-icon,
  .albumSwiper .carousel-control-prev-icon {
    height: 20px;
    width: 20px;
  }
}

/* COMPARE PAGE */
.compare-section-wrapper {
  margin-top: 90px;
  background: #f0f0f0;
  padding-bottom: 40px;
}

.compare-heading {
  padding: 80px 0px 50px;
}
.compare-heading h1 {
  color: var(--black-color);
  font-family: "Geologica";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.583px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.compare-heading .transparent-btn {
  padding: 12px 45px;
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: var(--white-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .compare-heading .transparent-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--accent-color);
  }
}

.compare {
  display: flex;
  overflow-x: auto; /* Enables horizontal scrolling */
  white-space: nowrap; /* Prevents items from wrapping */
  scroll-behavior: smooth; /* Smooth scrolling effect */
  padding: 0 5px 15px;
  justify-content: center;
  /* justify-content: center; */
}
@media only screen and (max-width: 1350px) {
  .compare {
    justify-content: left;
  }
}

.comparison-vehicle {
  min-width: 300px;
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  height: min-content;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.comparison-vehicle:last-child {
  margin-right: 0;
}

.compare::-webkit-scrollbar {
  height: 10px;
}

.compare::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.compare::-webkit-scrollbar-track {
  background: #ddd;
}

.comparison-vehicle {
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 400px;
  position: relative;
}

.comparison-vehicle .vehicle-details,
.comparison-vehicle .specs,
.comparison-vehicle .price {
  width: 100% !important;
  background-color: transparent;
  margin: 0;
}

.compare .vehicle-details h2 {
  font-family: "Geologica";
  color: #000;
  font-size: 32px;
  font-weight: 400;
  line-height: 42.75px;
  letter-spacing: 1.0666667223px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.compare .vehicle-details h3 {
  font-family: "Geologica";
  color: #000;
  font-size: 25px;
  font-weight: 200;
  line-height: 42.75px;
  letter-spacing: 1.0666667223px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.comparison-vehicle .img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.compare .comparison-vehicle .img-wrapper img {
  width: 100%;
  height: auto;
}

.comparison-vehicle p {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.comparison-vehicle .spec-title {
  color: #798184;
}

.comparison-vehicle .spec-value {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.spec-wrapper {
  margin-top: 8px;
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 5px;
}

.compare .vehicle-details .like-container {
  cursor: pointer;
}
.compare .vehicle-details .like-container img {
  width: 22px;
  height: 19px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 450px) {
  .compare .vehicle-details .like-container img {
    width: 18px;
    height: 15px;
  }
}

.compare .comparison-vehicle .buttons-wrapper {
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 100%;
}
.compare .comparison-vehicle .buttons-wrapper .light,
.compare .comparison-vehicle .buttons-wrapper .dark {
  padding: 10px 0;
  display: block;
  width: 100%;
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 600;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-decoration: none;
  text-transform: uppercase;
}
.compare .comparison-vehicle .buttons-wrapper .light {
  margin: 15px 0;
  color: var(--dark-color);
  background-color: #f0f0f0;
  border: 1px solid var(--accent-color);
  box-shadow: inset 0 0 0 0 var(--accent-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .compare .comparison-vehicle .buttons-wrapper .light:hover {
    box-shadow: inset 400px 0 0 0 var(--accent-color);
    color: var(--white-color);
  }
}
.compare .comparison-vehicle .buttons-wrapper .dark {
  color: var(--light-text-color);
  background-color: var(--dark-color);
  border: 1px solid var(--dark-color);
  box-shadow: inset 0 0 0 0 #f0f0f0;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .compare .comparison-vehicle .buttons-wrapper .dark:hover {
    box-shadow: inset 400px 0 0 0 #f0f0f0;
    color: var(--dark-color);
  }
}

/* PAGE 404 */
.banner-404 {
  background-image: url(../assets/car.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Geologica";
  width: 100%;
  height: calc(100vh - 159px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

.banner-404 a {
  padding: 10px 0;
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 600;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--white-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  display: block;
  width: 300px;
  margin: 30px auto;
}
@media only screen and (min-width: 1000px) {
  .banner-404 a:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--accent-color);
  }
}

/* ACCORDION */
.accordion-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 50px 70px;
}
@media only screen and (max-width: 995px) {
  .accordion-section {
    margin: 0 0 70px;
  }
}
.accordion-section * {
  border-radius: 0px !important;
}
.accordion-section h2 {
  padding: 50px;
  font-family: "Geologica";
  font-size: 32px;
  font-weight: 700;
  line-height: 42.75px;
  letter-spacing: 1.0666667223px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.accordion-section h2.accordion-header {
  padding: 0;
}
.accordion-section .accordion {
  border-radius: 0px !important;
}
.accordion-section .accordion-item {
  padding: 2px;
  border: none;
}
.accordion-section .accordion-container {
  width: 100%;
}
.accordion-section .accordion-container .accordion-button {
  color: var(--accent-color);
  background-color: var(--dark-color);
  box-shadow: none;
  font-family: "Geologica";
  font-size: 21px;
  font-weight: 600;
  line-height: 24.05px;
  letter-spacing: 0.6000000238px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.accordion-section .accordion-container .accordion-button::after {
  background-image: url('data:image/svg+xml;urf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%23B89E7E" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
  background-size: contain; /* Scale up the SVG size */
  width: 30px;
  height: 30px;
}
.accordion-section .accordion-container .accordion-button.collapsed {
  background-color: var(--light-bg-color);
  color: rgba(184, 158, 126, 0.5019607843);
}
@media only screen and (max-width: 450px) {
  .accordion-section .accordion-container .accordion-button {
    font-size: 18px;
  }
}
.accordion-section .accordion-container .accordion-item:has(.collapsed) .accordion-body {
  background-color: var(--light-bg-color);
  transition: var(--bs-accordion-transition);
}
.accordion-section .accordion-container .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml;urf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%23B89E7E" class="bi bi-dash" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>');
  background-size: contain; /* Scale up the SVG size */
  width: 30px;
  height: 30px;
}
.accordion-section .accordion-container .accordion-body {
  background-color: var(--dark-color);
  transition: var(--bs-accordion-transition);
  color: var(--light-text-color);
  padding: 0 20px 20px 20px;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.7px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

/* VEHICLE-DETAILS-PAGE */
.vehicle-details-page .section-wrapper {
  padding: 30px 100px 50px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media only screen and (min-width: 1800px) {
  .vehicle-details-page .section-wrapper {
    padding: 30px 240px 50px;
  }
}
@media only screen and (max-width: 1100px) {
  .vehicle-details-page .section-wrapper {
    flex-direction: column-reverse;
    padding: 30px 40px 50px;
  }
}
@media only screen and (max-width: 450px) {
  .vehicle-details-page .section-wrapper {
    padding: 20px 10px 90px;
  }
}

.vehicle-details-page .section-wrapper .buttons-wrapper {
  position: sticky;
  top: 250px;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 450px) {
  .vehicle-details-page .section-wrapper .buttons-wrapper {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
}
@media only screen and (max-width: 1100px) {
  .vehicle-details-page .section-wrapper .buttons-wrapper {
    align-items: flex-end;
    position: unset;
  }
  .vehicle-details-page .section-wrapper .buttons-wrapper .blue-btn,
  .vehicle-details-page .section-wrapper .buttons-wrapper .transparent-btn {
    display: none;
  }
}

.vehicle-details-page .section-wrapper .buttons-wrapper .no-icon.btn-dark:before {
  content: none !important;
}

.listed-section {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.listed-section h3 {
  font-family: "Geologica";
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 600;
  line-height: 34.74px;
  letter-spacing: 0.8666666746px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
}

.listed-section p {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.7px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.listed-section .list-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}
@media only screen and (max-width: 995px) {
  .listed-section .list-container {
    gap: 20px;
  }
}
@media only screen and (max-width: 790px) {
  .listed-section .list-container {
    flex-direction: column;
    justify-content: unset;
    gap: 0;
  }
  .listed-section .list-container ul {
    margin-bottom: 0;
  }
}

.listed-section ul {
  flex: 1;
  padding-left: 0;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30.4px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

@media only screen and (max-width: 790px) {
  .listed-section .second-list .listed-item:nth-of-type(odd) {
    background-color: var(--white-color);
  }
}

@media only screen and (max-width: 790px) {
  .listed-section .second-list .listed-item:nth-of-type(even) {
    background-color: var(--light-bg-color);
  }
}

.listed-section .listed-item:nth-of-type(odd) {
  background-color: var(--light-bg-color);
}

.listed-section .listed-item {
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.vehicle-details-page .btn-dark,
.vehicle-details-page .transparent-btn,
.vehicle-details-page .white-btn,
.vehicle-details-page .blue-btn {
  height: 50px;
  width: 240px;
  font-family: "Geologica";
  color: var(--light-text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.vehicle-details-page .btn-dark {
  border: 2px solid var(--dark-color);
  background-color: var(--dark-color);
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .vehicle-details-page .btn-dark:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--black-color);
  }
  .vehicle-details-page .btn-dark:hover::before {
    filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(313%) hue-rotate(149deg) brightness(93%) contrast(88%);
  }
}
.vehicle-details-page .btn-dark::before {
  content: "";
  background-image: url(../assets/grid.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  width: 20px;
  display: block;
  height: 20px;
}
@media only screen and (max-width: 450px) {
  .vehicle-details-page .btn-dark {
    height: 41px;
    width: 180px;
    font-size: 13px;
    font-weight: 400;
    line-height: 17.37px;
    letter-spacing: 0.4333333671px;
  }
}

.vehicle-details-page .transparent-btn {
  background-color: transparent;
  border: 2px solid var(--medium-blue-color);
  color: var(--dark-color);
  box-shadow: inset 0 0 0 0 var(--medium-blue-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .vehicle-details-page .transparent-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--medium-blue-color);
    color: var(--white-color);
  }
  .vehicle-details-page .transparent-btn:hover::before {
    filter: brightness(0) saturate(100%) invert(82%) sepia(99%) saturate(2%) hue-rotate(84deg) brightness(108%) contrast(100%);
  }
}
.vehicle-details-page .transparent-btn::before {
  content: "";
  background-image: url(../assets/pen-to-square.svg);
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(16%) sepia(12%) saturate(190%) hue-rotate(149deg) brightness(96%) contrast(101%);
  width: 20px;
  display: block;
  height: 20px;
}

.vehicle-details-page .blue-btn {
  background-color: var(--medium-blue-color);
  border: 2px solid var(--medium-blue-color);
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .vehicle-details-page .blue-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--dark-color);
    border: 2px solid var(--medium-blue-color);
  }
  .vehicle-details-page .blue-btn:hover::before {
    filter: brightness(0) saturate(100%) invert(14%) sepia(7%) saturate(429%) hue-rotate(149deg) brightness(96%) contrast(95%);
  }
}
.vehicle-details-page .blue-btn::before {
  content: "";
  background-image: url(../assets/credit-card.svg);
  background-repeat: no-repeat;
  width: 20px;
  display: block;
  height: 20px;
}

/* PARAGRAPH GROUP */
.paragraph-group {
  margin: 40px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.paragraph-group h3 {
  font-family: "Geologica";
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 600;
  line-height: 34.74px;
  letter-spacing: 0.8666666746px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
}

.paragraph-group:not(.vehicle-details-page) {
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* gap: 50px; */
}

.paragraph-group .group-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
@media only screen and (max-width: 995px) {
  .paragraph-group .group-container {
    gap: 20px;
  }
}
@media only screen and (max-width: 790px) {
  .paragraph-group .group-container {
    flex-direction: column;
    gap: 0px;
  }
}

.paragraph-group .group-container .right-group,
.paragraph-group .group-container .left-group {
  flex: 1;
}

@media only screen and (max-width: 450px) {
  .paragraph-group .group-container .right-group {
    display: none;
  }
}

.paragraph-group .group-container p {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.paragraph-group .group-container .read-more {
  border: 0;
  background-color: transparent;
  width: max-content;
  margin-left: auto;
  color: var(--accent-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.7px;
  letter-spacing: 0.5333333611px;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media only screen and (min-width: 451px) {
  .paragraph-group .group-container .read-more {
    display: none;
  }
}

/* VEHICLE FORM FIELD */
.vehicle-form-field {
  margin: 60px auto;
  padding: 40px 60px;
  border-bottom: 2px solid var(--dark-color);
  background-color: var(--light-bg-color);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 830px) {
  .vehicle-form-field {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 450px) {
  .vehicle-form-field {
    padding: 20px 15px;
    gap: 20px;
  }
}
.vehicle-form-field h3 {
  font-family: "Geologica";
  font-size: 32px;
  font-weight: 700;
  line-height: 42.75px;
  letter-spacing: 1.0666667223px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 450px) {
  .vehicle-form-field h3 {
    font-size: 28px;
    line-height: 35px;
  }
}
.vehicle-form-field .details-form-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  grid-template-areas: "first-input second-input third-input" "car-name car-name submit-btn";
}
.vehicle-form-field .details-form-group .first-input {
  grid-area: first-input;
}
.vehicle-form-field .details-form-group .second-input {
  grid-area: second-input;
}
.vehicle-form-field .details-form-group .third-input {
  grid-area: third-input;
}
.vehicle-form-field .details-form-group .no-label {
  grid-area: car-name;
}
.vehicle-form-field .details-form-group .details-form-submit {
  grid-area: submit-btn;
}
@media only screen and (max-width: 700px) {
  .vehicle-form-field .details-form-group {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: "first-input" "second-input" "third-input" "car-name" "submit-btn";
  }
}
.vehicle-form-field .details-form-group .details-item {
  flex: 1;
}
.vehicle-form-field .details-form-group .details-item label {
  position: absolute;
  z-index: 100;
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10.5px 0 0 10.3px;
}
.vehicle-form-field .details-form-group .details-item input {
  width: 100%;
  position: relative;
  height: 58px;
  padding-left: 9px;
  padding-top: 22px;
  border: 1px solid var(--dark-color);
  border-radius: 0;
  background: var(--white-color);
}
.vehicle-form-field .details-form-group .details-item input:focus, .vehicle-form-field .details-form-group .details-item input:active {
  outline: none;
  padding-top: 22px;
}
.vehicle-form-field .details-item.no-label input {
  height: 58px;
  padding-left: 9px;
  padding-top: 0 !important;
  border: 1px solid var(--dark-color);
  border-radius: 0;
  background: var(--white-color);
  font-family: "Geologica";
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.vehicle-form-field .details-form-submit {
  color: var(--white-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  padding: 14px 5px 14px 30px;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 0 0 var(--white-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .vehicle-form-field .details-form-submit:hover {
    box-shadow: inset 400px 0 0 0 var(--white-color);
    color: var(--black-color);
  }
  .vehicle-form-field .details-form-submit:hover::after {
    filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(313%) hue-rotate(149deg) brightness(93%) contrast(88%);
  }
}
.vehicle-form-field .details-form-submit::after {
  content: "";
  background-image: url(../assets/chevron-right.png);
  background-repeat: no-repeat;
  color: var(--white-color);
  font-family: "Font Awesome 6 Pro";
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.7px;
  display: block;
  width: 24px;
  height: 24px;
  margin: 4px 5px 0 auto;
}
@media only screen and (max-width: 480px) {
  .vehicle-form-field .details-form-submit::after {
    margin-left: auto;
  }
}

.input-fields {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
@media only screen and (max-width: 1500px) {
  .input-fields {
    gap: 25px;
  }
}
@media only screen and (min-width: 1101px) and (max-width: 1300px) {
  .input-fields {
    flex-direction: column;
    gap: 40px;
  }
}
@media only screen and (max-width: 880px) {
  .input-fields {
    flex-direction: column;
    gap: 40px;
  }
}

.input-fields .left-container,
.input-fields .right-container {
  flex: 1;
}

.input-fields .warning-txt {
  position: absolute;
  padding-top: 5px;
  color: red;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.4px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.input-fields .loading-icon {
  position: relative;
}
.input-fields .loading-icon::after {
  content: "";
  width: 48px;
  height: 48px;
  border: 5px solid var(--dark-color);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 45%;
  z-index: 200;
}
.input-fields .loading-icon::before {
  content: "";
  background-color: white;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 199;
}

.input-fields .calculator-form-group {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 4fr 5fr;
  row-gap: 15px;
  column-gap: 20px;
  grid-template-areas: "first-item first-item" "second-item second-item" " third-item forth-item";
}
.input-fields .calculator-form-group .first-item {
  grid-area: first-item;
}
.input-fields .calculator-form-group .second-item {
  grid-area: second-item;
}
.input-fields .calculator-form-group .third-item {
  grid-area: third-item;
}
.input-fields .calculator-form-group .forth-item {
  grid-area: forth-item;
}

.input-fields .left-container h3,
.input-fields .right-container h3 {
  font-family: "Geologica";
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 600;
  line-height: 34.74px;
  letter-spacing: 0.8666666746px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.input-fields .calculator-form-group label {
  position: absolute;
  z-index: 100;
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10.5px 0 0 10.3px;
}

.input-fields .calculator-form-group input {
  width: 100%;
  position: relative;
  height: 58px;
  padding-left: 35px;
  padding-top: 22px;
  border: 1px solid var(--dark-color);
  border-radius: 0;
  background: var(--white-color);
}
.input-fields .calculator-form-group input:focus, .input-fields .calculator-form-group input:active {
  outline: none;
  padding-top: 22px;
}

.input-fields .calculator-form-group .details-item:not(.third-item) {
  position: relative;
}

.input-fields .calculator-form-group .details-item:not(.third-item)::before {
  content: "";
  background-image: url(../assets/euro.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  height: 15px;
  width: 15px;
  position: absolute;
  z-index: 10;
  bottom: 10px;
  left: 12px;
}

.input-fields .calculator-form-group select {
  height: 58px;
  width: 100%;
  font-family: "Geologica";
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  -webkit-appearance: none;
  padding-left: 9px;
  border: 1px solid var(--dark-color);
  border-radius: 0;
  background: var(--white-color);
  cursor: pointer;
}

.input-fields .details-item.third-item {
  position: relative;
}

.input-fields .details-item.third-item::after {
  content: "";
  background-image: url(../assets/chevron-down.svg);
  background-repeat: no-repeat;
  background-size: 60%;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 5px;
  top: 43%;
  pointer-events: none;
}

.input-fields .right-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.input-fields .right-container .main-wrapper {
  background-color: var(--light-bg-color);
  padding: 30px 25px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 560px) {
  .input-fields .right-container .main-wrapper {
    padding: 25px 10px;
  }
}

.input-fields .right-container .top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1101px) and (max-width: 1300px) {
  .input-fields .right-container .top-container {
    justify-content: space-evenly;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 880px) {
  .input-fields .right-container .top-container {
    justify-content: space-evenly;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 450px) {
  .input-fields .right-container .top-container {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }
}

.input-fields .right-container .top-container .text-wrapper p {
  font-family: "Geologica";
  font-size: 21px;
  font-weight: 700;
  line-height: 28.06px;
  letter-spacing: 0.6999999881px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.input-fields .right-container .top-container .img-logo-wrapper {
  width: 180px;
  height: 70px;
}
.input-fields .right-container .top-container .img-logo-wrapper img {
  width: 100%;
  object-fit: cover;
}

.input-fields .right-container .dark-btn {
  width: 300px;
  height: 58px;
  margin: 0 auto;
  padding: 0 15px;
  border: 2px solid var(--dark-color);
  background-color: var(--dark-color);
  font-family: "Geologica";
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: inset 0 0 0 0 var(--light-bg-color);
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
@media only screen and (min-width: 1000px) {
  .input-fields .right-container .dark-btn:hover {
    box-shadow: inset 400px 0 0 0 var(--light-bg-color);
    color: var(--black-color);
  }
  .input-fields .right-container .dark-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(313%) hue-rotate(149deg) brightness(93%) contrast(88%);
  }
}
.input-fields .right-container .dark-btn::after {
  content: "";
  background-image: url(../assets/arrow-up-right-from.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 10;
  right: 15px;
}
@media only screen and (max-width: 450px) {
  .input-fields .right-container .dark-btn {
    width: 283px;
  }
}

/* PAGINATION */
/* COPIED FROM USED-CARS AND APPLIES TO ALL PAGES WITH PAGINATION */
.wp-pagenavi {
  margin-left: 350px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media only screen and (max-width: 995px) {
  .wp-pagenavi {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1700px) {
  .wp-pagenavi {
    margin-left: 420px;
  }
}

.wp-pagenavi .pages {
  display: none;
}
@media only screen and (max-width: 700px) {
  .wp-pagenavi .pages {
    display: block;
  }
}

.wp-pagenavi .pages-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media only screen and (max-width: 700px) {
  .wp-pagenavi .pages-wrapper {
    display: none;
  }
}

.wp-pagenavi .previouspostslink {
  text-decoration: none;
  background-image: url(../assets/pagination-arrow-prev.png);
  background-repeat: no-repeat;
  background-position-y: bottom;
  display: block;
  width: 20px;
  height: 20px;
}

.wp-pagenavi .nextpostslink {
  text-decoration: none;
  background-image: url(../assets/pagination-arrow-next.png);
  background-repeat: no-repeat;
  background-position-y: bottom;
  display: block;
  width: 20px;
  height: 20px;
}

.wp-pagenavi .page {
  color: var(--black-color);
  text-decoration: none;
  cursor: pointer;
}

.wp-pagenavi .current {
  color: var(--accent-color);
}

/* ALBUM MODAL SECTION */
.album-section {
  margin: 50px 0;
}

.album-section h2 {
  padding-bottom: 50px;
  color: var(--dark-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.067px;
  text-transform: uppercase;
}
@media only screen and (max-width: 520px) {
  .album-section h2 {
    font-size: 28px;
    line-height: 37.41px;
    letter-spacing: 0.9333333373px;
  }
}

.album-section .albumSectionSwiper {
  margin: 0;
  cursor: pointer;
  /* .swiper-slide-active,
  .last-slider {
      position: relative;

      &::after {
          content: "";
          background: rgba(255, 255, 255, 0.6);
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          z-index: 100;
      }
  } */
  /*
    @media only screen and (min-width: 1900px) {
        .carousel-prev {
            left: 19%;
        }

        .carousel-next {
            right: 19%;
        }
    }

    @media only screen and (max-width: 1300px) {
        .carousel-prev {
            left: 23.5%;
        }

        .carousel-next {
            right: 23.5%;
        }
    }

    @media only screen and (max-width: 900px) {
        .carousel-prev {
            left: 31%;
        }

        .carousel-next {
            right: 31%;
        }
    }

    @media only screen and (max-width: 578px) {
        .carousel-prev {
            left: 31%;
        }

        .carousel-next {
            right: 31%;
        }
    }

    @media only screen and (max-width: 420px) {
        .carousel-prev {
            left: 30%;
        }

        .carousel-next {
            right: 30%;
        }
    } */
}
.album-section .albumSectionSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin-right: 0 !important;
}
.album-section .albumSectionSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.album-section .albumSectionSwiper .swiper-slide .album-description-wrapper {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  gap: 5px;
  padding: 15px 0;
  width: 85%;
  border-bottom: 1px solid var(--accent-color);
  font-family: "Geologica";
}
.album-section .albumSectionSwiper .swiper-slide .album-description-wrapper .upper-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
}
.album-section .albumSectionSwiper .swiper-slide .album-description-wrapper .price-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .album-section .albumSectionSwiper .swiper-slide .album-description-wrapper .price-container {
    flex-direction: column;
    align-items: unset;
  }
}
.album-section .albumSectionSwiper .swiper-slide .album-description-wrapper .price-sm {
  font-size: 13px;
  margin-right: 5px;
}
.album-section .albumSectionSwiper .swiper-slide .album-description-wrapper .price-bold {
  font-size: 17px;
  font-weight: 600;
}
.album-section .albumSectionSwiper .carousel-prev {
  left: 0%;
}
.album-section .albumSectionSwiper .carousel-next {
  right: 0%;
}
.album-section .albumSectionSwiper .carousel-next,
.album-section .albumSectionSwiper .carousel-prev {
  height: 40px;
  width: 40px;
  background-color: transparent;
  opacity: 1;
  border: none;
  position: absolute;
  z-index: 1000;
  top: 35%;
}
.album-section .albumSectionSwiper .carousel-next:hover, .album-section .albumSectionSwiper .carousel-next:focus, .album-section .albumSectionSwiper .carousel-next:active,
.album-section .albumSectionSwiper .carousel-prev:hover,
.album-section .albumSectionSwiper .carousel-prev:focus,
.album-section .albumSectionSwiper .carousel-prev:active {
  opacity: 1;
}
@media only screen and (max-width: 670px) {
  .album-section .albumSectionSwiper .carousel-next,
  .album-section .albumSectionSwiper .carousel-prev {
    height: 30px;
    width: 30px;
    top: 35%;
  }
}
.album-section .albumSectionSwiper .carousel-control-next-icon,
.album-section .albumSectionSwiper .carousel-control-prev-icon {
  width: 45px;
  height: 45px;
  /* margin-top: 4px; */
  display: block;
  margin: auto;
}
@media only screen and (max-width: 899px) {
  .album-section .albumSectionSwiper .carousel-control-next-icon,
  .album-section .albumSectionSwiper .carousel-control-prev-icon {
    height: 30px;
    width: 30px;
  }
}

.album-section #staticBackdrop .swiper-slide .album-description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
}

.album-section #staticBackdrop .swiper-slide .album-description-wrapper .upper-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.38px;
  letter-spacing: 0.5333333611px;
  color: var(--white-color);
}

.album-section #staticBackdrop .swiper-slide .album-description-wrapper .price-container .price-sm {
  font-size: 13px;
  margin-right: 5px;
  color: var(--white-color);
}

.album-section #staticBackdrop .thumbsSlider .swiper-slide .album-description-wrapper .upper-txt {
  font-size: 12px;
}

.album-section #staticBackdrop .thumbsSlider .swiper-slide .album-description-wrapper .price-container .price-sm {
  display: none;
}

/* MODAL */
.album-section .modal.fade.show {
  background-color: black;
}

.album-section .modal-backdrop {
  opacity: 0.95 !important;
}

.album-section .modal .swiper-slide {
  background-size: cover;
  background-position: center;
}
.album-section .modal .modalSwiper {
  padding-bottom: 10px;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1040px) {
  .album-section .modal .modalSwiper {
    width: 100%;
  }
}
.album-section .modal .modalSwiper .swiper-slide img {
  aspect-ratio: 4/2;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
@media only screen and (max-width: 765px) {
  .album-section .modal .modalSwiper .swiper-slide img {
    aspect-ratio: 8/5;
  }
}
.album-section .modal .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-section .modal .swiper-button-next,
.album-section .modal .swiper-button-prev {
  color: var(--light-text-color);
}
@media only screen and (max-width: 765px) {
  .album-section .modal .swiper-button-next,
  .album-section .modal .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 45%);
  }
}
.album-section .modal .thumbsSlider {
  cursor: grab;
  padding: 20px;
  border-top: var(--bs-modal-footer-border-width) solid var(--accent-color);
  border-bottom: var(--bs-modal-footer-border-width) solid var(--accent-color);
}
@media only screen and (max-width: 765px) {
  .album-section .modal .thumbsSlider {
    padding: 20px 0;
  }
}
.album-section .modal .thumbsSlider img {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 5/4;
  opacity: 0.3;
}
.album-section .modal .thumbsSlider .swiper-slide {
  width: 25%;
  height: 100%;
  background-color: black;
}
.album-section .modal .thumbsSlider .swiper-slide-thumb-active img {
  opacity: 1;
}
.album-section .modal .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.album-section .modal:not(.show) .modal-dialog {
  opacity: 0;
}

.album-section .modal-dialog {
  max-width: unset;
  padding: 0 50px;
  opacity: 1;
  transform: unset !important;
  transition: opacity 1s !important;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 765px) {
  .album-section .modal-dialog {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .album-section .modal-dialog {
    padding: 0;
  }
}

.album-section .modal-header {
  border-bottom: unset;
}

.album-section .modal-header .btn-close {
  filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(241%) hue-rotate(215deg) brightness(116%) contrast(100%);
  opacity: 1;
}

@media only screen and (max-width: 520px) {
  .album-section .modal-body {
    margin-top: 100px;
  }
}

.album-section .modal-content {
  background-color: transparent;
  border: none;
}

.album-section .image-counter {
  color: var(--white-color);
  text-align: center;
  padding: 20px 0;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* BOOKING FORM */
@media only screen and (max-width: 1100px) {
  .wpbc_form.wpbc_container_booking_form {
    padding: 0 25px;
  }
}
/* HEART LIKE BUTTON */
.heart-header:hover img,
.heart-button:hover img,
.like-container:hover img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(94%) saturate(6386%) hue-rotate(356deg) brightness(110%) contrast(126%);
}

/* FOOTER */
@media only screen and (max-width: 830px) {
  .vehicle-details-page .footer-section {
    padding-bottom: 70px;
  }
}

.footer-section {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: var(--black-color);
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1200px) {
  .footer-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
}
.footer-section .footer-logo-wrapper img {
  width: 270px;
  object-fit: cover;
}
.footer-section .footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  .footer-section .footer-wrapper {
    align-items: center;
    gap: 60px;
  }
}
.footer-section .footer-wrapper .social-media {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.footer-section .footer-wrapper .social-media a:hover {
  opacity: 0.8;
}
.footer-section .footer-wrapper .list-wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding-left: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 900px) {
  .footer-section .footer-wrapper .list-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.footer-section .footer-wrapper .list-item {
  color: var(--light-text-color);
  text-align: right;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.footer-section .footer-wrapper .list-item:hover {
  color: #dcdada;
}
.footer-section .footer-wrapper li:not(:last-of-type):after {
  content: "|";
  color: var(--accent-color);
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 15px;
}
@media only screen and (max-width: 900px) {
  .footer-section .footer-wrapper li::after {
    display: none;
  }
}
@media only screen and (min-width: 1751px) {
  .footer-section .footer-wrapper .list-wrapper {
    gap: 30px;
  }
  .footer-section .footer-wrapper li:after {
    margin-left: 30px !important;
  }
}

/* MEDIA QUERIES */
@media screen and (max-width: 1255px) {
  .ismailos header .account-icon-wrapper,
  .ismailos header .lang-btn {
    visibility: hidden;
  }
  .ismailos header .languages .lang-btn {
    visibility: visible;
  }
  .ismailos .desktop-menu {
    display: none;
  }
}
@media screen and (min-width: 1255px) {
  .ismailos .burger-menu {
    display: none;
  }
}
@media screen and (min-width: 1550px) {
  .ismailos header .menu-list {
    gap: 10px;
  }
  .ismailos header .menu-item {
    padding: 0 30px;
  }
}
.albumSwiper2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.albumSwiper2 .swiper-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.albumSwiper2 .swiper-slide {
  flex: 0 0 17%;
  box-sizing: border-box;
}
.albumSwiper2 .swiper-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.albumSwiper2 .carousel-prev,
.albumSwiper2 .carousel-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.albumSwiper2 .carousel-prev {
  left: 10px;
}
.albumSwiper2 .carousel-next {
  right: 10px;
}

/* additions start */
/* gravity forms start*/
.gfield:not(.gfield--type-checkbox, .gfield--type-select) .gfield_label.gform-field-label {
  position: absolute;
  z-index: 100;
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 12px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10.5px 0 0 10.3px !important;
}

.ginput_container input:not(.gfield-choice-input) {
  width: 100% !important;
  position: relative;
  height: 58px;
  padding-left: 9px !important;
  padding-top: 22px !important;
  border: 1px solid var(--dark-color);
  border-radius: 0;
  background: #fff;
}

.gfield--type-checkbox {
  /* padding-top: 23px !important; */
  display: flex !important;
  flex-direction: row !important;
}

@media only screen and (min-width: 1100px) {
  .gfield--type-checkbox {
    gap: 70px;
  }
}
.ginput_container.ginput_container_checkbox .gfield_checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
}

.gfield--type-checkbox .gfield_label {
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  width: max-content;
}

.gchoice {
  position: relative;
  width: 100%;
}

.gchoice label {
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  margin-left: 30px;
  left: 15px;
  position: relative;
}

.gfield-choice-input {
  position: absolute;
  z-index: 1000;
  /* left: -15px; */
  opacity: 1;
  height: 25px;
  width: 25px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid var(--dark-color);
  transition: background-color 0.25s ease;
}

.gform-footer {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
}

.gform_button,
.gform-button {
  color: var(--white-color) !important;
  font-family: "Geologica";
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal !important;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  border: 1px solid var(--dark-color) !important;
  background: var(--dark-color) !important;
  padding: 14px 5px 14px 30px !important;
  position: relative !important;
  text-align: left;
  width: 265px;
}

.gform_button:hover,
.gform-button:hover {
  box-shadow: inset 400px 0 0 0 var(--light-bg-color) !important;
  color: var(--dark-color) !important;
}

.gform-footer::after,
#field_submit::after {
  content: "";
  background-image: url(../assets/chevron-right.png);
  background-repeat: no-repeat;
  color: #fff;
  font-family: "Font Awesome 6 Pro";
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.7px;
  display: block;
  width: 24px;
  height: 24px;
  margin: 4px 10px 0 130px;
  position: absolute;
  pointer-events: none;
}

.gform-footer::after {
  top: 32%;
}

#enquire_today .gform-footer::after {
  background-image: none;
}

.gform-footer:hover::after,
#field_submit:hover::after {
  filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(313%) hue-rotate(149deg) brightness(93%) contrast(88%) !important;
}

.gform_wrapper.gravity-theme div label {
  width: max-content;
}

@media only screen and (max-width: 936px) {
  .gfield--type-checkbox {
    flex-direction: column !important;
    align-items: flex-start;
    padding-top: 35px;
    gap: 20px;
  }
  .ginput_container.ginput_container_checkbox .gfield_checkbox {
    flex-direction: column !important;
  }
  .gchoice {
    left: 15px;
  }
  .ginput_container.ginput_container_checkbox .gfield_checkbox {
    gap: 20px;
  }
}
.gfield--input-type-select,
.gfield--type-select {
  display: flex;
  justify-content: unset;
  align-items: center;
  gap: 20px;
}

.ginput_container_select {
  width: 100%;
}

.ginput_container_select select {
  border: 1px solid var(--dark-color);
  background-color: #fff;
  padding: 17.5px !important;
  width: 100% !important;
}

.gfield--input-type-select label,
.gfield--type-select label {
  color: var(--dark-color);
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  letter-spacing: 0.533px;
  text-transform: uppercase;
  width: auto;
}

@media only screen and (max-width: 936px) {
  .gfield--input-type-select,
  .gfield--type-select {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 35px;
    gap: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .gform_button,
  .gform-button {
    margin-left: 0px;
    width: 100%;
    /* margin-top: 60px; */
  }
}
#enquire_today #field_submit {
  grid-column: span 4;
  display: flex;
  align-items: center;
}

#enquire_today #field_submit .gform-button {
  height: 100%;
  width: 100%;
}

#enquire_today .gform_wrapper.gravity-theme .gfield.gfield--width-half {
  grid-column: span 8;
}

@media only screen and (max-width: 700px) {
  .gform_fields {
    display: flex !important;
    flex-direction: column;
  }
}
/* gravity forms end*/
.card-section .card .card-text-wrapper .upper-content-wrapper > div:first-child {
  flex-basis: 90%;
}

/* scroll to top btn start */
.scrolltopbtn {
  position: fixed;
  bottom: 6em;
  right: 10px;
  z-index: 99;
  padding: 8px 8px;
  border-radius: 25px;
  justify-content: center;
  display: none;
  border: 1px solid var(--accent-color);
  background: var(--light-bg-color);
}

@media screen and (max-width: 995px) {
  .scrolltopbtn {
    display: flex;
  }
  .scrolltopbtn.hide {
    display: none;
  }
}
/* scroll to top btn end */
.gold-btn {
  padding: 9px 15px !important;
  border: 1px solid var(--accent-color) !important;
  background: #b89e7e;
  background-color: var(--accent-color) !important;
  color: var(--white-color) !important;
  font-family: "Geologica";
  font-size: 16px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal !important;
  text-transform: uppercase;
  display: flex !important;
  flex-direction: row !important;
  /* justify-content: space-between !important; */
  box-shadow: inset 0 0 0 0 var(--white-color) !important;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  border-radius: 0 !important;
  text-align: center;
}

.gold-btn:hover {
  box-shadow: inset 400px 0 0 0 #fff !important;
  color: var(--accent-color) !important;
}

.ismailos .vehicle-details .addtoany_share_save {
  grid-area: share;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-size: 18px !important;
  font-weight: 400;
  line-height: 23.29px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text-color);
  text-decoration: none;
  margin-left: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}

.blog .gold-btn.read-more {
  width: fit-content;
  align-self: end;
}

.logo-wrapper span {
  color: white;
}

.terms-and-conditions .terms-main-header {
  color: #000 !important;
  font-family: "Geologica";
  font-size: 35px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 32px !important;
  letter-spacing: -0.583px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: none !important;
  width: 100%;
  text-align: left;
}

.terms-header {
  border: none !important;
  padding-left: 0 !important;
}

.ismailos .terms-header span {
  font-family: "Geologica";
  color: #b89e7e;
  font-size: 26px;
  font-weight: 600;
  line-height: 34.74px;
  letter-spacing: 0.8666666746px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
}

@media only screen and (max-width: 830px) {
  .vehicle-details-page .vehicle-details .details-btn {
    width: 100% !important;
    justify-content: center;
  }
}
.vehicle-details-page .vehicle-details .item .vehic-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 10px;
  grid-template-areas: "location location address";
}

@media only screen and (min-width: 1100px) and (max-width: 1380px) {
  .vehicle-details-page .vehicle-details .item .vehic-item {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "location location address address";
  }
}
.ismailos .enquire-cta.transparent-btn {
  color: var(--white-color);
}

.ismailos #main-button-set .enquire-cta.transparent-btn {
  color: var(--dark-color);
}

.ismailos .tabs-section {
  display: flex;
  flex-direction: column;
  margin: 70px 50px 30px;
}
@media only screen and (max-width: 1100px) {
  .ismailos .tabs-section {
    margin: 40px 0 0 0;
  }
}
.ismailos .tabs-section .section-heading {
  padding-bottom: 50px;
}
.ismailos .tabs-section h2 {
  color: var(--dark-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ismailos .tabs-section .mobile-tabs {
  display: block;
}
@media only screen and (min-width: 995px) {
  .ismailos .tabs-section .mobile-tabs {
    display: none;
  }
}
.ismailos .tabs-section .mobile-tabs > *:focus, .ismailos .tabs-section .mobile-tabs > *:active, .ismailos .tabs-section .mobile-tabs > *:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.ismailos .tabs-section .mobile-tabs .accordion-item {
  border: 0;
  outline: 0;
}
.ismailos .tabs-section .mobile-tabs .accordion-item:focus, .ismailos .tabs-section .mobile-tabs .accordion-item:active, .ismailos .tabs-section .mobile-tabs .accordion-item:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header {
  margin: 0;
  border-bottom: 2px solid var(--white-color);
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header:focus, .ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header:active, .ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header:focus-visible {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  outline: none;
  box-shadow: none;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header .accordion-button {
  color: var(--accent-color);
  font-family: "Geologica";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.833px;
  border: 0;
  background: #f7f5f2;
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  .ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header .accordion-button {
    padding: 20px;
  }
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header .accordion-button::after {
  content: "";
  transition: none;
  --b: 2px; /* the thickness*/
  --c: #0000 90deg, #b89e7e 0; /* the coloration */
  aspect-ratio: 1;
  background: conic-gradient(from 90deg at var(--b) var(--b), var(--c)) calc(100% + var(--b) / 2) calc(100% + var(--b) / 2)/calc(51% + var(--b)) calc(50% + var(--b));
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "";
  background: #fff;
  width: 18px;
  height: 2px;
  border-radius: 3px;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  color: var(--white-color);
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
  outline: none;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-collapse {
  margin-top: -2px;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body {
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  padding: 40px;
  color: var(--light-text-color);
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.533px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body:focus, .ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body:active, .ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body:focus-visible {
  /* border: none; */
  outline: none;
  box-shadow: none;
}
@media only screen and (max-width: 480px) {
  .ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body {
    padding: 40px 20px;
  }
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body .upper-wrapper,
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body .lower-wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body .upper-wrapper h3,
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body .lower-wrapper h3 {
  margin-bottom: 20px;
  color: var(--white-color);
  font-family: "Geologica";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.833px;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body .upper-wrapper p,
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body .lower-wrapper p {
  color: var(--white-color);
  font-family: "PT Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
  letter-spacing: 0.6px;
}
.ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body .upper-wrapper .tabs-img-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2/1;
}
@media only screen and (max-width: 480px) {
  .ismailos .tabs-section .mobile-tabs .accordion-item .accordion-body .upper-wrapper .tabs-img-wrapper img {
    aspect-ratio: 3/2;
  }
}
.ismailos .tabs-section .desktop-tabs {
  display: none;
}
@media only screen and (min-width: 995px) {
  .ismailos .tabs-section .desktop-tabs {
    display: block;
  }
}
.ismailos .tabs-section .tabs-wrapper .tabs-content {
  display: none;
}
.ismailos .tabs-section .tabs-wrapper input {
  display: none;
}
.ismailos .tabs-section .tabs-wrapper label {
  flex: 1;
  color: var(--accent-color);
  text-align: center;
  font-family: "Geologica";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: 2px solid var(--white-color);
  background: var(--light-bg-color);
  padding: 16px 10px;
  cursor: pointer;
  white-space: nowrap;
}
.ismailos .tabs-section .tabs-wrapper .tabs-labels {
  display: flex;
}
.ismailos .tabs-section .tabs-wrapper input:checked + label {
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  color: var(--accent-color);
}
.ismailos .tabs-section .tabs-wrapper #content-brand-tab-1 {
  display: flex;
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content {
  display: none;
  flex-direction: column;
  gap: 45px;
  padding: 50px;
  background-color: var(--dark-color);
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper,
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .lower-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper {
  gap: 10%;
}
@media only screen and (max-width: 1200px) {
  .ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper {
    gap: 3%;
  }
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .lower-wrapper {
  gap: 40px;
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper .tabs-img-wrapper {
  flex-basis: 50%;
}
@media only screen and (max-width: 1200px) {
  .ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper .tabs-img-wrapper {
    flex-basis: 60%;
  }
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper .content-wrapper {
  flex-basis: 42%;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 1200px) {
  .ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper .content-wrapper {
    flex-basis: 35%;
  }
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper .tabs-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .lower-wrapper .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .lower-wrapper .content-wrapper p {
  margin-top: auto;
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper h3,
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .lower-wrapper h3 {
  color: var(--white-color);
  font-family: "Geologica";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.167px;
}
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .upper-wrapper p,
.ismailos .tabs-section .tabs-wrapper .brand-tabs-content .lower-wrapper p {
  color: var(--light-text-color);
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: 0.533px;
}

.ismailos .terms-and-conditions .terms-main-header span {
  color: var(--black-color);
  font-family: "Geologica";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.583px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ismailos .row-image-text.black-bg {
  background-color: var(--dark-color);
}

.page-template-filters-search .items-result .item .item-img-container .card-image-text {
  position: absolute;
  background-color: #015aba;
  padding: 8px 15px;
  z-index: 10;
  top: 0;
}

.page-template-filters-search .items-result .item .item-img-container .card-image-text p {
  text-transform: uppercase;
  font-family: "Geologica";
  font-size: 12px;
  font-weight: 600;
  line-height: 16.03px;
  letter-spacing: 0.400000006px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--light-text-color);
  margin-top: 1px;
}

.double-slider-box {
  background-color: var(--white-color);
  padding: 20px 40px;
  border-radius: 10px;
  max-width: 20rem;
}

.range-item {
  position: relative;
  width: 100%;
  height: 5px;
  margin: 30px 0;
  background-color: var(--dark-color);
}

.slider-track {
  height: 100%;
  position: absolute;
  background-color: var(--accent-color);
}

.range-item input {
  position: absolute;
  width: 100%;
  background: none;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
}

input[type=range]::-webkit-slider-thumb {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 3px solid var(--white-color);
  background: var(--white-color);
  pointer-events: auto;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5625rem -0.125rem rgba(0, 0, 0, 0.25);
}

input[type=range]::-moz-range-thumb {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 3px solid var(--white-color);
  background: var(--white-color);
  pointer-events: auto;
  -moz-appearance: none;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5625rem -0.125rem rgba(0, 0, 0, 0.25);
}

.tooltip {
  padding: 0.25rem 0.5rem;
  border: 0;
  background: var(--dark-color);
  color: var(--white-color);
  font-size: 0.75rem;
  line-height: 1.2;
  border-radius: 0.25rem;
  display: block;
  width: fit-content;
}

.min-tooltip {
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  z-index: 5;
  opacity: 1;
}

.max-tooltip {
  right: 50%;
  transform: translateX(50%) translateY(-100%);
  z-index: 5;
  opacity: 1;
}

@media screen and (max-width: 995px) {
  .used-cars h1 {
    font-size: 30px;
  }
  .used-cars .search-result {
    font-size: 18px;
  }
}
#upper-button-set {
  z-index: 999;
}

/* additions end */
.ismailos .contact-section .gform_button,
.ismailos #enquire_today .gform-button {
  border-radius: 0 !important;
  box-shadow: inset 0 0 0 0 var(--white-color) !important;
  -webkit-transition: ease-out 0.4s !important;
  -moz-transition: ease-out 0.4s !important;
  transition: ease-out 0.4s !important;
}
.ismailos .contact-section .gform_button:hover,
.ismailos #enquire_today .gform-button:hover {
  box-shadow: inset 400px 0 0 0 var(--light-bg-color) !important;
  color: var(--dark-color) !important;
}

input[type="checkbox"].gfield-choice-input,
.ginput_container_consent input[type="checkbox"] {

  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
}


@media screen and (max-width: 995px) {
  .ismailos .enquire-cta.transparent-btn {
    color: var(--dark-color);
  }
}
.ismailos .card-section .card .upper-content-wrapper {
  height: 152px;
}
.ismailos .card-section .card .upper-content-wrapper > div:first-child {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.ismailos .card-section .card .car-details-wrapper {
  margin-top: 25px !important;
}
.ismailos .card-section .card .card-text-wrapper p:nth-of-type(3) {
  margin-top: auto;
}

.ismailos .card-section .card:has(.light) .upper-content-wrapper {
  height: unset;
}
.ismailos .card-section .card:has(.light) .car-details-wrapper {
  margin-top: 15px !important;
}

@media screen and (max-width: 995px) {
  .ismailos .used-cars {
    margin: 110px 0 70px;
  }
}
.ismailos .used-cars .main-content .sort-by,
.ismailos .used-cars .filter-mobile {
  font-family: Hind, Arial, Verdana, Helvetica, sans-serif !important;
}

@media screen and (max-width: 450px) {
  .ismailos.home .hero-txt-wrapper {
    width: auto;
  }
}

@media screen and (max-width: 995px) {
  .ismailos .used-cars {
    margin: 180px 0 70px;
  }
}
.ismailos .accordion-section h2 {
  text-transform: uppercase;
}

.ismailos .input-fields .calculator-form-group input {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 21px;
  line-height: 100%;
  letter-spacing: 0.7px;
}

.ismailos .input-fields .calculator-form-group label,
.ismailos .input-fields .calculator-form-group select {
  font-weight: 200;
  text-transform: uppercase;
}

.ismailos .input-fields .calculator-form-group input {
  color: #242728;
}

.compare-icon {
  display: none;
}

@media screen and (max-width: 1255px) {
  .compare-icon {
    display: block;
  }
}
#ComparePopUp {
  position: fixed;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  z-index: 12;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  #ComparePopUp {
    width: 22em;
  }
}
.popup-body {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  background-color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
  color: var(--dark-color);
}

#ComparePopUpClose {
  display: flex;
  justify-content: end;
  width: 100%;
  position: absolute;
  cursor: pointer;
}

#ComparePopUpClose svg {
  width: 25px;
  height: 25px;
}

.comparepopup-overlay {
  background: rgba(30, 30, 30, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

body.page-template-default section ul,
body.post-template-default section ul {
  font-size: 16px;
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
  font-weight: 400;
}

body.page-template-default ul li,
body.post-template-default ul li {
  margin-bottom: 0.5em;
}

body.page-template-default section ul li::before,
body.post-template-default section ul li::before,
body.page-template-default .terms-subcontainer ul li::before {
  content: "•";
  padding-right: 2px;
}

body.page-template-default section.carousel-compact ul,
body.post-template-default section.carousel-compact ul {
  color: white;
}

.tabs-content .location-info {
  width: 40%;
}

.terms-and-conditions p {
  font-family: "PT Sans", Arial, Verdana, Helvetica, sans-serif;
}

body.ismailos.page-template-filters-search .carousel-compact .txt-container ul {
  color: var(--light-text-color);
}

body.ismailos.page-template-filters-search .carousel-compact .txt-container ul li::before {
  content: "•";
  padding-right: 2px;
}

@media screen and (max-width: 768px) {

	#samaritan-container.closed #samaritandiv {
		bottom: 50px !important;
	}

}

select:disabled {
  opacity: 0.7;
}