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

@font-face {
  font-family: "MINI";
  src: url("/static/fonts/mini/MINISansSerif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "MINI";
  src: url("/static/fonts/mini/MINISansSerif-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}


@font-face {
  font-family: "MINI";
  src: url("/static/fonts/mini/MINISerif-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "MINI";
  src: url("/static/fonts/mini/MINISerif-Regular.woff2") format("woff2");
  font-weight: 650;
  font-style: normal;
}


a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

:root {
  --font-size: calc(10 / 1920 * 100vw);
  --font-size-mobile: calc(10 / 375 * 100vw);
  --color-blue: #0085AC;
}

[bg="dark"] {
  background: #000;
  color: #fff;
  border-color: #fff;
}

[bg="blue"] {
  background: #0085AC;
  color: #fff;
  border-color: #fff;
}

[bg="light"] {
  background: #fff;
  color: #000;
  border-color: #000;
}

[bg="gray"] {
  background: #F2F2F2;
  color: #000;
  border-color: #000;
}

[bg="dark-gray"] {
  background: #2b2e33;
  color: #fff;
}

[bg="green"] {
  background: #0D3414;
  color: #fff;
}

[color="dark"] {
  color: #000;
}

[color="gray"] {
  color: #7A7A7A;
}

[color="light"] {
  color: #fff;
}

[bg="dark"] .bg-wrapper,
[bg="light"] .bg-wrapper,
[bg="gray"] .bg-wrapper {
  z-index: 0;
}

html {
  font-size: var(--font-size);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 1.4rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: "MINI", sans-serif;
  font-weight: 400;
}

main {
  flex: 1 0 0;
}

.header {
  font-size: 1.6rem;
  position: sticky;
  top: -3.7rem;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  border-bottom: 1px #d9d9d9 solid;
}

.header .content {
  display: flex;
  align-items: center;
  gap: 6.5rem;
}

.header .header_panel .content {
  gap: 13.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_panel {
  font-size: 14px;
}

.header_panel .content {
  gap: 8.9rem;
}

.contact_links {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 46.4.6rem;
}

.contact_links a {
  display: flex;
  align-items: center;
}

.contact_links a strong {
  vertical-align: middle;
  margin-left: 0.66em;
}

.lang_select {
  display: flex;
  align-items: center;
}

.lang_container {
  display: inline-flex;
  margin-left: .4rem;
}

.header_panel .dropdown__link::after {
  filter: none;
}

.header_panel .nav__item {
  padding: 1rem;
}

.header_panel .dropdown__menu {
  background: #000;
}

.lang_select .dropdown__menu {
  padding: 1.5rem;
  border-radius: 1.5rem;
  transform: translate(0%, 2rem);
}

.col {
  display: flex;
  flex-direction: column;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

.dropdown__menu {
  position: absolute;
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 2rem;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  gap: 1rem;
  /* transition: transform 0.4s ease-in-out, opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; */
  pointer-events: none;
}

.bmw_auto_logo {
  padding-right: 2.6rem;
  border-right: 1px rgba(0, 0, 0, 0.45) solid;
  flex-shrink: 0;
}

#header_menu {
  padding: 1.1rem 2rem;
}

@media screen and (max-width: 1000px) {
  #header_menu {
    padding: 1rem 2rem;
    justify-content: space-between;
  }
}

.mini img {
  width: auto;
  height: 4rem;
}

.bmw_auto_logo img {
  height: 3.5rem;
  width: 3.5rem;
}

.bmw_mini_logo img,
.motorrad_logo img {
  max-height: 3rem;
}

.dropdown__link {
  display: inline-flex;
  align-items: center;
}

.dropdown__link::after {
  content: "";
  background: url("/static/img/mini/icons/arrow_sm.svg") no-repeat;
  display: inline-flex;
  width: .8rem;
  height: .4rem;
  margin-left: 1rem;
  filter: invert(1);
}

[bg="dark"] .dropdown__link::after {
  filter: invert(0);
}

.dropdown__item.active .dropdown__menu {
  opacity: 1;
  visibility: visible;
  /* transform: translateY(2rem); */
  pointer-events: auto;
}

.dropdown__menu::-webkit-scrollbar {
  display: none;
}

.dropdown__menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dropdown__item.active .dropdown__link::after {
  transform: rotate(-180deg);
  transition: transform 0.4s ease-in-out;
}

.dropdown__link::after {
  transition: transform 0.4s ease-in-out;
}

.dropdown__item.active .dropdown__link,
.h-opacity:hover {
  opacity: 0.75;
}

.lang_container .dropdown_lang {
  position: absolute;
  top: .2rem;
  left: 0;
  background: #000;
  transition: 0.4s;
  border-radius: 1rem;
  padding: 1rem;
  padding-top: 0;
  display: none;
}

.lang_container:hover .dropdown_lang {
  display: block;
  font-weight: 700;
}

.logo_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2.6rem;
}

.header_top {
  margin-left: auto;
}

.motorrad_logo {
  padding-left: 2.6rem;
  border-left: rgba(0, 0, 0, 0.45) 1px solid;
}

.nav__links .logo_container {
  margin-right: 3rem;

}

.MINI_logo {
  padding-right: 33.3.9rem;
  border-right: #000000 1px solid;
  margin-right: 31.9rem;
}

.bmw_mini_logo {
  display: flex;
  align-items: center;

}

img {
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.content {
  max-width: 176rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  padding: 10.2rem 0 13.1rem;
  position: relative;
}

h1,
.banner_title {
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}

.banner_title {
  padding-bottom: 3rem;
  position: relative;
  margin-bottom: 4rem;
}

.banner_content .subtitle {
  margin-bottom: 3.1rem;
  font-weight: 400;
}

.banner_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 3px;
  background: #fff;
}

h2 {
  font-size: 8rem;
  text-transform: uppercase;
}

.text {
  font-size: 1.8rem;
  font-weight: 650;
}

h3 {
  font-size: 3.6rem;
}

h4 {
  font-size: 2.4rem;
}

.text-xxl {
  font-size: 2.4rem;
  font-weight: 700;
}

.text_outline {
  color: transparent;
  -webkit-text-stroke: .1rem #000;
}

[bg="dark"] .text_outline,
[color="light"] .text_outline {
  -webkit-text-stroke-color: #fff;
}

.phone::before {
  content: "";
  background: url("/static/img/mini/icons/phone.svg") no-repeat;
  background-size: cover;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  float: left;
  margin-right: 2.2rem;
}

.search::before {
  content: "";
  background: url("/static/img/mini/icons/search.svg") no-repeat;
  background-size: cover;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  float: left;
  margin-right: 21.5.1rem;
}



.page_header .crumbs h2 {
  line-height: 1;
}

.page_header .content {
  display: flex;
  justify-content: space-between;
}

.page_description {
  padding-left: 6.7rem;
  max-width: 57rem;
  border-left: 1px #fff solid;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  text-wrap: balance;
}

.page_description .border_top {
  max-width: 17rem;
  font-size: 1.4rem;
  margin-top: 4.5rem;
  padding-top: 2rem;
  border-top: 5px solid #fff;
}

.map_button::before {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/location.svg") no-repeat;
  background-size: cover;
  display: block;
  width: 14.3rem;
  height: 1.6rem;
  float: left;
  margin-right: 22.2.5rem;
}

.socials {
  display: flex;
  align-items: center;
}

.instagram::before {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/instagram.svg") no-repeat;
  background-size: cover;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  float: left;
  margin-right: 21.5.1rem;
}

.facebook::before {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/facebook.svg") no-repeat;
  background-size: cover;
  display: block;
  width: 7.6.2rem;
  height: 14.7.5rem;
  float: left;
  margin-right: 21.5.1rem;
}

.youtube::before {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/youtube.svg") no-repeat;
  background-size: cover;
  display: block;
  float: left;
  margin-right: 21.5.1rem;
  width: 20.9.1rem;
  height: 14.6.3rem;
}

.main_banner {
  height: calc(100vh - 10rem);
  min-height: 50rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#model_page .main_banner{
  height: calc(100vh - 6.2rem - 6.2rem - 3.7rem);
}
.main_banner .content {
  padding: 10vh 2rem 0;
  height: 100%;
}

.banner_content {
  display: flex;
  align-items: start;
  flex-direction: column;
  max-width: 76.5rem;
  text-wrap: balance;
}



.banner_content h3 {
  text-transform: none;
  text-transform: uppercase;
}

.banner_content h1 {
  font-size: 7rem;
}

.banner_sm {
  min-height: 500px;
  height: 50rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6rem 0;
}

.border_left {
  border-left: 6px solid #0085AC;
  padding-left: 2.2rem;

}

.border_left.black {
  border-color: #000;
}

.text_page .flex {
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}

.space-between {
  justify-content: space-between;
}

.space-between .col {
  max-width: 40rem;
}

.text_page .text ul {
  margin-top: 0;
  margin-bottom: 0;
}

.text_page .col .btn {
  margin-top: auto;
}

.text_page .section_name + .text ul {
  margin-top: 1.5rem;
}

.text_page .flex.row {
  flex-direction: row;
  gap: 5.7rem;
  flex-wrap: nowrap;
  align-items: stretch;
}

.text_page .flex.row .icon {
  object-fit: contain;
}

.flex.row .border_left {
  padding-left: 3.9rem;
}

.text_page .container, .dealers_page .container {
  padding: 7rem 0 6rem;
}

.text_page .text {
  margin-bottom: 3rem;
}

.text_page .text p {
  margin-bottom: 1.5rem;
}

.text_page .row.images {
  display: flex;
  gap: 2rem;
  width: 100%;
}

.text_page .row.images img {
  flex: 1;
  max-width: calc(50% - 1rem);
}

.text_page .astanamotors_finance .icon {
  max-width: 14.3rem;
  margin-bottom: 2.5rem;
}


.text_page .astanamotors_finance .text-md {
  margin-bottom: 2.3rem;
}

.text_page .astanamotors_finance .model_bg {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  overflow: visible;
  width: 36.5rem;
  height: 36.5rem;
  margin: 0 auto;
}


.text_page .astanamotors_finance .model_bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.text_page .astanamotors_finance .col .btn {
  margin-top: 0;
}

.text_page .astanamotors_finance .model_bg .circle-text-container {
  width: 40rem;
  height: 40rem;
  max-width: revert;
}

.text_page .astanamotors_finance .col.justify-end {
  justify-content: flex-end;
}


.icon-white {
  filter: brightness(0) invert(1);
}

#news_rubric .border_left, #news_single .border_left {
  border-left: 4px solid;
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  margin: 4rem 0 7.2rem;
}

#news_single .border_left {
  margin: 5.3rem 0 4.7rem;
  max-width: 100%;
}

#news_rubric .border_left .text-lg {
  font-size: 1.8rem;
}

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

