* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  transition: 0.35s ease-in-out;
}

:root {
  --bg-body:#F7F7F7;
  --bg-white:#fff;
  --bg-nav: rgba(194, 193, 193, 0.1);
  --nav-border:linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%);
  --display-block:block;
  --border-color:#3A3939;
  --border-color2:#868686;
  --border-color3:#D0D0D0;
  --border-color4:#BFBFBF;
  --display-none:none;
  --text-dark1:#414141;
  --text-dark2:#000;
  --text-dark3:#9C9C9C;
  --text-dark4:#CFCFCF;
  --text-light1:#fff;
  --text-light2:#ADADAD;
  --bg-dark1:#1E1E1E;
  --bg-home-search:#fff;
  --bg-card:#EFEFEF;
  --bg-modal:rgba(0, 0, 0, 0.56);
  --card-item: brightness(0) opacity(.2);
  --filter-select:var(--display-none);
  --calculator-bg:#ECECEC;
  --calculator-bg2:#1F1F1F;
  --bg-characteristic:#F4F4F4;
  --breadcrump-light:rgba(15, 17, 17, 0.4);
  --breadcrump-active-light:#0F1111;
  --contact-box-title:#191818;
  --social-item: invert(0);
}

.darkMode {
  --bg-nav: rgba(255,255,255,.12);
  --bg-white:#000;
  --bg-body:#000;
  --text-dark2:#fff;
  --text-dark3:#fff;
  --nav-border:linear-gradient(173deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.1) 50%);
  --display-block:none;
  --display-none:block;
  --text-dark1:#fff;
  --text-light1:#414141;
  --text-light2:#fff;
  --bg-dark1:#fff;
  --bg-home-search:rgba(73, 73, 73, 0.4);
  --bg-modal:rgba(0, 0, 0, 0.36);
  --bg-card:rgba(42, 42, 42, 0.62);
  --card-item: brightness(0) opacity(1) invert(1);
  --border-color:#6A6A6A;
  --border-color2:#D7D7D7;
  --border-color3:#6A6A6A;
  --filter-select:invert(1);
  --text-dark4:#fff;
  --border-color4:#3D3D3D;
  --calculator-bg:rgba(236, 236, 236, 0.1);
  --calculator-bg2:#fff;
  --bg-characteristic:rgba(244, 244, 244, 0.1);
  --breadcrump-light:rgba(255, 255, 255, 0.8);
  --breadcrump-active-light:#fff;
  --contact-box-title:#fff;
  --social-item: invert(1);
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}

body {
  background: var(--bg-body);
}

nav {
  background: transparent;
  max-width: 1440px;
  width: 100%;
  padding: 30px 24px 0;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 19;
  transform: translateX(-50%);
}
nav .navbar-container {
  background: transparent;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
nav .navbar-container::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: var(--bg-nav);
  border-radius: 16px;
  z-index: -1;
}
nav .navbar-container .navbar-logo {
  width: 174px;
  min-width: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .navbar-container .navbar-logo img {
  width: 100%;
  height: auto;
}
nav .navbar-container .navbar-logo .logoDark {
  display: var(--display-block);
}
nav .navbar-container .navbar-logo .logoWhite {
  display: var(--display-none);
}
nav .navbar-container .navbar-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  max-width: 1070px;
  width: 100%;
}
nav .navbar-container .navbar-right .nav-search {
  max-width: 340px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
}
nav .navbar-container .navbar-right .nav-search .searchBtn {
  min-width: 22px;
  width: 22px;
  height: 22px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .navbar-container .navbar-right .nav-search .searchBtn img {
  width: 100%;
  height: 100%;
}
nav .navbar-container .navbar-right .nav-search input {
  width: 100%;
  border: none;
  padding: 2px 0 2px 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  border-left: 1px solid #1E1E1E;
  outline: none;
}
nav .navbar-container .navbar-right .nav-search input::-moz-placeholder {
  color: #ADADAD;
}
nav .navbar-container .navbar-right .nav-search input::placeholder {
  color: #ADADAD;
}
nav .navbar-container .navbar-right .whatsapp {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #08C46D;
  border-radius: 12px;
}
nav .navbar-container .navbar-right .whatsapp img {
  min-width: 24px;
  width: 24px;
  height: 24px;
}
nav .navbar-container .navbar-right .whatsapp p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
nav .navbar-container .navbar-right .test_drive {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #333635;
  border-radius: 12px;
}
nav .navbar-container .navbar-right .test_drive img {
  min-width: 24px;
  width: 24px;
  height: 24px;
}
nav .navbar-container .navbar-right .test_drive p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-wrap: nowrap;
}
nav .navbar-container .navbar-right .contactPage-link {
  padding: 18px 24px;
  background: #BFD856;
  border-radius: 12px;
  color: #fff;
  font-family: "Mulish";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
}
nav .navbar-container .navbar-right .contactPage-link img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: none;
}
nav .navbar-container .navbar-right .lang {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
}
nav .navbar-container .navbar-right .lang .current-lang {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 6px;
}
nav .navbar-container .navbar-right .lang .current-lang span {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-dark1);
}
nav .navbar-container .navbar-right .lang .current-lang svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
}
nav .navbar-container .navbar-right .lang .current-lang svg path {
  fill: var(--text-dark1);
}
nav .navbar-container .navbar-right .lang .other-langs {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  border-radius: 8px;
  background: var(--bg-dark1);
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 55px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
nav .navbar-container .navbar-right .lang .other-langs .lang-item {
  width: 100%;
  padding: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  background: transparent;
  color: var(--text-light1);
  border-bottom: 1px solid #414141;
}
nav .navbar-container .navbar-right .lang .other-langs .lang-item:last-child {
  border: none;
}
nav .navbar-container .navbar-right .lang.active .current-lang svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}
nav .navbar-container .navbar-right .lang.active .other-langs {
  top: 45px;
  opacity: 1;
  visibility: visible;
}
nav .navbar-container .navbar-right .themeModeBtn {
  min-width: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
nav .navbar-container .navbar-right .themeModeBtn img {
  width: 100%;
  height: 100%;
}
nav .navbar-container .navbar-right .themeModeBtn .moon {
  display: var(--display-block);
}
nav .navbar-container .navbar-right .themeModeBtn .moon-white {
  display: none;
}
nav .navbar-container .navbar-right .themeModeBtn .sun {
  display: var(--display-none);
}
nav .navbar-container .navbar-right .nav-phone {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #BFD856;
}
nav .navbar-container .navbar-right .hamburger {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
}
nav .navbar-container .navbar-right .hamburger svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

footer {
  width: 100%;
  background: #000;
  padding: 13px 0;
}
footer .footer-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
}
footer .footer-container .reserved {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-container .reserved p, footer .footer-container .reserved a {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
}
footer .footer-container .footer-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-decoration: underline;
  color: #BFD856;
}
footer .footer-container .footer-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
footer .footer-container .footer-right .socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer-container .footer-right .socials .social-item {
  min-width: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-container .footer-right .socials .social-item img {
  width: 100%;
  height: 100%;
}
footer .footer-container .footer-right .footer-phone {
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: #BFD856;
}

.home {
  width: 100%;
  padding-top: 30px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.home video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.home nav {
  margin: 0 auto;
  padding: 0 24px;
  position: initial;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateX(0);
}
.home nav .navbar-container {
  background: linear-gradient(173deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.1) 50%);
}
.home nav .navbar-container::before {
  background: transparent;
}
.home nav .navbar-container .navbar-logo .logoDark {
  display: none;
}
.home nav .navbar-container .navbar-logo .logoWhite {
  display: block;
}
.home nav .navbar-container .navbar-right .whatsapp {
  display: none;
}
.home nav .navbar-container .navbar-right .lang .current-lang span {
  color: #fff;
}
.home nav .navbar-container .navbar-right .lang .current-lang svg path {
  fill: #fff;
}
.home nav .navbar-container .navbar-right .lang .other-langs {
  background: #fff;
}
.home nav .navbar-container .navbar-right .lang .other-langs .lang-item {
  color: #414141;
}
.home nav .navbar-container .navbar-right .themeModeBtn .moon {
  display: none;
}
.home nav .navbar-container .navbar-right .themeModeBtn .moon-white {
  display: var(--display-none);
}
.home nav .navbar-container .navbar-right .themeModeBtn .sun {
  display: var(--display-block);
}
.home .home-hero {
  max-width: 1440px;
  width: 100%;
  margin: 90px auto 150px;
  padding: 0 58px;
}
.home .home-hero h1 {
  font-weight: 600;
  font-size: 70px;
  line-height: 100px;
  text-align: center;
  color: #fff;
  font-family: "Mulish", sans-serif;
}
.home .home-hero form {
  max-width: 1038px;
  width: 100%;
  margin: 38px auto 0;
  background: var(--bg-home-search);
  display: flex;
  align-items: center;
  padding: 18px 26px;
  border-radius: 16px;
  justify-content: space-between;
  gap: 20px;
}
.home .home-hero form .form-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 781px;
  width: 100%;
}
.home .home-hero form .form-items .form-item {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: start;
}
.home .home-hero form .form-items .form-item .nice-select {
  min-width: 110px;
  border: none;
  height: auto;
  min-height: 0;
  line-height: 0;
  padding: 10px 44px 10px 10px;
  background: transparent;
}
.home .home-hero form .form-items .form-item .nice-select .current {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--bg-dark1);
}
.home .home-hero form .form-items .form-item .nice-select::after {
  right: 8.5px;
  border-color: #000;
}
.home .home-hero form .form-items .form-item .nice-select::before {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 100px;
  background: #F2F2F2;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.home .home-hero form .form-items .form-item .nice-select .list {
  max-height: 250px;
  overflow-y: auto;
}
.home .home-hero form .form-items .form-item:first-child {
  border-left: none;
}
.home .home-hero form .form-items .line {
  width: 1px;
  min-width: 1px;
  height: 40px;
  display: block;
  background: #B8B8B8;
}
.home .home-hero form .homeSearchBtn {
  padding: 12px;
  background: #000;
  max-width: 124px;
  width: 100%;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.home .home-hero .home-brands {
  width: 100%;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
}
.home .home-hero .home-brands .home-brand-item {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #F6F6F6;
  border-radius: 14px;
  padding: 10px;
}
.home .home-hero .home-brands .home-brand-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #414141;
  display: none;
}
.home .home-hero .home-brands .home-brand-item .brand-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .home-hero .home-brands .home-brand-item .brand-img img {
  max-width: 100%;
  max-height: 90px;
}
.home footer {
  margin-top: auto;
}

