/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Classes Styles _____________ ====================================== */
.leftContainer {
  margin-left: auto;
  padding: 0 15px;
  padding-right: 0;
}
@media (max-width: 576px) {
  .leftContainer {
    width: 100%;
    padding-right: 15px;
    margin-left: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .leftContainer {
    width: calc(540px + (100vw - 540px) / 2);
    padding-right: 15px;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .leftContainer {
    width: calc(720px + (100vw - 720px) / 2);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .leftContainer {
    width: calc(960px + (100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .leftContainer {
    width: calc(1140px + (100vw - 1140px) / 2);
  }
}

.rightContainer {
  margin-right: auto;
  padding: 0 15px;
  padding-left: 0;
}
@media (max-width: 576px) {
  .rightContainer {
    width: 100%;
    padding-left: 15px;
    margin-right: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .rightContainer {
    width: calc(540px + (100vw - 540px) / 2);
    padding-left: 15px;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rightContainer {
    width: calc(720px + (100vw - 720px) / 2);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .rightContainer {
    width: calc(960px + (100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .rightContainer {
    width: calc(1140px + (100vw - 1140px) / 2);
  }
}

.mainColor {
  color: #FF673D !important;
}

.secColor {
  color: #FF673D !important;
}

.whtColor {
  color: #fff !important;
}

.blkColor {
  color: #000 !important;
}

.mainBgColor {
  background-color: #FF673D !important;
}

.secBgColor {
  background-color: #FF673D !important;
}

.whtBgColor {
  background-color: #fff !important;
}

.blkBgColor {
  background-color: #000 !important;
}

.font_light {
  font-weight: 300;
}

.font_regular {
  font-weight: 400;
}

.font_medium {
  font-weight: 600;
}

.font_bold {
  font-weight: 800;
}

.font_bolder {
  font-weight: 900;
}

.hugeTitle {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.mainTitle {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .mainTitle {
    margin-bottom: 0.75rem;
  }
}

.smTitle {
  font-size: 1.25rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1.25rem;
}

.subTitle {
  font-size: 0.8rem;
  font-weight: 400;
  color: black;
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.thirdTitle {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

p,
.p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1rem;
}

.mainDesc {
  color: white;
  opacity: 70%;
  font-size: 0.85rem;
}

a,
.a,
.link {
  font-size: 0.95rem;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zoomIn {
  overflow: hidden;
  margin: 0;
  height: 100%;
  width: 100%;
}
.zoomIn img {
  transition: all 0.5s ease-in-out;
}
.zoomIn:hover img {
  transform: scale(1.075);
}

.zoomOut {
  overflow: hidden;
  margin: 0;
}
.zoomOut img {
  transition: all 0.5s ease-in-out;
}
.zoomOut:hover img {
  transform: scale(0.925);
}

.position_bottom {
  object-position: bottom;
}

/* ====================================== _____________ Classes Styles _____________ ====================================== */
/* ====================================== _____________ Reset Styles _____________ ====================================== */
* {
  outline: 0 !important;
  box-shadow: none !important;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}
@media (max-width: 576px) {
  html {
    font-size: 85%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 88%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}

body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Roboto";
  overflow-x: hidden;
}
body.ar {
  font-family: "Cairo";
  direction: rtl;
  text-align: right;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown, .dropleft, .dropright, .dropup {
  position: inherit;
}

header .dropdown-menu {
  box-shadow: 0 0px 20px 10px rgba(0, 0, 0, 0.05) !important;
  z-index: 1000;
  width: 100%;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 0.8rem;
  color: black;
  text-align: center;
  border: none;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  top: 100%;
  padding: 1.25rem 0;
}
@media (max-width: 991px) {
  header .dropdown-menu {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08) !important;
    text-align: start;
    margin-bottom: 7px;
  }
  header .dropdown-menu:last-child {
    margin-bottom: 0;
  }
}
header .dropdown-menu_img {
  width: 80%;
  margin: 0 auto 1rem;
}
header .dropdown-menu_imgText {
  margin: 0 auto 0.35rem;
  width: 50%;
  object-fit: scale-down;
}
header .dropdown-menu_price {
  font-weight: bold;
  font-size: 0.8rem;
  color: #8A8A8A;
}

header .dropdown-item {
  font-weight: bold;
  font-size: 0.8rem;
  color: black;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  width: auto;
}
@media (max-width: 991px) {
  header .dropdown-item {
    margin-bottom: 7px;
  }
}
header .dropdown-item::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 25px;
  background-color: black;
  height: 1.5px;
  transform: translateX(-50%);
  left: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  header .dropdown-item::before {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
header .dropdown-item:hover::before {
  opacity: 1;
}
header .dropdown-item.active {
  font-weight: bold;
  font-size: 0.8rem;
  color: black;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  header .dropdown-item.active {
    margin-bottom: 7px;
  }
}
header .dropdown-item.active::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 25px;
  background-color: black;
  height: 1.5px;
  transform: translateX(-50%);
  left: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  header .dropdown-item.active::before {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
header .dropdown-item.active:hover::before {
  opacity: 1;
}
header .dropdown-item.active::before {
  opacity: 1;
}
@media (max-width: 991px) {
  header .dropdown-item {
    display: block;
    width: max-content;
    margin-bottom: 10px;
  }
  header .dropdown-item:last-child {
    margin-bottom: 0;
  }
}

header .dropdown-item:focus, header .dropdown-item:hover {
  color: black;
  text-decoration: none;
  background-color: transparent;
}

header .dropdown-item.active, header .dropdown-item:active {
  color: black;
  text-decoration: none;
  background-color: transparent;
}

/* ====================================== _____________ Reset Styles _____________ ====================================== */
/* ====================================== _____________ Fonts Styles _____________ ====================================== */
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-BoldItalic.eot");
  src: url("fonts/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-BoldItalic.woff2") format("woff2"), url("fonts/Roboto-BoldItalic.woff") format("woff"), url("fonts/Roboto-BoldItalic.ttf") format("truetype"), url("fonts/Roboto-BoldItalic.svg#Roboto-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-BlackItalic.eot");
  src: url("fonts/Roboto-BlackItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-BlackItalic.woff2") format("woff2"), url("fonts/Roboto-BlackItalic.woff") format("woff"), url("fonts/Roboto-BlackItalic.ttf") format("truetype"), url("fonts/Roboto-BlackItalic.svg#Roboto-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Italic.eot");
  src: url("fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Italic.woff2") format("woff2"), url("fonts/Roboto-Italic.woff") format("woff"), url("fonts/Roboto-Italic.ttf") format("truetype"), url("fonts/Roboto-Italic.svg#Roboto-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Black.eot");
  src: url("fonts/Roboto-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Black.woff2") format("woff2"), url("fonts/Roboto-Black.woff") format("woff"), url("fonts/Roboto-Black.ttf") format("truetype"), url("fonts/Roboto-Black.svg#Roboto-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Light.eot");
  src: url("fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Light.woff2") format("woff2"), url("fonts/Roboto-Light.woff") format("woff"), url("fonts/Roboto-Light.ttf") format("truetype"), url("fonts/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.eot");
  src: url("fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Bold.woff2") format("woff2"), url("fonts/Roboto-Bold.woff") format("woff"), url("fonts/Roboto-Bold.ttf") format("truetype"), url("fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-MediumItalic.eot");
  src: url("fonts/Roboto-MediumItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-MediumItalic.woff2") format("woff2"), url("fonts/Roboto-MediumItalic.woff") format("woff"), url("fonts/Roboto-MediumItalic.ttf") format("truetype"), url("fonts/Roboto-MediumItalic.svg#Roboto-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.eot");
  src: url("fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Regular.woff2") format("woff2"), url("fonts/Roboto-Regular.woff") format("woff"), url("fonts/Roboto-Regular.ttf") format("truetype"), url("fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-LightItalic.eot");
  src: url("fonts/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-LightItalic.woff2") format("woff2"), url("fonts/Roboto-LightItalic.woff") format("woff"), url("fonts/Roboto-LightItalic.ttf") format("truetype"), url("fonts/Roboto-LightItalic.svg#Roboto-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Thin.eot");
  src: url("fonts/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Thin.woff2") format("woff2"), url("fonts/Roboto-Thin.woff") format("woff"), url("fonts/Roboto-Thin.ttf") format("truetype"), url("fonts/Roboto-Thin.svg#Roboto-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.eot");
  src: url("fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Medium.woff2") format("woff2"), url("fonts/Roboto-Medium.woff") format("woff"), url("fonts/Roboto-Medium.ttf") format("truetype"), url("fonts/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-ThinItalic.eot");
  src: url("fonts/Roboto-ThinItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-ThinItalic.woff2") format("woff2"), url("fonts/Roboto-ThinItalic.woff") format("woff"), url("fonts/Roboto-ThinItalic.ttf") format("truetype"), url("fonts/Roboto-ThinItalic.svg#Roboto-ThinItalic") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-Regular.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ====================================== _____________ Fonts Styles _____________ ====================================== */
/* ====================================== _____________ Global Styles _____________ ====================================== */
.slider-section-cars .swiper-button-prev,
.slider-section-cars2 .swiper-button-prev,
.slider-section-cars3 .swiper-button-prev {
  left: 40px;
}
body.ar .slider-section-cars .swiper-button-prev,
body.ar .slider-section-cars2 .swiper-button-prev,
body.ar .slider-section-cars3 .swiper-button-prev {
  left: auto !important;
  right: 40px !important;
}

.slider-section-cars h2 .slider-section-cars2 h2,
.slider-section-cars3 h2 {
  padding-left: 100px;
}
body.ar .slider-section-cars h2 .slider-section-cars2 h2,
body.ar .slider-section-cars3 h2 {
  padding-left: 0 !important;
  padding-right: 100px !important;
}

.product-showcase .spec-text {
  text-align: left !important;
}
body.ar .product-showcase .spec-text {
  text-align: right !important;
}

/* ====================================== _____________ Global Styles _____________ ====================================== */
/* ====================================== _____________ Grids Styles _____________ ====================================== */
/* ====================================== _____________ Grids Styles _____________ ====================================== */
/* ====================================== _____________ Header Styles _____________ ====================================== */
header .topNav {
  background-color: black;
  padding: 0.5rem 0;
}
header .topNav.overviewHeader {
  position: fixed;
  width: 100%;
  top: 0;
}
header .topNav_switch {
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0;
}
header .topNav_search {
  position: relative;
  height: 100%;
  width: 60%;
}
header .topNav_searchText {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}
header .topNav_hotline {
  padding-top: 4px;
}
header .topNav_hotline_icon {
  width: 15px;
}
body.ar header .topNav_hotline_icon {
  transform: scaleX(-1);
}
header .topNav_hotline_title {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}
header .topNav_hotline_title_link {
  color: #FF673D;
  font-size: 0.8rem;
  font-weight: bold;
}

.navbar {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.07) !important;
  padding: 0.75rem 1rem;
}
.navbar .navbar-brand {
  margin-bottom: 0;
  margin-right: 0;
}
.navbar .navbar-brand img {
  width: 150px;
}
@media (max-width: 991px) {
  .navbar .navbar-brand img.kasrawy {
    width: 125px;
  }
}
.navbar .nav-link {
  font-weight: bold;
  font-size: 0.8rem;
  color: black;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .navbar .nav-link {
    margin-bottom: 7px;
  }
}
.navbar .nav-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 25px;
  background-color: black;
  height: 1.5px;
  transform: translateX(-50%);
  left: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .navbar .nav-link::before {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.navbar .nav-link:hover::before {
  opacity: 1;
}
.navbar .nav-link.active {
  font-weight: bold;
  font-size: 0.8rem;
  color: black;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .navbar .nav-link.active {
    margin-bottom: 7px;
  }
}
.navbar .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 25px;
  background-color: black;
  height: 1.5px;
  transform: translateX(-50%);
  left: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .navbar .nav-link.active::before {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.navbar .nav-link.active:hover::before {
  opacity: 1;
}
.navbar .nav-link.active::before {
  opacity: 1;
}
.navbar .menu {
  cursor: pointer;
  position: relative;
  width: 32px;
  height: 25px;
}
.navbar .menu-global {
  backface-visibility: hidden;
  position: absolute;
  left: 0;
  border-top: 4px solid black;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.navbar .menu-top {
  top: 0;
}
.navbar .menu-middle {
  top: 10px;
}
.navbar .menu-bottom {
  top: 20px;
}
.navbar .menu-top-click {
  backface-visibility: hidden;
  top: 7px;
  transform: rotate(50deg);
  transition: all 0.3s ease-in-out;
}
.navbar .menu-middle-click {
  opacity: 0;
}
.navbar .menu-bottom-click {
  backface-visibility: hidden;
  top: 7px;
  transform: rotate(-410deg);
  transition: all 0.3s ease-in-out;
}

/* ====================================== _____________ Header Styles _____________ ====================================== */
/* ====================================== _____________ Footer Styles _____________ ====================================== */
.footer {
  background-color: black;
  background-image: url("../img/global/pattern.png");
  background-size: cover;
  padding: 2.5rem 0 1rem;
  color: white;
}
.footer_list_item_link {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease-in-out;
}
.footer_list_item_link:hover {
  color: #FF673D;
}
.footer_list_title {
  font-weight: bold;
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.footer_kasrawyLogo {
  width: 160px;
  margin-bottom: 1.5rem;
}
.footer_social_list {
  display: flex;
  gap: 1.5rem;
}
.footer_social_list_item_link {
  font-size: 1.85rem;
  transition: all 0.3s ease-in-out;
}
.footer_social_list_item_link:hover {
  color: #FF673D;
}
.footer_newsletter_text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.footer_newsletter_form {
  display: flex;
  flex-direction: column;
}
.footer_newsletter_form input {
  border-radius: 0;
  background: transparent;
  border: 2px solid white;
  margin-inline-end: 15px;
  font-size: 0.72rem;
  padding: 1.2rem 0.75rem;
}
body.ar .footer_newsletter_form input {
  margin-inline-end: 0;
  margin-inline-start: 15px;
  text-align: end;
}
.footer_newsletter_form input::placeholder {
  color: white;
  opacity: 40%;
}
.footer_newsletter_form input:focus {
  background-color: transparent;
  border-color: white;
}
.footer_newsletter_form button {
  background-color: white;
  color: black;
  border: none;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 9px 16px;
  width:120px;
}
.footer_newsletter_form button:hover {
  background-color: #FF673D;
}
.footer_policy {
  border-bottom: 1px solid #707070;
  text-align: end;
  margin-top: 2.5rem;
  position: relative;
}
.footer_policy_list {
  right: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: end;
  gap: 0.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.footer_policy_list_item {
  background: rgb(0, 0, 0);
  padding: 0 7px;
}
.footer_policy_list_item:last-child {
  padding-inline-end: 0;
}
.footer_policy_list_item_link {
  margin-bottom: 0;
  font-size: 0.8rem;
}
.footer_policy_list_item_link:hover {
  text-decoration: underline;
}
body.ar .footer_policy_list {
  right: auto;
  left: 0;
}
.footer_copyright {
  padding-top: 1rem;
}
.footer_copyright_text {
  color: white;
  font-size: 0.8rem;
  margin-bottom: 0;
}
.footer_copyright img {
  width: 55px;
  margin-inline-start: 6px;
}

/* ====================================== _____________ Footer Styles _____________ ====================================== */
/* ====================================== _____________ Sidebar Styles _____________ ====================================== */
/* ====================================== _____________ Sidebar Styles _____________ ====================================== */
/* ====================================== _____________ Forms Styles _____________ ====================================== */
.mainForm {
  background-color: rgba(229, 229, 229, 0.6);
  position: relative;
  padding: 1.75rem 2.75rem;
  border: 1px solid rgba(76, 76, 76, 0.1);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .mainForm {
    padding: 1.75rem 1.75rem;
  }
}
.mainForm_title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
}
.mainForm_desc {
  font-size: 0.85rem;
  opacity: 70%;
  color: black;
  text-align: center;
  margin-bottom: 2.5rem;
}
.mainForm_img {
  position: absolute;
  bottom: 0;
  right: 2.75rem;
  z-index: -1;
  width: 500px;
}
@media (max-width: 991px) {
  .mainForm_img {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .mainForm_img {
    width: 300px;
    right: 1.75rem;
  }
}
@media (max-width: 576px) {
  .mainForm_img {
    width: 200px;
  }
}
body.ar .mainForm_img {
  right: auto;
  left: 2.75rem;
}
@media (max-width: 767px) {
  body.ar .mainForm_img {
    left: 1.75rem;
  }
}
.mainForm .mainButton {
  padding: 0.65rem 3.5rem;
}
.mainForm .mainButton:hover {
  border-color: #FF673D;
}
.mainForm .form-group {
  position: relative;
}
.mainForm .form-group input,
.mainForm .form-group select,
.mainForm .form-group textarea {
  background-color: transparent;
  border: 2px solid #707070;
  border-radius: 5px;
  position: relative;
  height: 45px;
  transition: all 0.3s ease-in-out;
}
.mainForm .form-group textarea {
  resize: none;
  min-height: 80px;
}
.mainForm .form-group label {
  position: absolute;
  font-size: 0.85rem;
  top: -17px;
  left: 17px;
  background-color: rgb(239, 239, 239);
  padding: 5px;
  color: #707070;
  z-index: 1;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.mainForm .form-group label.form-check-label {
  transition: none;
  position: inherit;
  background-color: transparent;
  padding: 0;
  top: auto;
  left: auto;
  display: block;
  margin-top: 5px;
}
body.ar .mainForm .form-group label {
  left: auto;
  right: 17px;
}
.mainForm .form-group label.anotherLabel {
  left: 37px;
}
body.ar .mainForm .form-group label.anotherLabel {
  left: auto;
  right: 37px;
}
@media (max-width: 767px) {
  .mainForm .form-group label.anotherLabel {
    left: 17px;
  }
  body.ar .mainForm .form-group label.anotherLabel {
    left: auto;
    right: 17px;
  }
}
body.ar .mainForm .form-group input {
  text-align: end;
}
body.ar .mainForm .form-group input[type=text] {
  text-align: start;
}
.mainForm_secondTitle {
  color: rgba(76, 76, 76, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}

.validte {
  color: red;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.form-group.validate label {
  color: red;
}
.form-group.validate select,
.form-group.validate input {
  border: 2px solid red;
}

.form-check {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.form-check:first-child {
  margin-inline-end: 1rem;
}
.form-check_container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-check_container input {
  height: auto !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* ====================================== _____________ Forms Styles _____________ ====================================== */
/* ====================================== _____________ Buttons Styles _____________ ====================================== */
.mainButton {
  border: 1px solid black;
  color: #000;
  font-size: 0.85rem;
  display: inline-block;
  background-image: -webkit-linear-gradient(75deg, #FF673D 50%, transparent 50%);
  background-image: linear-gradient(75deg, #FF673D 50%, transparent 50%);
  background-size: 280%;
  background-repeat: no-repeat;
  background-position: 100%;
  transition: all 0.5s ease-in-out;
  margin-bottom: 0;
}

.mainButton:hover {
  background-position: 0;
  color: white;
}

.specifications_button {
  padding: 0.7rem 1.25rem;
}
.specifications_button:hover {
  border: 1px solid #FF673D;
}

/* ====================================== _____________ Buttons Styles _____________ ====================================== */
/* ====================================== _____________ Slider Styles _____________ ====================================== */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 100%;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  color: white;
  border-radius: 50%;
  border: 2px solid black;
  width: 40px;
  height: 40px;
  background-image: url(../img/global/arrow.png) !important;
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.swiper-button-next::before, .swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev::before,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev::before,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next::before,
.swiper-container-rtl .swiper-button-next:after {
  content: "";
}
.swiper-button-next:hover,
.swiper-container-rtl .swiper-button-prev:hover,
.swiper-button-prev:hover,
.swiper-container-rtl .swiper-button-next:hover {
  background-color: #FF673D;
  border-color: #FF673D;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  top: 95%;
  right: 10%;
}
@media (max-width: 991px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 1%;
  }
}

body.ar .swiper-button-next {
  transform: rotate(180deg) !important;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 73%;
  right: auto;
  top: 95%;
}
@media (max-width: 1200px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 69%;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
  line-height: 35px;
}

.swiper-button-prev {
  transform: rotate(180deg);
}
body.ar .swiper-button-prev {
  transform: none;
}
@media (max-width: 991px) {
  .swiper-button-prev {
    left: 78%;
  }
}
@media (max-width: 576px) {
  .swiper-button-prev {
    left: 60%;
  }
}

/* ====================================== _____________ Slider Styles _____________ ====================================== */
/* ====================================== _____________ Popup Styles _____________ ====================================== */
.modal {
  padding-inline-end: 0 !important;
}
.modal .modal-dialog {
  max-width: 700px;
}
.modal .modal-dialog .modal-content {
  background-color: #EFEFEF;
  border-radius: 10px;
  border: none;
}
.modal .modal-dialog .modal-content .modal-header {
  border-radius: 0;
  border: none;
}
.modal .modal-dialog .modal-content .modal-header button {
  opacity: 1;
  padding: 1rem 1.5rem;
}
.modal .modal-dialog .modal-content .modal-header button span {
  font-size: 2rem;
  text-shadow: none;
}
.modal .modal-dialog .modal-content .modal-body {
  text-align: center;
  padding-bottom: 3rem;
}
.modal .modal-dialog .modal-content .modal-body img {
  padding-bottom: 2rem;
  width: 35%;
}
.modal .modal-dialog .modal-content .modal-body h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
}
.modal .modal-dialog .modal-content .modal-body p {
  font-size: 0.85rem;
  color: black;
  opacity: 70%;
}

/* ====================================== _____________ Popup Styles _____________ ====================================== */
/* ====================================== _____________ search Styles _____________ ====================================== */
.search-box {
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 40px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  right: 0;
  width: 0;
}
body.ar .search-box {
  right: auto;
  left: 0;
}
.search-box .search-txt {
  border: none;
  background: none;
  outline: none;
  color: #fff;
  transition: 0.5s;
  font-size: 0.8rem;
  font-weight: bold;
  width: 0px;
  position: absolute;
}
.search-box .search-txt::placeholder {
  color: white;
  font-weight: bold;
}
.search-box .search-btn {
  color: white;
  position: absolute;
  right: 10px;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.search-box .search-btn img {
  width: 15px;
}
body.ar .search-box .search-btn {
  right: auto;
  left: 10px;
}
.search-box:hover, .search-box:focus {
  background-color: #FF673D;
  height: 100%;
  width: 100%;
  margin-inline-end: 15px;
}
.search-box:hover .search-txt, .search-box:focus .search-txt {
  width: 97%;
  padding: 0 15px;
}

/* ====================================== _____________ search Styles _____________ ====================================== */
/* ====================================== _____________ internalbanner Styles _____________ ====================================== */
.internalBanner {
  display: flex;
  align-items: center;
  position: relative;
}
.internalBanner:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .internalBanner {
    height: 25vh;
  }
}
.internalBanner_img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 767px) {
  .internalBanner_img {
    object-position: right;
  }
}
.internalBanner_text {
  position: absolute;
  left: 0;
  width: 100%;
}
.internalBanner_text_title {
  color: white;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 2rem;
}
.internalBanner_highlight {
  color: white;
  text-transform: capitalize;
  font-weight: bold;
  opacity: 20%;
  position: absolute;
  right: 0;
  margin-bottom: 0;
  bottom: -45px;
  font-size: 9rem;
}
body.ar .internalBanner_highlight {
  right: auto;
  left: 0;
}
@media (max-width: 1200px) {
  .internalBanner_highlight {
    font-size: 7rem;
    bottom: -45px;
  }
}
@media (max-width: 991px) {
  .internalBanner_highlight {
    font-size: 5rem;
    bottom: -25px;
  }
}
@media (max-width: 767px) {
  .internalBanner_highlight {
    font-size: 4rem;
    bottom: -15px;
  }
}
@media (max-width: 576px) {
  .internalBanner_highlight {
    display: none;
  }
}

/* ====================================== _____________ internalbanner Styles _____________ ====================================== */
/* ====================================== _____________ table Styles _____________ ====================================== */
.table {
  background-color: #E5E5E5;
}
.table thead {
  color: #fff;
  border: none;
  background-color: #515151;
}
.table th, .table td {
  padding: 1rem 1.5rem;
}

.specifications .table {
  margin-bottom: 2rem;
}
.specifications .table thead th {
  line-height: 38px;
}
.specifications .table thead form select {
  color: #515151;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .specifications .table thead form select {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .specifications .table th, .specifications .table td {
    width: 50%;
  }
}
.specifications .table td {
  display: none;
}
.specifications .table td:first-of-type {
  display: block;
}

.maintenanceTable .table {
  margin-bottom: 0;
}
.maintenanceTable .table tr {
  position: relative;
}
.maintenanceTable .table tr::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 1px;
  width: 90%;
  background-color: rgba(81, 81, 81, 0.4);
}
.maintenanceTable .table img {
  width: 25px;
}

/* ====================================== _____________ table Styles _____________ ====================================== */
/* ====================================== _____________ floatingList Styles _____________ ====================================== */
.floatingList {
  position: fixed;
  bottom: 10%;
  right: 2%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  direction: rtl;
}
body.ar .floatingList {
  left: 2%;
  right: auto;
  direction: ltr;
}
.floatingList_item {
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
  max-width: max-content;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) !important;
}
.floatingList_item_img {
  width: 50px;
  height: 50px;
}
@media (max-width: 576px) {
  .floatingList_item_img {
    width: 40px;
    height: 40px;
  }
}
.floatingList_item_text {
  margin: 0 10px;
  font-size: 0.8rem;
  color: black;
  display: none;
  opacity: 0;
}
.floatingList_item:hover {
  background: #fff;
}
.floatingList_item:hover .floatingList_item_text {
  opacity: 1;
}

/* ====================================== _____________ floatingList Styles _____________ ====================================== */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
/* _____________ start banner Styles _____________ */
.banner_brandName {
  position: absolute;
  width: 250px !important;
  height: auto !important;
  right: 40px;
  bottom: 40px;
}
.banner_brandName.x70 {
  width: 150px !important;
}
@media (max-width: 767px) {
  .banner_brandName {
    width: 150px !important;
    right: 20px;
    bottom: 30px;
  }
  .banner_brandName.x70 {
    width: 100px !important;
  }
}
@media (max-width: 576px) {
  .banner_brandName {
    width: 125px !important;
  }
  .banner_brandName.x70 {
    width: 75px !important;
  }
}
.banner .swiper-pagination {
  left: 40px;
  bottom: 35px;
  text-align: start;
}
body.ar .banner .swiper-pagination {
  text-align: end;
}
@media (max-width: 767px) {
  .banner .swiper-pagination {
    left: 20px;
    bottom: 25px;
  }
}
@media (max-width: 576px) {
  .banner .swiper-pagination {
    bottom: 20px;
  }
}
.banner .swiper-slide-active .banner_brandName {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.banner .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 100%;
  background: white;
  opacity: 0.7;
  position: relative;
}
@media (max-width: 767px) {
  .banner .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
.banner .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}
.banner .swiper-pagination-bullet-active {
  background-color: white;
  opacity: 1;
  position: relative;
}
.banner .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  left: -100%;
  top: -100%;
  border: 1px solid white;
  border-radius: 50%;
  width: 165%;
  height: 165%;
  transform: translate(40%, 40%);
}
@media (max-width: 767px) {
  .banner .swiper-pagination-bullet-active:before {
    top: -97%;
  }
}
body.ar .banner .swiper-pagination-bullet-active:before {
  transform: translate(40%, 42%);
}
.banner_content {
  display: flex;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
}
.banner_content_desc {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  padding-inline-start: 6rem;
  padding-inline-end: 6rem;
}
@media (max-width: 1300px) {
  .banner_content_desc {
    padding-inline-start: 3rem;
    padding-inline-end: 3rem;
  }
}
@media (max-width: 991px) {
  .banner_content_desc {
    padding-inline-start: 1rem;
    padding-inline-end: 1rem;
  }
}
@media (max-width: 767px) {
  .banner_content_desc {
    margin-top: 2rem;
  }
}
.banner_content_desc_logo {
  width: 65%;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .banner_content_desc_logo {
    margin-bottom: 1rem;
  }
}
.banner_content_desc_title {
  font-size: 2.8rem;
  color: #FF673D;
  font-weight: 900;
  font-style: italic;
}
.banner_content_list {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner_content_list_item {
  transition: all 0.3s ease-in-out;
  padding-inline-start: 6rem;
  padding-inline-end: 6rem;
}
@media (max-width: 1300px) {
  .banner_content_list_item {
    padding-inline-start: 3rem;
    padding-inline-end: 3rem;
  }
}
@media (max-width: 991px) {
  .banner_content_list_item {
    padding-inline-start: 1rem;
    padding-inline-end: 1rem;
  }
}
.banner_content_list_item_link {
  margin-bottom: 0;
  padding-bottom: 1rem;
  padding-top: 1rem;
  display: block;
  border-bottom: 1px solid orange;
  font-size: 1.25rem;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.banner_content_list_item:hover {
  color: white;
  background-color: #FF673D;
}
.banner_content_list_item:hover .banner_content_list_item_link {
  padding-inline-start: 1rem;
}

/* _____________ end banner Styles _____________ */
/* _____________ start box Styles _____________ */
@media (max-width: 991px) {
  .boxes {
    margin-top: 2rem;
  }
}
.boxes_box {
  position: relative;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.boxes_box:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 100%);
  transition: all 0.3s ease-in-out;
}
.boxes_box_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.boxes_box_content {
  position: absolute;
  left: 0;
  top: 70%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
@media (min-width: 768px) and (max-width: 991px) {
  .boxes_box_content {
    top: 60%;
  }
}
.boxes_box_content_title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.boxes_box_content_link {
  text-decoration: underline;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.boxes_box:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6) 100%);
}
.boxes_box:hover .boxes_box_content_link {
  opacity: 1;
}

/* _____________ end box Styles _____________ */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
/* ====================================== _____________ vehicle-models Page Styles _____________ ====================================== */
/* _____________ start models Styles _____________ */
.models {
  padding: 2.75rem 0;
}
.models_model {
  position: relative;
}
.models_model_car {
  position: relative;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  padding: 0.5rem 2rem;
  margin-bottom: 1rem;
}
.models_model_car_new {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 55px;
}
body.ar .models_model_car_new {
  right: auto;
  left: 12px;
}
.models_model_car_titleImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -185%);
  z-index: -1;
  width: 90%;
  object-fit: scale-down;
}
.models_model_car_title {
  font-size: 1.15rem;
  font-weight: bold;
  text-transform: uppercase;
}
.models_model_car_carImg {
  transition: all 0.5s ease-in-out;
}
body.ar .models_model_car_carImg {
  transform: scaleX(-1);
}
.models_model_car:hover {
  border: 2px solid rgba(0, 0, 0, 0.13);
}
.models_model_car:hover .models_model_car_carImg {
  transform: scale(1.05) scaleX(0);
}
.models_model_buttonsParent {
  display: flex;
  justify-content: center;
  gap: 1rem;
  transform: translateY(-30px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.models_model_buttonsParent_link {
  padding: 0.7rem 1.25rem;
  text-align: center;
  text-transform: capitalize;
  font-size: 0.8rem;
  font-weight: bold;
}
.models_model_buttonsParent_link:hover {
  border-color: #FF673D;
}
.models_model:hover .models_model_buttonsParent {
  opacity: 1;
  transform: translateY(0);
}

/* _____________ end models Styles _____________ */
/* ====================================== _____________ vehicle-models Page Styles _____________ ====================================== */
/* ====================================== _____________ vehicle-overview Page Styles _____________ ====================================== */
/* _____________ start stickyNavbar Styles _____________ */
.stickyNavbar {
  background-color: #8A8A8A;
  padding: 0.4rem 0;
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.07) !important;
}
.stickyNavbar_logo {
  width: 150px;
}
@media (max-width: 1200px) {
  .stickyNavbar_logo {
    padding-inline-end: 1.5rem;
    width: 175px;
  }
}
.stickyNavbar_list, .stickyNavbar_buttons {
  gap: 0.25rem;
  display: flex;
  margin-bottom: 0;
  align-items: center;
  height: 100%;
}
.stickyNavbar_list a, .stickyNavbar_buttons a {
  margin-bottom: 0;
}
.stickyNavbar_list {
  justify-content: center;
}
@media (max-width: 767px) {
  .stickyNavbar_list {
    justify-content: start;
  }
}
.stickyNavbar_list_item_link {
  font-weight: bold;
  font-size: 0.8rem;
  color: black;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: white;
}
@media (max-width: 991px) {
  .stickyNavbar_list_item_link {
    margin-bottom: 7px;
  }
}
.stickyNavbar_list_item_link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 25px;
  background-color: black;
  height: 1.5px;
  transform: translateX(-50%);
  left: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .stickyNavbar_list_item_link::before {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.stickyNavbar_list_item_link:hover::before {
  opacity: 1;
}
.stickyNavbar_list_item_link:hover {
  color: white !important;
}
.stickyNavbar_list_item_link:hover::before {
  background-color: white !important;
}
.stickyNavbar_list_item_link.active {
  font-weight: bold;
  font-size: 0.8rem;
  color: black;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: white !important;
}
@media (max-width: 991px) {
  .stickyNavbar_list_item_link.active {
    margin-bottom: 7px;
  }
}
.stickyNavbar_list_item_link.active::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 25px;
  background-color: black;
  height: 1.5px;
  transform: translateX(-50%);
  left: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .stickyNavbar_list_item_link.active::before {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.stickyNavbar_list_item_link.active:hover::before {
  opacity: 1;
}
.stickyNavbar_list_item_link.active::before {
  opacity: 1;
}
.stickyNavbar_list_item_link.active::before {
  background-color: white !important;
}
.stickyNavbar_buttons {
  justify-content: end;
}
@media (max-width: 1200px) {
  .stickyNavbar_buttons {
    justify-content: start;
  }
}
.stickyNavbar_buttons_button_link {
  padding: 0.35rem 0;
  border-color: white !important;
  color: white;
  width: 145px;
  text-align: center;
}
.stickyNavbar_buttons_button_link:hover {
  border-color: #FF673D !important;
}
.stickyNavbar.stickyNavbarscrolled {
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 0.3s ease-in-out;
  background-color: white;
  z-index: 999;
}
.stickyNavbar.stickyNavbarscrolled .stickyNavbar_logo {
  filter: brightness(0%);
}
.stickyNavbar.stickyNavbarscrolled .stickyNavbar_list_item_link {
  color: black !important;
}
.stickyNavbar.stickyNavbarscrolled .stickyNavbar_list_item_link::before {
  background-color: black !important;
}
.stickyNavbar.stickyNavbarscrolled .stickyNavbar_buttons_button_link {
  border-color: black !important;
  color: black !important;
}
.stickyNavbar.stickyNavbarscrolled .stickyNavbar_buttons_button_link:hover {
  border-color: #FF673D !important;
  color: white !important;
}

/* _____________ end stickyNavbar Styles _____________ */
/* _____________ start banner Styles _____________ */
.overviewBanner {
  display: flex;
  flex-direction: column;
  position: relative;
}
.overviewBanner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.overviewBanner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overviewBanner_content {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.overviewBanner_content_desc_logo {
  width: 400px;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media (max-width: 1300px) {
  .overviewBanner_content_desc_logo {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 1200px) {
  .overviewBanner_content_desc_logo {
    padding-top: 3rem;
    padding-bottom: 4rem;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .overviewBanner_content_desc_logo {
    padding-top: 2rem;
    padding-bottom: 3rem;
    width: 250px;
  }
}
.overviewBanner_content_desc_list {
  margin-bottom: 0;
}
.overviewBanner_content_desc_list_item {
  display: flex;
  background-color: rgba(255, 255, 255, 0.06);
  padding: 1rem 3rem 1rem 1rem;
  border-radius: 10px;
  width: 65%;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .overviewBanner_content_desc_list_item {
    width: 85%;
  }
}
.overviewBanner_content_desc_list_item:last-child {
  margin-bottom: 0;
}
body.ar .overviewBanner_content_desc_list_item {
  padding: 1rem 1rem 1rem 3rem;
}
.overviewBanner_content_desc_list_item_logo {
  width: 45px;
  object-fit: scale-down;
}
@media (max-width: 991px) {
  .overviewBanner_content_desc_list_item_logo {
    width: 35px;
  }
}
.overviewBanner_content_desc_list_item_content {
  margin-inline-start: 1rem;
  padding-inline-start: 1.25rem;
  position: relative;
}
@media (max-width: 991px) {
  .overviewBanner_content_desc_list_item_content {
    margin-inline-start: 0.75rem;
    padding-inline-start: 1rem;
  }
}
.overviewBanner_content_desc_list_item_content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}
body.ar .overviewBanner_content_desc_list_item_content::before {
  left: auto;
  right: 0;
}
.overviewBanner_content_desc_list_item_content_title {
  color: white;
  opacity: 80%;
  font-weight: bold;
  font-size: 0.95rem;
  text-transform: capitalize;
  margin-bottom: 0;
}
.overviewBanner_content_desc_list_item_content_desc {
  color: white;
  opacity: 80%;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 0;
  font-style: italic;
}
.overviewBanner_content_desc_list_item_content_desc_sign {
  font-style: normal;
  font-size: 0.95rem;
}
.overviewBanner .stickyNavbar_buttons {
  gap: 2rem;
}
.overviewBanner .stickyNavbar_buttons_button_link {
  padding: 0.65rem 3rem;
  width: auto;
}
@media (max-width: 576px) {
  .overviewBanner .stickyNavbar_buttons_button_link {
    padding: 0.65rem 2rem;
  }
}
.overviewBanner .stickyNavbar_buttons_button_link.whiteButton {
  background-color: white;
  color: black;
}
.overviewBanner .stickyNavbar_buttons_button_link.whiteButton:hover {
  color: white;
}
.overviewBanner.x70Banner .colButtons {
  position: absolute;
  right: 0;
  bottom: 80px;
}

/* _____________ end banner Styles _____________ */
/* _____________ start changeColor Styles _____________ */
.changeColor {
  padding: 2.75rem 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.changeColor .overlay {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  transition: all 0.3s ease-in-out;
  background: rgb(0, 0, 0);
}
.changeColor .overlay:first-child {
  display: block;
}
body.ar .changeColor .overlay {
  left: auto;
  right: 0;
}
.changeColor .overlay.blackBg {
  background: linear-gradient(225deg, #090C15 50%, #505968 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
body.ar .changeColor .overlay.blackBg {
  background: linear-gradient(135deg, #090C15 50%, #505968 100%);
}
.changeColor .overlay.redBg {
  background: linear-gradient(225deg, #540805 50%, #FF5E76 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
body.ar .changeColor .overlay.redBg {
  background: linear-gradient(135deg, #540805 50%, #FF5E76 100%);
}
.changeColor .overlay.whiteBg {
  background: linear-gradient(225deg, #969A9F 50%, #F2F5F9 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
body.ar .changeColor .overlay.whiteBg {
  background: linear-gradient(135deg, #969A9F 50%, #F2F5F9 100%);
}
.changeColor .overlay.greenBg {
  background: linear-gradient(225deg, #012D2B 50%, #B6D6D5 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
body.ar .changeColor .overlay.greenBg {
  background: linear-gradient(135deg, #012D2B 50%, #B6D6D5 100%);
}
.changeColor .overlay.grayBg {
  background: linear-gradient(225deg, #2D313B 50%, #8992A9 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
body.ar .changeColor .overlay.grayBg {
  background: linear-gradient(135deg, #2D313B 50%, #8992A9 100%);
}
.changeColor .overlay.brownBg {
  background: linear-gradient(225deg, rgb(33, 28, 24) 0%, rgb(73, 64, 55) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
body.ar .changeColor .overlay.brownBg {
  background: linear-gradient(135deg, #2D313B 50%, #8992A9 100%);
}
.changeColor .overlay.blueBg {
  background: linear-gradient(225deg, #2B4A6B 50%, #A6D3F1 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
body.ar .changeColor .overlay.blueBg {
  background: linear-gradient(135deg, #2B4A6B 50%, #A6D3F1 100%);
}
.changeColor .overlay.bluex90plusBg {
  background: linear-gradient(225deg, #111E48 50%, #707EA0 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
body.ar .changeColor .overlay.bluex90plusBg {
  background: linear-gradient(135deg, #2B4A6B 50%, #A6D3F1 100%);
}
.changeColor_content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
body.ar .changeColor_content {
  left: auto;
  right: 0;
}
@media (max-width: 767px) {
  .changeColor_content {
    top: 60%;
  }
}
@media (max-width: 576px) {
  .changeColor_content {
    top: 95%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100%;
  }
  body.ar .changeColor_content {
    left: auto;
    right: -50%;
  }
}
.changeColor_content_list {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .changeColor_content_list {
    display: flex;
    justify-content: center;
  }
}
.changeColor_content_list_item {
  cursor: pointer;
  margin-bottom: 10px;
}
.changeColor_content_list_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .changeColor_content_list_item {
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .changeColor_content_list_item {
    margin: 0 0.5rem 0;
  }
}
.changeColor_content_list_item_img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 4px;
  transition: all 0.3s ease-in-out;
  object-fit: scale-down;
}
.changeColor_content_list_item_img.active {
  border: 2px solid white;
}
@media (max-width: 767px) {
  .changeColor_content_list_item_img {
    width: 40px;
    height: 40px;
  }
}
.changeColor_imgs {
  width: 90%;
  margin-inline-start: auto;
}
@media (max-width: 576px) {
  .changeColor_imgs {
    width: 100%;
  }
}
.changeColor_imgs_img {
  display: none;
  z-index: 1;
  position: relative;
}
.changeColor_imgs_img:first-child {
  display: block;
}
body.ar .changeColor_imgs_img {
  transform: scaleX(-1);
}
.changeColor_imgColor {
  position: absolute;
  top: 45%;
  transform: translate(30%, -100%);
  right: 0;
}
body.ar .changeColor_imgColor {
  right: auto;
  left: 0;
  transform: translate(-30%, -100%);
}
@media (max-width: 576px) {
  .changeColor_imgColor {
    transform: translate(0%, -100%);
  }
  body.ar .changeColor_imgColor {
    transform: translate(0%, -100%);
  }
}
.changeColor_imgColor_name {
  margin-bottom: 0;
  display: none;
  font-size: 9rem;
  font-weight: bold;
  color: white;
  opacity: 6%;
  text-transform: capitalize;
}
.changeColor_imgColor_name:first-child {
  display: block;
}
@media (max-width: 991px) {
  .changeColor_imgColor_name {
    font-size: 5rem;
  }
}
@media (max-width: 576px) {
  .changeColor_imgColor_name {
    font-size: 3rem;
  }
}
.changeColor.x70 {
  padding: 6rem 0;
}
.changeColor.x70 .mainTitle {
  margin-bottom: 7rem;
}
.changeColor.x70 .changeColor_imgs {
  width: 85%;
}
.changeColor.x70 .changeColor_imgs_img {
  width: 85%;
}

/* _____________ end changeColor Styles _____________ */
/* _____________ start interiorExterior Styles _____________ */
.interiorExterior_navigate {
  display: flex;
  margin-bottom: 0;
  position: absolute;
  z-index: 9;
}
.interiorExterior_navigate_item {
  cursor: pointer;
  width: 130px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: white;
  font-size: 1.15rem;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}
.interiorExterior_navigate_item.active {
  background-color: black;
  font-weight: bold;
}
.interiorExterior_img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interiorExterior_img:first-child {
  display: block;
}
.interiorExterior_slider {
  display: none;
  height: 100%;
}
.interiorExterior_slider:first-child {
  display: block;
}
@media (max-width: 991px) {
  .interiorExterior .interiorExterior_slider {
    padding: 0 15px;
    max-width: 720px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .interiorExterior .interiorExterior_slider {
    max-width: 540px;
  }
}
.interiorExterior .interiorExterior_slider .mySwiper {
  padding-bottom: 4rem;
}
.interiorExterior_slide {
  flex-direction: column;
  text-align: start;
  align-items: start;
  justify-content: start;
  padding: 0 4rem;
}
@media (max-width: 991px) {
  .interiorExterior_slide {
    padding: 0;
  }
}
.interiorExterior_slide .zoomIn {
  height: auto !important;
}
.interiorExterior_slide .zoomIn img {
  height: auto !important;
}
.interiorExterior_slide_title {
  color: black;
  text-align: start;
  font-size: 2rem;
  font-weight: bold;
  padding: 1.2rem 0 1.5rem;
  margin-bottom: 0;
}
.interiorExterior_slide_desc {
  font-size: 0.85rem;
  color: black;
  opacity: 70%;
}

/* _____________ end interiorExterior Styles _____________ */
/* _____________ start changeColorTwo Styles _____________ */
.changeColorTwo {
  padding: 2.75rem 0;
  position: relative;
}
.changeColorTwo_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.changeColorTwo_content_title {
  font-size: 2rem;
  font-weight: bold;
  color: black;
  margin-bottom: 0.75rem;
}
.changeColorTwo_content_desc {
  font-size: 0.85rem;
  color: black;
  opacity: 0.7;
  margin-bottom: 2rem;
}
.changeColorTwo_content_list {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.changeColorTwo_content_list_item {
  margin-inline-start: 20px;
  margin-inline-end: 20px;
  cursor: pointer;
}
.changeColorTwo_content_list_item:first-child {
  margin-inline-start: 0;
}
.changeColorTwo_content_list_item:last-child {
  margin-inline-end: 20px;
}
.changeColorTwo_content_list_item_img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 3px;
  transition: all 0.3s ease-in-out;
}
.changeColorTwo_content_list_item_img.active {
  border: 2px solid black;
}
.changeColorTwo_imgs_img {
  display: none;
}
.changeColorTwo_imgs_img:first-child {
  display: block;
}

/* _____________ end changeColorTwo Styles _____________ */
/* _____________ start features Styles _____________ */
.features {
  position: relative;
}
.features_evenOdd_img {
  height: 100%;
}
@media (max-width: 767px) {
  .features_evenOdd_img {
    border-inline-end: none;
    border-inline-start: none;
  }
}
.features_evenOdd_text {
  background: rgb(0, 0, 0);
  background: linear-gradient(135deg, rgb(0, 0, 0) 50%, rgb(46, 46, 46) 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.features_evenOdd_text_content {
  padding: 2rem 24%;
}
.features_evenOdd_text_content_title {
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.features_evenOdd_text_content_desc {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .features_evenOdd_text_content {
    padding: 2rem 15%;
  }
}
@media (max-width: 991px) {
  .features_evenOdd_text_content {
    padding: 1.5rem 12.5%;
  }
}
@media (max-width: 767px) {
  .features_evenOdd_text_content {
    max-width: 540px;
    padding: 1.5rem 15px;
    width: 100%;
  }
}
.features_evenOdd .row.row1 .col-md-8 {
  order: 1;
}
.features_evenOdd .row.row1 .col-md-8 .features_evenOdd_img {
  border-inline-end: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.features_evenOdd .row.row1 .col-md-4 {
  order: 2;
}
.features_evenOdd .row.row2 .col-md-8 {
  order: 2;
}
.features_evenOdd .row.row2 .col-md-8 .features_evenOdd_img {
  border-inline-start: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media (max-width: 767px) {
  .features_evenOdd .row.row2 .col-md-8 {
    order: 1;
  }
}
.features_evenOdd .row.row2 .col-md-4 {
  order: 1;
}
@media (max-width: 767px) {
  .features_evenOdd .row.row2 .col-md-4 {
    order: 2;
  }
}
@media (max-width: 767px) {
  .features_evenOdd .row .features_evenOdd_img {
    border-top: 1px solid #707070 !important;
    border-bottom: none !important;
    border-inline-end: none !important;
    border-inline-start: none !important;
  }
}
.features_evenOdd .row:last-child .features_evenOdd_img {
  border-bottom: none !important;
}

/* _____________ end features Styles _____________ */
/* _____________ start safety Styles _____________ */
.safety {
  padding: 2.75rem 0;
  position: relative;
}
.safety_slide {
  flex-direction: column;
}
.safety_slide_desc {
  margin-top: 1rem;
  color: black;
  font-size: 1rem;
  font-weight: bold;
  width: 75%;
}

/* _____________ end safety Styles _____________ */
/* _____________ start compare Styles _____________ */
.compare {
  position: relative;
  padding: 2.75rem 0;
  background-color: #F6F6F6;
}
.compare_details {
  padding: 2rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  overflow: hidden;
  height: 100%;
}
.compare_details:hover {
  border: 2px solid rgba(0, 0, 0, 0.13);
}
.compare_details_img {
  width: 80%;
  display: block;
  margin: 0 auto 1rem auto;
}
.compare_details_title {
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}
.compare_details_price {
  color: #FF673D;
  text-align: center;
  font-weight: bold;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.compare_details_list {
  padding-inline-start: 1rem;
  margin: 0;
}
.compare_details_list_item {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.85rem;
  padding-bottom: 5px;
}
.compare_details_list_item:last-child {
  padding-bottom: 0;
}
.compare_details_list_item::marker {
  color: #FF673D;
}

/* _____________ end compare Styles _____________ */
/* _____________ start specifications Styles _____________ */
.specifications {
  padding: 2.75rem 0;
  position: relative;
}

/* _____________ end specifications Styles _____________ */
/* ====================================== _____________ vehicle-overview Page Styles _____________ ====================================== */
/* ====================================== _____________ our location Page Styles _____________ ====================================== */
/* _____________ start location Styles _____________ */
.location, .aftersales {
  position: relative;
  padding: 2.75rem 0;
  text-align: center;
}
.location_content, .aftersales_content {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  z-index: 2;
}
.location_content:before, .aftersales_content:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 50%;
  background-color: rgba(112, 112, 112, 0.4);
  transform: translateX(-50%);
}
.location_content:last-child, .aftersales_content:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.location_content:last-child::before, .aftersales_content:last-child::before {
  display: none;
}
.location_content_mainTitle, .aftersales_content_mainTitle {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
.location_content_title, .aftersales_content_title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.location_content_desc, .aftersales_content_desc {
  font-size: 0.95rem;
}
.location_content_list, .aftersales_content_list {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
  align-items: baseline;
  justify-content: center;
}
.location_content_list_img, .aftersales_content_list_img {
  width: 15px;
  margin-top: -5px;
  margin-inline-end: 4px;
}
.location_content_list_item, .aftersales_content_list_item {
  font-size: 0.95rem;
}
.location_content_list_item .bold, .aftersales_content_list_item .bold {
  font-weight: 900;
}
.location_content_linkCall, .aftersales_content_linkCall {
  color: black;
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
}
.location_content_linkCall i, .aftersales_content_linkCall i {
  font-size: 0.95rem;
}
body.ar .location_content_linkCall i, body.ar .aftersales_content_linkCall i {
  transform: scalex(-1);
}
.location_content_link, .aftersales_content_link {
  font-weight: 900;
  font-size: 0.85rem;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.location_content_link:hover, .aftersales_content_link:hover {
  color: #FF673D;
  text-decoration: underline;
}
.location_icon, .aftersales_icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
}

.location_content_mainTitle {
  color: black;
}
.location_content_title {
  color: black;
}
.location_content_desc {
  color: rgba(0, 0, 0, 0.7);
}
.location_content_list_item {
  color: rgba(0, 0, 0, 0.7);
}
.location_content_linkCall {
  color: black;
}
.location_content_linkCall:hover {
  color: black;
}
.location_content_linkCall i {
  color: #FF673D;
}
.location_content_link {
  color: rgba(0, 0, 0, 0.7);
}

.aftersales {
  background-color: #515151;
}
.aftersales_content_mainTitle {
  color: white;
}
.aftersales_content_title {
  color: white;
}
.aftersales_content_desc {
  color: rgba(255, 255, 255, 0.7);
}
.aftersales_content_list {
  align-items: start;
}
.aftersales_content_list_item {
  color: rgba(255, 255, 255, 0.7);
}
.aftersales_content_list_item.d-flex {
  align-items: baseline;
}
.aftersales_content_list_item.d-flex img {
  object-fit: contain;
  margin-inline-end: 7px;
}
.aftersales_content_list_item div {
  text-align: start;
}
.aftersales_content_linkCall {
  color: white;
}
.aftersales_content_linkCall:hover {
  color: white;
}
.aftersales_content_linkCall i {
  color: white;
}
.aftersales_content_link {
  color: rgba(255, 255, 255, 0.7);
}

/* _____________ end features Styles _____________ */
/* ====================================== _____________ our location Page Styles _____________ ====================================== */
/* ====================================== _____________ thanks Page Styles _____________ ====================================== */
.thanks {
  padding: 2.75rem 0;
  text-align: center;
}
.thanks_content_title {
  font-size: 2rem;
  font-weight: bold;
  color: black;
  margin-bottom: 1rem;
}
.thanks_content_desc {
  font-size: 0.85rem;
  opacity: 70%;
  color: black;
  margin-bottom: 0;
}

/* ====================================== _____________ thanks Page Styles _____________ ====================================== */
/* ====================================== _____________ contactUs Page Styles _____________ ====================================== */
.contactUsDetails {
  position: relative;
  padding: 3rem 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 30%, rgb(76, 76, 76) 100%);
}
.contactUsDetails_icon {
  width: 10%;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -65%);
  top: 40%;
}
@media (max-width: 767px) {
  .contactUsDetails_icon {
    width: 20%;
    top: 38%;
  }
}
@media (max-width: 576px) {
  .contactUsDetails_icon {
    width: 28%;
  }
}
.contactUsDetails_content {
  z-index: 2;
  position: relative;
}
.contactUsDetails_content_hotline {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}
.contactUsDetails_content_hotline_number {
  color: #FF673D;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
}
.contactUsDetails_content_hotline_number:hover {
  color: #FF673D;
}
.contactUsDetails_content_workingTime {
  color: white;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.contactUsDetails_content_workingTime_date {
  color: white;
  font-weight: bold;
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 0;
}
.contactUsDetails_content_workingTime_date span {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}
.contactUsDetails_content_desc {
  color: white;
  font-size: 1.8rem;
  font-weight: 400;
}
.contactUsDetails_content .mainButton {
  color: white;
  border-color: white;
  padding: 0.75rem 2.25rem;
}
.contactUsDetails_content .mainButton:hover {
  border-color: #FF673D;
}

/* ====================================== _____________ contactUs Page Styles _____________ ====================================== */
/* ====================================== _____________ about us Page Styles _____________ ====================================== */
/* _____________ start aboutUs Styles _____________ */
.aboutUs {
  position: relative;
}
.aboutUs_evenOdd_img {
  height: 100%;
}
.aboutUs_evenOdd_img img {
  height: 100%;
  object-fit: cover;
}
.aboutUs_evenOdd_text {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 4rem;
}
@media (max-width: 991px) {
  .aboutUs_evenOdd_text {
    max-width: 720px;
    padding: 1.5rem 15px;
  }
}
.aboutUs_evenOdd_text_content_title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.aboutUs_evenOdd_text_content_desc {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.aboutUs_evenOdd .row1:nth-child(even) .col1 {
  order: 1;
}
.aboutUs_evenOdd .row1:nth-child(even) .col2 {
  background: rgb(112, 112, 112);
  background: linear-gradient(180deg, rgb(112, 112, 112) 0%, rgb(81, 81, 81) 100%);
  order: 2;
}
.aboutUs_evenOdd .row1:nth-child(even) .col2 .aboutUs_evenOdd_text_content_title {
  color: white;
}
.aboutUs_evenOdd .row1:nth-child(even) .col2 .aboutUs_evenOdd_text_content_desc {
  color: white;
  opacity: 70%;
}
.aboutUs_evenOdd .row1:nth-child(odd) .col1 {
  order: 2;
}
@media (max-width: 991px) {
  .aboutUs_evenOdd .row1:nth-child(odd) .col1 {
    order: 1;
  }
}
.aboutUs_evenOdd .row1:nth-child(odd) .col2 {
  order: 1;
}
.aboutUs_evenOdd .row1:nth-child(odd) .col2 .aboutUs_evenOdd_text_content_title {
  color: black;
}
.aboutUs_evenOdd .row1:nth-child(odd) .col2 .aboutUs_evenOdd_text_content_desc {
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px) {
  .aboutUs_evenOdd .row1:nth-child(odd) .col2 {
    order: 2;
  }
}

/* _____________ end aboutUs Styles _____________ */
/* ====================================== _____________ about us Page Styles _____________ ====================================== */
/* ====================================== _____________ Warranty Page Styles _____________ ====================================== */
/* _____________ start warranty Styles _____________ */
.warranty {
  position: relative;
}
.warranty_evenOdd_img {
  height: 100%;
}
.warranty_evenOdd_img img {
  height: 100%;
  object-fit: cover;
}
.warranty_evenOdd_text {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 4rem;
}
@media (max-width: 991px) {
  .warranty_evenOdd_text {
    max-width: 720px;
    padding: 1.5rem 15px;
  }
}
.warranty_evenOdd_text_content_years {
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.warranty_evenOdd_text_content_title {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.warranty_evenOdd_text_content_desc {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.warranty_evenOdd .row1:nth-child(even) .col1 {
  order: 2;
}
.warranty_evenOdd .row1:nth-child(even) .col2 {
  background: rgb(112, 112, 112);
  background: linear-gradient(180deg, rgb(112, 112, 112) 0%, rgb(81, 81, 81) 100%);
  order: 1;
}
.warranty_evenOdd .row1:nth-child(even) .col2 .warranty_evenOdd_text_content_title,
.warranty_evenOdd .row1:nth-child(even) .col2 .warranty_evenOdd_text_content_years {
  color: white;
}
.warranty_evenOdd .row1:nth-child(even) .col2 .warranty_evenOdd_text_content_desc {
  color: white;
  opacity: 70%;
}
@media (max-width: 991px) {
  .warranty_evenOdd .row1:nth-child(even) .col2 {
    order: 2;
  }
}
.warranty_evenOdd .row1:nth-child(odd) .col1 {
  order: 1;
}
.warranty_evenOdd .row1:nth-child(odd) .col2 {
  order: 1;
}
.warranty_evenOdd .row1:nth-child(odd) .col2 .warranty_evenOdd_text_content_title {
  color: #FF673D;
}
.warranty_evenOdd .row1:nth-child(odd) .col2 .warranty_evenOdd_text_content_desc,
.warranty_evenOdd .row1:nth-child(odd) .col2 .warranty_evenOdd_text_content_years {
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px) {
  .warranty_evenOdd .row1:nth-child(odd) .col2 {
    order: 2;
  }
}

/* _____________ end warranty Styles _____________ */
/* ====================================== _____________ Warranty Page Styles _____________ ====================================== */
/* ====================================== _____________ cookiesPolicy Page Styles _____________ ====================================== */
/* _____________ start cookiesPolicy Styles _____________ */
.cookiesPolicy {
  padding: 2.75rem 0;
}
.cookiesPolicy_content_mainTitle {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.cookiesPolicy_content_desc {
  color: black;
}
.cookiesPolicy_content_title {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
}

/* _____________ end cookiesPolicy Styles _____________ */
/* ====================================== _____________ cookiesPolicy Page Styles _____________ ====================================== */
/* ====================================== _____________ brochures Page Styles _____________ ====================================== */
/* _____________ start brochures Styles _____________ */
.brochures {
  padding: 2.75rem 0;
}
.brochures_content {
  text-align: center;
  transition: all 0.3s ease-in-out;
  padding: 0 0 0.5rem 0;
}
.brochures_content_title {
  font-size: 1.2rem;
  color: black;
  text-transform: uppercase;
  margin: 0.75rem 0 0.5rem;
  font-weight: bold;
}
.brochures_content_link {
  font-weight: bold;
  font-size: 0.8rem;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.brochures_content_link:hover {
  color: #FF673D;
  text-decoration: underline;
}
.brochures_content:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) !important;
}

/* _____________ end brochures Styles _____________ */
/* ====================================== _____________ brochures Page Styles _____________ ====================================== */
/* ====================================== _____________ offers Page Styles _____________ ====================================== */
/* _____________ start offers Styles _____________ */
.offers {
  padding: 2.75rem 0;
}
.offers_offer {
  position: relative;
  margin-bottom: 2rem;
}
.offers_offer_imgParent {
  position: relative;
}
.offers_offer_imgParent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .offers_offer_imgParent img {
    height: 75vh;
    object-fit: cover;
  }
}
.offers_offer_content {
  padding: 2rem;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: auto;
}
.offers_offer_content_title {
  font-size: 2.5rem;
  color: #FF673D;
  text-transform: uppercase;
  margin: 0.75rem 0 0.5rem;
  font-weight: bold;
}
.offers_offer_content_date {
  font-weight: 400;
  font-size: 1.2rem;
  color: white;
}
.offers_offer_content_desc {
  font-size: 0.85rem;
  color: white;
  margin-bottom: 0;
}
.offers .mainButton {
  padding: 0.5rem 2rem;
}
.offers .mainButton:hover {
  border-color: #FF673D;
}

/* _____________ end offers Styles _____________ */
/* ====================================== _____________ offers Page Styles _____________ ====================================== */
/* ====================================== _____________ Services Page Styles _____________ ====================================== */
/* _____________ start services Styles _____________ */
.services_img {
  position: relative;
  height: 100%;
}
.services_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
.services_img_pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services_content {
  padding: 3rem 4rem;
}
@media (max-width: 991px) {
  .services_content {
    padding: 1.5rem 15px;
    max-width: 720px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .services_content {
    max-width: 540px;
  }
}
.services_content_title {
  font-size: 2rem;
  font-weight: 900;
  color: black;
  text-transform: uppercase;
}
.services_content_desc {
  font-size: 1 0.85rem;
  color: rgba(0, 0, 0, 0.7);
}
.services_content_box {
  padding: 0.95rem;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.services_content_box:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.16) !important;
}
.services_content_box_icon {
  width: 80px;
  margin-bottom: 1rem;
  height: 80px;
  object-fit: contain;
}
.services_content_box_title {
  font-size: 1.35rem;
  font-weight: 900;
  color: black;
}
.services_content_box_desc {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}

/* _____________ end services Styles _____________ */
/* ====================================== _____________ Services Page Styles _____________ ====================================== */
/* ====================================== _____________ maintenance-schedule Page Styles _____________ ====================================== */
/* _____________ start model Styles _____________ */
.model {
  padding: 2.75rem 0 0;
  position: relative;
}
.model_slide {
  flex-direction: column;
}
.model_slide_img {
  opacity: 1;
  margin-bottom: 1rem;
}
.model_slide_desc {
  margin-bottom: 0;
  color: black;
  font-size: 1rem;
  font-weight: 900;
}
.model_slide.active .model_slide_img {
  opacity: 1;
}
.model_slide.faded .model_slide_img {
  opacity: 50%;
}

/* _____________ end model Styles _____________ */
/* _____________ start maintenanceFormStyles _____________ */
.maintenanceForm, .maintenanceTable {
  padding: 1rem 0;
}

/* _____________ end maintenanceFormStyles _____________ */
/* ====================================== _____________ maintenance-schedule Page Styles _____________ ====================================== */

/*# sourceMappingURL=style.css.map */