#insurance .form_section {
  padding: 9rem 0;
}

.price_num {
  font-size: 5rem;
  font-weight: 700;
  margin-top: 1.2rem;
}

.banner_content .border_left {
  margin-top: 3.7rem;
  margin-bottom: 5.5rem;
  line-height: .75;
}

.price_num .price_currency {
  font-size: 4.4rem;
  font-weight: 400;
}

.bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock_link {
  background: #2b2e33;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3.5rem 0;
  position: relative;
  bottom: 0;
  color: #fff;
  font-size: 2rem;
  left: 0;
}

.model_panel {
  width: 100%;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 10px 10px 0px #0000001A;
  font-size: 1.8rem;
  font-weight: 600;
  left: 0;
}

.model_panel .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.download_btn {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #0085AC;
  font-size: 1.4rem;
}

.download_btn::after {
  content: "";
  display: block;
  background: url("/static/img/mini/icons/download.svg") no-repeat;
  background-size: contain;
  width: 1.4rem;
  height: 1.4rem;
}

.page_nav a:not(:last-child) {
  margin-right: 4rem;
}
.link-underline {
  position: absolute;
  height: 3px;
  background: var(--color-blue);
  bottom: -1px;
  transition: 0.35s ease;
  pointer-events: none;
}
.model_panel .btn {
  font-size: 1.4rem;
  padding: 1.2rem 2.6rem;
}

.model_panel .btn_container {
  background: transparent;
  color: #fff;
  gap: 3.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 4rem;
  border-radius: 45px;
  line-height: 1;
  border: 2px solid;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.w-100 {
  width: 100%;
}

.w-100 img {
  width: 100%;
}

.section_header .btn {
  padding: 1.2rem 3.1rem;
}

.static_navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.static_navigation .swiper-button-prev,
.static_navigation .swiper-button-next {
  position: static;
  transform: none;
  margin-top: 0;
}

.section_header .flex {
  align-items: center;
  gap: 2rem;
}

.newsSlider {
  margin-top: 7rem;
}



.btn_container {
  display: flex;
  align-items: center;
}

.btn_container .btn:not(:last-child) {
  margin-right: 2rem;
}

.btn_white {
  background: #fff;
  color: #000;
  border-color: transparent;
}

.btn_blue {
  background: var(--color-blue);
}

.btn_black {
  background: transparent;
}

.section_header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  font-size: 1.8rem;
}

.section_header p {
  font-size: 1.8rem;
  margin-top: 14.7.6rem;
}

.section_header h2 {
  line-height: 1;
}

.section_header .text {
  max-width: 60%;
}

.tabs__select {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 1.32em;
  position: relative;
}

.tabs__select::after {
  content: "";
  position: absolute;
  width: 100%;
  height: .1rem;
  left: 0;
  background-color: #6f6f6f;
  bottom: -1.7rem;
}

.tab {
  position: relative;
  cursor: pointer;
}

.tab.active {
  font-weight: 600;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1.7rem;
  width: 100%;
  height: .4rem;
  left: 0;
  background: #000;
}

[bg="dark"] .tab.active::after {
  background: #fff;
}

.grid-2 {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
}



.car_chunk {
  display: flex;
  gap: 1.5rem;
  height: 100%;
  width: 100%;
}

.car_chunk .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.car_chunk .row {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}



.model_description {
  position: relative;
  padding-left: 2.2rem;
  border-left: #000 3px solid;
  margin-top: 6rem;
}


.model_price {
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.model_colors {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 1rem;
}

.car_color {
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
}

.car_color[bg="gray"] {
  background: #D9D9D9;
}

.model_specs {
  display: flex;
  color: #7A7A7A;
}

.spec_value {
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid #7A7A7A;
  font-size: 1.8rem;
  color: #7A7A7A;
}

.spec_value:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.price {
  font-size: 2rem;
}

.cell3 .car_img {
  height: 100%;
  right: -50%;
  top: 0;
  transform: scaleX(-1);
}

#modelLine .btn {
  align-self: flex-start;
  float: left;
  margin-top: 58.8rem;
}

#services .block {
  height: 60rem;
  position: relative;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
}

.block .bg-wrapper {
  z-index: 0;
}

.block2 {
  background: #005bf6;
}

.block4 {
  background: #2b2e33;
}

section {
  overflow: hidden;
}

.service_img {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: 0.4s ease-in-out;
}

.block:hover .service_img {
  scale: 1.05;
}

.service_title {
  font-size: 8.1rem;
  font-weight: 700;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: end;
  text-transform: uppercase;
  position: absolute;
  top: 9rem;
  left: 147.6rem;
}

.service_title .text_outline {
  font-weight: 600;
  -webkit-text-stroke: .1rem #fff;
  color: transparent;
  font-size: 8.2rem;
}

.block1 .service_title {
  font-size: 15.8rem;
}

.block1 .text_outline {
  margin-top: -7rem;
}

.service_name {
  position: absolute;
  font-size: 8.2rem;
  left: 14.3rem;
  top: 24.4rem;
  z-index: 10;
}

.block2 .text_outline {
  font-size: 15.8rem;
  margin-bottom: -7rem;
  z-index: 6;
}

.block2 .service_title {
  z-index: 2;
}

.disclaimer {
  position: absolute;
  bottom: 12rem;
  right: 15.1rem;
  width: 12.9rem;
  font-size: 1.2rem;
}

.disclaimer::before {
  content: "";
  width: 100%;
  height: 5pt;
  background: #fff;
  display: block;
  margin-bottom: 2.9rem;
}

.block .btn {
  position: absolute;
  bottom: 11.5rem;
  left: 14.5rem;
  font-size: 1.8rem;
}

.block:nth-child(even) .btn {
  left: revert;
  right: 14.3rem;
}

.block:nth-child(even) .disclaimer {
  right: revert;
  left: 14.3rem;
}

.block3 .service_title {
  top: 17.2rem;
  left: 14.7rem;
}

.block3 .service_name {
  left: 24.6rem;
}

.block3 .disclaimer {
  bottom: revert;
  top: 101.5rem;
  right: revert;
  left: 14.7rem;
}

.block3 .btn {
  color: #000;
  border-color: #000;
}

.block3 .service_img {
  left: revert;
  transform: revert;
  top: 117.8.4rem;
  right: 179.5.5rem;
  max-width: 444.4rem;
}

.block4 .service_title {
  top: 136.5rem;
  left: 147.1.7rem;
}

.block4 .service_name {
  left: 354.1.6rem;
  top: 198.5rem;
}

.news_grid {
  column-gap: 2rem;
  row-gap: 2rem;
  margin-top: 43.8.1rem;
}

#news_rubric .news_grid {
  gap: 7.9rem 7rem;
}

.news_block {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  line-height: 1;
  font-size: 1.8rem;
  position: relative;
}

.news_block .news_date:after {
  content: "";
  width: 100%;
  height: 4pt;
  margin-top: 2.7rem;
  background: #000;
}

.news_img {
  width: 100%;
}

.news_img img {
  width: 100%;
  height: 100%;
}

.news_content {
  padding: 3rem 6rem 9rem;
  width: 100%;
}

.news_block_title {
  position: relative;
  margin-top: 1rem;
}

.news_block_title::after {
  content: "";
  background: #000;
  width: 30%;
  height: 3px;
  position: absolute;
  bottom: -2.2rem;
  left: 0;
}

.news_content h3 {
  margin-bottom: 2rem;
}

.news_content p {
  margin-bottom: 2rem;
}

.news_date {
  font-style: italic;
  font-size: 1.6rem;
}

.link_to {
  cursor: pointer;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.likes {
  display: flex;
  align-items: center;
}

.likes::before {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/heart.svg") no-repeat;
  width: 21.8.3rem;
  height: 2rem;
  background-size: cover;
  margin-right: 1rem;
}

.post_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 33.9.5rem;
  border-top: 1pt rgba(255, 255, 255, 0.25) solid;
  margin-top: 3rem;
}

#instaSlider {
  margin-top: 56.6.6rem;
}

#instaSlider .swiper-slide {
  width: 39rem;
}

#instaSlider .swiper-slide img {
  width: 100%;
  height: 39rem;
}

#instaSlider .instagram::before {
  width: 2rem;
  height: 2rem;
  margin-right: 0;
}

.post_content {
  opacity: 0.45;
  margin: 0 auto;
  margin-top: 23.4.5rem;
  max-width: 35rem;
}