.brands-container {
  max-width: 1440px;
  width: 100%;
  margin: 202px auto 0;
  padding: 0 50px;
}
.brands-container .brands-container-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brands-container .brands-container-head .brand-logo-title {
  display: flex;
  align-items: center;
  gap: 24px;
}
.brands-container .brands-container-head .brand-logo-title .brand_logo {
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #08C46D;
  border-radius: 100px;
  background: #fff;
}
.brands-container .brands-container-head .brand-logo-title .brand_logo img {
  max-width: 50px;
}
.brands-container .brands-container-head .brand-logo-title h1 {
  font-weight: 500;
  font-size: 52px;
  line-height: 55px;
  color: #08C46D;
}
.brands-container .brands-container-head .showFilter {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: #F4F4F4;
  border-radius: 14px;
}
.brands-container .brands-container-head .showFilter p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1E1E1E;
}
.brands-container .brands-container-head .showFilter p svg {
  min-width: 18px;
  width: 18px;
  height: 18px;
}
.brands-container .brands-container-head .showFilter .filterCount {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  font-weight: 400;
  font-size: 12px;
  line-height: 9px;
  color: #fff;
}
.brands-container .brands-container-head .nice-select {
  width: 350px;
  min-height: 0;
  height: auto;
  line-height: 0;
  border: 1px solid #C1C1C1;
  border-radius: 14px;
  padding: 18px 32px 18px 14px;
  background: transparent;
}
.brands-container .brands-container-head .nice-select .current {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #CECECE;
}
.brands-container .brands-container-head .nice-select::after {
  right: 20px;
}
.brands-container .brands-container-head .nice-select .list {
  width: 100%;
}
.brands-container .brands-main {
  margin-top: 70px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 20px;
}
.brands-container .brands-main .brands-left {
  min-width: 320px;
  width: 320px;
}
.brands-container .brands-main .brands-left .offer_week {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
  box-shadow: 3px 4px 4px 0px rgba(197, 199, 202, 0.25);
  background: #08C46D;
  border-radius: 12px;
  padding: 24px 20px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_box {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_box h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #111827;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown {
  display: flex;
  align-items: center;
  gap: 26px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown-box p {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #17A539;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown-box span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #D0D0D0;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown_line {
  width: 1px;
  height: 14px;
  background: #CCCCCC;
}
.brands-container .brands-main .brands-left .offer_week .line {
  width: 100%;
  height: 1px;
  background: #E9E7E7;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide {
  width: 100%;
  padding-bottom: 36px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item {
  width: 100%;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 26px;
  width: 100%;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-img {
  width: 100%;
  border-radius: 12px;
  height: 213px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 12px;
  padding: 0 10px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item {
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item img {
  min-width: 24px;
  width: 24px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card:hover .card-body .card-detail-item {
  filter: none;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .swiper-pagination {
  margin: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 10px;
  height: 6px;
  background: rgba(255, 255, 255, 0.33);
  border-radius: 6px;
  opacity: 1;
}
.brands-container .brands-main .brands-left .offer_week .offer_week_slide .swiper-pagination .swiper-pagination-bullet-active {
  width: 22px;
  background: #fff;
}
.brands-container .brands-main .brands-left .filter-area {
  margin-top: 50px;
  width: 100%;
}
.brands-container .brands-main .brands-left .filter-area .filter-head {
  width: 100%;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.brands-container .brands-main .brands-left .filter-area .filter-head .closeFilter {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  padding: 10px 20px;
  background: #F4F4F4;
  border-radius: 14px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1E1E1E;
}
.brands-container .brands-main .brands-left .filter-area .filter-head .closeFilter svg {
  min-width: 15px;
  width: 15px;
  height: 15px;
}
.brands-container .brands-main .brands-left .filter-area .filter-head .count_filter_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px;
  background: #F4F4F4;
  border-radius: 14px;
  width: 100%;
}
.brands-container .brands-main .brands-left .filter-area .filter-head .count_filter_box p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1E1E1E;
}
.brands-container .brands-main .brands-left .filter-area .filter-head .count_filter_box p svg {
  min-width: 18px;
  width: 18px;
  height: 18px;
}
.brands-container .brands-main .brands-left .filter-area .filter-head .count_filter_box .filterCount {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  font-weight: 400;
  font-size: 12px;
  line-height: 9px;
  color: #fff;
}
.brands-container .brands-main .brands-left .filter-area .filter {
  width: 100%;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-brands {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  width: 100%;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-brands .filter-brand-item {
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  border-radius: 14px;
  padding: 7px 14px;
  position: relative;
  background: transparent;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-brands .filter-brand-item .brand-img {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color2);
  background: #fff;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-brands .filter-brand-item .brand-img img {
  width: 30px;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-brands .filter-brand-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark1);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-brands .filter-brand-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-brands .filter-brand-item.checked {
  border-color: #08C46D;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  width: 100%;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0px;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-title {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color3);
  gap: 10px;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-title .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: var(--filter-select);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-title .icon svg {
  width: 100%;
  height: 100%;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #1E1E1E;
  filter: var(--filter-select);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-title i {
  color: #1E1E1E;
  margin-left: auto;
  filter: var(--filter-select);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-title i::before {
  font-weight: 600 !important;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  height: 0;
  overflow: hidden;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check .filter-check-item {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  gap: 14px;
  border-radius: 14px;
  padding: 16px 14px;
  width: 100%;
  position: relative;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check .filter-check-item .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check .filter-check-item .icon img {
  width: 100%;
  height: 100%;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check .filter-check-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark1);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check .filter-check-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check .filter-check-item.checked {
  border-color: #08C46D;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 0;
  overflow: hidden;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price input {
  width: 100%;
  padding: 18px 14px;
  border: none;
  outline: none;
  background: var(--bg-card);
  border-radius: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark2);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price input::-moz-placeholder {
  color: #9C9C9C;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price input::placeholder {
  color: #9C9C9C;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price .nice-select {
  width: 100%;
  min-height: 0;
  height: auto;
  line-height: 0;
  border: none;
  border-radius: 14px;
  padding: 18px 28px 18px 14px;
  background: var(--bg-card);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price .nice-select .current {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark3);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price .nice-select::after {
  right: 16px;
  border-color: var(--text-dark2);
  border-width: 1.2px;
  width: 6px;
  height: 6px;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price .nice-select .list {
  width: 100%;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-inputs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  height: 0;
  overflow: hidden;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-inputs .filter-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  background: var(--bg-card);
  border-radius: 14px;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-inputs .filter-input input {
  width: 100%;
  border: none;
  outline: none;
  color: var(--text-dark2);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  background: transparent;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-inputs .filter-input input::-moz-placeholder {
  color: #9C9C9C;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-inputs .filter-input input::placeholder {
  color: #9C9C9C;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-inputs .filter-input p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark4);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item.active {
  gap: 30px;
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item.active .filter-title i {
  transform: rotate(180deg);
}
.brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item.active .filter-check, .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item.active .filter-price, .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item.active .filter-inputs {
  height: auto;
  overflow: initial;
}
.brands-container .brands-main .brands-left .filter-area .filter .submitFilter {
  margin-top: 40px;
  width: 100%;
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  background: #E9E9E9;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.brands-container .brands-main .brands {
  width: 100%;
}
.brands-container .brands-main .brands .all-brands {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
.brands-container .brands-main .brands .all-brands .product-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 26px;
  width: 100%;
  background: var(--bg-card);
  box-shadow: 3px 4px 4px 0px rgba(197, 199, 202, 0.25);
  border-radius: 12px;
  padding: 24px 20px;
}
.brands-container .brands-main .brands .all-brands .product-card .card-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
}
.brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brand_logo {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #868686;
  border-radius: 100px;
  background: #fff;
}
.brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brand_logo img {
  max-width: 30px;
}
.brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brandName {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ADADAD;
}
.brands-container .brands-main .brands .all-brands .product-card .card-head .brand-model {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--bg-dark1);
}
.brands-container .brands-main .brands .all-brands .product-card .card-head .brand-model:hover {
  color: #08C46D;
}
.brands-container .brands-main .brands .all-brands .product-card .card-img {
  width: 100%;
  border-radius: 12px;
  height: 213px;
  position: relative;
}
.brands-container .brands-main .brands .all-brands .product-card .card-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.brands-container .brands-main .brands .all-brands .product-card .card-img .tag {
  top: 10px;
  right: 10px;
  padding: 10px;
  background: #08C46D;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  z-index: 1;
}
.brands-container .brands-main .brands .all-brands .product-card .card-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 16px;
  padding: 0 10px;
}
.brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item {
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item img {
  min-width: 24px;
  width: 24px;
}
.brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark2);
}
.brands-container .brands-main .brands .pagination {
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 22px;
}
.brands-container .brands-main .brands .pagination .pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: #EDEEF7;
  border-radius: 10px;
  background: #EDEEF7;
  color: #1E1E1E;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.brands-container .brands-main .brands .pagination .active {
  background: #08C46D;
  color: #fff;
}
.brands-container .brands-main .brands .pagination .pagination-empty {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.discover_auto_container {
  width: 100%;
  margin-top: 100px;
  background: #F1F1F1;
  padding: 70px 0;
}
.discover_auto_container .discover_auto {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.discover_auto_container .discover_auto h2 {
  max-width: 330px;
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
  color: #222222;
}
.discover_auto_container .discover_auto h2 span {
  color: #08C46D;
}
.discover_auto_container .discover_auto .desktop_ban_types {
  max-width: 805px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 135px);
  justify-content: space-between;
  gap: 30px 10px;
}
.discover_auto_container .discover_auto .desktop_ban_types .ban_type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.discover_auto_container .discover_auto .desktop_ban_types .ban_type .icon {
  width: 91px;
}
.discover_auto_container .discover_auto .desktop_ban_types .ban_type .icon img {
  width: 100%;
}
.discover_auto_container .discover_auto .desktop_ban_types .ban_type .ban_type_content {
  display: flex;
  gap: 0;
  align-items: center;
}
.discover_auto_container .discover_auto .desktop_ban_types .ban_type .ban_type_content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #1E1E1E;
  text-align: center;
}
.discover_auto_container .discover_auto .desktop_ban_types .ban_type .ban_type_content svg {
  min-width: 0;
  width: 0;
  height: 24px;
}
.discover_auto_container .discover_auto .desktop_ban_types .ban_type:hover .ban_type_content {
  display: flex;
  gap: 10px;
}
.discover_auto_container .discover_auto .desktop_ban_types .ban_type:hover .ban_type_content svg {
  min-width: 24px;
  width: 24px;
}
.discover_auto_container .discover_auto .ban_types_slide {
  width: 100%;
  display: none;
}
.discover_auto_container .discover_auto .ban_types_slide .swiper-wrapper {
  align-items: end;
}
.discover_auto_container .discover_auto .ban_types_slide .ban_type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: auto;
}
.discover_auto_container .discover_auto .ban_types_slide .ban_type .icon {
  width: 91px;
}
.discover_auto_container .discover_auto .ban_types_slide .ban_type .icon img {
  width: 100%;
}
.discover_auto_container .discover_auto .ban_types_slide .ban_type p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #1E1E1E;
  text-align: center;
}

.model-detail-head {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 50px;
  margin: 212px auto 0;
  gap: 14px;
  position: relative;
}
.model-detail-head .brand-logo {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid #868686;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.model-detail-head .brand-logo img {
  width: 32px;
}
.model-detail-head .brand_name {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-light2);
}
.model-detail-head .model_name {
  margin-left: 40px;
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
  color: #08C46D;
}
.model-detail-head .shareBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 34px;
  background: #EBEBEB;
  border-radius: 14px;
  margin-left: auto;
}
.model-detail-head .shareBtn svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
}
.model-detail-head .shareBtn p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1E1E1E;
}
.model-detail-head .shared_box {
  display: none;
  align-items: center;
  position: absolute;
  box-shadow: 3px 4px 4px 0px rgba(197, 199, 202, 0.25);
  background: #fff;
  top: 60px;
  right: 50px;
  padding: 20px 30px;
  gap: 12px;
  border-radius: 12px;
}
.model-detail-head .shared_box .shared-item {
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.model-detail-head .shared_box .shared-item img {
  width: 100%;
  height: 100%;
}
.model-detail-head .shared_box .copy_btn i {
  color: #000;
  font-size: 18px;
}
.model-detail-head .shared_box .close_shared_box {
  position: absolute;
  top: 5px;
  right: 5px;
}
.model-detail-head .shared_box .close_shared_box i {
  font-size: 14px;
  color: #000;
}

.product-detail-main {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.product-detail-main .product-images {
  width: 100%;
  min-height: 700px;
  position: relative;
}
.product-detail-main .product-images .product-gallery-slide {
  width: 100%;
  height: 100%;
}
.product-detail-main .product-images .product-gallery-slide .gallery-item {
  width: 100%;
  height: 100%;
}
.product-detail-main .product-images .product-gallery-slide .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail-main .product-images .product-gallery-slide .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 50px;
  bottom: 30px;
}
.product-detail-main .product-images .product-gallery-slide .swiper-buttons .swiper-button-prev, .product-detail-main .product-images .product-gallery-slide .swiper-buttons .swiper-button-next {
  position: initial;
  margin: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1F1F1F;
  border-radius: 14px;
}
.product-detail-main .product-images .product-gallery-slide .swiper-buttons .swiper-button-prev svg, .product-detail-main .product-images .product-gallery-slide .swiper-buttons .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
.product-detail-main .product-images .product-gallery-slide .swiper-buttons .swiper-button-prev::after, .product-detail-main .product-images .product-gallery-slide .swiper-buttons .swiper-button-next::after {
  display: none;
}
.product-detail-main .product-images .campaign-tag {
  top: 30px;
  left: 50px;
  padding: 15px 30px;
  background: #08C46D;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  position: absolute;
  z-index: 1;
}
.product-detail-main .product-detail-right {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.product-detail-main .product-detail-right .product-detail {
  width: 100%;
  background: #1F1F1F;
  padding: 60px;
}
.product-detail-main .product-detail-right .product-detail .detail-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.product-detail-main .product-detail-right .product-detail .detail-tags .tag-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #1E1E1E;
  background: #fff;
  padding: 12px 8px;
  border-radius: 10px;
  min-width: 70px;
  text-align: center;
}
.product-detail-main .product-detail-right .product-detail .detail-tags .tag-item img {
  width: 22px;
  min-width: 22px;
}
.product-detail-main .product-detail-right .product-detail .detail-items {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 20px;
}
.product-detail-main .product-detail-right .product-detail .detail-items .detail-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.product-detail-main .product-detail-right .product-detail .detail-items .detail-item .detail-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-detail-main .product-detail-right .product-detail .detail-items .detail-item .detail-item-title img {
  min-width: 22px;
  width: 22px;
}
.product-detail-main .product-detail-right .product-detail .detail-items .detail-item .detail-item-title span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.product-detail-main .product-detail-right .product-detail .detail-items .detail-item p {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
}
.product-detail-main .product-detail-right .product-calculator {
  width: 100%;
  padding: 24px 30px 0 20px;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--bg-dark1);
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  border: 1px solid var(--border-color4);
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment {
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment label {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #08C46D;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment .nice-select {
  width: 62px;
  min-width: 62px;
  border: none;
  background: var(--calculator-bg);
  border-radius: 10px;
  height: auto;
  min-height: 0;
  line-height: 0;
  padding: 10px 20px 10px 10px;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment .nice-select .current {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--bg-dark1);
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment .nice-select::after {
  border-color: var(--text-dark2);
  right: 14px;
  border-width: 1px;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment .nice-select .list {
  width: 100%;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border-left: 1px solid var(--border-color4);
  border-right: 1px solid var(--border-color4);
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item label {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #08C46D;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 100px;
  position: relative;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count p {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  line-height: 12px;
  color: var(--bg-dark1);
  background: var(--calculator-bg);
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count input[type=radio]:checked + p {
  color: var(--bg-white);
  background: var(--calculator-bg2);
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--bg-dark1);
  text-align: center;
}
.product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--bg-dark1);
  text-wrap: nowrap;
  text-align: center;
}
.product-detail-main .product-detail-right .product-calculator .calculator-notification {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-detail-main .product-detail-right .product-calculator .calculator-notification svg {
  min-width: 14px;
  width: 14px;
  height: 14px;
}
.product-detail-main .product-detail-right .product-calculator .calculator-notification p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #A6A6A6;
}

.model-characteristics-container {
  max-width: 1440px;
  width: 100%;
  margin: 100px auto 0;
  padding: 0 50px;
}
.model-characteristics-container .model-characteristics-slide {
  width: 100%;
  padding-bottom: 6px;
}
.model-characteristics-container .model-characteristics-slide .characteristic-box {
  width: 320px;
  background: var(--bg-characteristic);
  box-shadow: 2px 2px 4px 0px rgba(193, 193, 194, 0.25);
  border-radius: 16px;
  padding: 30px 20px;
  height: auto;
}
.model-characteristics-container .model-characteristics-slide .characteristic-box .box-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
.model-characteristics-container .model-characteristics-slide .characteristic-box .box-title img {
  min-width: 22px;
  width: 22px;
  height: 22px;
}
.model-characteristics-container .model-characteristics-slide .characteristic-box .box-items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
  width: 100%;
}
.model-characteristics-container .model-characteristics-slide .characteristic-box .box-items .box-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.model-characteristics-container .model-characteristics-slide .characteristic-box .box-items .box-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #919191;
}
.model-characteristics-container .model-characteristics-slide .characteristic-box .box-items .box-item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--bg-dark1);
}
.model-characteristics-container .all-characteristics {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #08C46D;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  margin-left: auto;
  width: -moz-max-content;
  width: max-content;
  transition: 0.35s ease-in-out;
}
.model-characteristics-container .all-characteristics:hover {
  background: #175a3a;
}

.other-products {
  max-width: 1440px;
  width: 100%;
  margin: 100px auto 0;
  padding: 0 50px;
  position: relative;
}
.other-products .section-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: var(--bg-dark1);
}
.other-products .other-products-slide {
  margin-top: 40px;
  width: 100%;
  position: initial;
}
.other-products .other-products-slide .other-product {
  width: 320px;
  height: auto;
}
.other-products .other-products-slide .other-product .product-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 26px;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  box-shadow: 3px 4px 4px 0px rgba(197, 199, 202, 0.25);
  border-radius: 12px;
  padding: 24px 20px;
}
.other-products .other-products-slide .other-product .product-card .card-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
}
.other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brand_logo {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color2);
  border-radius: 100px;
  background: #fff;
}
.other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brand_logo img {
  max-width: 30px;
}
.other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brandName {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ADADAD;
}
.other-products .other-products-slide .other-product .product-card .card-head .brand-model {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--bg-dark1);
}
.other-products .other-products-slide .other-product .product-card .card-head .brand-model:hover {
  color: #08C46D;
}
.other-products .other-products-slide .other-product .product-card .card-img {
  width: 100%;
  border-radius: 12px;
  height: 213px;
  position: relative;
}
.other-products .other-products-slide .other-product .product-card .card-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.other-products .other-products-slide .other-product .product-card .card-img .tag {
  top: 10px;
  right: 10px;
  padding: 10px;
  background: #08C46D;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  z-index: 1;
}
.other-products .other-products-slide .other-product .product-card .card-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 12px;
  padding: 0 10px;
}
.other-products .other-products-slide .other-product .product-card .card-body .card-detail-item {
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.other-products .other-products-slide .other-product .product-card .card-body .card-detail-item img {
  min-width: 24px;
  width: 24px;
}
.other-products .other-products-slide .other-product .product-card .card-body .card-detail-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark2);
}
.other-products .other-products-slide .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  right: 50px;
  top: -4px;
}
.other-products .other-products-slide .swiper-buttons .swiper-button-prev, .other-products .other-products-slide .swiper-buttons .swiper-button-next {
  position: initial;
  margin: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 17, 17, 0.78);
  border-radius: 14px;
}
.other-products .other-products-slide .swiper-buttons .swiper-button-prev svg, .other-products .other-products-slide .swiper-buttons .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
.other-products .other-products-slide .swiper-buttons .swiper-button-prev::after, .other-products .other-products-slide .swiper-buttons .swiper-button-next::after {
  display: none;
}

