:root {
  --white-color: #fff;
  --black-color: #000;
  --link-color: #222222;
  --red-color: #d7000f;
  --grey-color: #1a2022;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img,
video {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
  margin: 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white-color);
}

.text-red {
  color: var(--red-color);
}

.pe-5 {
  padding-right: 3rem !important;
}

.mx-auto {
  margin-inline: auto;
}

.my-auto {
  margin-block: auto;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-50 {
  margin-right: 0.125rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-1_5 {
  margin-right: 0.375rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 0.75rem !important;
}

.me-4 {
  margin-right: 1rem !important;
}

.me-5 {
  margin-right: 1.25rem !important;
}

.me-6 {
  margin-right: 1.5rem !important;
}

.me-7 {
  margin-right: 1.75rem !important;
}

.me-8 {
  margin-right: 2rem !important;
}

.me-9 {
  margin-right: 2.25rem !important;
}

.me-10 {
  margin-right: 2.5rem !important;
}

.me-11 {
  margin-right: 2.75rem !important;
}

.me-12 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-50 {
  margin-left: 0.125rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-1_5 {
  margin-left: 0.375rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 0.75rem !important;
}

.ms-4 {
  margin-left: 1rem !important;
}

.ms-5 {
  margin-left: 1.25rem !important;
}

.ms-6 {
  margin-left: 1.5rem !important;
}

.ms-7 {
  margin-left: 1.75rem !important;
}

.ms-8 {
  margin-left: 2rem !important;
}

.ms-9 {
  margin-left: 2.25rem !important;
}

.ms-10 {
  margin-left: 2.5rem !important;
}

.ms-11 {
  margin-left: 2.75rem !important;
}

.ms-12 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

h1 {
  font-size: 37px;
  font-weight: 600;
}

h3 {
  font-weight: 500;
  font-size: 24px;
}

h4 {
  font-weight: 500;
  font-size: 20px;
}

h5 {
  font-weight: 500;
  font-size: 17px;
}

p {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.4;
}

.h-auto {
  height: auto !important;
}

.min-h-195 {
  min-height: 195px;
}

.min-h-157 {
  min-height: 157px !important;
}

.min-h-118 {
  min-height: 118px !important;
}

.min-h-204 {
  min-height: 204px !important;
}

.min-h-146 {
  min-height: 146px !important;
}

.min-h-156 {
  min-height: 156px !important;
}

.min-h-97 {
  min-height: 97px !important;
}

.min-h-81 {
  min-height: 81px !important;
}

.min-h-165 {
  min-height: 165px !important;
}

.min-h-178 {
  min-height: 178px !important;
}

.bg-dark {
  background-color: var(--black-color);
}

.bg-grey {
  background-color: var(--grey-color) !important;
}

.text-dark {
  color: var(--link-color);
}

.fw-500 {
  font-weight: 500 !important;
}

.w-100 {
  width: 100% !important;
}

.flex {
  display: flex !important;
}

.items-center {
  align-items: center !important;
}

.flex-col {
  flex-direction: column !important;
}

.gap-3 {
  gap: 1rem;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.rounded-3 {
  border-radius: 0.8rem !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.card {
  border-radius: 0.8rem;
  overflow: hidden;
  display: block;
}

.w-50 {
  width: 50% !important;
}

body {
  overflow-x: hidden;
  font-family: 'Encode Sans Semi Expanded', serif;
  font-weight: 400;
  font-size: 14px;
}

.btn {
  background-color: var(--black-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  padding: 15px 35px;
  border-radius: 35px;
  justify-content: center;
  width: fit-content;
  border: 1px solid var(--link-color);
  transition: 0.3s ease-in;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--red-color);
  color: var(--white-color) !important;
  border: 1px solid var(--red-color);
}

.btn svg {
  stroke: #d7000f;
  transition: 0.3s ease-in;
}

.btn:hover svg {
  stroke: var(--white-color) !important;
}

.btn-outline {
  background-color: var(--white-color);
  color: var(--link-color);
  border: 1px solid var(--link-color);
  display: flex;
  align-items: center;
  padding: 15px 35px;
  border-radius: 35px;
  justify-content: center;
  width: fit-content;
  transition: 0.3s ease-in;
  text-transform: uppercase;
}

.btn-outline:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

.bannerText {
  position: relative;
}

.bannerText::before {
  content: '';
  position: absolute;
  left: 0;
  background: linear-gradient(360deg, #000000 4.4%, rgba(0, 0, 0, 0) 32%),
    linear-gradient(90deg, #000000 16%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 24%);
  width: 100%;
  height: 100%;
}

.bannerText .content {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 550px;
}

.bannerText .content h1 {
  color: var(--white-color);
  margin-bottom: 20px;
}

.bannerText .content p {
  color: var(--white-color);
  font-size: 14px;
  margin-bottom: 20px;
}

.bannerText .content .btn {
  color: var(--white-color);
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.bannerText .content .btn:hover {
  color: var(--link-color);
}

.videoGrids {
  padding-block: 90px;
  background-color: var(--black-color);
}

.videoGrids .splide__slide {
  overflow: hidden;
  border-radius: 8px;
}

.videoGrids .splide__slide video {
  display: block;
  width: 100%;
  border-radius: 8px;
  transition: transform 400ms;
  transform: scale(0.8);
  transform-origin: center center;
}

.videoGrids .splide__slide.is-active video {
  transform: scale(1.1);
}

.suvsList {
  padding-block: 60px;
}

.videoGrids .heading {
  color: var(--white-color);
}

.videoGrids .heading,
.suvsList .heading {
  position: relative;
  text-align: center;
  width: fit-content;
  padding-bottom: 8px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.videoGrids .heading::before,
.suvsList .heading::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 80%;
  background-color: var(--red-color);
  border-radius: 5px;
}

.videoGrids .btns {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.grid-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.suvsList .carlist {
  gap: 0 !important;
}

.suvsList .carlist .car-section {
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}

.suvsList .carlist .car-section .content .head {
  display: flex;
  align-items: center;
}

.suvsList .carlist .car-section .content {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 32px;
  height: -webkit-fill-available;
}

.suvsList .carlist .car-section .content h6 {
  margin: 0 12px;
  font-size: 12px;
  color: var(--black-color);
}

.suvsList .carlist .car-section .content p {
  color: var(--black-color);
  font-size: 12px;
  opacity: 0;
}

.suvsList .carlist .car-section .content img {
  width: 100px;
}

.suvsList .carlist .car-section .content .hover-car,
.suvsList .carlist .car-section .content .car {
  width: 100%;
}

.car-section:hover .bg {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.car-section:hover .content p {
  opacity: 1 !important;
}

.car-section:hover .content .car {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.car-section:hover .content .hover-car {
  opacity: 1 !important;
  visibility: visible;
}

.row-three-columns {
  padding: 0 32px 60px;
}

.row-three-columns .grid-columns {
  gap: 1.5rem;
}

.row-three-columns .card {
  padding: 25px;
  text-align: center;
  border: 1px solid #2222222e;
  height: 100%;
  border-radius: 10px;
}

.row-three-columns .card img {
  max-width: 95px;
  margin: 0 auto 15px;
}

.row-three-columns .card h5 {
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.row-three-columns .card p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.row-three-columns .card .btn {
  margin: auto;
}

.row-two-columns .content {
  max-width: 600px;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  height: 100%;
  padding-left: 32px;
}

.row-two-columns .content img {
  width: 100px;
}

.row-two-columns .content h1 {
  font-weight: 400;
  text-transform: uppercase;
}

.row-two-columns .content p {
  line-height: 1.6;
  margin-bottom: 40px;
}

.row-two-columns .content .btn {
  background-color: var(--black-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 8px;
  justify-content: center;
  width: fit-content;
  border: 1px solid var(--link-color);
  text-transform: uppercase;
  transition: 0.3s ease-in;
  font-size: 14px;
}

.row-two-columns .content .btn:hover {
  background-color: var(--red-color);
  border-color: var(--red-color);
  color: var(--white-color);
}

.customer-support {
  padding: 60px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.customer-support h1 {
  color: var(--white-color);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.customer-support-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.customer-support .call {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--black-color);
  border: 1px solid var(--link-color);
  padding: 10px 24px;
  width: fit-content;
  border-radius: 8px;
  overflow: hidden;
  color: var(--white-color);
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease-in;
  font-size: 14px;
}

.customer-support .call:hover {
  background-color: var(--red-color);
  border-color: var(--red-color);
  color: var(--white-color);
}

.customer-support .icon {
  background-color: var(--red-color);
  width: 20px;
  height: 20px;
  padding: 5px;
  border-radius: 25px;
}

.customer-support .btn {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: var(--white-color);
  white-space: nowrap;
  padding: 10px 24px;
  font-size: 14px;
}

.customer-support .btn:hover {
  color: var(--grey-color);
}

.image-overlay {
  position: relative;
}

.image-overlay .grid-columns {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 0 32px;
  margin-bottom: 45px;
}

.image-overlay .grid-columns::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #ffffff 85%);
}

.image-overlay .grid-columns .columns {
  z-index: 99;
}

.image-overlay .grid-columns .columns .card {
  text-align: center;
}

.image-overlay .grid-columns .columns .card h5 {
  font-size: 25px;
  font-weight: 500;
  max-width: 140px;
  margin: 0 auto 25px;
}

.image-overlay .grid-columns .columns .card p {
  line-height: 1.5;
  font-weight: 400;
}

footer {
  padding: 0 0 15px;
}

footer .grid-columns {
  padding: 15px 32px 0;
}

footer .grid-columns h6 {
  color: var(--white-color);
  text-align: center;
  margin: 25px 0;
  font-size: 16px;
}

footer .grid-columns ul li {
  text-align: center;
}

footer .grid-columns ul li a {
  color: var(--white-color);
  margin-bottom: 15px;
  display: block;
  font-size: 14px;
}

footer .logos {
  border-top: 1px solid #2222222e;
  background-color: var(--white-color);
  border-radius: 0 0 60px 60px;
}

footer .logos img {
  width: 130px;
  margin: 15px auto;
}

footer .footer-bottom {
  padding: 15px 32px 0;
  border-top: 1px solid #ffffff6b;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-bottom p {
  color: #727272;
}

footer .footer-bottom .social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .footer-bottom .logo-imgs {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .footer-bottom .logo-imgs img {
  width: 75px;
}

.hero {
  position: relative;
}

.hero img,
.hero video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#hero-slider img {
  height: auto;
}

.hero .overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .overlay h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero .overlay a {
  background-color: var(--red-color);
  color: #fff;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 5px;
}

.py-5 {
  padding-block: 3rem;
}

.p-2 {
  padding: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.w-400 {
  width: 400px !important;
}

section.py-5 {
  padding-block: 5rem;
}

.adventure {
  padding-top: 6.5rem !important;
}

.container {
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 15px;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.heading h2 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.8;
  text-transform: uppercase;
  position: relative;
  width: fit-content;
  height: fit-content;
}

.heading h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--red-color);
  height: 2px;
  width: 50%;
}

.sub-heading {
  max-width: 900px;
  margin-inline: auto;
}

.sub-heading h3 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.8;
  text-transform: uppercase;
  position: relative;
  width: fit-content;
  height: fit-content;
}

.sub-heading h3::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: var(--red-color);
  height: 2px;
  width: 50%;
}

.heading h4 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.6;
  text-transform: capitalize;
}

.heading p {
  font-weight: 400;
  font-size: 14px;
  max-width: 500px;
  line-height: 1.4;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.features .card {
  background-color: #262c2c;
  color: var(--white-color);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features .card h2 {
  font-weight: 400;
  font-size: 24px;
}

.features .card h2 span {
  color: var(--red-color);
  font-weight: 700;
  font-size: 32px;
}

.grey-section {
  background-color: #262c2c;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.grid-image-list {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
}

.grid-image-list-reverse {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
}

.grid-image-list-reverse .content,
.grid-image-list .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card .content {
  padding: 20px;
  min-height: 100%;
}

.card .content p {
  font-weight: 400;
  font-size: 14px;
}

.card .content ul {
  padding-left: 30px;
}

.card .content ul li {
  margin-bottom: 10px;
}

.thumbnails {
  display: flex;
  padding: 0;
  justify-content: center;
}

.thumbnail {
  /* width: 70px;
  height: 70px; */
  overflow: hidden;
  list-style: none;
  cursor: pointer;
}

.thumbnail img {
  width: 100%;
  height: auto;
}

#main-slider {
  max-width: 80%;
  margin: 0 auto;
}

#main-slider .splide__slide {
  background-position: bottom !important;
  height: auto !important;
}

#main-slider .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

#thumbnails .splide__slide.is-active {
  border: 2px solid var(--red-color) !important;
}

#thumbnails .splide__track--nav>.splide__list>.splide__slide {
  border: 0;
}

.splide__arrow {
  background-color: var(--white-color);
}

.splide__arrow svg {
  fill: var(--red-color);
}

/* Hide Inner Slider Arrows Initially */
/* .inner-slider .swiper-button-next,
.inner-slider .swiper-button-prev {
  display: none !important;
} */
.swiper-button-next,
.swiper-button-prev {
  cursor: pointer;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  padding: 4px;
}

.inner-slider .inner-button-prev,
.inner-slider .inner-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: none;
  cursor: pointer;
  /* background-color: #ffffffaa; */
  border-radius: 30px;
  padding: 5px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 11px;
  font-weight: 700;
  color: var(--red-color);
}

.inner-slider .inner-button-next {
  right: 0;
}

.inner-slider .inner-button-prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

.outer-slider {
  padding-block: 25px;
  position: relative;
}

.outer-slider .color-variant {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  margin-block: 25px;
  letter-spacing: 7px;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.outer-slider .swiper-slide-active .inner-slider .inner-button-prev,
.outer-slider .swiper-slide-active .inner-slider .inner-button-next {
  display: flex !important;
}

.swiper-pagination-bullet {
  background-color: var(--white-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--red-color);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 50px !important;
}

@media screen and (min-width: 768px) {
  .mb-md-0 {
    margin-bottom: 0;
  }
}

.h9-interior-card img {
  height: 350px;
  object-fit: cover;
}

.accordion {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-item {
  background-color: #1a2022;
  color: #fff;
  margin: 1rem 0;
  border-radius: 0.5rem;
  outline: 1px solid #1a2022;
}

.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-header::after {
  content: '\002B';
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  font-weight: 300;
}

.accordion-item-header.active::after {
  content: '\2212';
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  /* border-top: 1px solid; */
  /* border-image: linear-gradient(to right, transparent, #34495e, transparent) 1; */
  background: #262c2c;
}

.accordion-item-body-content .two-columns {
  border-bottom: 1px solid #464848;
  padding: 15px;
}

.promotion .heading h2,
.adventure .heading h2,
.about-section .heading h2 {
  margin: 0 auto 15px;
}

.promotion .heading h2::before,
.adventure .heading h2::before,
.about-section .heading h2::before {
  transform: translateX(-50%);
  left: 50%;
}

.adventure .heading p,
.about-section .heading p {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.contact-form .card {
  max-width: 800px;
  margin-inline: auto;
  padding: 30px;
}

.contact-form .card .two-columns {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-form label {
  color: var(--white-color);
  margin-bottom: 10px;
  display: flex;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form .form-group .two-columns {
  display: flex;
  align-items: center;
}

.contact-form .form-select,
.contact-form .form-control {
  width: 100%;
  padding: 8px 15px;
  font-size: 14px;
  color: var(--link-color);
  font-weight: 500;
  border: 1px solid var(--white-color);
}

.contact-form .form-select:focus,
.contact-form .form-control:focus {
  border: 1px solid var(--red-color);
}

.contact-form .form-select:focus-visible,
.contact-form .form-control:focus-visible {
  outline: 0 !important;
}

.contact-form .btn {
  background-color: var(--red-color);
  border: 1px solid var(--red-color);
}

.contact-form .btn svg {
  stroke: var(--white-color);
}

.contact-form .btn:hover {
  background-color: var(--black-color);
  border: 1px solid var(--black-color);
}

.contact-form .btn:hover svg {
  stroke: var(--red-color) !important;
}

.adventure .two-columns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card a,
a.card {
  overflow: hidden;
}

.card a img,
a.card img {
  transition: scale 0.3s ease-in-out;
}

.card a:hover img,
a.card:hover img {
  scale: 1.2;
}

a.card .content,
.card a .content {
  transition: background-color 0.3s ease-in-out;
  position: relative;
  z-index: 99;
}

a.card:hover .content,
.card a:hover .content {
  background-color: var(--red-color) !important;
}

.body[dir='rtl'] .btn-outline svg,
.body[dir='rtl'] .btn svg {
  transform: rotate(180deg);
}

.body[dir='rtl'] .row-two-columns .content {
  padding-right: 32px;
  padding-left: 0;
}

body[dir='rtl'] .me-3 {
  margin-left: 0.75rem !important;
  margin-right: 0 !important;
}

body[dir='rtl'] .me-5 {
  margin-left: 1.25rem !important;
  margin-right: 0 !important;
}

body[dir='rtl'] .ms-12 {
  margin-right: 3rem !important;
}

body[dir='rtl'] #highlights .heading .me-12,
body[dir='rtl'] #integent_driving .heading .me-12 {
  margin-left: 3rem !important;
  margin-right: 0 !important;
}

body[dir='rtl'] #integent_driving .heading .pe-5 {
  padding-right: 0 !important;
  padding-left: 3rem !important;
}

body[dir='rtl'] .card .content ul {
  padding-right: 30px !important;
  padding-left: 0 !important;
}

body[dir='rtl'] .me-2 {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

.iti {
  width: 100%;
}

.car-group-section {
  position: relative;
  display: block;
  overflow: hidden;
}

.overlay-section {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.overlay-section.heading h2 {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 0;
}

.overlay-section .features {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
  gap: 15px;
}

.overlay-section .features .card {
  padding: 15px;
  width: 150px;
  align-items: center;
  border: 1px solid #fff;
  background-color: #a0a0a03b;
}

.overlay-section .features .card h2 {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1;
}

.overlay-section.heading h2::before {
  content: none;
}

.overlay-section .btn {
  background-color: var(--white-color);
  color: var(--black-color);
  font-weight: 500;
  border: 1px solid var(--white-color);
  margin-top: 15px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
}

.overlay-section .btn:hover {
  background-color: var(--red-color);
  font-weight: 500;
  border: 1px solid var(--red-color);
}

.car-group-section img {
  transition: transform 0.3s ease-in-out;
}

.car-group-section:hover img {
  transform: scale(1.1);
}

.car-group-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(264deg,
      rgb(0 0 0 / 6%) 53%,
      rgb(0 0 0 / 51%) 100%);
  z-index: 9;
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  color: rgb(79, 206, 93);
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 30px;
  font-weight: 500;
  overflow: hidden;
  z-index: 999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.whatsapp-btn span {
  opacity: 0;
  max-width: 0;
  transition: opacity 0.3s ease-in-out, max-width 0.3s ease-in-out;
  white-space: nowrap;
}

.whatsapp-btn:hover span {
  opacity: 1;
  max-width: 200px;
}

#promotion-banner {
  padding-top: 80px;
}

.finder {
  background-color: #000;
  padding-top: 5rem;
}

.finder .main-finder {
  padding-block: 5rem;
  text-align: center;
  background-color: #fff;
  padding-inline: 15px;
}

.finder .main-finder .view-header {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 50px;
}

.finder .main-finder .view-header h1 {
  margin-bottom: 15px;
  white-space: nowrap;
}

.finder .tab-panel {
  display: none;
}

.finder .tab-panel.active {
  display: flex;
  gap: 15px;
}

.finder .tab-panel .taxonomy-term {
  width: 30%;
  border: 1px #eee solid;
}

.finder .tab-panel .map-section {
  width: 70%;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.finder .tab-panel .map-section img {
  height: 100%;
  object-fit: cover;
}

.finder .tab-panel .map-section figure {
  flex: 1;
  border: 1px solid #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
}

.finder .tab-panel .map-section iframe {
  flex: 1;
  border-radius: 15px;
}

.finder .tabs.container {
  display: flex;
  /* align-items: start; */
  gap: 25px;
}

.finder .tab-buttons {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.finder .tab-buttons button {
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  border: 3px solid #dadada;
  background: transparent;
}

.finder .tab-buttons button:focus {
  outline: none;
}

.finder .tab-buttons button .taxonomy-term {
  padding: 0;
}

.finder .tab-buttons button .taxonomy-term:hover {
  background: transparent;
}

.finder .tab-buttons button .field.field--name-taxonomy-term-title {
  margin-bottom: 0;
}

.finder .tab-buttons button.active {
  background-color: #f0f0f0;
}

.finder .right-section {
  width: 100%;
}

.finder .address {
  padding: 15px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid #f0f0f0;
  width: 33.33%;
}

.finder .address h2 {
  font-size: 18px;
  margin-bottom: 25px;
  padding: 8px 0;
}

.finder .tab-content .tab-panel .tab-content .tab-panel img {
  height: 300px;
  object-fit: cover;
}

.finder .mySwiper {
  margin-bottom: 25px;
}

.finder .mySwiper .swiper-slide .card {
  padding: 15px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: #222222;
  cursor: pointer;
  text-align: center;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.finder .mySwiper .swiper-slide .card:hover,
.finder .mySwiper .swiper-slide .card.active {
  background-color: #f0f0f0;
}

.finder .mySwiper .swiper-slide .card svg {
  min-width: 50px;
  height: 50px;
  padding: 11px;
  border-radius: 15px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.finder .mySwiper .swiper-button-prev,
.finder .mySwiper .swiper-button-next {
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #ccc;
}

.finder .mySwiper .swiper-button-prev {
  left: 5px !important;
}

.finder .mySwiper .swiper-button-next {
  right: 5px !important;
}

.finder .mySwiper .swiper-button-prev:after,
.finder .mySwiper .swiper-button-next:after {
  font-size: 10px;
  color: #000;
  font-weight: bold;
}

.finder .mobile-view {
  display: none;
}

@media screen and (max-width: 991px) {
  .finder .tab-panel .map-section {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .finder {
    padding-top: 0;
  }

  .finder .main-finder {
    padding-block: 1.5rem;
  }

  .finder .main-finder .view-header h1 {
    font-size: 28px;
    white-space: normal;
  }

  .finder .main-finder .view-header {
    margin-bottom: 25px;
  }

  .adventure .heading h2 {
    text-align: center;
  }

  .adventure {
    padding-top: 1.5rem !important;
  }

  .finder .desktop-view {
    display: none !important;
  }

  .finder .mobile-view {
    display: block !important;
  }

  .finder .tab-panel.active {
    flex-direction: column;
  }

  .finder .tab-panel .map-section,
  .finder .tab-panel .address {
    width: 100%;
  }

  .finder .mySwiper .swiper-button-prev,
  .finder .mySwiper .swiper-button-next {
    top: 40px;
  }

  .finder .tab-panel .address {
    padding-top: 66px;
  }

  .finder .tab-panel .address h2 {
    font-size: 17px;
    margin-bottom: 25px;
    text-align: start;
  }

  .whatsapp-btn {
    padding: 5px;
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-btn svg {
    width: 1.8em;
    height: 1.8em;
  }

  .whatsapp-btn span {
    display: none;
  }
}

.finder .mail,
.finder .call,
.finder .timing,
.finder .location {
  display: flex;
  align-items: start;
  margin-bottom: 15px;
  color: var(--link-color);
  font-weight: 300 !important;
}

.finder .mail svg,
.finder .call svg,
.finder .timing svg,
.finder .location svg {
  min-width: 18px;
  margin-right: 5px;
}

.thank-you-msg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: whitesmoke;
}

.thank-you-msg p {
  text-align: center;
}

.thank-you-msg img {
  width: 100px !important;
  height: 100px !important;
  object-fit: contain;
  margin-bottom: 15px !important;
}

/* Car page image hover effects */
section:not(.bannerText):not(.hero) picture {
  overflow: hidden;
  display: block;
  border-radius: inherit;
}

section:not(.bannerText):not(.hero) picture img {
  transition: transform 0.5s ease-in-out, scale 0.5s ease-in-out;
}

section:not(.bannerText):not(.hero) picture:hover img {
  transform: scale(1.05);
}

.grey-section picture img,
.bg-grey picture img,
section:not(.hero):not(.bannerText) picture img {
  cursor: pointer;
}

/* Two columns section hover effect */
.two-columns picture {
  overflow: hidden;
  display: block;
}

.two-columns picture img {
  transition: transform 0.5s ease-in-out;
}

.two-columns picture:hover img {
  transform: scale(1.05);
}

/* Smaller buttons with less curve */
.btn-sm {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
}

.btn-outline-sm {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
}