.footer {
  padding: 9.4rem 0 0;
}

.footer_left {
  max-width: 35rem;
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.footer_nav {
  display: flex;
  color: #fff;
  font-size: 1.8rem;
  flex: 1;
  gap: 10.5rem;
}


.footer_logo {
  filter: invert();
}

.footer .copyright {
  margin: 0 auto;
 color: #7A7A7A;
}

.footer .content {
  display: flex;
  column-gap: 9.5rem;
  padding-bottom: 5.8rem;
}

.footer_copyright .content {
  padding-bottom: 4.6rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
}

.footer .lang_select {
  color: #7A7A7A;
}

.footer_nav .nav__menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  max-width: 70%;
}

.footer_nav .nav_link {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.footer_nav .nav_link a {
  text-transform: uppercase;
  color: #fff;
  font-size: 1.8rem;
}

.subnav {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  margin-top: 0.7rem;
  gap: 0.7rem;
  color: #7A7A7A;
  text-transform: uppercase;
}

.nav_link .subnav a {
  color: #7A7A7A;
  font-size: 1.6rem;
}


.footer .instagram::before {
  height: 2rem;
  width: 2rem;
}

.footer .youtube::before {
  width: 2.8rem;
  height: 2rem;
  margin-right: 0;
}

.footer .facebook::before {
  width: 1rem;
  height: 2rem;
}

.footer .instagram::before,
.footer .facebook::before {
  margin-right: 4rem;
}

.footer_panel {
  padding: 2.5rem 0;
}

.footer_panel .content {
  padding-bottom: 0;
}

.footer_panel .footer__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 3.5rem;
  row-gap: 4rem;
}

.life_a_ride {
  border-bottom: 4pt solid #000;
  padding-bottom: 1.4rem;
}


#specs .bg-wrapper {

  inset: revert;
  top: 0;
  left: 0;
  width: 100%;
}

#specs .section_header h2 {
  display: flex;
  flex-direction: column;
}

#specs .section_header h2 .text_outline {
  align-self: flex-end;
}

.specs_container {
  max-width: 62rem;
}

.spec .big_num {
  font-size: 3.2rem;
}

.spec_cell {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

.spec_img {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
}

.title-md {
  font-size: 3.2rem;
  font-weight: 700;
}

#specs .btn {
  border-color: rgba(255, 255, 255, 0.25);
  font-weight: 600;
  margin-top: auto;
  padding: 2rem 4.5rem;
}

.spec_title {
  font-size: 5rem;
  font-weight: 650;
}

.spec_title .unit {
  font-size: 2.4rem;
  font-weight: 400;
}

.spec_col {
  display: flex;
  flex-direction: column;
  gap: 30.1.7rem;
}

.section_divider {
  position: relative;
  height: 82.5rem;
  padding: 12rem 0;
}

.section_divider .content {
  max-width: 115rem;
  position: relative;
  z-index: 1;
}

.section_divider.technologies {
  height: 65rem;
  padding-top: 18rem;
}

.title_border {
  position: relative;
  margin-bottom: 7.7rem;
  margin-top: 1rem;
}



.title_border::before {
  content: "";
  position: absolute;
  bottom: -4.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28rem;
  height: 4px;
  background: #fff;
}

.title_border_black {
  margin-bottom: 5rem;
  margin-top: 1rem;
}

.title_border_black::before {
  background: #000;
  left: 0;
  bottom: -2rem;
  transform: translateX(0);
  width: 20rem;
}

.section_divider .text-lg {
  max-width: 75rem;
  margin: 0 auto;
}

.text-lg {
  font-size: 2rem;
}


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

.model_bg {
  position: absolute;
  height: 60.9rem;
  width: 60.9rem;
  border-radius: 50%;
  top: 50%;
  left: 43%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}


.model_bg img {
  width: calc(100% - 10rem);
  height: calc(100% - 10rem);
  margin: auto;
  display: block;
}

.specs_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 5.8rem;
  margin-bottom: 5.8rem;
}


#specs .content {
  position: relative;
  height: 100%;
}


.model_img {
  position: relative;
}

.model_img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url("/static/img/mini/model/country_bg.png") no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.models_main {
  background: #f2f2f2;
  padding: 12rem 0;
}

.models_main .swiper-slide:nth-child(2n + 1) .model_img::before {
  background: url("/static/img/mini/model/cooper_bg.png") no-repeat;
  background-size: cover;
}

.models_main_slider {
  flex: 1;
  overflow-x: clip;
  min-width: 0;
}

.models_main_slider .swiper-slide {
  max-width: 65rem;
  min-width: 0;
}

.models_main .section_name {
  margin-bottom: 3.4rem;
}

.swiper-slide {
  max-width: 100%;
}

.models_main .swiper-slide:nth-child(2n) .model_img::before {
  background: url("/static/img/mini/model/country_bg.png") no-repeat;
  background-size: cover;
}

.model_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}


.section_name {
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
  z-index: 2;
  position: relative;
  margin-bottom: 4.5rem;
}

.section_name.normal {
  text-transform: none;
}

.section_name:only-child {
  margin-bottom: 3.5rem;
}

.sort {
  position: relative;
  display: flex;
  align-items: baseline;
}

.sort ul {
  list-style-type: none;
  border-radius: 2rem;
  position: absolute;
  left: 20.5rem;
  transition: 0.4s ease;
  width: max-content;
  padding: 0 2rem 1rem;
  z-index: 99;
}

.filters {
  display: flex;
  align-items: center;
  gap: 19.7rem;
}

.filters::before {
  content: "";
  background: url("/static/img/mini/icons/filter.svg") no-repeat;
  background-size: cover;
  display: block;
  width: 15.0.4rem;
  height: 1.5rem;
}

.stocklocator_panel {
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
  margin-top: 33.9.5rem;
}

.filter_sort_container {
  display: flex;
  gap: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sort::before {
  content: url("/static/img/mini/icons/sort.svg");
  float: left;
  display: block;
}

.stock_count {
  color: #5d5d5d;
}

.sort li {
  display: none;
  cursor: pointer;
}

.sort li.active {
  display: block;
}

.sort:hover ul {
  background: #f2f2f2;
}

.sort:hover li {
  display: block;
}

#specs .section_name {
  margin-bottom: 3rem;
}

.hero_container {
  height: 65rem;
  display: flex;
  width: 100%;
  min-height: 650px;
}

/* Removed old styles, now handled by new arc-text implementation */

.hero_container .hero_block {
  height: 100%;
  width: 50%;
  position: relative;
  padding: 8.6rem 8rem;
  color: #fff;
  display: flex;
  flex-direction: column;
}





.text-md {
  font-size: 1.6rem;
  line-height: 1.4;
}


.hero_disclaimer {
  margin-top: auto;
  margin-left: auto;
  max-width: 28rem;
  font-weight: 200;
  z-index: 10;
}


.hero_disclaimer .text-md {
  margin-bottom: 3.2rem;
}

.hero_title {
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 2.3rem;
  border-bottom: 3px solid #fff;
  max-width: 32.6rem;
  line-height: 1;
  z-index: 1;
  position: relative;
}

.scrolling-text-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scrolling-text {
  color: #E0E0E0;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  animation: scrollTextInfinite 20s linear infinite;
  left: 0;
}

@keyframes scrollTextInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.33%);
  }
}

/* Удаляем устаревшие стили */
.scrolling-text.animate {
  animation: none;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

#shopping_tools marquee {
  color: #E0E0E0;
  overflow: visible;
  position: relative;
  transform: translateX(0);
  width: 100%;
  left: 0;
}

#shopping_tools .banner_title {
  display: inline-block;
  visibility: visible;
  opacity: 1;
}


.shopping_tools_grid {
  column-gap: 17.4rem;
  margin-top: 4.8rem;
}

.shopping_tools_item {
  color: #7A7A7A;
}

.shopping_tools_title {
  color: #000;
  padding-bottom: 2.4rem;
  border-bottom: #000 3px solid;
  margin-bottom: 3.1rem;
  margin-top: .3rem;
}

.shopping_tools_subtitle {
  text-transform: uppercase;
}

#test_drive_banner {
  height: 51.9rem;
  min-height: 519px;
}

#test_drive_banner .col {
  justify-content: center;
  align-items: center;
}

#test_drive_banner .text-md {
  color: #7A7A7A;
}

#test_drive_banner .section_name {
  margin: 1.3rem 0 2.5rem;
}


.goBack::before {
  content: "";
  background: url("/static/img/mini/icons/arrow_back.svg") no-repeat;
  background-size: cover;
  width: 4.6rem;
  height: 1.6rem;
  float: left;
  margin-right: 39.5rem;
}

.container-sm {
  padding: 48.8rem 0 12.1rem;
  position: relative;
}

.stock_container {
  display: flex;
  align-items: flex-start;
  gap: 152.3rem;
  margin-top: 35.5.8rem;
}

.stock_container .crumbs {
  padding-bottom: 2.8rem;
  border-bottom: 5pt #000 solid;
}

.stock_container .col:last-child {
  flex-grow: 1;
}

.chars {
  color: #5d5d5d;
  font-size: 1.8rem;
}

.row {
  display: flex;
  align-items: flex-start;
}

.chars .row {
  justify-content: space-between;
}

.line {
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
}

.line::before {
  content: "";
  width: calc(100% - 1.2rem);
  height: 1pt;
  background: #5d5d5d;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: .5rem;
}