.test_drive_modal {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--bg-modal);
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.test_drive_modal::-webkit-scrollbar {
  width: 3px;
}
.test_drive_modal::-webkit-scrollbar-thumb {
  background: #fff;
}
.test_drive_modal .test_drive {
  max-width: 870px;
  width: 100%;
  background: var(--bg-white);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 20px 60px 60px;
  margin: auto;
}
.test_drive_modal .test_drive .test_drive_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.test_drive_modal .test_drive .test_drive_head .test_drive_logo {
  width: 140px;
  min-width: 140px;
  display: none;
  align-items: center;
  justify-content: center;
}
.test_drive_modal .test_drive .test_drive_head .test_drive_logo img {
  width: 100%;
  height: auto;
}
.test_drive_modal .test_drive .test_drive_head .test_drive_logo .logoDark {
  display: var(--display-block);
}
.test_drive_modal .test_drive .test_drive_head .test_drive_logo .logoWhite {
  display: var(--display-none);
}
.test_drive_modal .test_drive .test_drive_head .close_testDrive {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--bg-dark1);
  border-radius: 12px;
  margin-left: auto;
  width: 45px;
  height: 45px;
  min-width: 45px;
}
.test_drive_modal .test_drive .test_drive_head .close_testDrive svg {
  width: 24px;
  height: 24px;
  filter: var(--filter-select);
}
.test_drive_modal .test_drive h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 52px;
  color: var(--bg-dark1);
  text-align: center;
  margin-top: 50px;
}
.test_drive_modal .test_drive .short-desc {
  margin-top: 12px;
  width: 100%;
  text-align: center;
}
.test_drive_modal .test_drive .short-desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #B2B2B2;
}
.test_drive_modal .test_drive form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  width: 100%;
}
.test_drive_modal .test_drive form .form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.test_drive_modal .test_drive form .form-item label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--bg-dark1);
}
.test_drive_modal .test_drive form .form-item label sup {
  color: #f00000;
}
.test_drive_modal .test_drive form .form-item input {
  width: 100%;
  border: 1px solid #C1C1C1;
  border-radius: 14px;
  padding: 18px 14px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  background: transparent;
  color: var(--text-dark2);
}
.test_drive_modal .test_drive form .form-item input::-moz-placeholder {
  color: #DFDFDF;
}
.test_drive_modal .test_drive form .form-item input::placeholder {
  color: #DFDFDF;
}
.test_drive_modal .test_drive form .form-item .nice-select {
  width: 100%;
  border: 1px solid #C1C1C1;
  border-radius: 14px;
  height: auto;
  min-height: 0;
  line-height: 0;
  padding: 18px 32px 18px 14px;
  background: transparent;
}
.test_drive_modal .test_drive form .form-item .nice-select .current {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark2);
}
.test_drive_modal .test_drive form .form-item .nice-select::after {
  border-color: #C1C1C1;
  right: 20px;
}
.test_drive_modal .test_drive form .form-item .nice-select .list {
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
}
.test_drive_modal .test_drive form .form-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.test_drive_modal .test_drive form .submitTestDrive {
  margin-top: 12px;
  width: 100%;
  text-align: center;
  padding: 20px;
  background: #08C46D;
  border-radius: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.test_drive_modal.active {
  opacity: 1;
  visibility: visible;
}

.mobile_menu_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: var(--bg-modal);
  display: flex;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.mobile_menu_container .mobile_menu {
  width: 100%;
  background: var(--bg-white);
  width: 100%;
  padding: 20px 20px 120px;
  border-radius: 0 0 14px 14px;
}
.mobile_menu_container .mobile_menu .mobile_menu_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile_menu_container .mobile_menu .mobile_menu_head .mobile_menu_logo {
  width: 140px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile_menu_container .mobile_menu .mobile_menu_head .mobile_menu_logo img {
  width: 100%;
  height: auto;
}
.mobile_menu_container .mobile_menu .mobile_menu_head .mobile_menu_logo .logoDark {
  display: var(--display-block);
}
.mobile_menu_container .mobile_menu .mobile_menu_head .mobile_menu_logo .logoWhite {
  display: var(--display-none);
}
.mobile_menu_container .mobile_menu .mobile_menu_head .close_mobile_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--bg-dark1);
  border-radius: 12px;
  margin-left: auto;
  width: 45px;
  height: 45px;
  min-width: 45px;
}
.mobile_menu_container .mobile_menu .mobile_menu_head .close_mobile_menu svg {
  width: 24px;
  height: 24px;
  filter: var(--filter-select);
}
.mobile_menu_container .mobile_menu .mobile-search {
  margin-top: 34px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 2px 2px 4px 0px rgba(174, 174, 174, 0.25);
  border: 1px solid #DBDBDB;
}
.mobile_menu_container .mobile_menu .mobile-search .searchBtn {
  min-width: 22px;
  width: 22px;
  height: 22px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile_menu_container .mobile_menu .mobile-search .searchBtn img {
  width: 100%;
  height: 100%;
}
.mobile_menu_container .mobile_menu .mobile-search input {
  width: 100%;
  border: none;
  padding: 2px 0 2px 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  border-radius: 0;
  border-left: 1px solid #1E1E1E;
  outline: none;
}
.mobile_menu_container .mobile_menu .mobile-search input::-moz-placeholder {
  color: #ADADAD;
}
.mobile_menu_container .mobile_menu .mobile-search input::placeholder {
  color: #ADADAD;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  gap: 20px;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang .current-lang {
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 6px;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang .current-lang span {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-dark1);
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang .current-lang svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang .current-lang svg path {
  fill: var(--text-dark1);
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang .other-langs {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  border-radius: 8px;
  background: var(--bg-dark1);
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 55px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang .other-langs .lang-item {
  width: 100%;
  padding: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  background: transparent;
  color: var(--text-light1);
  border-bottom: 1px solid #414141;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang .other-langs .lang-item:last-child {
  border: none;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang.active .current-lang svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .lang.active .other-langs {
  top: 45px;
  opacity: 1;
  visibility: visible;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .themeModeBtn {
  min-width: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .themeModeBtn img {
  width: 100%;
  height: 100%;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .themeModeBtn .moon {
  display: var(--display-block);
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .themeModeBtn .moon-white {
  display: none;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .themeModeBtn .sun {
  display: var(--display-none);
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .mobile-phone {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #BFD856;
}
.mobile_menu_container .mobile_menu .mobile_menu_bottom .line {
  width: 1px;
  height: 24px;
  background: #D7D7D7;
}

.mobile_menu_container.active {
  opacity: 1;
  visibility: visible;
}

.success-container {
  max-width: 1210px;
  width: 100%;
  margin: 242px auto;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.success-container .success-img {
  max-width: 752px;
  width: 100%;
}
.success-container .success-img img {
  width: 100%;
}
.success-container h1 {
  margin-top: 40px;
  font-size: 50px;
  line-height: 64px;
  color: var(--breadcrump-active-light);
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  text-align: center;
}
.success-container .desc {
  margin-top: 24px;
}
.success-container .desc p {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #868686;
}
.success-container .backLink {
  padding: 18px 90px;
  border-radius: 14px;
  background: #08C46D;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  display: block;
  margin: 40px auto 0;
}

.contact-container {
  max-width: 1440px;
  width: 100%;
  margin: 202px auto 100px;
  padding: 0 50px;
}
.contact-container .breadcrump-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact-container .breadcrump-container .breadcrump-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--breadcrump-light);
}
.contact-container .breadcrump-container .breadcrump-item-current {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--breadcrump-active-light);
}
.contact-container .title {
  margin: 30px auto 0;
  text-align: center;
  font-weight: 500;
  font-size: 52px;
  line-height: 55px;
  color: var(--bg-dark1);
}
.contact-container .contact-boxes {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  width: 100%;
}
.contact-container .contact-boxes .contact-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  width: 100%;
}
.contact-container .contact-boxes .contact-box .contact-box-btn {
  padding: 7px 14px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  border-radius: 14px;
  display: none;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.contact-container .contact-boxes .contact-box .contact-box-btn .branch-logo {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color2);
  background: #fff;
}
.contact-container .contact-boxes .contact-box .contact-box-btn .branch-logo img {
  width: 30px;
}
.contact-container .contact-boxes .contact-box .contact-box-btn .branch_name {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark1);
}
.contact-container .contact-boxes .contact-box .contact-box-btn svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-left: auto;
  filter: var(--social-item);
}
.contact-container .contact-boxes .contact-box .contact-box-inner {
  width: 100%;
  padding: 32px 30px;
  background: var(--bg-home-search);
  border-radius: 16px;
  box-shadow: 2px 2px 4px 0px rgba(169, 169, 169, 0.25);
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-logo-name {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 136px;
  width: 100%;
  justify-content: center;
  margin: auto 0;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-logo-name .branch-logo {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color2);
  background: #fff;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-logo-name .branch-logo img {
  width: 30px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-logo-name .branch_name {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-dark1);
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-sales-box {
  max-width: 266px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-sales-box .box-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--contact-box-title);
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-sales-box .contact-items {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-sales-box .contact-items .contact-item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-sales-box .contact-items .contact-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--bg-dark1);
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-sales-box .contact-items .contact-item .contact-item-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-sales-box .contact-items .contact-item .contact-item-links .contact-item-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #B2B2B2;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-service-box {
  max-width: 266px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-service-box .box-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--contact-box-title);
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-service-box .contact-items {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-service-box .contact-items .contact-item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-service-box .contact-items .contact-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--bg-dark1);
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-service-box .contact-items .contact-item .contact-item-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .contact-service-box .contact-items .contact-item .contact-item-links .contact-item-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #B2B2B2;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-sosials-box {
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-sosials-box .box-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--contact-box-title);
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-sosials-box .branch-sosials {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-sosials-box .branch-sosials .branch-sosial-item {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .branch-sosials-box .branch-sosials .branch-sosial-item img {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  filter: var(--social-item);
}
.contact-container .contact-boxes .contact-box .contact-box-inner .address-road {
  max-width: 160px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .address-road .box-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--contact-box-title);
}
.contact-container .contact-boxes .contact-box .contact-box-inner .address-road .openWaze {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  gap: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  background: #0CBFDF;
  border-radius: 12px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .address-road .openWaze svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.contact-container .contact-boxes .contact-box .contact-box-inner .line {
  width: 1px;
  height: 90px;
  background: #08C46D;
  margin: auto 0;
}
.contact-container .contact-boxes .contact-box.active .contact-box-btn svg {
  transform: rotate(180deg);
  transition: 0.25s ease-in-out;
}
.contact-container .contact-boxes .contact-box.active .contact-box-inner {
  display: flex;
}
.contact-container .contact-suggest-complains {
  width: 100%;
  margin-top: 100px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.contact-container .contact-suggest-complains .suggest-complains-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  max-width: 520px;
  width: 100%;
}
.contact-container .contact-suggest-complains .suggest-complains-content h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 54px;
  color: var(--bg-dark1);
}
.contact-container .contact-suggest-complains .suggest-complains-content .desc {
  width: 100%;
}
.contact-container .contact-suggest-complains .suggest-complains-content .desc p, .contact-container .contact-suggest-complains .suggest-complains-content .desc span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--border-color2);
}
.contact-container .contact-suggest-complains .contact-form {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.contact-container .contact-suggest-complains .contact-form .form-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-container .contact-suggest-complains .contact-form .form-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  width: 100%;
}
.contact-container .contact-suggest-complains .contact-form .form-item label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--bg-dark1);
}
.contact-container .contact-suggest-complains .contact-form .form-item label sup {
  color: #f00000;
}
.contact-container .contact-suggest-complains .contact-form .form-item input, .contact-container .contact-suggest-complains .contact-form .form-item textarea {
  border: 1px solid #C1C1C1;
  outline: none;
  border-radius: 14px;
  background: transparent;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  color: var(--text-dark2);
  padding: 18px 14px;
}
.contact-container .contact-suggest-complains .contact-form .form-item input::-moz-placeholder, .contact-container .contact-suggest-complains .contact-form .form-item textarea::-moz-placeholder {
  color: #DFDFDF;
}
.contact-container .contact-suggest-complains .contact-form .form-item input::placeholder, .contact-container .contact-suggest-complains .contact-form .form-item textarea::placeholder {
  color: #DFDFDF;
}
.contact-container .contact-suggest-complains .contact-form .form-item .nice-select {
  border-radius: 14px;
  width: 100%;
  border: 1px solid #C1C1C1;
  height: auto;
  min-height: 0;
  line-height: 0;
  padding: 16px 36px 16px 14px;
  background: transparent;
}
.contact-container .contact-suggest-complains .contact-form .form-item .nice-select .current {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--bg-dark1);
}
.contact-container .contact-suggest-complains .contact-form .form-item .nice-select::after {
  right: 20px;
  border-color: var(--text-dark2);
}
.contact-container .contact-suggest-complains .contact-form .form-item .nice-select .list {
  width: 100%;
}
.contact-container .contact-suggest-complains .contact-form .form-item textarea {
  resize: none;
  height: 110px;
}
.contact-container .contact-suggest-complains .contact-form .submitContact {
  margin-top: 30px;
  padding: 20px;
  background: #08C46D;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

@media only screen and (max-width: 1250px) {
  nav {
    padding: 30px 16px 0;
  }
  nav .navbar-container {
    padding: 22px 16px;
    gap: 20px;
  }
  nav .navbar-container .navbar-logo {
    width: 154px;
    min-width: 154px;
  }
  nav .navbar-container .navbar-right {
    gap: 16px;
    max-width: 800px;
  }
  nav .navbar-container .navbar-right .nav-search {
    max-width: 280px;
    gap: 6px;
    padding: 14px 16px;
  }
  nav .navbar-container .navbar-right .nav-search .searchBtn {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
  nav .navbar-container .navbar-right .nav-search input {
    padding: 2px 0 2px 10px;
  }
  nav .navbar-container .navbar-right .whatsapp {
    padding: 14px 16px;
    gap: 0;
  }
  nav .navbar-container .navbar-right .whatsapp p {
    display: none;
  }
  nav .navbar-container .navbar-right .test_drive {
    padding: 14px 16px;
    gap: 0;
  }
  nav .navbar-container .navbar-right .test_drive p {
    display: none;
  }
  nav .navbar-container .navbar-right .contactPage-link {
    padding: 14px 16px;
  }
  nav .navbar-container .navbar-right .contactPage-link img {
    display: block;
  }
  nav .navbar-container .navbar-right .contactPage-link p {
    display: none;
  }
  nav .navbar-container .navbar-right .lang .current-lang {
    padding: 8px;
    gap: 5px;
  }
  nav .navbar-container .navbar-right .lang .current-lang span {
    font-size: 18px;
    line-height: 22px;
  }
  nav .navbar-container .navbar-right .lang .current-lang svg {
    min-width: 22px;
    width: 22px;
    height: 22px;
  }
  nav .navbar-container .navbar-right .lang .other-langs {
    top: 50px;
  }
  nav .navbar-container .navbar-right .lang .other-langs .lang-item {
    padding: 6px;
    font-size: 15px;
    line-height: 22px;
  }
  nav .navbar-container .navbar-right .lang.active .other-langs {
    top: 40px;
  }
  nav .navbar-container .navbar-right .themeModeBtn {
    min-width: 22px;
    width: 22px;
    height: 22px;
  }
  nav .navbar-container .navbar-right .nav-phone {
    font-size: 20px;
    line-height: 32px;
  }
  .model-detail-head {
    padding: 0 35px;
    margin: 182px auto 0;
  }
  .model-detail-head .model_name {
    margin-left: 30px;
    font-size: 26px;
  }
  .model-detail-head .shareBtn {
    gap: 8px;
    padding: 10px 30px;
  }
  .model-detail-head .shareBtn p {
    font-size: 15px;
    line-height: 22px;
  }
  .model-detail-head .shared_box {
    top: 55px;
    right: 35px;
  }
  .model-characteristics-container {
    margin: 70px auto 0;
    padding: 0 35px;
  }
  .model-characteristics-container .all-characteristics {
    gap: 8px;
    font-size: 15px;
    line-height: 22px;
    padding: 10px 16px;
  }
  .other-products {
    margin: 70px auto 0;
    padding: 0 35px;
  }
  .other-products .other-products-slide .other-product {
    width: 280px;
  }
  .other-products .other-products-slide .other-product .product-card {
    gap: 14px;
    padding: 16px 10px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head {
    gap: 10px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title {
    gap: 10px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brand_logo {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brand_logo img {
    max-width: 25px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brandName {
    font-size: 14px;
    line-height: 16px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-model {
    font-size: 14px;
    line-height: 16px;
  }
  .other-products .other-products-slide .other-product .product-card .card-img {
    height: 183px;
  }
  .other-products .other-products-slide .other-product .product-card .card-img .tag {
    top: 8px;
    right: 8px;
    padding: 6px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 8px;
  }
  .other-products .other-products-slide .other-product .product-card .card-body {
    gap: 14px 10px;
  }
  .other-products .other-products-slide .other-product .product-card .card-body .card-detail-item {
    gap: 8px;
  }
  .other-products .other-products-slide .other-product .product-card .card-body .card-detail-item img {
    min-width: 20px;
    width: 20px;
  }
  .other-products .other-products-slide .other-product .product-card .card-body .card-detail-item p {
    font-size: 12px;
    line-height: 14px;
  }
  .other-products .other-products-slide .swiper-buttons {
    right: 35px;
  }
  .discover_auto_container {
    margin-top: 70px;
    padding: 55px 0;
  }
  .discover_auto_container .discover_auto {
    padding: 0 35px;
    gap: 30px;
  }
  .discover_auto_container .discover_auto h2 {
    font-size: 28px;
    line-height: 42px;
  }
  .discover_auto_container .discover_auto .desktop_ban_types {
    max-width: 605px;
    grid-template-columns: repeat(4, 125px);
    gap: 20px 10px;
  }
  .discover_auto_container .discover_auto .desktop_ban_types .ban_type {
    gap: 14px;
  }
  .discover_auto_container .discover_auto .desktop_ban_types .ban_type .icon {
    width: 81px;
  }
  .discover_auto_container .discover_auto .desktop_ban_types .ban_type .ban_type_content p {
    font-size: 14px;
    line-height: 18px;
  }
  .discover_auto_container .discover_auto .desktop_ban_types .ban_type .ban_type_content svg {
    min-width: 0;
    width: 0;
    height: 20px;
  }
  .discover_auto_container .discover_auto .desktop_ban_types .ban_type:hover .ban_type_content {
    gap: 8px;
  }
  .discover_auto_container .discover_auto .desktop_ban_types .ban_type:hover .ban_type_content svg {
    min-width: 20px;
    width: 20px;
  }
  footer .footer-container {
    padding-left: 35px;
    padding-right: 35px;
  }
  .product-detail-main {
    margin: 50px auto 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-main .product-images {
    min-height: 644px;
  }
  .product-detail-main .product-images .product-gallery-slide .swiper-buttons {
    left: 35px;
    bottom: 25px;
  }
  .product-detail-main .product-images .campaign-tag {
    top: 25px;
    left: 35px;
    padding: 14px 24px;
    font-size: 18px;
    line-height: 22px;
  }
  .product-detail-main .product-detail-right .product-detail {
    padding: 55px;
  }
  .product-detail-main .product-detail-right .product-detail .detail-items {
    margin-top: 30px;
    gap: 40px 16px;
  }
  .product-detail-main .product-detail-right .product-detail .detail-items .detail-item p {
    font-size: 20px;
    line-height: 24px;
  }
  .product-detail-main .product-detail-right .product-calculator {
    padding: 30px 20px 0 20px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment {
    padding: 10px 12px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months {
    gap: 8px;
    padding: 10px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count p {
    font-size: 10px;
    line-height: 12px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment {
    padding: 12px;
    gap: 8px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment span {
    font-size: 14px;
    line-height: 18px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment p {
    font-size: 18px;
    line-height: 22px;
  }
  .test_drive_modal .test_drive {
    padding: 20px 40px 40px;
    margin: auto;
  }
  .test_drive_modal .test_drive h2 {
    font-size: 44px;
  }
  .test_drive_modal .test_drive .short-desc {
    margin-top: 16px;
  }
  .test_drive_modal .test_drive .short-desc p {
    font-size: 18px;
    line-height: 28px;
  }
  .test_drive_modal .test_drive form {
    margin-top: 25px;
    gap: 20px;
  }
  .test_drive_modal .test_drive form .form-items {
    gap: 20px;
  }
  .brands-container {
    margin: 167px auto 0;
    padding: 0 35px;
  }
  .brands-container .brands-container-head .brand-logo-title {
    gap: 20px;
  }
  .brands-container .brands-container-head .brand-logo-title .brand_logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
  .brands-container .brands-container-head .brand-logo-title .brand_logo img {
    max-width: 45px;
  }
  .brands-container .brands-container-head .brand-logo-title h1 {
    font-size: 42px;
    line-height: 45px;
  }
  .brands-container .brands-container-head .nice-select {
    width: 300px;
    padding: 14px 28px 14px 12px;
  }
  .brands-container .brands-container-head .nice-select::after {
    right: 16px;
  }
  .brands-container .brands-main {
    margin-top: 55px;
  }
  .brands-container .brands-main .brands-left {
    min-width: 280px;
    width: 280px;
  }
  .brands-container .brands-main .brands-left .offer_week {
    gap: 12px;
    padding: 20px 16px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box h2 {
    font-size: 18px;
    line-height: 22px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown {
    gap: 20px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown-box p {
    font-size: 18px;
    line-height: 22px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown-box span {
    font-size: 13px;
    line-height: 15px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown_line {
    height: 18px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide {
    padding-bottom: 26px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card {
    gap: 20px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-img {
    height: 188px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body {
    gap: 20px 10px;
    padding: 0 10px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item {
    gap: 8px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item img {
    min-width: 20px;
    width: 20px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item p {
    font-size: 14px;
    line-height: 16px;
  }
  .brands-container .brands-main .brands-left .filter-area {
    margin-top: 40px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check {
    gap: 12px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-check .filter-check-item {
    gap: 12px;
    padding: 12px 10px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price {
    gap: 10px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price input {
    padding: 14px 10px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price .nice-select {
    padding: 14px 24px 14px 10px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-price .nice-select::after {
    right: 12px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-inputs {
    gap: 20px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item .filter-inputs .filter-input {
    gap: 10px;
    padding: 14px 10px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter .filter-selects .filter-item.active {
    gap: 20px;
  }
  .brands-container .brands-main .brands .all-brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-container .brands-main .brands .all-brands .product-card {
    gap: 14px;
    padding: 16px 10px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head {
    gap: 10px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title {
    gap: 10px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brand_logo {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brand_logo img {
    max-width: 25px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brandName {
    font-size: 14px;
    line-height: 16px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-model {
    font-size: 14px;
    line-height: 16px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-img {
    height: 233px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-img .tag {
    top: 8px;
    right: 8px;
    padding: 6px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 8px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body {
    gap: 14px 10px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item {
    gap: 8px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item img {
    min-width: 20px;
    width: 20px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item p {
    font-size: 12px;
    line-height: 14px;
  }
  .brands-container .brands-main .brands .pagination {
    margin-top: 70px;
    padding-left: 16px;
  }
  .home {
    padding-top: 20px;
  }
  .home nav {
    padding: 0 16px;
  }
  .home .home-hero {
    margin: 70px auto 100px;
    padding: 0 48px;
  }
  .home .home-hero h1 {
    font-size: 55px;
    line-height: 75px;
  }
  .home .home-hero form {
    max-width: 900px;
    margin: 28px auto 0;
    padding: 14px 22px;
    gap: 16px;
  }
  .home .home-hero form .form-items {
    gap: 10px;
    max-width: 680px;
  }
  .home .home-hero form .form-items .form-item .nice-select {
    min-width: 90px;
    padding: 10px 34px 10px 0;
  }
  .home .home-hero form .form-items .form-item .nice-select .current {
    font-size: 14px;
    line-height: 20px;
  }
  .home .home-hero form .form-items .form-item .nice-select::after {
    right: 9px;
  }
  .home .home-hero form .homeSearchBtn {
    padding: 10px;
    max-width: 100px;
  }
  .home .home-hero .home-brands {
    margin-top: 50px;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .success-container {
    max-width: 1010px;
    margin: 200px auto;
    padding: 0 30px;
  }
  .success-container .success-img {
    max-width: 702px;
  }
  .success-container h1 {
    margin-top: 30px;
    font-size: 44px;
    line-height: 56px;
  }
  .success-container .desc {
    margin-top: 20px;
  }
  .success-container .backLink {
    padding: 16px 80px;
    margin: 30px auto 0;
  }
  .contact-container {
    margin: 167px auto 70px;
    padding: 0 35px;
  }
  .contact-container .breadcrump-container .breadcrump-item {
    font-size: 15px;
    line-height: 22px;
  }
  .contact-container .breadcrump-container .breadcrump-item-current {
    font-size: 15px;
    line-height: 22px;
  }
  .contact-container .title {
    font-size: 42px;
    line-height: 45px;
  }
  .contact-container .contact-boxes {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container .contact-boxes .contact-box .contact-box-inner {
    padding: 30px 20px;
    flex-direction: column;
    justify-content: start;
    gap: 24px;
  }
  .contact-container .contact-boxes .contact-box .contact-box-inner .line {
    width: 100%;
    height: 1px;
    background: #08C46D;
    margin: 0;
  }
  .contact-container .contact-suggest-complains {
    margin-top: 70px;
    gap: 20px;
  }
  .contact-container .contact-suggest-complains .suggest-complains-content {
    max-width: 420px;
  }
  .contact-container .contact-suggest-complains .contact-form {
    max-width: 580px;
  }
}
@media only screen and (max-width: 992px) {
  nav .navbar-container .navbar-right .nav-search {
    display: none;
  }
  nav .navbar-container .navbar-right .whatsapp {
    width: 45px;
    height: 45px;
    justify-content: center;
    padding: 0;
  }
  nav .navbar-container .navbar-right .test_drive {
    width: 45px;
    height: 45px;
    justify-content: center;
    padding: 0;
  }
  nav .navbar-container .navbar-right .contactPage-link {
    width: 45px;
    height: 45px;
    justify-content: center;
    padding: 0;
  }
  nav .navbar-container .navbar-right .lang {
    display: none;
  }
  nav .navbar-container .navbar-right .themeModeBtn {
    display: none;
  }
  nav .navbar-container .navbar-right .nav-phone {
    display: none;
  }
  nav .navbar-container .navbar-right .hamburger {
    display: flex;
  }
  .discover_auto_container .discover_auto .desktop_ban_types {
    max-width: 455px;
    grid-template-columns: repeat(3, 125px);
  }
  .product-detail-main {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-detail-main .product-images {
    min-height: 0;
    height: 750px;
  }
  .product-detail-main .product-detail-right .product-detail {
    padding: 55px 35px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count p {
    font-size: 12px;
    line-height: 14px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-img {
    height: 163px;
  }
  .home {
    min-height: 0;
  }
  .home .home-hero {
    margin: 70px auto 0;
  }
  .home .home-hero form {
    display: none;
  }
  .home .home-hero .home-brands {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .home .home-hero .home-brands .home-brand-item {
    height: auto;
    justify-content: start;
    gap: 14px;
  }
  .home .home-hero .home-brands .home-brand-item p {
    display: block;
  }
  .home .home-hero .home-brands .home-brand-item .brand-img {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1px solid #868686;
    border-radius: 100px;
  }
  .home .home-hero .home-brands .home-brand-item .brand-img img {
    max-width: 100%;
    max-height: 100%;
    min-width: 32px;
    width: 32px;
  }
  .home footer {
    margin-top: 100px;
  }
  .mobile_menu_container {
    display: block;
  }
  .contact-container .contact-suggest-complains {
    flex-direction: column;
    align-items: center;
  }
  .contact-container .contact-suggest-complains .suggest-complains-content {
    align-items: center;
  }
  .contact-container .contact-suggest-complains .suggest-complains-content h2 {
    text-align: center;
  }
  .contact-container .contact-suggest-complains .suggest-complains-content .desc p, .contact-container .contact-suggest-complains .suggest-complains-content .desc span {
    text-align: center;
  }
  .contact-container .contact-suggest-complains .contact-form {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  nav {
    padding: 30px 10px 0;
  }
  nav .navbar-container {
    padding: 20px 10px;
    gap: 14px;
  }
  nav .navbar-container .navbar-logo {
    width: 120px;
    min-width: 120px;
  }
  nav .navbar-container .navbar-right {
    gap: 8px;
  }
  nav .navbar-container .navbar-right .contactPage-link, nav .navbar-container .navbar-right .test_drive, nav .navbar-container .navbar-right .whatsapp {
    width: 36px;
    height: 36px;
  }
  nav .navbar-container .navbar-right .contactPage-link img, nav .navbar-container .navbar-right .test_drive img, nav .navbar-container .navbar-right .whatsapp img {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  nav .navbar-container .navbar-right .hamburger {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  nav .navbar-container .navbar-right .hamburger svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .model-detail-head {
    padding: 0 20px;
    margin: 148px auto 0;
  }
  .model-detail-head .model_name {
    margin-left: 0;
    font-size: 20px;
    line-height: 24px;
  }
  .model-detail-head .shareBtn {
    gap: 8px;
    padding: 0;
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .model-detail-head .shareBtn p {
    display: none;
  }
  .model-detail-head .shared_box {
    top: 50px;
    right: 20px;
  }
  .model-characteristics-container {
    margin: 40px auto 0;
    padding: 0 20px;
  }
  .other-products {
    margin: 40px auto 0;
    padding: 0 20px 100px;
  }
  .other-products .other-products-slide {
    height: 650px;
    padding-bottom: 6px;
  }
  .other-products .other-products-slide .other-product {
    width: 180px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title {
    gap: 0;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brand_logo {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brand_logo img {
    max-width: 20px;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-logo-title .brandName {
    display: none;
  }
  .other-products .other-products-slide .other-product .product-card .card-head .brand-model {
    font-size: 13px;
    line-height: 15px;
  }
  .other-products .other-products-slide .other-product .product-card .card-img {
    height: 100px;
  }
  .other-products .other-products-slide .other-product .product-card .card-img .tag {
    top: 8px;
    right: 8px;
    padding: 4px;
    font-size: 10px;
    line-height: 12px;
    border-radius: 4px;
  }
  .other-products .other-products-slide .other-product .product-card .card-body {
    gap: 14px 10px;
    flex-direction: column;
    align-items: start;
    flex-wrap: nowrap;
  }
  .other-products .other-products-slide .other-product .product-card .card-body .card-detail-item {
    gap: 8px;
  }
  .other-products .other-products-slide .other-product .product-card .card-body .card-detail-item img {
    min-width: 20px;
    width: 20px;
  }
  .other-products .other-products-slide .other-product .product-card .card-body .card-detail-item p {
    font-size: 12px;
    line-height: 14px;
  }
  .other-products .other-products-slide .swiper-buttons {
    right: 20px;
    top: auto;
    bottom: 0;
  }
  .discover_auto_container {
    margin-top: 40px;
    padding: 40px 0;
  }
  .discover_auto_container .discover_auto {
    padding: 0 20px;
    gap: 20px;
    flex-direction: column;
    align-items: start;
  }
  .discover_auto_container .discover_auto h2 {
    max-width: 100%;
    font-size: 24px;
    line-height: 36px;
  }
  .discover_auto_container .discover_auto .desktop_ban_types {
    display: none;
  }
  .discover_auto_container .discover_auto .ban_types_slide {
    display: flex;
  }
  footer {
    padding: 20px 0;
  }
  footer .footer-container {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column-reverse;
    align-items: start;
    gap: 50px;
  }
  footer .footer-container .footer-right {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .product-detail-main {
    margin: 40px auto 0;
    position: relative;
  }
  .product-detail-main .product-images {
    min-height: 0;
    height: 650px;
  }
  .product-detail-main .product-images .product-gallery-slide .swiper-buttons {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
  .product-detail-main .product-images .campaign-tag {
    top: auto;
    bottom: 20px;
    left: 20px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 20px;
  }
  .product-detail-main .product-detail-right .product-detail {
    padding: 50px 20px;
  }
  .product-detail-main .product-detail-right .product-detail .detail-tags {
    gap: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 20px;
  }
  .product-detail-main .product-detail-right .product-detail .detail-tags .tag-item {
    gap: 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding: 10px 8px;
    min-width: 50px;
  }
  .product-detail-main .product-detail-right .product-detail .detail-tags .tag-item img {
    width: 20px;
    min-width: 20px;
  }
  .product-detail-main .product-detail-right .product-detail .detail-items {
    margin-top: 0;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box {
    flex-direction: column;
    padding: 20px 10px;
    gap: 20px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment {
    padding: 0;
    gap: 14px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment label {
    font-size: 16px;
    line-height: 20px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .initial_payment .nice-select {
    min-width: 90px;
    width: 90px;
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months {
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid var(--border-color4);
    border-radius: 14px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count p {
    font-size: 12px;
    line-height: 14px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment {
    padding: 0;
    gap: 20px;
    flex-direction: row;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment span {
    font-size: 16px;
    line-height: 20px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .monthly_payment p {
    font-size: 24px;
    line-height: 28px;
  }
  .product-detail-main .product-detail-right .product-calculator .calculator-notification {
    display: none;
  }
  .test_drive_modal {
    background: #fff;
    padding: 0;
  }
  .test_drive_modal::-webkit-scrollbar-thumb {
    background: #000;
  }
  .test_drive_modal .test_drive {
    border-radius: 0;
    padding: 20px 20px 60px;
    margin: auto;
  }
  .test_drive_modal .test_drive .test_drive_head .test_drive_logo {
    display: flex;
  }
  .test_drive_modal .test_drive h2 {
    font-size: 40px;
  }
  .test_drive_modal .test_drive .short-desc {
    margin-top: 26px;
  }
  .test_drive_modal .test_drive form {
    margin-top: 25px;
    gap: 30px;
  }
  .test_drive_modal .test_drive form .form-items {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
  .brands-container {
    margin: 148px auto 0;
    padding: 0 20px;
  }
  .brands-container .brands-container-head .brand-logo-title {
    gap: 16px;
  }
  .brands-container .brands-container-head .brand-logo-title .brand_logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .brands-container .brands-container-head .brand-logo-title .brand_logo img {
    max-width: 38px;
  }
  .brands-container .brands-container-head .brand-logo-title h1 {
    font-size: 32px;
    line-height: 35px;
  }
  .brands-container .brands-container-head .showFilter {
    display: flex;
  }
  .brands-container .brands-container-head .nice-select {
    display: none;
  }
  .brands-container .brands-main {
    margin-top: 40px;
    flex-direction: column;
    gap: 40px;
  }
  .brands-container .brands-main .brands-left {
    min-width: 0;
    width: 100%;
  }
  .brands-container .brands-main .brands-left .offer_week {
    gap: 20px;
    padding: 30px 20px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box {
    flex-direction: row;
    background: transparent;
    border-radius: 0;
    justify-content: space-between;
    padding: 0;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box h2 {
    color: #fff;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown {
    gap: 16px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown-box p {
    color: #fff;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown-box span {
    color: rgba(255, 255, 255, 0.8);
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_box .countdown .countdown_line {
    height: 14px;
    background: #fff;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide {
    padding-bottom: 36px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card {
    flex-direction: row;
    align-items: center;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-img {
    width: 162px;
    min-width: 162px;
    height: 124px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body {
    gap: 30px 20px;
    padding: 0;
    max-width: 300px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item {
    gap: 10px;
  }
  .brands-container .brands-main .brands-left .filter-area {
    margin-top: 0;
    position: fixed;
    background: var(--bg-body);
    z-index: 9;
    top: 130px;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 35px 20px;
  }
  .brands-container .brands-main .brands-left .filter-area .filter-head {
    display: flex;
  }
  .brands-container .brands-main .brands-left .filter-area .filter {
    margin-top: 40px;
    overflow-y: auto;
    height: calc(100svh - 285px);
    padding-right: 10px;
  }
  .brands-container .brands-main .brands .all-brands {
    gap: 20px 12px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head {
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title {
    gap: 10px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brand_logo {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brand_logo img {
    max-width: 20px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-logo-title .brandName {
    display: none;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-head .brand-model {
    font-size: 14px;
    line-height: 16px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-img {
    height: 200px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-img .tag {
    top: 5px;
    right: 5px;
    padding: 8px;
    font-size: 10px;
    line-height: 12px;
    border-radius: 10px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body {
    gap: 14px 10px;
    flex-direction: column;
    align-items: start;
    flex-wrap: nowrap;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item {
    gap: 8px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item img {
    min-width: 20px;
    width: 20px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item p {
    font-size: 12px;
    line-height: 14px;
  }
  .brands-container .brands-main .brands .pagination {
    margin-top: 40px;
    padding-left: 0;
    justify-content: center;
  }
  .home {
    padding-top: 15px;
  }
  .home nav {
    padding: 0 10px;
  }
  .home .home-hero {
    margin: 50px auto 0;
    padding: 0 20px;
  }
  .home .home-hero h1 {
    font-size: 40px;
    line-height: 46px;
  }
  .home .home-hero .home-brands {
    margin-top: 30px;
  }
  .home .home-hero .home-brands .home-brand-item {
    border-radius: 14px;
    padding: 7px 14px;
  }
  .home footer {
    margin-top: 50px;
  }
  .success-container {
    max-width: 100%;
    margin: 150px auto;
    padding: 0 20px;
  }
  .success-container .success-img {
    max-width: 502px;
  }
  .success-container h1 {
    margin-top: 20px;
    font-size: 36px;
    line-height: 44px;
  }
  .success-container .backLink {
    padding: 16px 60px;
  }
  .contact-container {
    margin: 148px auto 40px;
    padding: 0 20px;
  }
  .contact-container .breadcrump-container {
    display: none;
  }
  .contact-container .title {
    font-size: 32px;
    line-height: 35px;
  }
  .contact-container .contact-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-container .contact-boxes .contact-box .contact-box-btn {
    display: flex;
  }
  .contact-container .contact-boxes .contact-box .contact-box-inner {
    display: none;
  }
  .contact-container .contact-boxes .contact-box.active .contact-box-btn svg {
    transform: rotate(180deg);
    transition: 0.25s ease-in-out;
  }
  .contact-container .contact-boxes .contact-box.active .contact-box-inner {
    display: flex;
  }
  .contact-container .contact-suggest-complains {
    margin-top: 40px;
    gap: 24px;
    flex-direction: column;
    align-items: center;
  }
  .contact-container .contact-suggest-complains .contact-form .form-items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  .product-detail-main .product-images {
    height: 500px;
  }
  .other-products .other-products-slide .other-product .product-card .card-body .card-detail-item p {
    color: #AEAEAE !important;
  }
  .brands-container .brands-main .brands-left .offer_week {
    padding: 30px 16px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card {
    gap: 12px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-img {
    width: 122px;
    min-width: 122px;
    height: 84px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body {
    gap: 24px 8px;
    max-width: 100%;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item {
    gap: 6px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item img {
    min-width: 18px;
    width: 18px;
  }
  .brands-container .brands-main .brands-left .offer_week .offer_week_slide .offer_week_item .product-card .card-body .card-detail-item p {
    font-size: 12px;
    line-height: 14px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-img {
    height: 150px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-body .card-detail-item p {
    color: #AEAEAE !important;
  }
}
@media only screen and (max-width: 475px) {
  .product-detail-main .product-images {
    height: 400px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  .product-detail-main .product-detail-right .product-calculator .product-calculator-box .calculator-months .month-item .month-count p {
    font-size: 10px;
    line-height: 12px;
  }
  .brands-container .brands-main .brands .all-brands .product-card .card-img {
    height: 100px;
  }
}/*# sourceMappingURL=index.css.map */