.modelSlider {
  max-width: 80rem;
  max-height: 51rem;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.thumbsPreview {
  margin-top: 1rem;
  max-width: 80rem;
}

.thumbsPreview .swiper-slide {
  background: #fff;
  max-width: 193.3rem;
  margin-right: 1rem;
  padding: 1.7rem 11.8rem 19.5rem 22.3rem;
}

.modelSlider .swiper-slide {
  padding: 70.4rem 50.4rem 78.9rem 92.1rem;
}

.design {
  padding: 10rem 0;
  background: #F5F5F5;
  position: relative;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.col-1{
  width: 100%;
}
.col-2{
  width: calc(50% - 2rem);
}

.col-3{
  width: calc(33.333% - 2rem);
}
.mb-2 {margin-bottom: 2rem;}
.card_img {
  height: 45rem;
}
.card {
  display: flex;
  flex-direction: column;
}
.card.full-width {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.card.full-width:first-child {
  margin-top: -10rem;
}
.card.full-width:last-child {
  margin-bottom: -10rem;
}
.card .bg-wrapper {
  z-index: 0;
  filter: brightness(30%);
}
.col-3 .card_img {
  height: 32rem;
}

.card_text {
  padding: 4.8rem 4.5rem 7.8rem;
  flex-grow: 1;
}

.card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card_text {
  padding: 7rem 8rem 7.8rem;
  background: #fff;
}

.card_title {
  margin-top: 1rem;
  position: relative;
  margin-bottom: 5.5rem;
}
.card_title::before {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  left: 0;
  width: 24rem;
  height: 3px;
  background: #000;
}

.gallery_container {
  gap: 1.9rem;
  display: flex;
  flex-wrap: wrap;
}

.gallery_container .swiper-slide {
  display: flex;
  height: auto;
}

.gallery_container img {
  width: 100%;
  height: 100%;
  flex: 1;
  flex-shrink: 0;
}

.gallery_container .col {
  display: flex;
  flex-direction: column;
  row-gap: 1.9rem;
}

.photo {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo:hover img {
  transform: scale(1.05);
}

.photo:nth-child(3n+1) {
  max-width: 41%;
}

.photo:nth-child(3n+2),
.photo:nth-child(3n+3) {
  width: calc(100% - 41% - 1.9rem);
}

.common-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3rem;
  margin-top: 3rem;
  column-gap: 5rem;
}

.form_container {
  flex: 1;
}

.form_section .content{
  display: flex;
  align-items: stretch;
  gap: 6.9rem;
}


.checkbox,
.radio {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
}

.form-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-checkbox+label {
  display: inline-flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  align-items: center;

}

.form-checkbox+label::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 2px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  margin-right: 2rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.form-checkbox:not(:disabled):active+label::before {
  background-color: #0085AC;
  border-color: #0085AC;
}

.form-checkbox:checked+label::before {
  border-color: #0085AC;
  background-color: #0085AC;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuNjc5IDQuNjg2bC0uOTUzLjkzLS40NzYuNDY1TDQuNzc0IDEwLjVsOC44MS04LjYwNUwxMi4xNTMuNWwtNy4zOCA3LjIxLTMuMDk1LTMuMDI0eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
}

.form-checkbox:disabled+label::before {
  background-color: #fff;
}
.checkbox span {
  font-weight: normal;
  font-size: 1.6rem;
}
.radio label {
  margin-left: 1rem;
  cursor: pointer;
}

.form-row {
  position: relative;
  min-height: 5.5rem;
}

.form-label {
  display: block;
  color: #8e8e8e;
}


.form-field {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  color: #000;
  background: none;
  padding: .8rem 0 1.6rem;
  outline: none;
  font-family: "MINI";
}

.error .form-field {
  border-color: #f50537;
}

.errorMessage {
  color: #f50537;
  font-size: 14px;
  margin-top: 10px;
}

.form-msg {
  padding: 0;
  height: 2.8rem;
  line-height: .4rem;
  background-image: linear-gradient(transparent,
      transparent calc(.4rem - 1px),
      #000 0px);
  background-size: 100% .4rem;
}

.form-msg.form-msg-sm {
  height: 1.2rem;
}

.form-btn {
  width: 100%;
  color: #fff;
  background-color: #0085AC;
  font-size: 15px;
  padding: 2.7rem 0;
}

.btn_blue {
  color: #fff;
  border: none;
}

.man_year {
  margin: 2.8rem 0;
}

.stock_container .price {
  font-size: 5rem;
  display: flex;
  align-items: baseline;
  margin: 4rem 0 1.7rem;
}

.warning {
  color: #5d5d5d;
  display: flex;
  margin-top: 2.5rem;
  line-height: 2.2rem;
}

.text_center {
  text-align: center;
  text-transform: uppercase;
}

.warning::before {
  content: "*";
  margin-right: 2.3rem;
}

#stock_single .price h4 {
  font-size: 2.4rem;
}

.form_container .tabs__select {
  font-size: 1.8rem;
  border-color: #000;
  margin-bottom: 6rem;
  width: fit-content;
}

.form_container .tabs__select::after {
  background-color: #000;
}

.form_container .tab.active::after {
  background: #000;
  height: 4pt;
}

#site_search {
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 1pt #fff solid;
  color: #fff;
  font-size: 1.4rem;
  appearance: none;
  display: none;
}

.form_img {
  max-width: 54rem;
}

.form_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pageUp {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  gap: 1rem;
}

.pageUp::before {
  content: "";
  background:  no-repeat;
  width: 2rem;
  height: 2rem;
  rotate: -180deg;
  background: url("/static/img/mini/icons/arrow.svg") no-repeat center center;
  margin-right: 2rem;
  background-size: 0.8rem 1.3rem;
  padding: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pageUp[bg="dark"]::before {
  filter: none;
}

.hidden {
  display: none;
}

.mob {
  display: none;
}

.icon-menu {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  width: auto;
  height: auto;
}

.icon-menu::before {
  content: "";
  background: url("/static/img/mini/icons/burger__menu.svg") no-repeat center;
  width: 2.4rem;
  height: 2.4rem;
  background-size: contain;
  transition: all 0.3s ease;
}

.icon-menu:hover::before {
  opacity: 0.7;
}

/* Анимация переходов для мобильного меню */
.header {
  transition: height 0.3s ease;
}

.nav__links {
  transition: opacity 0.3s ease;
}

.dropdown__menu {
  transition: all 0.3s ease;
}

.burger_menu {
  display: none;
}

.crumbs {
  text-transform: uppercase;
  position: relative;
}

.crumb_separator {
  margin: 0 1rem;
}

.crumb_separator::before {
  content: "/";
}

.pagination {
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  align-items: center;
  gap: 7.1rem;
  margin-top: 7rem;
  font-weight: 700;
}

#page-links-container {
  display: flex;
  align-items: center;
  gap: 1.2em;
}

.pagination .prev,
.pagination .next {
  outline: none;
  border: 1pt solid #000;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.page-link.active {
  border-bottom: 2pt solid #000;
}

.page-link {
  cursor: pointer;
}

.prev-link img {
  transform: scaleX(-1);
}

.content-sm {
  max-width: 116.6rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

#news_single #otherNews .content {
  max-width: 174rem;
}

#news_single #otherNews h3 {
  text-align: center;
  text-transform: uppercase;
}

#news_single #otherNews .news_grid {
  color: #000;
}

#news_single #otherNews .news_grid h3 {
  text-align: start;
}

#news_single .crumbs .news_date,
.note {
  position: absolute;
  top: .4rem;
  left: -13.6rem;
  width: fit-content;
  border-top: 4pt solid #000;
  padding-top: 2rem;
}

#finance .crumbs,
#insurance .crumbs {
  position: static;
}

.insurance_block {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 50%;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10.3rem;
  gap: 3rem;
}

.insurance_block:last-of-type {
  gap: 5rem;
}

[color="light"] .note {
  border-color: #fff;
}

.insurance_block .note {
  max-width: 19.5rem;
  font-weight: 700;
  left: 25.5rem;
}

.insurance_block .btn,
.insurance_img {
  width: 45rem;
}

.insurance_img img {
  width: 100%;
}

.image_row {
  display: flex;
  height: 50rem;
  width: 100%;
}

.note {
  text-transform: uppercase;
  max-width: 135px;
  width: fit-content;
  left: 15rem;
  top: 10.5rem;
}

#news_rubric .container {
  padding-top: 5rem;
}


.crumbs.border_bot {
  border-bottom: 3pt #000 solid;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
}

#news_single .crumbs .section_name {
  margin-top: 1rem;
}

#news_single .container:first-child {
  padding: 9.8rem 0 8.6rem;
}

#news_single .news_single_container {
  padding: 7.7rem 0;
}

.news_announce {
  font-size: 2.4rem;
  font-weight: 700;
}

#news_single .text img {
  width: 100%;
}

.news_slider {
  position: relative;
  /* margin-bottom: 6.2rem; */
  max-height: 62rem;
  overflow: visible;
}

.news_slider .swiper-wrapper {}

#news_single .quote {
  margin: 0;
  padding: 9rem 0 8.7rem;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9.8rem;
}



#news_single .swiper-pagination {
  bottom: -3rem;
}

.full-width {
  min-width: 100vw;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 9.3rem;
  margin-top: 6rem;
}

.full-width:has(.news_slider) {
  padding: 9rem 0;
  background: #F2F2F2;
}

.full-width:last-child {
  margin-bottom: 0;
}

.text p {
  line-height: 1.9;
}

.text p:not(:last-child) {
  margin-bottom: 3.3rem;
}

.text h3,
.text h4 {
  margin-bottom: 3.5rem;
}



#model_page .container:has(.form_img) {
  padding-top: 10.2rem;
}

.text h3:first-child {
  margin-bottom: 4rem;
}

.warning_note {
  padding-top: 5.8rem;
  color: #000;
  flex-direction: column;
  border-top: 1pt #000 solid;
  margin-bottom: 88.9.4rem;
  gap: 32.3.3rem;
  display: flex;
}

.warning_note strong::before,
.warning_note img {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/star.svg");
  background-size: cover;
  width: 26.2.8rem;
  height: 25.5.2rem;
  display: block;
  float: left;
  margin-right: 1rem;
}

.warning_note img {
  margin-right: 34.5rem;
}

.warning_note strong:first-child:before {
  opacity: 0.25;
}

.warning_note::before {
  content: none;
}

.text .img_container {
  margin-bottom: 10rem;
}

.img_container {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 18.9.3rem;
}

.img_container img,
.img_container-big img {
  flex-grow: 1;
}

.img_container-big {
  min-width: calc(100vw - 30rem);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 6rem;
}

#news_single .text h4 {
  font-weight: 400;
}

#news_single p:last-child {
  margin-bottom: 4rem;
}

.text_uppercase {
  text-transform: uppercase;
}

.page_description .btn,
.text .btn {
  align-self: flex-start;
  font-size: 1.4rem;
  padding: 9.5rem 28.5rem 10.5rem;
  margin-top: auto;
  width: 21rem;
  white-space: nowrap;
}

.share {
  padding-top: 46.1.3rem;
  border-top: 3pt solid #000;
  display: flex;
  align-items: center;
  gap: 22.5rem;
}

.share .socials {
  gap: 16.1.2rem;
}

.whatsapp::before {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/whats.jpg") no-repeat;
  background-size: cover;
  width: 78.9.1rem;
  height: 57.6.8rem;
  display: block;
}

.telegram::before {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/tg.jpg") no-repeat;
  background-size: cover;
  width: 78.9.1rem;
  height: 57.6.8rem;
  display: block;
}

.vk::before {
  content: "";
  background: url("https://demo4.codus.kz//static/img/icons/vk.jpg") no-repeat;
  background-size: cover;
  width: 78.9.1rem;
  height: 57.6.8rem;
  display: block;
}

.text ol,
.text ul {
  list-style-position: inside;
  margin-top: -2.2rem;
  margin-bottom: 41.9.9rem;
  list-style-type: none;
  counter-reset: item;
}

.text ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  margin-right: 2.4rem;
}

.text ul li::before {
  content: "•";
  margin-right: 2.4rem;
  color: #0085AC;
}

.text li:not(:last-child) {
  margin-bottom: 1.33em;
}

.author {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 15rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  top: 10.4rem;
}

.author strong {
  border-top: 1pt #000 solid;
  margin-top: 2rem;
  padding-top: 2rem;
}

.author::before {
  content: "";
  background: url("/static/img/mini/icons/quote.svg") no-repeat;
  background-size: contain;
  width: 4rem;
  height: 3.2rem;
}

#news_single p.quote .content {
  display: inline-block;
}

#news_single .news_slider .swiper-slide {
  max-height: 62rem;
}


#news_single .news_slider img {
  margin-bottom: 0;
  height: 100%;
  max-height: 62rem;
}

.news_cover {
  width: 100%;
  max-height: 100vh;
}

.text blockquote {
  font-size: 2.4rem;
  padding: 6.4rem 8.3rem;
  font-weight: 600;
  border: 1px solid #000;
  line-height: 1.7;
  margin-bottom: 7.5rem;
  margin-top: 5rem;
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  background: #fff;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  filter: invert();
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background: url("/static/img/mini/chevron.svg") no-repeat;
  background-size: cover;
  width: 1.18rem;
  height: 1.8rem;
}


.modelSlider .swiper-button-next,
.modelSlider .swiper-button-prev {
  border: 2pt #000 solid;
}

.models_main_swiper_navigation {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.models_main_swiper_navigation .swiper-button-next,
.models_main_swiper_navigation .swiper-button-prev {
  position: static;
  transform: none;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: #fff;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  filter: invert();
  border: 2pt #000 solid;
}

.models_main_swiper_navigation .swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

.models_main .content {
  display: flex;
  column-gap: 17rem;
}

.models_main .col {
  max-width: 27.4rem;
}

.swiper-button-prev::after {
  transform: scaleX(-1);
}

.swiper-button-prev {
  left: 2rem;
}

.swiper-button-next {
  right: 2rem;
}

.photo_note {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 140px;
  position: absolute;
  bottom: 0;
  right: -15rem;
  text-align: right;
}

.photo_note::before {
  content: url(/static/img/icons/star.svg);
  border-bottom: 1pt solid #000;
  width: 100%;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.custom_pagination {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: -25rem;
  gap: 2rem;
  max-width: 13.5rem;
}

.custom_pagination .swiper-pagination {
  font-size: 5rem;
  text-align: left;
  display: block;
  position: static;
  padding-bottom: 2rem;
  border-bottom: 1pt solid #000;
}

#service_form .page_header .text_outline {
  transform: translateX(20%);
}

#side_parts .container:last-child {
  padding-top: 0;
}

.finance_conditions .grid-3 {
  column-gap: 13.6rem;
}

.finance_conditions .col {
  /* padding: 0 15rem; */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.finance_conditions .col:first-child h3 {
  margin-top: 3.7rem;
}

.finance_conditions .col:first-child ul {
  margin-top: 0;
  margin-bottom: 0;
}

.finance_conditions .col:last-child {}

.finance_conditions .col:nth-child(2) {
  border-right: 1px solid;
  border-left: 1px solid;
  border-color: #6f6f6f;

  padding-left: 14.7rem;
  padding-right: 15rem;
}

.finance_conditions .col p {
  margin-bottom: 0;
}

.text {
  font-size: 1.8rem;
}

.text .finance_num {
  text-transform: uppercase;
  font-size: 1.2rem;
}

.text .finance_num h3 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #6f6f6f;
}

.text li {
  display: flex;
  align-items: flex-start;
}

#insurance .tab.active::after {
  background: #000;
}

#insurance .tabs__select {
  margin-bottom: 6rem;
}

.insurance_btn_container {
  display: flex;
  align-items: center;
  margin-top: 3.5rem;
}

.insurance_btn_container a:last-child:not(:only-child) {
  border-left: 1px #000 solid;
  margin-left: 1rem;
  padding-left: 2.2rem;
}

.insurance_container {
  border-top: 1pt #000 solid;
  padding-top: 5rem;
  margin-top: 5.3rem;
}

.bullet_point {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-top: 5.4rem;
  font-weight: 700;
  width: 95%;
}

.bullet_point::before {
  content: "";
  width: .5rem;
  height: .5rem;
  background: #000;
  display: block;
  margin-right: 3.5rem;
}

.dealers_panel {
  padding: 1.8rem 0;
}

.dealers_panel .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dealers_container {
  display: flex;
  position: relative;
}

#map {
  height: 67.5rem;
  flex: 1;
}

.dealer_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dealer_img {
  margin-bottom: 2rem;
}

.dealers_list {
  padding: 6.2rem 7.5rem 5.5rem;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 1.8rem;
  text-wrap: balance;
  height: 100%;
  max-width: 52.4rem;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background: #fff;
  transform: translateX(0%);
  transition: transform 0.3s ease;
}
.f-width {width: 100%; grid-column: -1 / 1}
textarea {
  resize: none;
}
.dealers_list.active {
  transform: translateX(0);
}

.dealers_list .close_btn {
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  display: none;
}


.dealer_name {
  padding-bottom: 2.7rem;
  border-bottom: 1px #000 solid;
  display: flex;
  align-items: center;
  gap: 2.7rem;
}

.dealer_num {
  position: relative;
  width: 3.7rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://demo4.codus.kz//static/img/icons/placemark.svg") no-repeat;
  background-position: 50% 100%;
}

.dealer .data {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dealer .data .row {}

#models .container {
  padding-top: 4rem;
}

.dealer .data .col {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}

.dealer .label {
  width: 11rem;
  margin-right: 2rem;
  font-size: 1.4rem;
  color: #7A7A7A;
}

.dealer .data .value {
  flex: 1;
}

.btn_dark {
  background: #000;
  color: #fff;
}
.dealer {
  padding-bottom: 4rem;
}
.dealer:not(:last-child) {
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}
.dealer .btn {
  font-size: 1.4rem;
  padding: 1.25rem 2rem;
  white-space: nowrap;
}

.dealer .warning {
  font-size: 1.4rem;
}

.dealers_list::-webkit-scrollbar {
  width: 8px;
}

.dealers_list::-webkit-scrollbar-thumb {
  background-color: #e0e0e0;
  border-radius: 6px;
}

.dealers_list::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.dealers_list::-webkit-scrollbar-track {
  background-color: transparent;
}

.accordion-item {
  transition: all 0.3s ease;
}

.accordion-header {
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #f8f8f8;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cars .grid {
  column-gap: 1rem;
  row-gap: 3.3rem;
  margin: 6rem 0;
}

.cars .tabs__select {
  margin-bottom: 6rem;
  width: fit-content;
  font-size: 1.8rem;
}

.cars .text-lg {
  margin-top: 2rem;
}

.text-sm {
  font-size: 1.4rem;
}

.text-gray {
  color: #7A7A7A;
}

.cars .item img {
  width: 80%;
  object-fit: contain;
}

.cars .dropdown__menu {
  left: 0;
  width: 100%;

}

.cars .content {
  width: 100%;
}

.sep {
  margin: 0 .8rem;
}


.footer_panel .text-md {
  max-width: 71rem;
  margin-right: auto;
}
.tabs-head {
  display: flex;
  color: inherit;
  margin-bottom: 4rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.tab-pane:not(.active) {
  display: none;
}
.tabs-head .tab-btn {
  flex: 1;
  color: inherit;
  background: none;
  border: none;
  position: relative;
  padding: 2rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
}
.tabs-head .tab-btn.active::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1500px) and (min-width: 1001px) {
  .content {
    max-width: 100%;
    padding: 0 4rem;
  }

  #header_menu {
    padding: 1.2rem 4rem;
  }

  .header {
    font-size: 1.4rem;
  }

}

.flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pb-0 {
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.full-width-row.form-row {
  grid-column: 1 / -1
}

/* CircleType.js styles */
.circle-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  z-index: 5;
  pointer-events: none;
  transform-origin: center;
}

.circle-text {
  font-family: "MINI", sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: relative;
}

.model_bg .circle-text {
  color: rgba(255, 255, 255, 0.5);
}

/* Rotation animation for circle text */
@keyframes rotateText {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero_car {
  position: absolute;
  left: 19.7rem;
  top: 12.6rem;
  z-index: 0;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero_car img {
  object-fit: contain;
  z-index: 2;
  position: relative;
}



/* Улучшения для планшетов */
@media screen and (max-width: 1200px) {
  .nav__links {
    gap: 2.5rem;
  }

  .header .content {
    gap: 4rem;
  }
}

/* Промежуточный брейкпоинт для планшетов */
@media screen and (max-width: 768px) {
  .icon-menu {
    display: flex;
  }

  .nav__links {
    display: none;
  }

  .header_panel {
    display: none;
  }

  .header.active .nav__links {
    display: flex;
  }

  .header.active .header_panel {
    display: flex;
  }
}

@media screen and (max-width: 1000px) {
  html {
    font-size: var(--font-size-mobile);
  }

  .section_header .text p {
    font-size: 1.4rem;
  }

  body {
    font-size: 1.2rem;
  }

  .mob {
    display: flex;
  }

  .content,
  .content-sm {
    max-width: 100%;
  }

  .header {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column-reverse;
    height: fit-content;
    justify-content: start;
    position: sticky;
    top: 0;
  }

  .header .content {
    flex-wrap: wrap;
  }

  .cell1 .car_img {
    width: 100%;
  }

  .nav__links {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 1.5rem;
    order: 2;
    padding: 0;
  }

  .header_top {
    width: 100%;

    align-items: center;
    justify-content: space-between;
    order: 1;
    background: #fff;
    position: relative;
    z-index: 10000;
    margin-top: 2rem;
    display: none;
  }
  .header.active .header_top {
    display: flex;
  }
  .hero_title {
    font-size: 3.2rem;
  }

  .circle-text-container {
    width: 90%;
    height: 40%;
    top: 46.5%;
  }
  

  .header .content {
    gap: 2rem;
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-y: auto;
  }

  .header .header_panel .content {
    gap: 2rem;
    align-items: flex-start;
  }

  .header .dropdown__menu .content {
    padding: 0;
  }

  .header_panel {
    background: #fff;
    color: #000;
  }

  .header_panel .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  h1,
  .block1 .service_title,
  .block2 .text_outline {
    font-size: 4rem;
    font-weight: 700;
  }

  h2,
  .service_title .text_outline,
  .service_name,
  .block1 .service_title {
    font-size: 3.2rem;
    text-transform: uppercase;
    line-height: normal;
  }

  .cell h2 {
    line-height: 1;
    text-align: right;
  }

  .car_img {
    position: static;
    width: 100%;
  }

  .header_panel {
    font-size: 1.6rem;
  }

  .car_img img {
    transform: translateY(-2rem);
  }

  .footer {
    padding: 4rem 0 0;
  }

  .footer_nav .nav__menu {
    flex-wrap: wrap;
    row-gap: .5rem;
    max-width: 100%;
    column-gap: 2.5rem;
    flex-direction: column;
  }

  .footer_panel .footer__info {
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: 3rem;
  }


  .text {
    font-size: 1.4rem;
  }

  .page_description .btn,
  .text .btn {
    font-size: 1rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  h4 {
    font-size: 1.4rem;
  }

  .stock_link {
    font-size: 1.6rem;
    padding: 1.6rem 0;
  }

  .stock_link a {
    gap: .8rem;
  }

  .stock_link a::before {
    width: 3.5rem;
    height: 2.3rem;
    object-fit: cover;
  }

  .hero_container .btn,
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.35rem 2.65rem;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
  }

  .main_banner .content {
    width: 100%;
  }

  .pc {
    display: none;
  }

  .main_banner {
    min-height: 200px;
    height: 125vw;
  }
  .subtitle {
    display: none;
  }
  .section_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }

  .newsSlider {
    margin-top: 2rem;
  }

  .shopping_tools_title {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .shopping_tools_grid {
    grid-gap: 3rem;
    margin-top: 0;
    grid-template-columns: repeat(2,1fr)!important;
  }

  .shopping_tools_item_img {
    width: 5.6rem;
    margin-bottom: 1.5rem;
  }
  #test_drive_banner {
    min-height: auto;
    height: 80vw;
  }
  .section_header .text {
    max-width: 100%;
  }

  .block2 .text_outline {
    margin-bottom: 0;
  }

  .container {
    padding: 4.08rem 0 5.24rem;
  }

  .tabs__select {
    width: 100%;
    gap: 1.66em;
  }

  .model_panel.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .cars .dropdown__menu {
    margin-top: 1rem;
  }

  .grid-5,
  .grid-2,
  .grid-6,
  #benefits .grid-3,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }

  #benefits .grid-3 {
    margin-top: 2.5rem;
  }

  #mainModelsSlider {
    height: revert;
  }

  .car_chunk {
    flex-direction: column;
  }

  .car_chunk:not(:first-child) {
    margin-top: 2rem;
  }

  .car_chunk .row {
    flex-direction: column;
  }

  #stock_single .section_footer .btn {
    align-self: center;
    margin: 0 auto;
  }

  .cell {
    grid-area: revert;
    padding: 3rem 2rem;
    height: 35rem;
    max-height: revert;
    flex: revert;
    width: 100%;
  }

  .cell1 {
    min-height: revert;
  }

  .cell h2 {
    font-size: 2.4rem;
  }

  .stock_grid {
    grid-template-columns: repeat(4, 1fr);
    overflow-x: auto;
  }

  .stock_grid .stockSlide {
    width: 29rem;
  }

  .series {
    font-size: 1.2rem;
    rotate: 0deg;
    position: static;
    transform: translate(0);
    margin-top: 0;
    margin-left: .2rem;
  }

  .model_description {

    margin-top: 3rem;
  }

  .model_specs {
    justify-content: space-between;
  }

  .cell .model_description {
    width: fit-content;
  }

  .model_name {
    font-size: 1.8rem;

  }

  .banner_title {
    font-size: 3.2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .hero_container {
    height: revert;
    flex-direction: column;
  }

  .hero_container .hero_block {
    width: 100%;
    padding: 4rem 2rem;
    min-height: 50rem;
  }

  .news_content {
    padding: 3rem; 
  }

  .hero_car {
    position: relative;
    top: revert;
    left: revert;
  }

  .model_description::after {
    left: 2.5rem;
    width: calc(100% - 5rem);
    bottom: 1.5rem;
  }

  .spec_value {
    text-wrap: balance;
    font-size: 1.2rem;
    color: #7A7A7A;
    border: none;
    padding-right: 0;
    margin-right: 0;
  }

  .spec_value:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .hero_car img {
    width: 90%;
  }
  .cell .text p,
  .price,
  .model_panel {
    font-size: 1.4rem;
  }

  .page_nav {
    font-size: 1.2rem;
    display: flex;

  }

  .download_btn {font-size: 1.2rem;}

  #modelLine .btn {
    align-self: flex-start;
    float: left;
    margin-top: 35.8.5rem;
  }

  #services .block {
    height: 34rem;
  }

  .block1 .text_outline {
    margin-top: -1.7rem;
  }

  .block .service_img {
    left: 50%;
    top: 50%;
    right: revert;
    transform: translate(-50%, -50%);
    width: 80%;
  }

  .service_title {
    left: 50%;
    top: 20%;
    right: revert;
    transform: translate(-50%, -50%);
  }

  .nav__item {
    width: 100%;
    font-size: 1.6rem;
  }

  .dropdown__link::after {
    margin-left: auto;
  }

  .nav__links {
    gap: 0;
  }

  .dropdown__link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 1rem 0 1rem 2rem;
    background: #f8f8f8;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
  }

  .dropdown__menu a {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    color: #7A7A7A;
  }

  .dropdown__menu a:last-child {
    border-bottom: none;
  }

  .dropdown__item.active .dropdown__menu {
    display: flex;
  }

  .dropdown__item:not(.active) .dropdown__menu {
    display: none;
  }

  .lang_container .dropdown__link::after {
    content: "";
    background: url("/static/img/mini/icons/arrow_sm.svg") no-repeat;
    width: 0.8rem;
    height: 0.4rem;
    margin-left: 1rem;
    filter: invert(1);
  }

  .cars .tabs__select {
    width: 100%;
    max-width: 420px;
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }

  .cars h2 {
    margin-top: 4rem;
    font-size: 2.4rem;
  }

  .cars .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem 1rem;
    margin: 2rem 0;
  }

  .dropdown__menu {
    position: relative;
    padding: 1rem 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: all 0.4s ease-in-out;
    background: transparent;
  }

  .nav__item:not(.active) .dropdown__menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
  }

  .nav__item.active .dropdown__menu {
    max-height: 500px;
    padding: 0;
    margin-top: 0;
  }

  .block .btn {
    left: 2rem;
    bottom: 3rem;
    font-size: 1.4rem;
  }

  .block:nth-child(even) .btn {
    right: 2rem;
    z-index: 10;
  }

  .block:nth-child(even) .disclaimer {
    left: 2rem;
  }

  .disclaimer {
    right: 2rem;
    bottom: 3rem;
    font-size: .8rem;
  }

  .block3 .disclaimer {
    right: 2rem;
    top: 3rem;
    left: revert;
    right: 2rem;
  }

  .disclaimer::before {
    margin-bottom: 1rem;
  }

  .news_grid {
    overflow-x: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  #news_rubric .news_grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3.5rem;
    gap: 3rem;
  }

  #pagination {
    display: none;
  }

  #news_rubric .container {
    padding-top: 8rem;
  }

  #news_rubric .news_grid .news_block {
    width: 100%;
  }

  #instaSlider .swiper-slide img {
    height: auto;
  }

  #model_page .container:has(.form_img) {
    padding-top: 4.8rem;
  }

  .service_name {
    left: 50%;
    transform: translateX(-50%);
    top: 14.8rem;
    white-space: nowrap;
  }

  .block3 .service_title,
  .block4 .service_title {
    top: 70.8.5rem;
    left: 2rem;
    transform: translate(0);
  }

  .block3 .service_name,
  .block4 .service_name {
    left: 128.6.5rem;
    transform: translate(0);
  }

  .block1 .service_title {
    top: 40%;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -50%);
  }

  .news_block {
    font-size: 1.4rem;
  }

  .footer_nav {
    flex-direction: column;
    row-gap: 2rem;
    column-gap: 4rem;
    display: none;
  }

  .footer .lang_select {

  display: none;
}

.footer .content {
  padding-bottom: 3rem;
  flex-direction: column;
  gap: 2rem;
}

  .text-md {font-size: 14px;}

  .price_num {
    font-size: 2.8rem;
  }
  .banner_content .border_left {
    margin: 0 0 3rem;
  }
  .banner_content h1 {font-size: 4rem;margin-bottom: 1rem;}
  .footer .instagram::before,
  .footer .facebook::before {
    margin-right: 2rem;
  }

  .footer .socials {
    margin-left: auto;
  }

  .subnav {
    font-size: 1.4rem;
    margin-top: 1rem;
  }

  .MINI_logo {
    padding-right: 1rem;
    border-right: #000000 1px solid;
    margin-right: 1rem;
    max-width: 12rem;
  }



  .model_panel .btn {
    font-size: 1.2rem;
    padding: 1.25rem 2.65rem;
  }


  .specs_container {max-width: 100%;}

  .content .content-sm {
    padding: 0;
  }

  .img_container-big {
    overflow-x: auto;
  }

  .model_panel .content {
    white-space: nowrap;
  }
  .car__name {display: none;}
  .lang_select .dropdown__menu {
    display: block;
    padding: 0;
    background: none;
    color: #000;
    transform: none;
  }



  .model_panel .btn_container {
    gap: 2rem;
    width: 100%;
  }

  .model_panel .btn_container .btn {
    flex-shrink: 0;
    flex: 1;
  }

  .text p {
    line-height: 1.5;
  }

  .model_img {
    width: 100%;
    height: auto;
    position: relative;

  }
  .main_banner .content {
    padding: 4rem 2rem 0;
  }
  .banner_content {
    max-width: 100%;
  }


.hero_disclaimer {
  max-width: 100%;
  margin-left: 0;
}





  .burger_menu .content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4rem;
  }

  .close_menu {
    display: none;
  }

  .open_menu,
  .close_menu {
    width: 1.6rem;
    height: 1.1rem;
  }

  .lang_container ul {
    color: #000;
    background: transparent;
  }

  .spec .big_num {
    font-size: 2rem;
    max-width: 100%;
    line-height: 1;
  }


  .spec {
    max-width: 100%;
  }

  .specs_tab {
    font-size: 14px;
    margin-top: 4rem;
    flex-wrap: wrap;
    column-count: 1;
    margin-bottom: 3rem;
  }

  .spec_col:last-child {
    text-align: start;
    align-items: flex-start;
    margin-left: 12%;
  }

  .specs_tab h3 {
    padding-right: 0;
    margin-right: 0;
    max-width: revert;
    padding-bottom: 3rem;
    border-right: none;
    border-bottom: 1pt #000 solid;
  }

  .specs_tab .text {
    margin-right: 0;
    max-width: revert;
  }
  #specs .btn_container {
    flex-wrap: wrap;
  }
  #specs .btn_container{
    gap: 1rem;
  } 
  #specs .btn {
    margin-top: 0;
    margin-left: 0;
    padding: 1.25rem 2.5rem;
  }

  .btn_container .btn:not(:last-child) {
    margin-right: 1rem;
  }

  .btn_container {align-items: stretch;}

  .model_bg {width: 20rem; height: 20rem; top: auto; left: 2rem; bottom: -6rem;}

  .model_bg img {width: 100%; height: 100%;}


  .model_bg .circle-text-container {display: none;}

  .text-xxl {
    font-size: 1.8rem;
  }

  #specs .bg-wrapper {
    max-height: 45%;
    inset: 0;
  }

  .benefits_container {
    margin-top: 3.5rem;
    row-gap: 2.5rem;
  }

  .benefit {
    grid-area: revert;
    width: 100%;
  }

  .benefit .text {
    font-size: 14px;
  }

  .benefit h3 {
    margin: 1.5rem 0 3rem;
  }

  .photo {
    grid-area: revert;
    max-height: 100%;
  }

  .photo img {
    max-height: 100%;
    width: 100%;
  }

  .gallery_container {
    display: block;

  }
  .gallery_container .swiper-pagination {bottom: 2rem;}
  .gallery_container .swiper-pagination-bullet-active {background: var(--color-blue);}
  .gallery_container .photo {
    width: 100%;
    max-width: 100%;
  }
  .form-checkbox+label::before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .stockSlide .stockSlide {
    padding: 3rem 2rem;
  }
  .pageUp {display: none;}
  .nested-slider .swiper-pagination-bullet {
    border-radius: 0;
    margin: 0 !important;
    width: 20.1.6rem;
    height: .2rem;
    margin-right: 5.2.6rem !important;
  }


  .old_price {
    font-size: 1rem;
    margin-left: 1rem;
  }

  .stockSlide h4 {
    font-weight: 400;
    margin: .8rem 0;
  }

  .section_footer {
    flex-wrap: wrap;
    row-gap: 2rem;
  }

  .pageUp {
    font-size: 1.4rem;
  }

  .form_container {
    width: 100%;
    padding: 0 2rem;
  }

  .form_container .tabs__select,
  .checkbox,
  .radio,
  .form-field {
    font-size: 1.4rem;
  }

  .common-form {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.6rem;
  }

  .form_img {
    width: 100%;
    max-width: 100%;
  }

  .form_container .tabs__select {
    justify-content: normal;
    width: 100%;
  }

  .form-field {
    padding-bottom: 1.1rem;
  }

  .form-row {
    position: relative;
    min-height: 4.5rem;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    min-width: 100%;
    flex-direction: column;
  }

  .text-lg {font-size: 1.4rem;}

  .header .phone::before,
  .header .search::before,
  .header .map_button::before,
  .header .socials,
  .header .lang_select::after {
    filter: invert();
  }

  .icon-menu {
    display: flex;
    padding: 0;
  }

  .lang_select::after {
    top: 50%;
    transform: translateY(-50%);
    right: -1.5rem;
    width: 1.2rem;
    height: .6rem;
  }

  .nav__links {
    display: none;
  }

  .nav__item {
    width: 100%;
  }

  .nav_link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
  }

  .header_panel {
    display: none;
    order: 3;
    width: 100%;
    padding: 2rem 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 2rem;
  }



  .header {
    height: fit-content;
  }

  .header.active {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
  }

  .header_panel .content {
    padding: 0;
  }

  .noscroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .header.active .nav__links {
    display: flex;
  }

  .header.active .header_panel {
    display: flex;
  }

  .header.active .icon-menu::before {
    background: url("/static/img/mini/icons/cross.svg") no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
  }

  .footer_panel .content {
    flex-wrap: wrap;
    row-gap: 2.8rem;
  }

  .footer_panel .lang_select::after {
    filter: invert();
  }
  #specs .section_name {
    margin-top: 5px;
    margin-bottom: 2rem;
  }
  .section_name {
    margin-bottom: 2.4rem;
  }
  .model_panel {top: 0;padding: 0}
  .model_panel .content {
    overflow-x: auto;
    padding: 1.5rem 2rem;
  }
  .model_panel .btn_container .btn {display: none;}
  .page_nav a:not(:last-child) {
    margin-right: 2rem;
  }
  .section_divider {
    height: max-content;

    padding-top: 4rem;
    padding-bottom: 30rem;
  }

  .design .card_text {padding: 3rem 2rem;}

  .design {padding: 4rem 0;}

  .cards {flex-direction: column;}

  .card_img  {height: 18rem;}

  .spec_col:first-of-type {
    margin-right: 1rem;
  }

  .dealers_container {
    flex-direction: column-reverse;
    position: relative;
  }

  .content-sm .form_container {padding: 0;}

  .text_page .flex {gap: 2rem;}

  .dealers_list .close_btn {display: none;}

  .dealers_list {
    display: flex;
    flex-direction: column;
    padding: 3.6rem 2rem 3.6rem;
    font-size: 1.2rem;
    height: fit-content;
    max-height: revert;
    width: 100%;
    max-width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    min-width: revert;
  }

  #insurance .form_section {padding: 4rem 0;}

  #finance .container:first-child .flex{flex-direction: column; gap: 2rem; align-items: flex-start; margin-top: 1.2rem;}

  .text_page .flex.row {flex-direction: column; gap: 3.2rem;}

  .title_border_black {margin-bottom: 2rem;}

  .title_border_black::before {bottom: -1rem;}

  .text_page .astanamotors_finance .model_bg {width: 100%; height: auto; order: 4; position: relative; bottom: auto; left: auto; transform: none;}

   #finance .container:first-child .flex .icon {max-height: 3rem;}

   .text ul li::before {margin-right: 1.8rem;}

   .text_page .row.images {flex-direction: column; gap: 2rem;}

   .text_page .row.images img {max-width: 100%;}
   .flex.row .border_left {padding-left: 2rem;}


  .dealers_list .btn_container .btn:not(:last-child) {
    margin-right: 0;
  }

  .accordion-header {
    padding: 1rem;
    margin: -1rem;
    border-radius: 0.5rem;
  }

  .dealer .data .value {
    width: 207.1.8rem;
  }

  .dealer .btn_container {
    flex-direction: column;
    gap: 1rem;
  }

  .dealer .btn {
    width: 100%;
    font-size: 1.2rem;
  }

  .btn_black {
    background: transparent;
    border: 1px #000 solid;
  }

  .dealer .data {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .dealer .warning {
    font-size: 1rem;
  }

  .dealer_name {
    padding-bottom: 1.7rem;
    border-bottom: 1pt #000 solid;
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .mini img {
    height: 3rem;
  }

  #map {
    height: 120vw;
    max-height: revert;
    width: 100%;
    flex: revert
  }

  .dealers_panel .content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .dealers_panel .btn {
    margin-top: 0;
    align-self: center;
  }

  .text_page .container, .dealers_page .container {
    padding: 4rem 0;
  }

  .image_row {
    flex-direction: column;
    height: revert;
  }

  .insurance_block {
    width: 100%;
    padding: 5rem 2rem;
  }

  .insurance_block .btn,
  .insurance_img {
    width: 100%;
  }

  .insurance_block .note {
    position: static;

    align-self: flex-start;
  }

  .note {
    position: static;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .text h3:first-child,
  .text h2,
  .text h3,
  .text h4 {
    margin-bottom: 2rem;
  }

  .text blockquote {
    padding: 2rem;
    font-size: 1.4rem;
    margin: 2rem 0;
  }

  .full-width:has(.news_slider) {
    padding: 4rem 0;
  }

  #news_single .container:first-child {
    padding: 4rem 0;
  }

  #news_rubric .border_left, #news_single .border_left {
    padding-left: 2rem;
    margin: 3rem 0;
  }

  .border_left.black {
    border-color: #000;
  }

  #news_single .news_single_container {
    padding: 5rem 0;
  }

  .logo_container {justify-content: normal;}

  #insurance .tabs__select {
    margin-bottom: 4rem;
    justify-content: normal;
    gap: 2em;
  }

  .insurance_btn_container {
    margin-top: 1.5rem;
  }

  .text p {
    margin-bottom: 1.8rem;
  }

  .insurance_container {
    padding-top: 2rem;
    margin-top: 2.1rem;
  }

  .bullet_point {
    margin-top: 2.4rem;
  }

  .warning_note {
    padding-top: 2.8rem;

    margin-bottom: 38.9.4rem;
    gap: 17.3.3rem;
  }

  .section_name {
    line-height: 1;
    font-size: 2.8rem;
  }

  .content .form_container {
    padding: 0;
  }

  .crumbs .section_name {
    margin-top: 1rem;
  }

  .finance_conditions .grid-3 {
    row-gap: 4.5rem;
  }

  .service_img {
    top: revert;
    left: revert;
    transform: translate(0);
    position: relative;
    padding: 4rem;
  }

  #accessories .page_description {
    color: #000;
    border-color: #000;
  }

  #accessories .page_description .border_top {
    border-color: #000;
  }

  .finance_conditions .col:nth-child(2) {
    border: none;
    padding-left: 0;
    padding-right: 0;
  }

  .text .finance_num h3 {
    margin-bottom: 1rem;
  }

  .news_announce {
    font-size: 1.4rem;
  }


  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  #news_single .crumbs,
  .crumbs.border_bot {
    border-bottom: 3pt #000 solid;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .page_header .content {
    flex-direction: column;
  }

  .page_header .crumbs {
    max-width: 100%;
  }

  .page_description {
    padding-left: 2rem;
    max-width: 57rem;
    border-left: 1px #fff solid;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
  }

  .page_description .btn {
    margin-top: 1rem;
  }

  .benefits_slider {
    margin-top: 4.5rem;
  }

  #stockSlider .stockSlide {
    padding: 3rem 2rem;
  }

  .form_section .content {flex-direction: column;}


  #benefits {
    padding-top: 0;
  }

  .btn_blue {
    color: #fff;
    font-weight: 700;
    border: none;
  }

  .img_container {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 18.9.3rem;
    flex-wrap: wrap;
  }

  .full-width {
    min-width: 100vw;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 4.3rem;
    margin-top: 2rem;
  }

  .text .img_container {
    margin-bottom: 4rem;
  }

  .stock_container {
    flex-direction: column;
  }

  .modelSlider {
    max-width: 100%;
    max-height: 51rem;
    width: 100% !important;
  }

  .thumbsPreview {
    margin-top: 1rem;
    max-width: 100%;
    display: none;
  }

  .modelSlider .swiper-slide {
    max-width: 100%;
    width: 100% !important;
    padding: 3rem 2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    background: #fff;
    width: 2rem;
    height: 2rem;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    content: "";
    background: url(/static/img/chevron.svg) no-repeat;
    background-size: cover;
    width: .58rem;
    height: .9rem;
  }

  .models_main .content {
    flex-direction: column;
  }

  .models_main_swiper_navigation {
    margin-top: 3rem;
    margin-bottom: 5rem;
  }

  .models_main .section_name {
    margin-bottom: 2rem;
  }

  .chars {
    font-size: 14px;
  }

  .chars_label {
    max-width: 51%;
  }

  .chars .row {
    align-items: flex-end;
  }

  .chars .row:not(:last-child) {
    margin-bottom: 1.4rem;
  }

  .stock_container {
    display: flex;
    align-items: flex-start;
    gap: 40.3.7rem;
    margin-top: 35.5.8rem;
  }

  .stock_container .price {
    font-size: 2rem;
    display: flex;
    align-items: baseline;
    margin: 4rem 0 17.7.9rem;
  }

  #stock_single .price h4 {
    font-size: 1.4rem;
  }

  .page_description .border_top {
    margin-top: 2.5rem;
  }

  .goBack::before {
    content: "";
    background: url(/static/img/icons/arrow_back.svg) no-repeat;
    background-size: contain;
    width: 4.6rem;
    height: 1rem;
    float: left;
    margin-right: 11.5rem;
  }

  .page_header .crumbs h2 {
    margin-top: 1rem;
  }

  #news_single .quote {
    margin: 0;
    padding: 9rem 0 8.7rem;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 3rem;
  }

  .author {
    position: static;
    order: 4;
    align-self: flex-end;
    margin-right: 2rem;
    margin-top: 3rem;
  }

  .form-btn {
    padding: 1.8rem 2.5rem;
  }

  .hero_car {
    position: static;
    width: 100%;
    margin: 2rem auto;
  }



  .circle-text {
    letter-spacing: 0.05em;
  }

  .author strong {
    border-top: 1pt #000 solid;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .vk::before,
  .whatsapp::before,
  .telegram::before {
    width: 39.45.5rem;
    height: 28.8.4rem;
  }

  .share {
    padding-top: 26.1.3rem;
    border-top: 3pt solid #000;
    display: flex;
    align-items: center;
    gap: 12.5rem;
  }
  .card.full-width:first-child {
    margin-top: 0;
  }
  .card.full-width {
    margin-bottom: 2rem;
  }
  .col-2, .col-3 {
    width: 100%;
  }
  .models_main .col {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  .title-md {
    font-size: 2.4rem;
  }
  .title_border::before {
    bottom: -2.5rem;
    width: 14rem;
    height: 2px;
  }
  .title_border,
  .card_title {margin-bottom: 5rem;text-wrap: balance;}
  .section_divider {padding-bottom: 50%; height: 70vh;}
  .spec_cell {
    gap: 1rem;
  }
  .spec_img {
    min-width: 5rem;
    width: 5rem;
    height: 5rem;
  }
  .spec_img img {object-fit: contain;}
  .spec_title .unit {display: none;}
  .spec_title {
    font-size: 2.4rem;
  }
  
  .specs_grid {gap: 2rem; margin-bottom: 3rem;}
  .tabs-head {margin-bottom: 2.5rem;}
  .tabs-head .tab-btn {
    font-size: 1.2rem;
    padding: 1.5rem;
  }
  .model_specs_img {
    margin-top: 3rem;
  }
  .footer_left {
    text-align: center;
    align-items: center;
  }
  .footer_panel {display: none;}
  .form_section .content {
    gap: 4rem;
  }
  #model_page .main_banner{
    height: calc(100vh - 4.2rem - 4.7rem);
  }
  .cars .item img {
    width: 50%;
    margin-right: 2rem;
  }
}