@charset "UTF-8";
:root {
  --max-container: 1740px;
  --max-container-narrow: 1600px;
  --font: 'Montserrat',sans-serif;
  --primary: #282F2F;
  --gray: #798383;
  --green: #3DBF00;
  --bg-box: #F8F7F7;
  --bg-box-gray: #EFEFEF;
  --bg-box-dark: #2E3138;
  --font-dark: #282F2F;
  --font-gray: #8E8E89;
  --border: #CED7D9;
  --bg-dark: #222222;
  --bg-card: #fff;
  --bg-menu: #fff;
  --bg-color: #fff;
  --primary-dark: #282F2F;
  --secondary: #D22735;
  --white-font-color: #fff;
  --japan-color: #C2041E;
  --china-color: #4CA1F8;
  --korea-color: #994CF8;
  --nav-item-border-radius: 14px;
  --btn-border-width: 2px;
  --accent-surface: linear-gradient(135deg, #0a0a10, #171320 55%, #0a0a10);
  --accent-glow:
      radial-gradient(circle at 35% 45%, rgba(130, 100, 255, .7), transparent 60%),
      radial-gradient(circle at 70% 55%, rgba(60, 150, 255, .55), transparent 60%);
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/subset-Montserrat-Light.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/subset-Montserrat-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/subset-Montserrat-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/subset-Montserrat-SemiBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/subset-Montserrat-Bold.woff2") format("woff2");
  font-display: swap;
}
@keyframes translateArrow {
  0%, 100% {
    top: 0;
    left: 0;
  }
  50% {
    top: -3px;
  }
}
@keyframes translateArrowDown {
  0%, 100% {
    top: 0;
    left: 0;
  }
  50% {
    top: 4px;
    left: 4px;
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  99% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hdr-fixed-in {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hdr-fixed-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}
@keyframes hero-fab-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-fab-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}
@keyframes hdr-accent-pulse {
  0%, 100% {
    filter: hue-rotate(0deg);
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    filter: hue-rotate(80deg);
    opacity: 1;
    transform: scale(1.1);
  }
}
html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: inherit;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: normal;
  color: var(--primary);
  background: #333;
  transition: background 0.4s;
}

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

.wrap {
  width: 100%;
  overflow-x: hidden;
  background: var(--bg-color);
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

a,
a:focus,
button,
button:focus,
input,
input:focus {
  outline: 0;
  text-decoration: none;
}

.section-title {
  margin: 0 0 30px;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: var(--primary);
}
.section-title > span {
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .section-title {
    margin-bottom: 30px;
    font-size: 38px;
  }
}
@media (max-width: 1199px) {
  .section-title {
    margin-bottom: 30px;
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .section-title {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
@media (max-width: 374px) {
  .section-title {
    font-size: 22px;
  }
}
.section-title--inner {
  font-size: 45px;
}
@media (max-width: 1739px) {
  .section-title--inner {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .section-title--inner {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .section-title--inner {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
.section-title--sm {
  font-size: 36px;
  margin-bottom: 40px;
}
@media (max-width: 1739px) {
  .section-title--sm {
    font-size: 26px;
    margin-bottom: 35px;
  }
}
@media (max-width: 1199px) {
  .section-title--sm {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .section-title--sm {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
@media (max-width: 374px) {
  .section-title--sm {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.section-title:last-child {
  margin-bottom: 0;
}

h1.section-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 30px;
}

h1.section-title .btn {
  padding: 20px 40px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  h1.section-title .btn {
    padding: 16px 30px;
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  h1.section-title .btn {
    font-size: 14px;
  }
}

.link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 14px;
}
.link span {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .link span {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .link span {
    font-size: 14px;
  }
}
.link svg {
  position: relative;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  transform: rotate(135deg);
  fill: none;
  stroke: var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .link svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 575px) {
  .link svg {
    width: 16px;
    height: 16px;
  }
}
.link:hover svg {
  top: -3px;
}
.link--down svg {
  transform: rotate(225deg);
}
.link--down:hover svg {
  top: 3px;
}
.link svg.yt_ico {
  transform: rotate(0);
}

.section__text {
  max-width: 800px;
  margin: 0 0 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .section__text {
    margin-bottom: 40px;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .section__text {
    max-width: 600px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .section__text {
    font-size: 12px;
  }
}
.section__text:last-child {
  margin-bottom: 0;
}
.section__text p {
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .section__text p {
    margin-bottom: 20px;
  }
}
.section__text p:last-child {
  margin-bottom: 0;
}
.section__text p span {
  color: var(--secondary);
}
.section__text p a {
  display: inline-block;
  color: var(--secondary);
  text-decoration: underline;
}
.section__text__14 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.text {
  max-width: 665px;
  margin-bottom: 60px;
}
@media (max-width: 1739px) {
  .text {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .text {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .text {
    margin-bottom: 30px;
  }
}
.text p {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .text p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .text p {
    font-size: 12px;
  }
}
.text p a {
  font-weight: 600;
  color: var(--secondary);
}

.sidebar-title {
  margin: 0 0 24px;
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1739px) {
  .sidebar-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .sidebar-title {
    font-size: 16px;
  }
}

ol.content-list {
  margin: 10px 0 40px;
}

ol.content-list li {
  margin: 10px 0;
}

ol.content-list li a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary);
}

ol.content-list li a:hover {
  border-bottom-color: transparent;
}

h2.section-title.section-title--inner {
  font-size: 24px;
  line-height: 130%;
}

.tpl-text-default {
  line-height: 150%;
}
.tpl-text-default a {
  color: var(--secondary);
}

.formated_text a {
  color: var(--secondary);
}
.formated_text table {
  padding: 0;
  margin: 0 0 24px 0;
  border-collapse: collapse;
}
.formated_text table th,
.formated_text table td {
  padding: 5px;
}

blockquote {
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--secondary);
  border-right: 4px solid var(--secondary);
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.red {
  color: #ef2222 !important;
}

.d-none {
  display: none;
}

.mt-30 {
  margin-top: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.justify-content-center {
  justify-content: center !important;
}

.text-warning {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 30px;
  line-height: 24px;
}

.red-text {
  color: var(--secondary);
}
.red-text:hover {
  text-decoration: underline;
  cursor: pointer;
}

.blue-text {
  color: #08c;
}
.blue-text:hover {
  text-decoration: underline;
  cursor: pointer;
}
.blue-text svg {
  width: 24px;
  height: 24px;
  fill: #08c;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.my-5 {
  margin: 5px 0;
}

.d-inline-block {
  display: inline-block;
}

.mob_visible {
  display: none;
}
@media (max-width: 767px) {
  .mob_visible {
    display: flex;
    text-align: center;
    margin-bottom: 24px;
  }
}

.mt-100 {
  margin-top: 100px;
}

.hdr-offset {
  padding-top: 86px;
}
@media (max-width: 480px) {
  .hdr-offset {
    padding-top: 58px;
  }
}

.container {
  max-width: var(--max-container);
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 1739px) {
  .container {
    width: 97%;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 980px;
  }
}
@media (max-width: 1023px) {
  .container {
    width: 760px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 560px;
  }
}
@media (max-width: 575px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 374px) {
  .container {
    width: 100%;
  }
}

.section {
  width: 100%;
}
.section__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.section__footer--left {
  justify-content: flex-start;
}
@media (max-width: 1739px) {
  .section__footer {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .section__footer {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
@media (max-width: 374px) {
  .section__footer {
    justify-content: center;
    margin-top: 110px;
  }
}
@media (max-width: 767px) {
  .section--slider {
    padding-bottom: 90px;
  }
}
@media (max-width: 374px) {
  .section--slider {
    padding-bottom: 80px;
  }
}

main > .box:first-child:not(.hero-block) {
  margin-top: 140px;
}

.box {
  margin-bottom: 60px;
}
@media (max-width: 1739px) {
  .box {
    margin-bottom: 40px;
  }
}
.box__title {
  margin: 0 0 50px;
  color: var(--primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 1739px) {
  .box__title {
    margin-bottom: 40px;
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .box__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .box__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .box__title {
    font-size: 16px;
  }
}
.box--mb20 {
  margin-bottom: 30px !important;
}
.box--mb20:last-child {
  margin-bottom: 100px !important;
}
@media (max-width: 1739px) {
  .box--mb20:last-child {
    margin-bottom: 90px !important;
  }
}
@media (max-width: 1199px) {
  .box--mb20:last-child {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 575px) {
  .box--mb20:last-child {
    margin-bottom: 70px !important;
  }
}
@media (max-width: 374px) {
  .box--mb20:last-child {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .box.with-carousel .box__wrap {
    padding-bottom: 80px;
  }
}
.box__wrap {
  width: 100%;
  padding: 40px 60px;
  background: var(--bg-box);
  border-radius: 50px;
}
@media (max-width: 1023px) {
  .box__wrap {
    border-radius: 30px;
  }
}
@media (max-width: 1739px) {
  .box__wrap {
    padding: 40px 30px;
  }
}
.box__wrap--main {
  padding: 100px;
}
@media (max-width: 1739px) {
  .box__wrap--main {
    padding: 90px 60px;
  }
}
@media (max-width: 1199px) {
  .box__wrap--main {
    padding: 80px 40px;
  }
}
@media (max-width: 575px) {
  .box__wrap--main {
    padding: 70px 30px;
  }
}
@media (max-width: 374px) {
  .box__wrap--main {
    padding: 60px 20px;
  }
}
.box__wrap--main .carousel .slick-arrow,
.box__wrap--main .carousel-three .slick-arrow {
  top: -120px;
}
@media (max-width: 1739px) {
  .box__wrap--main .carousel .slick-arrow,
  .box__wrap--main .carousel-three .slick-arrow {
    top: -97px;
  }
}
@media (max-width: 1199px) {
  .box__wrap--main .carousel .slick-arrow,
  .box__wrap--main .carousel-three .slick-arrow {
    top: -84px;
  }
}
@media (max-width: 767px) {
  .box__wrap--main .carousel .slick-arrow,
  .box__wrap--main .carousel-three .slick-arrow {
    top: auto;
    bottom: -90px;
  }
}
@media (max-width: 374px) {
  .box__wrap--main .carousel .slick-arrow,
  .box__wrap--main .carousel-three .slick-arrow {
    bottom: -80px;
  }
}
.box__wrap--gray {
  background: var(--bg-box-gray);
}
.box__wrap--dark {
  background: var(--bg-box-dark);
}
.box__wrap--dark .section-title {
  color: #fff;
}
.box__wrap--dark .carousel .slick-arrow svg,
.box__wrap--dark .carousel-three .slick-arrow svg {
  stroke: #fff;
}
.box__wrap--dark .carousel .slick-arrow:hover,
.box__wrap--dark .carousel-three .slick-arrow:hover {
  border-color: var(--secondary);
}
.box__wrap--dark .link span {
  color: #fff;
}
.box__wrap--dark .link svg {
  stroke: #fff;
}
.box__wrap--first {
  padding: 40px;
}
@media (max-width: 1739px) {
  .box__wrap--first {
    padding: 40px;
  }
}
@media (max-width: 1199px) {
  .box__wrap--first {
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .box__wrap--first {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .box__wrap--first {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .box__wrap--first {
    padding: 30px;
  }
}
@media (max-width: 374px) {
  .box__wrap--first {
    padding: 30px 20px;
  }
}
.box__wrap--tr {
  background-color: transparent;
  padding: 30px 0 0 !important;
}
@media (max-width: 1199px) {
  .box__wrap--tr {
    padding-top: 20px !important;
  }
}
.box__wrap--tr .first-left {
  justify-content: flex-end;
  padding-left: 100px;
}
@media (max-width: 1739px) {
  .box__wrap--tr .first-left {
    width: calc(100% / 12 * 7 - 20px);
    padding-left: 60px;
  }
}
@media (max-width: 1199px) {
  .box__wrap--tr .first-left {
    width: calc(100% / 12 * 6.7 - 20px);
    padding-left: 40px;
  }
}
@media (max-width: 575px) {
  .box__wrap--tr .first-left {
    padding: 0 30px;
  }
}
@media (max-width: 374px) {
  .box__wrap--tr .first-left {
    padding: 0 20px;
  }
}
.box__wrap--tr .first-right {
  padding: 0;
  background: 0 0;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .box__wrap--tr .first-right {
    width: calc(100% / 12 * 5 - 20px);
    height: 496px;
  }
}
@media (max-width: 1199px) {
  .box__wrap--tr .first-right {
    width: calc(100% / 12 * 5.3 - 20px);
    height: 450px;
  }
}
@media (max-width: 1023px) {
  .box__wrap--tr .first-right {
    height: 380px;
  }
}
@media (max-width: 575px) {
  .box__wrap--tr .first-right {
    height: 314px;
  }
}
.box__wrap--tr .first-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.box__wrap--tr .first-menu__link {
  padding: 20px 25px 25px;
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 1739px) {
  .box__wrap--tr .first-menu__link {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .box__wrap--tr .first-menu__link {
    align-items: flex-start;
    height: 80px;
    padding: 16px 20px;
    aspect-ratio: auto;
  }
}
.box__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 40px;
}
@media (max-width: 575px) {
  .box__row {
    row-gap: 30px;
  }
}
.box__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.box__grid .first-left {
  width: 100%;
  height: 100%;
  margin: 0;
}
.box__grid .first-right {
  width: 100%;
  margin: 0;
}
.box__column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 100px;
}
@media (max-width: 1739px) {
  .box__column {
    row-gap: 90px;
  }
}
@media (max-width: 1199px) {
  .box__column {
    row-gap: 80px;
  }
}
@media (max-width: 767px) {
  .box__column {
    row-gap: 70px;
  }
}
@media (max-width: 374px) {
  .box__column {
    row-gap: 60px;
  }
}
.box__column--30 {
  row-gap: 30px;
}
.box--social .box__wrap {
  padding: 0;
  overflow: hidden;
}
.box--social .box__wrap img {
  align-self: end;
  display: block;
  width: 100%;
  height: 597px;
  object-fit: contain;
}
@media (max-width: 1739px) {
  .box--social .box__wrap img {
    height: 460px;
  }
}
@media (max-width: 1199px) {
  .box--social .box__wrap img {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .box--social .box__wrap img {
    height: 280px;
  }
}
.box__row--nm {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  column-gap: 20px;
}
@media (max-width: 480px) {
  .box__row--nm {
    row-gap: 20px;
  }
}
.box__sidebar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 440px;
}
@media (max-width: 1739px) {
  .box__sidebar {
    width: 320px;
  }
}
@media (max-width: 1199px) {
  .box__sidebar {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 10px));
    width: 100%;
    row-gap: 40px;
  }
}
@media (max-width: 767px) {
  .box__sidebar {
    grid-template-columns: 100%;
  }
}
.box__sidebar .box__wrap {
  padding: 40px 35px 35px;
  border-radius: 40px;
}
@media (max-width: 1739px) {
  .box__sidebar .box__wrap {
    border-radius: 20px;
    padding: 30px 20px 20px;
  }
}
.box__sidebar .social__list {
  gap: 10px;
  margin: 0;
}
.box__sidebar .social__link {
  width: calc((100% - 30px)/ 4);
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 20px;
}
@media (max-width: 1739px) {
  .box__sidebar .social__link {
    border-radius: 16px;
  }
}
.box__sidebar .social__link svg {
  width: 30px;
  height: 30px;
}
.box__sidebar .link span {
  font-size: 16px;
}
.box__sidebar .link svg {
  top: 2px;
  width: 16px;
  height: 16px;
}
.box__sidebar .yt-card {
  width: auto !important;
}
.box__sidebar .video-card,
.box__sidebar .yt-card__img,
.box__sidebar .yt-card__img::after {
  border-radius: 30px;
}
@media (max-width: 1739px) {
  .box__sidebar .video-card,
  .box__sidebar .yt-card__img,
  .box__sidebar .yt-card__img::after {
    border-radius: 20px;
  }
}
.box__sidebar .preview {
  width: auto;
}
.box__content {
  width: calc(100% - 460px);
}
@media (max-width: 1739px) {
  .box__content {
    width: calc(100% - 340px);
  }
}
@media (max-width: 1199px) {
  .box__content {
    width: 100%;
  }
}
.box__content .card-row__img {
  width: 300px;
  height: 180px;
}
.box__content .card-row__desc {
  width: calc(100% - 300px);
  padding: 30px;
}
@media (max-width: 1739px) {
  .box__content .card-row__desc {
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    width: calc(100% - 350px);
  }
}
@media (max-width: 1365px) {
  .box__content .card-row__desc {
    width: calc(100% - 250px);
  }
}
@media (max-width: 1023px) {
  .box__content .card-row__desc {
    width: calc(100% - 225px);
  }
}
@media (max-width: 767px) {
  .box__content .card-row__desc {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 20px;
  }
}
.box__content .card-row__car {
  width: 29.9%;
  padding-right: 20px;
}
@media (max-width: 1739px) {
  .box__content .card-row__car {
    grid-area: 1/1/2/2;
    width: auto;
    padding: 0;
    border-right: none;
  }
}
.box__content .card-row__info {
  width: 42%;
  padding-left: 20px;
  padding-right: 20px;
  column-gap: 10px;
  padding-top: 16px;
  grid-template-columns: 46px 62px 1fr;
}
@media (max-width: 1739px) {
  .box__content .card-row__info {
    grid-area: 2/1/3/2;
    width: auto;
    padding: 0;
    border-right: none;
    column-gap: 5px;
    grid-template-columns: 41px 57px 1fr;
  }
}
@media (max-width: 575px) {
  .box__content .card-row__info {
    column-gap: 10px;
    grid-template-columns: 44px 60px 1fr;
  }
}
.box__content .card-row__price {
  width: 28.1%;
  padding-left: 20px;
}
@media (max-width: 1739px) {
  .box__content .card-row__price {
    grid-area: 1/2/3/3;
    width: auto;
    padding-left: 30px;
    border-left: 1px solid #eeebde;
    align-self: stretch;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .box__content .card-row__price {
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid #eeebde;
  }
}
.box__content .card-row__price > p:first-child {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .box__content .card-row__price > p:first-child {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .box__content .card-row__price > p:first-child {
    display: block;
    font-size: 14px;
  }
}
.box__content .card-row__price > p:first-child span {
  margin-left: 0;
  font-size: 14px;
}
@media (max-width: 1739px) {
  .box__content .card-row__price > p:first-child span {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .box__content .card-row__price > p:first-child span {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .box__content .card-row__price > p:first-child span {
    margin-left: 20px;
  }
}
.box__content .card-row__price > p:nth-child(2) {
  margin-bottom: 10px;
}
.box__content .card-row__price-toggle > span {
  width: 152px;
  height: 30px;
  font-size: 12px;
}
@media (max-width: 1739px) {
  .box__content .card-row__price-toggle > span {
    width: 148px;
    height: 26px;
  }
}
.box__content .card-row__name {
  column-gap: 10px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .box__content .card-row__name {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .box__content .card-row__name {
    font-size: 14px;
  }
}
.box__content .card-row__age {
  column-gap: 20px;
}
.box__content .card-row__age span {
  font-size: 12px;
}
.box__content .card-row__age span::after {
  right: -12px;
}
.box__content .card-row__col {
  row-gap: 6px;
}
@media (max-width: 1739px) {
  .box__content .card-row__col {
    row-gap: 4px;
  }
}
.box__content .card-row__col span {
  font-size: 12px;
}
.box__content .card-row__fav {
  column-gap: 6px;
  font-size: 12px;
}
.box__content .card-row__fav svg {
  width: 16px;
  height: 16px;
}
.box__content .card-row__del {
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .box__content .card-row__del {
    top: 10px;
    right: 10px;
  }
}
.box__content .card-row-carousel {
  width: 300px;
}
@media (max-width: 1739px) {
  .box__content .card-row-carousel {
    width: 350px;
    height: 200px;
  }
}
@media (max-width: 1365px) {
  .box__content .card-row-carousel {
    width: 250px;
  }
}
@media (max-width: 1023px) {
  .box__content .card-row-carousel {
    width: 225px;
  }
}
@media (max-width: 575px) {
  .box__content .card-row-carousel {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .box__wrap--tr .first-menu__link:first-child {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .box__wrap--tr .first-left, .box__wrap--tr .first-right {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media (max-width: 1023px) {
  .box__grid, .box__grid--lg {
    grid-template-columns: 100%;
  }
}
@media (max-width: 1023px) {
  .box__grid--lg .box__wrap--main {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .box__grid--lg .box__wrap--main {
    padding: 30px;
  }
}
@media (max-width: 374px) {
  .box__grid--lg .box__wrap--main {
    padding: 30px 20px;
  }
}
@media (max-width: 1023px) {
  .box__grid--rev {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1023px) {
  .box--social .box__grid {
    grid-template-columns: 100%;
  }
}
@media (max-width: 767px) {
  .box__wrap--slider {
    padding-bottom: 160px;
  }
}
@media (max-width: 575px) {
  .box__wrap--slider {
    padding-bottom: 160px;
  }
}
@media (max-width: 374px) {
  .box__wrap--slider {
    padding-bottom: 140px;
  }
}
@media (max-width: 1739px) {
  .box__grid .box__wrap {
    padding: 60px;
  }
}
@media (max-width: 1199px) {
  .box__grid .box__wrap {
    padding: 60px 40px;
  }
}
@media (max-width: 575px) {
  .box__grid .box__wrap, .box__wrap {
    padding: 30px 20px;
  }
}
@media (max-width: 374px) {
  .box__grid .box__wrap, .box__wrap {
    padding: 30px 20px;
  }
}
.box--mt100 {
  margin-top: 100px;
}

.header-info__holder {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 5px 10px;
  background: linear-gradient(90deg, rgb(61, 155, 255), rgb(106, 36, 153));
  color: #fff;
  overflow: hidden;
  width: 100%;
}
.header-info__holder.invert {
  background: #fff;
  color: var(--secondary);
}
.header-info__holder.invert .header-info__text a {
  color: var(--secondary);
}
.header-info__holder.invert .header-info__text a.button {
  display: inline-flex;
  background: var(--secondary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 14px;
}
.header-info__holder.invert .t-social__link {
  border-color: #2aabee !important;
  background: #fff;
}
.header-info__holder.invert .header-info__close svg {
  stroke: var(--secondary);
}
.header-info__holder .t-social__link {
  position: relative;
  text-decoration: none;
  z-index: 1;
  flex-shrink: 0;
  border: 0;
  background: none;
}
.header-info__holder .t-social__link:hover {
  opacity: 0.8;
}
.header-info__holder .t-social__link img, .header-info__holder .t-social__link svg {
  fill: #2aabee !important;
  width: 20px;
  height: 20px;
}
.header-info__holder .t-social__link::after {
  content: "";
  display: block;
  box-sizing: border-box;
  border-radius: 100%;
  border: 6px solid #2aabee;
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 2.5s infinite wave;
}

.header-info {
  width: fit-content;
  max-width: 800px;
  margin: 0 auto;
}

.header-info__text-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-info__text {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
@media (max-width: 576px) {
  .header-info__text {
    gap: 4px;
    text-align: center;
    justify-content: center;
  }
}
.header-info__text a {
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.2s linear;
  font-weight: bold;
}
.header-info__text a:hover {
  border-bottom-color: transparent;
}
.header-info__text a.button {
  display: inline-flex;
  background: #fff;
  color: #3D9BFF;
  padding: 3px 8px;
  border-radius: 14px;
}

.header-info__close {
  cursor: pointer;
  display: flex;
}
.header-info__close svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

@keyframes wave {
  0% {
    width: 42px;
    height: 42px;
    opacity: 0.8;
  }
  50% {
    width: 50px;
    height: 50px;
    opacity: 0.5;
  }
  99%, 100% {
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}
.first-left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6.3 - 20px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}
@media (max-width: 1739px) {
  .first-left {
    width: calc(100% / 12 * 5.8 - 20px);
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  .first-left {
    width: calc(100% / 12 * 6 - 20px);
    padding-left: 0;
  }
}
@media (max-width: 1023px) {
  .first-left {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.first-left__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.15;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .first-left__title {
    margin-bottom: 30px;
    font-size: 54px;
  }
}
@media (max-width: 1199px) {
  .first-left__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .first-left__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 1365px) {
  .first-left__title {
    font-size: 48px;
  }
}
.first-left__title span {
  display: block;
  color: var(--secondary);
}
.first-left__text {
  max-width: 475px;
  margin: 0 0 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .first-left__text {
    max-width: 381px;
    margin-bottom: 50px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .first-left__text {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .first-left__text {
    max-width: 251px;
    margin-bottom: 40px;
    font-size: 12px;
  }
}
.first-left__text strong {
  font-weight: 700;
}
.first-left .btn {
  height: 78px;
  font-size: 20px;
}
@media (max-width: 1739px) {
  .first-left .btn {
    height: 64px;
    font-size: 16px;
  }
}
.first-left div.buttons-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 575px) {
  .first-left__text.mobile {
    margin-bottom: 0;
  }
}

.first-right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 5.7 - 20px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  height: 672px;
  padding: 35px 30px;
  border-radius: 50px;
  background: url(../img/img-first.jpg) center/cover no-repeat;
}
@media (max-width: 1739px) {
  .first-right {
    width: calc(100% / 12 * 6.2 - 20px);
    height: 600px;
  }
}
@media (max-width: 1199px) {
  .first-right {
    width: calc(100% / 12 * 6 - 20px);
    height: 555px;
    padding: 30px;
  }
}
@media (max-width: 1023px) {
  .first-right {
    width: calc(100% / 12 * 12 - 20px);
    height: 380px;
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .first-right {
    border-radius: 10px;
    height: 300px;
  }
}
@media (max-width: 374px) {
  .first-right {
    padding: 20px;
  }
}
@media (min-width: 1740px) {
  .first-right {
    height: 760px;
  }
}

.s-request {
  grid-column-start: -3;
  grid-column-end: -1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  border-radius: 50px;
  padding: 84px 222px 84px 70px;
  background: var(--secondary);
}
@media (max-width: 1739px) {
  .s-request {
    padding: 50px 40px;
  }
}
@media (max-width: 1199px) {
  .s-request {
    padding: 40px 30px;
  }
}
@media (max-width: 1023px) {
  .s-request {
    grid-column-start: 1;
    border-radius: 30px;
  }
}
@media (max-width: 575px) {
  .s-request {
    padding: 30px 20px;
  }
}
@media (max-width: 374px) {
  .s-request {
    padding-right: 50px;
  }
}
.s-request--one {
  grid-column-start: -2;
  padding: 40px;
}
@media (max-width: 1365px) {
  .s-request--one {
    padding: 30px;
  }
}
.s-request__text {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  color: #fff;
}
@media (max-width: 1739px) {
  .s-request__text {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 1199px) {
  .s-request__text {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 29px;
  }
}
@media (max-width: 575px) {
  .s-request__text {
    font-size: 20px;
    line-height: 24px;
  }
}
.s-request__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 14px;
}
@media (max-width: 1739px) {
  .s-request__footer {
    justify-content: flex-start;
    column-gap: 15px;
  }
}
.s-request__full-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 60px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  color: #f33e3e;
  transition: 0.3s linear;
}
.s-request__full-btn:hover {
  box-shadow: inset 0 4px 24px rgba(40, 47, 47, 0.2);
}
.s-request__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: 0 0;
  border: 1px solid #fff;
  border-radius: 60px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
  transition: 0.3s linear;
}
.s-request__btn:hover {
  background: #dc2222;
}
@media (max-width: 1739px) {
  .s-request__btn, .s-request__full-btn {
    height: 58px;
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .s-request:nth-child(even) {
    grid-column-start: -3;
  }
}
@media (max-width: 767px) {
  .s-request:nth-child(even) {
    grid-column-start: 1;
  }
}

.first-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.first-form__title {
  max-width: 583px;
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: var(--primary);
  text-align: center;
}
@media (max-width: 1739px) {
  .first-form__title {
    margin-bottom: 35px;
    font-size: 26px;
  }
}
.first-form__title span {
  color: var(--secondary);
}
.first-form form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 20px;
  width: 408px;
}
@media (max-width: 1739px) {
  .first-form form {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .first-form form {
    row-gap: 16px;
  }
}
.first-form form .btn {
  height: 75px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .first-form form .btn {
    height: 64px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .first-form form .btn {
    height: 50px;
    font-size: 12px;
  }
}

.first-carousel {
  width: 850px;
}
@media (max-width: 1739px) {
  .first-carousel {
    width: 560px;
  }
}
@media (max-width: 1199px) {
  .first-carousel {
    width: 470px;
  }
}
@media (max-width: 1023px) {
  .first-carousel {
    width: 100%;
  }
}
.first-carousel .item {
  align-items: center;
  justify-content: center;
  display: flex !important;
  height: 822px;
  border-radius: 70px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .first-carousel .item {
    height: 530px;
    border-radius: 60px;
  }
}
@media (max-width: 1199px) {
  .first-carousel .item {
    height: 480px;
    border-radius: 50px;
  }
}
@media (max-width: 1023px) {
  .first-carousel .item {
    height: auto;
    min-height: 380px;
    aspect-ratio: 1.3;
    border-radius: 40px;
  }
}
@media (max-width: 575px) {
  .first-carousel .item {
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .first-carousel .item {
    height: 223px;
  }
}
.first-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.first-carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 30px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid #ced7d9;
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .first-carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .first-carousel .slick-arrow {
    bottom: 20px;
  }
}
.first-carousel .slick-arrow:hover {
  border-color: var(--secondary);
}
.first-carousel .slick-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ced7d9;
}
.first-carousel .slick-arrow.prev {
  right: 120px;
}
.first-carousel .slick-arrow.next {
  right: 40px;
}
.first-carousel .slick-arrow.next svg {
  transform: rotate(180deg);
}
.first-carousel .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 56px;
}
@media (max-width: 1739px) {
  .first-carousel .slick-dots {
    bottom: 52px;
  }
}
@media (max-width: 575px) {
  .first-carousel .slick-dots {
    bottom: 41px;
    justify-content: flex-start;
    padding-left: 30px;
  }
}
.first-carousel .slick-dots li {
  display: block;
}
.first-carousel .slick-dots li button {
  display: block;
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 4px;
  font-size: 0;
  background: rgba(206, 215, 217, 0.5);
  transition: 0.3s linear;
}
@media (max-width: 1023px) {
  .first-carousel .slick-dots li button {
    width: 6px;
    height: 6px;
  }
}
.first-carousel .slick-dots li.slick-active button {
  width: 14px;
  background: #fff;
}

.hero {
  position: relative;
  width: 100%;
  padding: 100px 100px 40px;
  background: var(--bg-box);
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .hero {
    padding: 120px 60px 40px;
  }
}
@media (max-width: 1199px) {
  .hero {
    padding: 80px 40px 40px;
  }
}
@media (max-width: 1023px) {
  .hero {
    padding-top: 60px;
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 0;
    border-radius: 0;
  }
}
.hero__img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__header {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .hero__header {
    padding: 20px 30px 40px;
  }
}
.hero__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.05;
  color: #fff;
}
@media (max-width: 1739px) {
  .hero__title {
    margin-bottom: 30px;
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  .hero__title {
    margin-bottom: 30px;
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    color: var(--primary);
  }
}
@media (max-width: 575px) {
  .hero__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
.hero__title span {
  color: var(--secondary);
}
.hero__text {
  max-width: 475px;
  margin: 0 0 50px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 1739px) {
  .hero__text {
    max-width: 381px;
    margin-bottom: 40px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .hero__text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .hero__text {
    margin-bottom: 0;
    color: var(--primary);
  }
}
@media (max-width: 575px) {
  .hero__text {
    font-size: 12px;
  }
}
.hero__text strong {
  font-weight: 700;
}
.hero .filter {
  position: relative;
  z-index: 10;
  margin-bottom: 0;
}
@media (max-width: 1739px) {
  .hero .filter {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1365px) {
  .hero .filter {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hero .filter {
    grid-template-columns: 100%;
    padding: 30px;
  }
}
.hero--full {
  padding-top: 132px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-radius: 0;
  background: 0 0;
  margin-top: -96px;
}
@media (max-width: 1739px) {
  .hero--full {
    padding-top: 106px;
  }
}
@media (max-width: 1539px) {
  .hero--full {
    padding-top: 96px;
  }
}
@media (max-width: 1199px) {
  .hero--full {
    padding-top: 66px;
  }
}
@media (max-width: 1023px) {
  .hero--full {
    padding-top: 66px;
  }
}
@media (max-width: 767px) {
  .hero--full {
    padding-top: 66px;
  }
}
@media (min-width: 1740px) {
  .hero--full {
    margin-top: -104px;
  }
}
.hero--full .hero__header {
  text-align: center;
}
.hero--full .hero__text {
  max-width: none;
}
.hero--full .hero__img {
  bottom: 165px;
  height: auto;
}
@media (max-width: 1739px) {
  .hero--full .hero__img {
    bottom: 190px;
  }
}
@media (max-width: 1199px) {
  .hero--full .hero__img {
    bottom: 145px;
  }
}
@media (max-width: 767px) {
  .hero--full .hero__img {
    bottom: 260px;
  }
}
.hero--full .hero__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  opacity: 0.6;
}
.hero--full .filter {
  background: var(--bg-box);
}
.hero--full.hero--dark {
  padding-bottom: 230px;
}
@media (max-width: 1739px) {
  .hero--full.hero--dark {
    padding-top: 230px;
    padding-bottom: 175px;
  }
}
@media (max-width: 1199px) {
  .hero--full.hero--dark {
    padding-top: 210px;
    padding-bottom: 170px;
  }
}
@media (max-width: 1023px) {
  .hero--full.hero--dark {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .hero--full.hero--dark {
    padding-bottom: 50px;
  }
}
.hero--full.hero--dark .hero__header {
  text-align: left;
}
.hero--full.hero--dark .hero__text {
  max-width: 475px;
}
.hero--full.hero--dark .hero__img {
  height: 100%;
}
.hero--full.hero--dark .hero__img::before {
  background: url(../img/icons/overlay-hero.svg) center/cover no-repeat;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .btn {
  max-width: 268px;
  height: 64px;
}
@media (max-width: 767px) {
  .hero .btn {
    width: auto;
  }
}
.hero .first-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}
@media (max-width: 1199px) {
  .hero .first-menu {
    max-width: 400px;
    justify-content: flex-start;
    margin-left: auto;
    margin-top: -200px;
  }
}
@media (max-width: 1023px) {
  .hero .first-menu {
    max-width: none;
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .hero .first-menu {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .hero .first-menu {
    flex-direction: column;
  }
}
.hero .first-menu__link {
  width: 230px;
  height: 170px;
  aspect-ratio: auto;
}
@media (max-width: 1539px) {
  .hero .first-menu__link {
    width: 160px;
    height: 140px;
  }
}
@media (max-width: 1199px) {
  .hero .first-menu__link {
    width: 145px;
  }
}
@media (max-width: 575px) {
  .hero .first-menu__link {
    width: 100%;
    max-width: 295px;
    height: auto;
    min-height: 77px;
    padding: 15px;
  }
}
.hero--nf .hero__header {
  padding: 0;
}
.hero--nf .hero__text, .hero--nf .hero__title {
  color: #fff;
}
.hero--dark {
  margin-bottom: 36px;
}
@media (max-width: 1739px) {
  .hero .filter .form-range {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 1023px) {
  .hero .filter .form-range {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
@media (max-width: 767px) {
  .hero__footer {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    overflow: hidden;
  }
}
@media (max-width: 480px) {
  .hero__footer {
    border-radius: 10px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .hero--full .hero__text, .hero--full .hero__title, .hero--full .hero__title span {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .hero--full .hero__footer {
    position: static;
  }
}
@media (max-width: 767px) {
  .hero--nf {
    padding: 30px;
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .hero--nf {
    padding: 30px 20px;
    border-radius: 10px;
  }
}
@media (min-width: 576px) {
  .hero__footer .filter {
    padding: 40px;
  }
}
@media (max-width: 480px) {
  .hero .filter, .hero__header {
    padding: 20px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg__ {
  bottom: 165px;
  height: auto;
}
@media (max-width: 1739px) {
  .hero__bg__ {
    bottom: 190px;
  }
}
.hero--full .color__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
.hero--full .black__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
.hero--full .gradient__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero--full .gradient__bottom__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.first-left .btn,
.s-request__btn,
.s-request__full-btn {
  width: auto;
}
@media (max-width: 1739px) {
  .first-left .btn,
  .s-request__btn,
  .s-request__full-btn {
    width: auto;
  }
}

.request {
  margin-bottom: 100px;
}
@media (max-width: 1739px) {
  .request {
    margin-bottom: 90px;
  }
}
@media (max-width: 1199px) {
  .request {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .request {
    margin-bottom: 70px;
  }
}
@media (max-width: 374px) {
  .request {
    margin-bottom: 60px;
  }
}
.request__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 336px);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media (max-width: 1739px) {
  .request__grid {
    grid-template-rows: 218px 336px;
  }
}
@media (max-width: 1199px) {
  .request__grid {
    grid-template-rows: 180px 282px;
  }
}
@media (max-width: 1023px) {
  .request__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 180px;
  }
}
@media (max-width: 767px) {
  .request__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 180px 130px;
  }
}
.request__area:first-child {
  grid-area: 1/1/3/3;
}
.request__area:nth-child(2) {
  grid-area: 1/3/2/4;
}
.request__area:nth-child(3) {
  grid-area: 1/4/2/5;
}
.request__area:nth-child(4) {
  grid-area: 2/3/3/5;
}
.request__area:nth-child(4) .request__img {
  background: #24262c;
}
@media (max-width: 767px) {
  .request__area:nth-child(4) .request__img {
    padding: 10px 0;
  }
}
.request__desc {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 100px 40px;
  background: var(--bg-box);
  border-radius: 50px;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .request__desc {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 1199px) {
  .request__desc {
    padding: 40px 30px;
  }
}
@media (max-width: 1023px) {
  .request__desc {
    padding: 60px 40px;
    border-radius: 30px;
  }
}
@media (max-width: 575px) {
  .request__desc {
    padding: 50px 30px;
  }
}
@media (max-width: 374px) {
  .request__desc {
    padding: 40px 20px;
    border-radius: 10px;
  }
}
.request__title {
  max-width: 500px;
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .request__title {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .request__title {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .request__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.request__title span {
  color: var(--secondary);
}
.request__text {
  max-width: 500px;
  margin: 0 0 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .request__text {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .request__text {
    margin-bottom: 40px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .request__text {
    margin-bottom: 40px;
  }
}
.request__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
@media (max-width: 1199px) {
  .request__footer {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .request__footer {
    flex-direction: column;
  }
}
.request .btn,
.request .btn-border {
  width: 279px;
  height: 72px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .request .btn,
  .request .btn-border {
    width: 221px;
    height: 62px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .request .btn,
  .request .btn-border {
    width: 184px;
    height: 58px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .request .btn,
  .request .btn-border {
    width: 166px;
    height: 45px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .request .btn,
  .request .btn-border {
    width: 100%;
  }
}
.request__img {
  height: 100%;
  background: var(--bg-box);
  border-radius: 50px;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 1023px) {
  .request__img {
    border-radius: 30px;
  }
}
.request__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.request__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
}
.request__row .request__title {
  max-width: none;
  font-size: 50px;
}
@media (max-width: 1739px) {
  .request__row .request__title {
    font-size: 38px;
  }
}
@media (max-width: 1023px) {
  .request__row .request__title {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .request__row .request__title {
    font-size: 26px;
  }
}
@media (max-width: 374px) {
  .request__row .request__title {
    font-size: 22px;
  }
}
.request__row .request__text {
  max-width: 630px;
  font-size: 20px;
}
@media (max-width: 1739px) {
  .request__row .request__text {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .request__row .request__text {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .request__row .request__text {
    font-size: 12px;
  }
}
.request__left, .request__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
}
@media (max-width: 1023px) {
  .request__left, .request__right {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media (max-width: 1739px) {
  .request__title br {
    display: none;
  }
}

@media (max-width: 480px) {
  .request__img,
  .s-request {
    border-radius: 10px;
  }
}

.hero-block {
  min-height: 100svh;
  margin-bottom: 60px;
  background-color: var(--bg-dark);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 1739px) {
  .hero-block {
    margin-bottom: 40px;
  }
}
.hero-block .top, .hero-block .mid, .hero-block .bot {
  min-height: max(120px, 10svh);
  padding: 40px 50px;
}
.hero-block--code {
  position: relative;
  isolation: isolate;
}
.hero-block--code .top, .hero-block--code .mid, .hero-block--code .bot {
  position: relative;
  z-index: 1;
}
.hero-block__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-block .mid {
  padding-left: 0;
  padding-right: 0;
}
.hero-block .bot {
  align-content: center;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .hero-block .bot {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.hero-block[data-hero-button-fixed="1"].is-btn-fixed .bot > .btn, .hero-block[data-hero-button-fixed="1"].is-btn-leaving .bot > .btn {
  position: fixed;
  z-index: 8900;
  bottom: 20px;
  left: 0;
  right: 0;
  width: max-content;
  margin: 0 auto;
  transition: 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  padding: 21px 46px;
  font-size: 18px;
  line-height: 19px;
}
@media (max-width: 480px) {
  .hero-block[data-hero-button-fixed="1"].is-btn-fixed .bot > .btn, .hero-block[data-hero-button-fixed="1"].is-btn-leaving .bot > .btn {
    bottom: 10px;
    left: 10px;
    right: auto;
    padding: 12.5px 20px;
    font-size: 16px;
  }
}
.hero-block[data-hero-button-fixed="1"].is-btn-fixed .bot::before, .hero-block[data-hero-button-fixed="1"].is-btn-leaving .bot::before {
  content: "";
  flex: none;
  width: 0;
  height: var(--hero-fab-h, 0px);
}
.hero-block[data-hero-button-fixed="1"].is-btn-fixed .bot > .btn {
  animation: hero-fab-in 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}
.hero-block[data-hero-button-fixed="1"].is-btn-leaving .bot > .btn {
  animation: hero-fab-out 0.32s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero-block[data-hero-button-fixed="1"].is-btn-fixed .bot > .btn, .hero-block[data-hero-button-fixed="1"].is-btn-leaving .bot > .btn {
    animation: none;
  }
}
.hero-block[data-hero-button-fixed="1"].is-btn-fixed .bot > .btn {
  background: rgba(51, 51, 51, 0.4);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 10px 30px -14px rgba(40, 47, 47, 0.22);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  color: #fff;
}
.hero-block[data-hero-button-fixed="1"].is-btn-fixed .bot > .btn:hover {
  background: #fff;
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0) inset, 0 14px 30px -12px rgba(40, 47, 47, 0.45);
}
.hero-block.single {
  justify-content: center;
}
.hero-block.single .mid {
  padding-top: 140px;
  padding-bottom: 60px;
}
.hero-block.single .mid .box {
  margin-bottom: 0;
}
.hero-block.single .mid .box__wrap {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white-font-color);
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .hero-block.single .mid .box__wrap {
    padding: 20px;
  }
}
.hero-block.single .mid .box__wrap .breadcrumbs__link, .hero-block.single .mid .box__wrap .breadcrumbs__item {
  color: var(--white-font-color);
}
.hero-block.single .mid .box__wrap .section-title {
  color: var(--white-font-color);
}
.hero-block.single .mid .box__wrap .filter {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0 auto;
  max-width: 1500px;
}
.hero-block.single .mid .box__wrap .filter .form-group__double,
.hero-block.single .mid .box__wrap .filter .select2-selection {
  background-color: #eee;
}
.hero-block.single .mid .box__wrap .filter .form-group__double.dates {
  background-color: transparent;
}
.hero-block.single .mid .box__wrap .filter .form-group__double.dates .ym_from,
.hero-block.single .mid .box__wrap .filter .form-group__double.dates .ym_to {
  background-color: #eee;
}
.hero-block.single .mid .box__wrap .filter .form-group label,
.hero-block.single .mid .box__wrap .filter .form-checkbox label {
  color: var(--white-font-color) !important;
}
.hero-block.single .mid .box__wrap .filter .filter__toggle span {
  border-bottom-color: rgba(255, 255, 255, 0.5);
  color: var(--white-font-color);
}
.hero-block.inner-page {
  min-height: 300px;
}
.hero-block.inner-page .mid {
  margin-top: 140px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-block.inner-page .bot {
  padding-top: 0;
  min-height: auto;
}
.hero-block.inner-page .title {
  font-size: clamp(30px, 30px + 18 * (100vw - 480px) / 1260, 48px);
}
.hero-block.inner-page .country-title {
  padding: 6px 22px;
}
.hero-block.inner-page .country-title .name {
  font-size: clamp(20px, 20px + 18 * (100vw - 480px) / 1260, 38px);
}
.hero-block.inner-page .country-title .flag {
  width: clamp(32px, 32px + 26 * (100vw - 480px) / 1260, 58px);
  border-radius: 5px;
}
.hero-block.inner-page .info-text {
  max-width: 900px;
  padding: 12px 20px;
  font-size: clamp(12px, 12px + 6 * (100vw - 480px) / 1260, 18px);
}
.hero-block .title {
  font-size: clamp(40px, 40px + 35 * (100vw - 480px) / 1260, 75px);
  line-height: 1.1;
  color: #fff;
  text-align: center;
  max-width: min(1280px, 80svw);
  margin: auto;
}
.hero-block .breadcrumbs__link::after {
  filter: brightness(0) invert(1);
}
.hero-block .country-title {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 8px 30px;
  background: var(--font-dark);
  border-radius: 60px;
}
.hero-block .country-title.country-japan {
  background: var(--japan-color);
}
.hero-block .country-title.country-china {
  background: var(--china-color);
}
.hero-block .country-title.country-korea {
  background: var(--korea-color);
}
@media (max-width: 1739px) {
  .hero-block .country-title {
    gap: 12px;
    margin-bottom: 5px;
    padding: 7px 25px;
  }
}
@media (max-width: 767px) {
  .hero-block .country-title {
    padding: 6px 20px;
  }
}
.hero-block .country-title .name {
  font-weight: 700;
  font-size: clamp(30px, 30px + 26 * (100vw - 480px) / 1260, 56px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.hero-block .country-title .flag {
  flex: none;
  width: clamp(45px, 45px + 39 * (100vw - 480px) / 1260, 84px);
  height: auto;
  border-radius: 7px;
  overflow: hidden;
}
.hero-block .country-title .flag svg {
  display: block;
  width: 100%;
  height: auto;
}
.hero-block .info-text {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  border-radius: 14px;
  background: rgba(18, 18, 22, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: clamp(14px, 14px + 8 * (100vw - 480px) / 1260, 22px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 1739px) {
  .hero-block .info-text {
    padding: 12px 18px;
  }
}

.footer {
  background: var(--bg-color);
}
.footer__wrap {
  background: var(--bg-box);
  border-radius: 50px 50px 0 0;
  padding: 0 30px;
}
@media (max-width: 1023px) {
  .footer__wrap {
    border-radius: 30px 30px 0 0;
  }
}
@media (max-width: 480px) {
  .footer__wrap {
    border-radius: 10px 10px 0 0;
  }
}
@media (max-width: 767px) {
  .footer__wrap {
    background: none;
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  .footer {
    padding-bottom: 0px;
  }
}
.footer__wrap .logo img.black {
  display: block;
}
.footer .f-menu__title {
  text-transform: uppercase;
}
.footer .our-social .title {
  font-size: 14px;
}
.footer .address_box .email {
  margin-bottom: 10px;
}
.footer .address_box .email a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #798282;
  font-size: 14px;
  font-weight: 500;
}
.footer .address_box .email a:hover {
  color: var(--secondary);
}
.footer .address_box .email svg {
  width: 16px;
  height: 16px;
  fill: #798282;
}
.footer .address_box .office__text {
  font-size: 13px;
  color: #000;
  font-weight: 500;
}
.footer .address_box .worktime {
  font-size: 13px;
  font-weight: 500;
  margin: 10px 0 0 0;
}
.footer .address_box .worktime .green {
  color: #3AB15A;
}
.footer .address_box .worktime .red {
  color: var(--secondary);
}

.bottom {
  display: grid;
  grid-template-columns: 30% 1fr 20%;
  column-gap: 20px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #eeebde;
}
@media (max-width: 1199px) {
  .bottom {
    grid-template-columns: 1fr 35%;
  }
}
@media (max-width: 1023px) {
  .bottom {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    padding: 25px 0;
  }
}
@media (max-width: 575px) {
  .bottom {
    align-items: center;
    row-gap: 20px;
  }
}
.bottom__center {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1199px) {
  .bottom__center {
    grid-area: 1/1/3/2;
  }
}
@media (max-width: 1023px) {
  .bottom__center {
    order: -1;
    margin-bottom: 2px;
  }
}
@media (max-width: 575px) {
  .bottom__center {
    order: 0;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
}
.bottom__right {
  text-align: right;
}
@media (max-width: 1023px) {
  .bottom__right {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .bottom__right {
    text-align: center;
  }
}
.bottom__text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
}
@media (max-width: 1739px) {
  .bottom__text {
    font-size: 12px;
  }
}
@media (max-width: 374px) {
  .bottom__text {
    font-size: 11px;
  }
}
.bottom__text a {
  color: var(--gray);
  text-decoration: underline;
  transition: 0.3s linear;
}
.bottom__text a:hover {
  color: var(--secondary);
}
@media (max-width: 1199px) {
  .bottom__left {
    text-align: right;
  }
}
@media (max-width: 1023px) {
  .bottom__left {
    order: 1;
    text-align: left;
  }
}
@media (max-width: 575px) {
  .bottom__left {
    order: 0;
    text-align: center;
  }
}

.platform {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 6px;
}
@media (max-width: 575px) {
  .platform {
    align-items: center;
  }
}
.platform__text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1199px) {
  .platform__text {
    font-size: 12px;
  }
}
.platform__logo {
  display: block;
  width: 148px;
  height: 34px;
}
@media (max-width: 1199px) {
  .platform__logo {
    width: 129px;
    height: 30px;
  }
}
.platform__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.platform--base .platform__logo {
  width: 119px;
}
@media (max-width: 1199px) {
  .platform--base .platform__logo {
    width: 105px;
  }
}
.platform--seo .platform__logo {
  width: 180px;
}
@media (max-width: 1199px) {
  .platform--seo .platform__logo {
    width: 129px;
  }
}

.f-top {
  padding: 40px 0 30px;
  border-bottom: 1px solid #eeebde;
}
@media (max-width: 1739px) {
  .f-top {
    padding: 45px 0 15px;
  }
}
@media (max-width: 1199px) {
  .f-top {
    padding-top: 40px;
  }
}
@media (max-width: 1023px) {
  .f-top {
    padding-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .f-top {
    padding: 30px 0 20px;
  }
}
.f-top__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: center;
  row-gap: 30px;
}
.f-top__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3.8 - 20px);
}
@media (max-width: 1739px) {
  .f-top__left {
    width: calc(100% / 12 * 2.2 - 20px);
  }
}
@media (max-width: 1199px) {
  .f-top__left {
    width: calc(100% / 12 * 3 - 20px);
  }
}
@media (max-width: 1023px) {
  .f-top__left {
    width: calc(100% / 12 * 6 - 20px);
  }
}
.f-top__center {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6.7 - 20px);
}
@media (max-width: 1739px) {
  .f-top__center {
    width: calc(100% / 12 * 8 - 20px);
  }
}
@media (max-width: 1199px) {
  .f-top__center {
    width: calc(100% / 12 * 9 - 20px);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media (max-width: 1023px) {
  .f-top__center {
    width: calc(100% / 12 * 12 - 20px);
    order: 4;
    justify-content: center;
  }
}
.f-top__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 1.5 - 20px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 1739px) {
  .f-top__right {
    width: calc(100% / 12 * 1.8 - 20px);
  }
}
@media (max-width: 1199px) {
  .f-top__right {
    display: none;
  }
}
@media (max-width: 1023px) {
  .f-top__right {
    width: calc(100% / 12 * 6 - 20px);
    display: flex;
  }
}

.footerbar {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 30px;
  padding: 50px 0;
}
@media (max-width: 1739px) {
  .footerbar {
    padding: 40px 0;
  }
}
@media (max-width: 1023px) {
  .footerbar {
    padding: 25px 0;
  }
}
@media (max-width: 480px) {
  .footerbar {
    padding-top: 20px;
  }
}
.footerbar__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3.8 - 20px);
}
@media (max-width: 1199px) {
  .footerbar__left {
    width: calc(100% / 12 * 3.6 - 20px);
  }
}
@media (max-width: 1023px) {
  .footerbar__left {
    width: calc(100% / 12 * 12 - 20px);
    order: 1;
    display: grid;
    grid-template-columns: 140px 40px 1fr;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .footerbar__left {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .footerbar__left {
    align-items: flex-start;
  }
}
.footerbar__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 8.2 - 20px);
}
@media (max-width: 1199px) {
  .footerbar__right {
    width: calc(100% / 12 * 8.4 - 20px);
  }
}
@media (max-width: 1023px) {
  .footerbar__right {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.footerbar .t-social {
  justify-content: flex-start;
  margin-bottom: 25px;
}
@media (max-width: 1023px) {
  .footerbar .t-social {
    grid-area: 1/1/2/2;
    margin-bottom: 0;
  }
}
.footerbar .t-social__link {
  width: 40px;
  height: 40px;
}
.footerbar .t-social__link svg {
  width: 20px;
  height: 20px;
}
.footerbar__text {
  max-width: 404px;
  margin: 0 0 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
}
@media (max-width: 1739px) {
  .footerbar__text {
    max-width: 260px;
    margin-bottom: 26px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .footerbar__text {
    margin-bottom: 20px;
    font-size: 10px;
    grid-area: 2/1/3/3;
  }
}
@media (max-width: 1023px) {
  .footerbar__text {
    grid-area: 2/3/3/4;
    align-self: center;
    max-width: none;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .footerbar__text {
    order: 1;
    text-align: center;
  }
}
.footerbar__btns {
  display: flex;
  align-items: center;
  column-gap: 17px;
  flex-wrap: nowrap;
}
@media (max-width: 1023px) {
  .footerbar__btns {
    grid-area: 2/1/3/3;
  }
}
.footerbar .city {
  display: none;
}
@media (max-width: 1199px) {
  .footerbar .city {
    display: flex;
    margin-bottom: 14px;
  }
}
@media (max-width: 1023px) {
  .footerbar .city {
    display: none;
  }
}
@media (max-width: 1739px) {
  .footerbar__order .btn {
    height: 40px;
  }
}
@media (max-width: 1739px) {
  .footerbar .login-btn {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1739px) {
  .footerbar .login-btn svg {
    width: 18px;
    height: 18px;
  }
}
.footerbar__order {
  width: auto;
}
.footerbar__btns .profile-ico {
  width: 34px;
  height: 34px;
}

.f-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: start;
  column-gap: 40px;
  row-gap: 40px;
}
@media (max-width: 1739px) {
  .f-menu {
    column-gap: 70px;
    padding-top: 8px;
  }
}
@media (max-width: 1539px) {
  .f-menu {
    column-gap: 30px;
  }
}
@media (max-width: 767px) {
  .f-menu {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
  }
}
@media (max-width: 480px) {
  .f-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
.f-menu__section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}
.f-menu__title {
  margin: 0;
  font-weight: 600;
  color: var(--primary);
  transition: 0.3s linear;
}
.f-menu__title:hover {
  color: var(--secondary);
}
.f-menu__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
}
.f-menu__link {
  font-weight: 400;
  color: var(--gray);
  transition: 0.3s linear;
}
.f-menu__link:hover {
  color: var(--secondary);
}
.f-menu__link, .f-menu__title {
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 1739px) {
  .f-menu__link, .f-menu__title {
    font-size: 16px;
    line-height: 20px;
  }
}

.f-contacts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 1739px) {
  .f-contacts {
    row-gap: 20px;
  }
}
@media (max-width: 1023px) {
  .f-contacts {
    grid-area: 1/2/2/4;
    flex-direction: row;
    column-gap: 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .f-contacts {
    column-gap: 25px;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .f-contacts {
    flex-direction: column;
  }
}
.f-contacts__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 20px;
}
@media (max-width: 1023px) {
  .f-contacts__row {
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
  }
}
@media (max-width: 480px) {
  .f-contacts__row {
    gap: 15px;
  }
}
.f-contacts .office__info {
  width: calc(100% - 26px);
  max-width: 240px;
  min-width: 154px;
}
@media (max-width: 1739px) {
  .f-contacts .office__info {
    display: block;
    min-width: 146px;
  }
}
@media (max-width: 1023px) {
  .f-contacts .office__info {
    max-width: 210px;
    min-width: 1px;
  }
}
@media (max-width: 575px) {
  .f-contacts .office__info {
    min-width: 146px;
  }
}
@media (max-width: 480px) {
  .f-contacts .office__info {
    min-width: 1px;
  }
}
.f-contacts .whatsapp {
  width: 40px;
  height: 40px;
}
.f-contacts .whatsapp svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1739px) {
  .f-contacts .office__icon {
    width: 16px;
    height: 16px;
    border: none;
  }
}
@media (max-width: 1739px) {
  .f-contacts .office__icon svg {
    width: 100%;
    height: 100%;
  }
}
.f-contacts__row .office {
  max-width: 300px;
}
.f-contacts__row .office .office__tel {
  font-size: 20px;
}
.f-contacts__row .office .office__text {
  font-size: 13px;
}

.bottom-menu {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: -1000px;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  padding: 40px 20px 110px;
  background: #fff;
  border: 1px solid #ced7d9;
  border-radius: 26px 26px 0 0;
  transition: bottom 0.5s;
}
.bottom-menu.open {
  bottom: 0;
}
.bottom-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid #ced7d9;
  border-radius: 50px;
}
.bottom-menu__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
}
.bottom-menu__title {
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 26px;
  color: var(--primary);
}
.bottom-menu__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}
.bottom-menu__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--primary);
}

.developer {
  font-size: 12px;
}
.developer a {
  color: var(--secondary);
}

.footer_cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 18px;
  padding-top: 38px;
  padding-bottom: 30px;
  align-items: start;
}
@media (max-width: 1739px) {
  .footer_cols {
    grid-column-gap: 24px;
  }
}
@media (max-width: 1299px) {
  .footer_cols {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 36px;
    align-items: start;
  }
}
@media (max-width: 1023px) {
  .footer_cols {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 36px;
  }
}
@media (max-width: 767px) {
  .footer_cols {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 0;
  }
}
.footer_cols .col {
  border-right: 1px solid #D9D9D9;
}
@media (max-width: 767px) {
  .footer_cols .col {
    border-right: 0;
    border-bottom: 1px solid #D9D9D9;
    background: var(--bg-box);
    padding: 20px 15px;
  }
}
.footer_cols .col:last-child {
  border-right: 0;
}
@media (max-width: 767px) {
  .footer_cols .col:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 1299px) {
  .footer_cols .col:nth-child(3) {
    border-right: 0;
  }
}
@media (max-width: 1023px) {
  .footer_cols .col:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .footer_cols .col:nth-child(3), .footer_cols .col:nth-child(4) {
    border-bottom: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer_cols .col:nth-child(1) {
    border-radius: 10px 10px 0 0;
  }
}

.contacts_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts_box .item .label {
  font-size: 10px;
  font-weight: 500;
  color: #5E6772;
}
.contacts_box .item a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #36414F;
  text-decoration: none;
}
.contacts_box .item a:hover {
  color: var(--secondary);
}
.contacts_box .item a span {
  font-size: 18px;
  font-weight: 700;
  min-width: 164px;
}
.contacts_box .item a img {
  display: block;
  width: 18px;
  height: 18px;
}

.footer_bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  justify-content: space-between;
  grid-column-gap: 30px;
  grid-row-gap: 18px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 11px;
  color: #798282;
}
@media (max-width: 1023px) {
  .footer_bottom {
    grid-template-columns: 100%;
    text-align: center;
  }
}
.footer_bottom .col.mobile {
  display: none;
}
@media (max-width: 1023px) {
  .footer_bottom .col.mobile {
    display: block;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 20px;
    order: 1;
  }
}
@media (max-width: 1023px) {
  .footer_bottom > *:nth-child(2) {
    order: 2;
  }
}
@media (max-width: 1023px) {
  .footer_bottom > *:nth-child(3) {
    order: 5;
  }
}
@media (max-width: 1023px) {
  .footer_bottom > *:nth-child(4) {
    order: 3;
  }
}
@media (max-width: 1023px) {
  .footer_bottom > *:nth-child(5) {
    order: 4;
  }
}
.footer_bottom a {
  color: #798282;
  text-decoration: underline;
}
.footer_bottom .dev {
  color: #000;
  text-decoration: none;
}
.footer_bottom .dev span {
  color: var(--secondary);
}

.footer-yandex-score {
  border: 1px solid #ababab;
  border-radius: 10px;
  overflow: hidden;
  width: 225px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-yandex-score > iframe {
  display: block;
  transform: scale(1.5);
}

.whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(174, 179, 179, 0.3);
  border-radius: 50%;
  transition: 0.3s linear;
}
.whatsapp svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
}
.whatsapp:hover {
  border-color: var(--green);
}

div.whatsapp-widjet {
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  div.whatsapp-widjet {
    bottom: 24px;
    right: 24px;
  }
}
@media (max-width: 575px) {
  div.whatsapp-widjet {
    bottom: 78px;
  }
}

div.whatsapp-widjet a.mobile {
  display: none;
  background: var(--bg-card);
  padding: 10px;
  border-radius: 100%;
  border: 1px solid rgba(174, 179, 179, 0.3);
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 1s;
}
@media (max-width: 767px) {
  div.whatsapp-widjet a.mobile {
    display: flex;
  }
}

div.whatsapp-widjet a.mobile:hover {
  border-color: #3dbf00;
  transition: 0.5s;
}

div.whatsapp-widjet a.mobile svg {
  display: block;
  width: 36px;
  height: 36px;
  fill: #3dbf00;
}

div.whatsapp-widjet a.mobile::after {
  content: "";
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 6px solid #3dbf00;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 2.5s infinite ring;
}

div.whatsapp-widjet div.pc {
  display: none;
  background: var(--bg-card);
  padding: 10px;
  border: 1px solid rgba(174, 179, 179, 0.3);
  border-radius: 10px 0 0;
  position: relative;
  min-width: 250px;
  box-shadow: -2px -2px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  div.whatsapp-widjet div.pc {
    display: block;
  }
}

div.whatsapp-widjet div.pc div.button {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 1s;
}

div.whatsapp-widjet div.pc div.button svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: #3dbf00;
}

div.whatsapp-widjet div.pc div.button:hover {
  border-color: #3dbf00;
  color: #3dbf00;
  transition: 0.5s;
}

div.whatsapp-widjet div.pc div.popup {
  position: absolute;
  z-index: 11;
  bottom: calc(100% + 1px);
  left: 0;
  width: 100%;
  padding: 10px;
  background: var(--bg-card);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(174, 179, 179, 0.3);
  border-radius: 10px 0 0;
  text-align: center;
  box-shadow: -2px -2px 15px rgba(0, 0, 0, 0.1);
}

div.whatsapp-widjet div.pc div.popup img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

div.whatsapp-widjet div.pc div.popup span.close {
  display: block;
  position: absolute;
  z-index: 12;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

div.whatsapp-widjet div.pc div.popup span.close svg {
  stroke: var(--secondary);
  width: 24px;
  height: 24px;
}

.panel-sold {
  background: red;
  color: #fff;
  display: inline-block;
  padding: 10px;
}

.popup_banner {
  position: fixed;
  z-index: 9999;
  top: 220px;
  right: -558px;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .popup_banner {
    right: -308px;
  }
}
.popup_banner.open {
  right: 20px;
}
.popup_banner .type {
  position: absolute;
  z-index: 10000;
  color: #fff;
  left: -19px;
  top: 50%;
  transform: rotate(-90deg) translate(20%, 0);
}
.popup_banner .banner_box {
  max-width: 580px;
  position: relative;
  padding-left: 22px;
  background: rgba(223, 0, 0, 0.75);
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .popup_banner .banner_box {
    max-width: 330px;
  }
}
.popup_banner .banner_box img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.popup_banner .banner_box svg {
  position: absolute;
  z-index: 9999;
  top: 10px;
  left: 35px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.popup_banner .banner_box .line1 {
  position: absolute;
  bottom: 68px;
  right: 10px;
  background: #fff;
  color: #000;
  padding: 5px 10px;
  font-size: 26px;
  font-weight: 600;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .popup_banner .banner_box .line1 {
    bottom: 42px;
  }
}
.popup_banner .banner_box .line2 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--secondary);
  color: #fff;
  padding: 5px 10px;
  font-size: 26px;
  font-weight: 600;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .popup_banner .banner_box .line1,
  .popup_banner .banner_box .line2 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  jdiv.__jivoMobileButton.__jivoMobileButton {
    top: auto !important;
    left: auto !important;
    right: 10px !important;
    bottom: 10px !important;
    width: 48px !important;
    height: 48px !important;
  }
  jdiv.__jivoMobileButton.__jivoMobileButton > jdiv {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  background: var(--secondary);
  border: var(--btn-border-width) solid var(--secondary);
  border-radius: 60px;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .btn {
    font-size: 14px;
    line-height: 15px;
  }
}
.btn:hover {
  background: #fff;
  color: var(--secondary);
}
.btn--green {
  border-color: #3dbf00;
  background-color: #3dbf00;
}
.btn--green:hover {
  color: #3dbf00;
}
.btn--tg {
  border-color: #08c;
  background-color: #08c;
}
.btn--tg:hover {
  color: #08c;
}
.btn--yt {
  border-color: #cd201f;
  background-color: #cd201f;
}
.btn--yt:hover {
  color: #cd201f;
}
.btn--filter {
  min-width: 185px;
}
@media (max-width: 575px) {
  .btn--filter {
    width: 100%;
  }
}
.btn.reverse {
  background: var(--bg-box);
  color: var(--secondary);
}
.btn.reverse:hover {
  background: var(--secondary);
  color: var(--bg-box);
}
.btn.telegram-auth {
  background: #08c;
  border-color: #08c;
  color: #fff;
  gap: 10px;
  transition: 1s;
  box-sizing: border-box;
}
.btn.telegram-auth:hover {
  background: #fff;
  color: #08c;
  transition: 0.5s;
}
.btn.telegram-auth:hover svg {
  fill: #08c;
  transition: 0.5s;
}
.btn--messanger {
  padding: 0;
  background: none;
  border: 0;
}
.btn.btn-invert {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  color: #fff;
}
.btn.btn-invert:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.btn.btn-accent {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: var(--btn-border-width);
  border-color: transparent;
  background: var(--accent-surface);
  color: #fff;
}
.btn.btn-accent::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -30%;
  background: var(--accent-glow);
  animation: hdr-accent-pulse 4s ease-in-out infinite;
}
.btn.btn-accent:hover {
  background: var(--accent-surface);
  border-color: transparent;
  color: #fff;
  filter: grayscale(0.5);
}
@media (prefers-reduced-motion: reduce) {
  .btn.btn-accent::before {
    animation: none;
  }
}
.btn.btn-lg {
  padding: 21px 46px;
  font-size: 18px;
  line-height: 19px;
}

.close-btn, .close-btn:focus, .close-btn:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid #eeebde;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1023px) {
  .close-btn, .close-btn:focus, .close-btn:hover {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .close-btn, .close-btn:focus, .close-btn:hover {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}
.close-btn svg, .close-btn:focus svg, .close-btn:hover svg {
  width: 26px;
  height: 26px;
  stroke: var(--font-dark);
}
@media (max-width: 1023px) {
  .close-btn svg, .close-btn:focus svg, .close-btn:hover svg {
    width: 20px;
    height: 20px;
  }
}
.close-btn:focus:hover, .close-btn:hover, .close-btn:hover:hover {
  border-color: var(--font-dark);
}

.btn-border {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 14px 20px;
  border: 1px solid var(--secondary);
  border-radius: 60px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--secondary);
  background-color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .btn-border {
    font-size: 14px;
    line-height: 15px;
  }
}
.btn-border:hover {
  background-color: var(--secondary);
  color: #fff;
}

.calc-toggle {
  margin-bottom: 60px;
}
@media (max-width: 1739px) {
  .calc-toggle {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .calc-toggle {
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .calc-toggle {
    position: relative;
    flex-wrap: nowrap;
    margin: 0 -40px 30px;
  }
}
@media (max-width: 575px) {
  .calc-toggle {
    margin: 0 -30px 20px;
  }
}
@media (max-width: 374px) {
  .calc-toggle {
    margin: 0 -20px 20px;
  }
}
.calc-toggle::after {
  display: none;
}
.calc-toggle__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
}
@media (max-width: 1199px) {
  .calc-toggle__row {
    gap: 16px;
  }
}
@media (max-width: 1023px) {
  .calc-toggle__row {
    padding: 0 40px 10px;
  }
}
@media (max-width: 575px) {
  .calc-toggle__row {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 374px) {
  .calc-toggle__row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.calc-toggle__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 30px;
  border: 1px solid var(--secondary);
  border-radius: 60px;
  font-weight: 400;
  font-size: 16px;
  color: var(--secondary);
  background: #fff;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .calc-toggle__btn {
    padding: 20px 25px;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .calc-toggle__btn {
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  .calc-toggle__btn {
    flex: none;
  }
}
.calc-toggle__btn span:nth-child(2) {
  display: none;
}
@media (max-width: 1739px) {
  .calc-toggle__btn span:first-child {
    display: none;
  }
}

.share-btn {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 20px;
}
@media (max-width: 1739px) {
  .share-btn {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .share-btn {
    margin-left: 18px;
  }
}
.share-btn svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--gray);
  transition: 0.3s linear;
}
.share-btn:hover svg {
  fill: var(--secondary);
}

.add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  width: 302px;
  height: 78px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  font-weight: 400;
  font-size: 18px;
  color: var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .add-btn {
    width: 280px;
    height: 74px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .add-btn {
    margin-left: 50px;
  }
}
@media (max-width: 575px) {
  .add-btn {
    width: 100%;
    max-width: 280px;
    height: 62px;
    margin: 0 30px;
    font-size: 12px;
  }
}
@media (max-width: 374px) {
  .add-btn {
    margin: 0 15px;
  }
}
.add-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .add-btn__icon {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575px) {
  .add-btn__icon {
    width: 22px;
    height: 22px;
  }
}
.add-btn__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .add-btn__icon svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 575px) {
  .add-btn__icon svg {
    width: 14px;
    height: 14px;
  }
}
.add-btn:hover {
  background: var(--secondary);
  color: #fff;
}
.add-btn:hover .add-btn__icon {
  background: #fff;
}
.add-btn:hover .add-btn__icon svg {
  stroke: var(--secondary);
}

.btn-reset {
  display: block;
  padding: 14px 24px;
  border: 1px solid #ced7d9;
  border-radius: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--gray);
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
.btn-reset:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn,
.s-request__btn,
.s-request__full-btn {
  padding: 17px 38px;
}

.btn-sm {
  padding: 9px 20px;
  line-height: 16px;
}

.button-red {
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: #fff;
  padding: 5px;
  border-radius: 4px;
}
.button-red:hover {
  background: #fff;
  color: var(--secondary);
}

.section-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
}

.hdr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  --hdr-glass: linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, rgba(102, 102, 102, .4) 100%);
  --hdr-glass-border: rgba(255, 255, 255, .9);
  --hdr-glass-shadow: 0 10px 30px -14px rgba(40, 47, 47, .22);
  --hdr-text: #fff;
  --hdr-text-dim: rgba(255, 255, 255, .68);
  --hdr-hover-bg: rgba(255, 255, 255, .14);
}
.hdr[data-minify="1"] {
  position: sticky;
  top: 0;
}
.hdr:not([data-minify="1"]) .hdr__fab {
  display: none;
}
.hdr:not([data-minify="1"]).is-scrolled, .hdr:not([data-minify="1"]).is-leaving {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.hdr:not([data-minify="1"]).is-scrolled {
  animation: hdr-fixed-in 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}
.hdr:not([data-minify="1"]).is-leaving {
  animation: hdr-fixed-out 0.32s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hdr:not([data-minify="1"]).is-scrolled, .hdr:not([data-minify="1"]).is-leaving {
    animation: none;
  }
}
.hdr.is-scrolled .header-info__holder, .hdr.is-leaving .header-info__holder {
  display: none;
}
.hdr--hfull {
  --hdr-glass-shadow: 0 14px 32px -14px rgba(0, 0, 0, .55);
}
.hdr__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 20px);
  max-width: 460px;
  height: 56px;
  padding: 0 5px;
  margin: 40px 0 0;
  border-radius: 100px;
  background: var(--hdr-glass);
  border: 2px solid var(--hdr-glass-border);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, var(--hdr-glass-shadow);
  color: var(--hdr-text);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}
@media (max-width: 480px) {
  .hdr__bar {
    height: 48px;
    margin-top: 20px;
    padding: 0 6px 0 12px;
  }
}
.header-info__holder + .hdr__bar {
  margin-top: 20px;
}
.hdr.is-scrolled .hdr__bar, .hdr.is-leaving .hdr__bar {
  margin-top: 20px;
}
@media (max-width: 480px) {
  .hdr.is-scrolled .hdr__bar, .hdr.is-leaving .hdr__bar {
    margin-top: 10px;
  }
}
.hdr__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
  min-width: 0;
}
.hdr__mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: none;
}
@media (max-width: 480px) {
  .hdr__mark {
    width: 38px;
    height: 38px;
  }
}
.hdr__word {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .hdr__word {
    display: none;
  }
}
.hdr__phone {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  overflow: hidden;
  color: var(--hdr-text);
  text-align: center;
}
.hdr__phone-label {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .hdr__phone-label {
    font-size: 9.5px;
  }
}
.hdr__phone-num {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
}
@media (max-width: 480px) {
  .hdr__phone-num {
    font-size: 14px;
  }
}
.hdr__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: none;
  border: 0;
  cursor: pointer;
  background: none;
  color: var(--hdr-text);
  transition: background 0.15s ease;
}
.hdr__burger svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hdr__burger .ic-close {
  display: none;
}
.hdr__burger:hover {
  background: var(--hdr-hover-bg);
}
@media (max-width: 480px) {
  .hdr__burger {
    width: 36px;
    height: 36px;
  }
  .hdr__burger svg {
    width: 22px;
    height: 22px;
  }
}
.hdr.is-open .hdr__burger .ic-menu {
  display: none;
}
.hdr.is-open .hdr__burger .ic-close {
  display: block;
}
.hdr__fab {
  position: fixed;
  z-index: 9001;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--hdr-glass);
  border: 2px solid var(--hdr-glass-border);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--hdr-glass-shadow);
  color: var(--hdr-text);
  opacity: 0;
  transform: translateY(-14px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}
.hdr__fab svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 480px) {
  .hdr__fab {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
  }
  .hdr__fab svg {
    width: 22px;
    height: 22px;
  }
}
.hdr[data-minify="1"].is-scrolled {
  pointer-events: none;
}
.hdr[data-minify="1"].is-scrolled .hdr__bar {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}
.hdr[data-minify="1"].is-scrolled .hdr__fab {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hdr.is-open .hdr__fab {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}
.hdr__backdrop {
  position: fixed;
  inset: 0;
  z-index: 8990;
  background: rgba(10, 8, 8, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, background 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease;
}
.hdr.is-open .hdr__backdrop {
  opacity: 1;
  pointer-events: auto;
  background: rgba(10, 8, 8, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hdr__panel {
  position: fixed;
  z-index: 8995;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: min(88%, 350px);
  display: flex;
  flex-direction: column;
  border-radius: 26px 0 0 26px;
  background: var(--bg-menu);
  border: 1px solid var(--border);
  border-right: 0;
  box-shadow: 0 24px 48px -18px rgba(0, 0, 0, 0.35);
  color: var(--primary);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: auto;
}
@media (max-width: 767px) {
  .hdr__panel {
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    border: 0;
    border-left: 1px solid var(--border);
  }
}
.hdr.is-open .hdr__panel {
  transform: translateX(0);
}
.hdr__panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--primary);
}
.hdr__panel-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.hdr__panel-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 16px;
}
.hdr__social {
  display: flex;
  gap: 8px;
  margin-top: -10px;
}
.hdr__social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
}
.hdr__social-link .hdr__social-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: none;
}
.hdr__social-link .hdr__social-ico svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.hdr__social-link--yt {
  color: #cd201f;
}
.hdr__social-link--yt .hdr__social-ico {
  background: #cd201f;
}
.hdr__social-link--tg {
  color: #08c;
}
.hdr__social-link--tg .hdr__social-ico {
  background: #08c;
}
.hdr__social-link--vk {
  color: #4680c2;
}
.hdr__social-link--vk .hdr__social-ico {
  background: #4680c2;
}
.hdr__account-btn {
  width: auto;
  align-self: flex-start;
  letter-spacing: 0.02em;
  font-size: 14px;
}
.hdr__nav {
  display: flex;
  flex-direction: column;
  flex: none;
  background: var(--bg-box-gray);
  border-radius: 18px;
  overflow: auto;
  gap: 8px;
  padding: 8px;
}
.hdr__nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 6px 10px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  border-radius: var(--nav-item-border-radius);
  transition: background-color 0.15s ease;
}
a.hdr__nav-trigger:hover,
button.hdr__nav-trigger:hover {
  background: var(--bg-card);
}

.hdr__nav-trigger.active {
  color: var(--secondary);
}
.hdr__nav-trigger.active:hover {
  color: var(--secondary);
}
.hdr__nav-trigger--accent {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--accent-surface);
  transition: background-color 0.15s ease, filter 0.3s ease;
}
a.hdr__nav-trigger--accent:hover {
  background: var(--accent-surface);
  filter: grayscale(0.5);
}

.hdr__nav-trigger--accent::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -30%;
  background: var(--accent-glow);
  animation: hdr-accent-pulse 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hdr__nav-trigger--accent::before {
    animation: none;
  }
}
.hdr .chev {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.hdr__nav-trigger--combo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0;
  background: none;
}
.hdr__nav-trigger__link {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 6px 10px;
  border-radius: var(--nav-item-border-radius);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  transition: background-color 0.15s ease;
}
.hdr__nav-trigger__link:hover {
  background: var(--bg-card);
}
.hdr__nav-trigger__link.active {
  color: var(--secondary);
}
.hdr__nav-trigger__link.active:hover {
  color: var(--secondary);
}
.hdr__nav-trigger__chev {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 44px;
  height: 44px;
  margin-right: 0;
  border: 2px solid var(--bg-card);
  border-radius: var(--nav-item-border-radius);
  background: var(--bg-box-gray);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.hdr__nav-trigger__chev:hover {
  background: var(--bg-box);
}
.hdr__nav-item.is-open .hdr__nav-trigger .chev {
  transform: rotate(180deg);
}
.hdr__nav-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}
.hdr__nav-body > div {
  overflow: hidden;
}
.hdr__nav-item.is-open .hdr__nav-body {
  grid-template-rows: 1fr;
}
.hdr__nav-link {
  display: block;
  padding: 10px 18px 10px 30px;
  border-radius: var(--nav-item-border-radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  transition: background 0.15s ease;
}
.hdr__nav-link:first-child {
  margin-top: 8px;
}
.hdr__nav-link:last-child {
  margin-bottom: 8px;
}
.hdr__nav-link:hover {
  background: var(--bg-card);
  color: var(--primary);
}
.hdr__nav-link.active {
  color: var(--secondary);
}
.hdr__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-box-gray);
  border: 0;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 12.5px;
  color: var(--gray);
}
.hdr__addr {
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
}
.hdr__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--green);
}
.hdr__status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}
.hdr__status.is-closed {
  color: var(--secondary);
}
.hdr__status.is-closed .dot {
  background: var(--secondary);
}
.hdr__contact a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
}
.hdr__contact a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.hdr__contact a:hover {
  color: var(--secondary);
}
.hdr__mail {
  color: var(--gray);
}
.hdr__city {
  display: flex;
  flex-direction: column;
  background: var(--bg-box-gray);
  border-radius: 18px;
  padding: 8px;
}
.hdr__city-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.hdr__city-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: none;
}
.hdr__city-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--secondary);
}
.hdr__panel-cta {
  flex: none;
  padding: 0 26px 16px 16px;
}
.hdr__cta-btn {
  width: 100%;
}

.hdr__cta-btn,
.hdr__account-btn {
  padding: 12px 20px;
}

.hdr--lite .hdr__burger,
.hdr--lite .hdr__phone,
.hdr--lite .hdr__fab {
  display: none;
}
.hdr--lite .hdr__bar {
  justify-content: center;
}

input.calc-input {
  width: 80px;
  border: 1px solid #ced7d9;
  border-radius: 5px;
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  height: 28px;
  padding: 0 3px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
}
.form-group input {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .form-group input {
    height: 58px;
  }
}
.form-group input:placeholder-shown {
  background: #fff;
}
.form-group input::placeholder {
  background: #fff;
  color: var(--font-dark);
}
.form-group input:focus {
  border-color: var(--font-dark);
  background: #fff;
}
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--font-dark);
  transition: background-color 5000s ease-in-out;
}
.form-group textarea {
  width: 100%;
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: 0 0;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary);
  resize: vertical;
  outline: 0;
}
@media (max-width: 1739px) {
  .form-group textarea {
    min-height: 160px;
  }
}
@media (max-width: 575px) {
  .form-group textarea {
    min-height: 150px;
  }
}
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group__double {
  position: relative;
  display: flex;
  width: 100%;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 10px;
}
@media (max-width: 1739px) {
  .form-group__double {
    height: 58px;
  }
}
.form-group__double .select2 {
  width: 50%;
  height: 100%;
  padding-left: 30px;
}
@media (max-width: 1739px) {
  .form-group__double .select2 {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .form-group__double .select2 {
    padding-left: 13px;
  }
}
.form-group__double .select2 .selection {
  height: 100%;
}
.form-group__double .select2-container--default .select2-selection--single {
  height: 100% !important;
  border: none;
}
.form-group__double .select2.select2-container:first-of-type {
  border-right: 1px solid var(--border);
}
.form-group__double input {
  width: 50%;
  height: 100% !important;
  padding-left: 50px;
  padding-right: 10px;
  border: none;
  background: 0 0;
  border-radius: 9px 0 0 9px;
}
@media (max-width: 1739px) {
  .form-group__double input {
    padding-left: 40px;
  }
}
@media (max-width: 575px) {
  .form-group__double input {
    padding-left: 28px;
  }
}
.form-group__double input:focus {
  background: 0 0;
}
.form-group__double input:nth-child(2) {
  border-left: 1px solid var(--border);
  border-radius: 0 9px 9px 0;
}
.form-group__double:has(input:focus) {
  border-color: var(--primary);
}
.form-group__double::before {
  content: " от";
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
}
@media (max-width: 1739px) {
  .form-group__double::before {
    left: 14px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .form-group__double::before {
    left: 6px;
  }
}
.form-group__double::after {
  content: " до";
  position: absolute;
  z-index: 1;
  left: calc(50% + 20px);
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
}
@media (max-width: 1739px) {
  .form-group__double::after {
    left: calc(50% + 14px);
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .form-group__double::after {
    left: calc(50% + 6px);
  }
}
.form-group__section {
  position: relative;
  width: 50%;
  height: 100%;
  border: none;
  border-radius: 9px 0 0 9px;
}
.form-group__section input {
  width: 100%;
  border-radius: 9px 0 0 9px;
}
.form-group__section:nth-child(2) {
  border-left: 1px solid var(--border);
  border-radius: 0 9px 9px 0;
}
.form-group__section:nth-child(2) input {
  border: none;
  border-radius: 0 9px 9px 0;
}
.form-group__dropdown {
  display: none;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: calc(100% + 1px);
  margin-top: 5px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 100%;
  background: var(--bg-card);
}
.form-group__dropdown span {
  display: block;
  padding: 5px 10px;
  margin-right: 10px;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  color: var(--primary);
  white-space: nowrap;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s linear;
}
.form-group__dropdown span:hover {
  background: var(--secondary);
  color: #fff;
}
.form-group__double select.select2 {
  padding-left: 45px;
  border: none;
}
.form-group__double select.select2:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid var(--border);
}
.form-group__double select.select2:nth-child(2) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media (max-width: 575px) {
  .form-group__dropdown, .form-group__dropdown span {
    padding: 5px;
  }
}
.form-group__double.dates {
  gap: 5px;
  border: 0;
}
.form-group__double.dates::before, .form-group__double.dates::after {
  display: none;
  content: "";
}
.form-group__double.dates .ym_from,
.form-group__double.dates .ym_to {
  width: 50%;
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.form-group__double.dates .ym_from span:nth-child(4),
.form-group__double.dates .ym_to span:nth-child(4) {
  max-width: 60px;
}
.form-group__double.dates .ym_from .select2-container--default:nth-of-type(2) .select2-selection--single {
  border-radius: 0;
}
.form-group__double.dates .select2,
.form-group__double.dates .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.form-group__double.dates .select2-container--default .select2-selection--single .select2-selection__rendered,
.form-group__double.dates .select2-selection {
  padding: 0;
}
.form-group__double.dates .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.form-group__double.dates .select2-container--default .select2-selection--single .select2-selection__rendered {
  width: 100%;
  text-indent: 10px;
}
.form-group__double.dates .select2-selection__arrow {
  display: none;
}
.form-group__double .select2-container--default:nth-of-type(2) .select2-selection--multiple, .form-group__double .select2-container--default:nth-of-type(2) .select2-selection--single {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-range {
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
}
.form-range .irs--flat .irs-line {
  top: 29px;
  height: 3px;
  background: #eeebde;
}
.form-range .irs--flat .irs-bar {
  top: 29px;
  height: 3px;
  background-color: var(--secondary);
}
.form-range .irs--flat .irs-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--secondary);
}
.form-range .irs--flat .irs-handle > i {
  display: none !important;
}
.form-range .irs--flat .irs-from,
.form-range .irs--flat .irs-single,
.form-range .irs--flat .irs-to {
  top: 40px;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
  background-color: transparent;
}
.form-range .irs--flat .irs-from:before,
.form-range .irs--flat .irs-max,
.form-range .irs--flat .irs-min,
.form-range .irs--flat .irs-single:before,
.form-range .irs--flat .irs-to:before {
  display: none;
}
.form-range--lg {
  padding-bottom: 10px;
}
@media (max-width: 374px) {
  .form-range--lg {
    display: none;
  }
}
.form-range--lg .irs--flat .irs-from,
.form-range--lg .irs--flat .irs-single,
.form-range--lg .irs--flat .irs-to {
  display: none;
}
.form-range--lg .irs-grid-text {
  font-size: 12px;
}
@media (max-width: 767px) {
  .form-range--lg .irs-grid-text {
    font-size: 10px;
  }
}

.form-code {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-top: 18px;
}
.form-code label {
  display: block;
  width: 316px;
  margin: 0 auto 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(78, 78, 78, 0.7);
  text-align: left;
}
@media (max-width: 1023px) {
  .form-code label {
    width: 234px;
  }
}
.form-code__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 316px;
  margin: 0 auto 30px;
}
@media (max-width: 1023px) {
  .form-code__grid {
    gap: 10px;
    width: 234px;
    margin-bottom: 20px;
  }
}
.form-code__grid input {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: 0 0;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary);
  text-align: center;
}
@media (max-width: 1023px) {
  .form-code__grid input {
    height: 50px;
  }
}
.form-code__grid input:focus {
  border-color: var(--font-dark);
}
.form-code span {
  align-self: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: var(--font-dark);
}

.form-file {
  width: 290px;
}
@media (max-width: 1739px) {
  .form-file {
    width: 270px;
  }
}
@media (max-width: 575px) {
  .form-file {
    width: 230px;
  }
}
.form-file input[type=file] {
  display: none;
}
.form-file label {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  width: 100%;
  height: 78px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .form-file label {
    height: 74px;
  }
}
@media (max-width: 575px) {
  .form-file label {
    height: 62px;
  }
}
.form-file label span {
  font-weight: 400;
  font-size: 18px;
  color: var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .form-file label span {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .form-file label span {
    font-size: 14px;
  }
}
.form-file label i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .form-file label i {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575px) {
  .form-file label i {
    width: 22px;
    height: 22px;
  }
}
.form-file label i svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .form-file label i svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 575px) {
  .form-file label i svg {
    width: 14px;
    height: 14px;
  }
}
.form-file label:hover {
  background: var(--secondary);
}
.form-file label:hover span {
  color: #fff;
}
.form-file label:hover i {
  background: #fff;
}
.form-file label:hover i svg {
  stroke: var(--secondary);
}
.form-file .filename {
  margin: 20px 0 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1739px) {
  .form-file .filename {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .form-file .filename {
    font-size: 14px;
  }
}

.filter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 20px;
  margin-bottom: 50px;
  padding: 50px;
  background: var(--bg-card);
  border-radius: 50px;
}
@media (max-width: 1739px) {
  .filter {
    margin-bottom: 40px;
    padding: 40px;
  }
}
@media (max-width: 1199px) {
  .filter {
    padding: 30px;
    border-radius: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .filter {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .filter {
    border-radius: 10px;
  }
}
.filter--mb30 {
  margin-bottom: 30px;
}
@media (max-width: 1739px) {
  .filter--mb30 {
    margin-bottom: 20px !important;
  }
}
.filter .btn,
.filter .btn-border {
  height: 64px;
}
@media (max-width: 1739px) {
  .filter .btn,
  .filter .btn-border {
    height: 58px;
  }
}
.filter .form-checkbox {
  margin-bottom: 22px;
}
@media (max-width: 1739px) {
  .filter .form-checkbox {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .filter .form-checkbox {
    margin-bottom: 0;
  }
}
.filter__full {
  grid-column-start: 1;
  grid-column-end: -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 20px;
}
@media (max-width: 1739px) {
  .filter__full {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .filter__full {
    grid-template-columns: 100%;
  }
}
.filter__full .form-range {
  grid-column-start: 2;
  grid-column-end: -1;
}
@media (max-width: 1023px) {
  .filter__full .form-range {
    grid-column-start: 1;
  }
}
.filter .btn {
  grid-column-start: -2;
  grid-column-end: -1;
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .filter .btn {
    font-size: 14px;
  }
}
.filter .form-group label {
  color: rgba(78, 78, 78, 0.7);
}
.filter .form-checkbox label {
  color: var(--font-dark);
}
.filter__toggle {
  display: none;
}
@media (max-width: 767px) {
  .filter__toggle {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
}
.filter__toggle span {
  border-bottom: 1px dashed var(--primary);
  font-size: 14px;
  color: var(--primary);
}
@media (max-width: 767px) {
  .filter__hmob {
    display: none;
  }
}

.filter-nowrap {
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .filter-nowrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .filter-nowrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .filter-nowrap {
    margin-bottom: 20px;
  }
}
.filter-nowrap__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}
@media (max-width: 1199px) {
  .filter-nowrap__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .filter-nowrap__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 16px;
  }
}
.filter-nowrap__result {
  grid-column-start: 1;
  grid-column-end: 2;
  align-self: center;
}
@media (max-width: 767px) {
  .filter-nowrap__result {
    order: 1;
    text-align: center;
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .filter-nowrap__result {
    padding: 10px 0;
  }
}
.filter-nowrap__result p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
}
.filter-nowrap__result p span {
  color: var(--secondary);
}
.filter-nowrap .btn {
  grid-column-start: -2;
  grid-column-end: -1;
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .filter-nowrap .btn, .filter-nowrap__result p {
    font-size: 14px;
  }
}

.filter-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .filter-menu {
    position: relative;
  }
}
.filter-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1739px) {
  .filter-menu__list {
    gap: 13px;
  }
}
@media (max-width: 1199px) {
  .filter-menu__list {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .filter-menu__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 -30px;
    padding: 0 30px 10px;
  }
}
@media (max-width: 374px) {
  .filter-menu__list {
    padding: 0 20px 10px;
  }
}
.filter-menu__link {
  padding: 14px 24px;
  border: 1px solid #ced7d9;
  border-radius: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .filter-menu__link {
    padding: 12px 20px;
    font-size: 12px;
    line-height: 15px;
  }
}
@media (max-width: 1199px) {
  .filter-menu__link {
    padding: 10px 13px;
  }
}
@media (max-width: 575px) {
  .filter-menu__link {
    flex: none;
  }
}
.filter-menu__group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1739px) {
  .filter-menu__group {
    gap: 13px;
  }
}
@media (max-width: 1199px) {
  .filter-menu__group {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .filter-menu__group {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.filter-menu__checkbox {
  border: 1px solid #ced7d9;
  border-radius: 10px;
}
.filter-menu__checkbox label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  height: 48px;
  padding: 0 14px 0 50px;
  font-weight: 400;
  font-size: 15px;
  color: var(--gray);
  cursor: pointer;
}
@media (max-width: 1739px) {
  .filter-menu__checkbox label {
    height: 41px;
    padding: 0 14px 0 44px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .filter-menu__checkbox label {
    height: 36px;
    padding: 0 14px 0 40px;
  }
}
.filter-menu__checkbox label::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 1px solid #ced7d9;
  border-radius: 5px;
}
@media (max-width: 1739px) {
  .filter-menu__checkbox label::before {
    top: 11px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 1199px) {
  .filter-menu__checkbox label::before {
    top: 9px;
    width: 18px;
    height: 18px;
  }
}
.filter-menu__checkbox input {
  display: none;
}
.filter-menu__checkbox input:checked + label::before {
  background-color: var(--secondary);
  background-image: url(../img/icons/checkmark-outline.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px;
  border-color: var(--secondary);
}
@media (max-width: 1739px) {
  .filter-menu__checkbox input:checked + label::before {
    background-size: 16px;
  }
}
.filter-menu__checkbox:hover {
  border-color: var(--primary);
}
.filter-menu__checkbox:hover label {
  color: var(--primary);
}
.filter-menu__checkbox:hover label::before {
  border-color: var(--primary);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 30px;
  padding: 50px;
  background: #fff;
  border-radius: 50px;
}
@media (max-width: 1739px) {
  .filter-group {
    row-gap: 25px;
    padding: 40px;
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .filter-group {
    row-gap: 20px;
    padding: 30px;
    border-radius: 30px;
  }
}
@media (max-width: 575px) {
  .filter-group {
    row-gap: 15px;
    padding: 20px;
  }
}
.filter-group .filter {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
.filter-group__section {
  padding-bottom: 30px;
  border-bottom: 1px solid #ced7d9;
}
@media (max-width: 1739px) {
  .filter-group__section {
    padding-bottom: 25px;
  }
}
@media (max-width: 1199px) {
  .filter-group__section {
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .filter-group__section {
    padding-bottom: 15px;
  }
}
.filter-group__section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 1023px) {
  .filter-group__section:last-child {
    display: none;
  }
}
@media (max-width: 1023px) {
  .filter-group__section:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.filter-group.block {
  display: block;
}

.filter-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 50px 0;
  margin-bottom: 50px;
  white-space: nowrap;
}
@media (max-width: 1739px) {
  .filter-checks {
    margin-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1199px) {
  .filter-checks {
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .filter-checks {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .filter-checks {
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 10px;
    overflow: auto;
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.calc-input,
.calc-input-new {
  width: 80px;
  border: 1px solid #ced7d9;
  border-radius: 5px;
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  height: 28px;
  padding: 0 3px;
}

.hasError {
  border-color: #ef2222 !important;
}

input.calc-input,
input.calc-input-new {
  text-align: right;
}

.protect-form {
  display: none;
}

.form-checkbox.agree_box input:checked + label::before {
  background-color: #666;
  border-color: #666;
}
.form-checkbox.agree_box label a {
  color: #333;
}
.form-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.form-checkbox label {
  display: block;
  position: relative;
  padding-left: 32px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--primary);
  cursor: pointer;
}
.form-checkbox label a {
  color: #ef2222;
  text-decoration: underline;
}
.form-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--border);
  background-color: transparent;
}
.form-checkbox input {
  display: none;
}
.form-checkbox input:checked + label::before {
  background-color: var(--secondary);
  background-image: url(../img/icons/checkmark-outline.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  border-color: var(--secondary);
}

#dogovor_form .form-group input:disabled {
  background-color: #eee;
}

#dogovor_form .select2-container--default .select2-selection--multiple,
#dogovor_form .select2-container--default .select2-selection--single,
#dogovor_form .form-group textarea {
  background: #fff;
}

.smart-captcha.has-error {
  border: 1px solid red;
  border-radius: 11px;
  overflow: hidden;
}

#fb_auto_new .cb-outer .cb-inner {
  width: 100%;
  padding: 10px 10px 10px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary);
}
@media (max-width: 480px) {
  #fb_auto_new .cb-outer .cb-inner {
    padding: 10px 10px;
  }
}

#fb_auto_new .form-group input,
#fb_auto_new .cb-outer .cb-inner .cb-title {
  font-weight: 600;
  font-size: 18px;
}

#fb_auto_new .cb-outer .cb-inner .cb-title {
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#fb_auto_new .modal__btns {
  display: flex;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--border);
}

#fb_auto_new .modal__btns .btn {
  border-radius: 10px;
  background: #1ac964;
  border: 1px solid #1ac964;
}

#fb_auto_new .modal__btns .btn:hover {
  background: #fff;
  color: #1ac964;
}

#fb_auto_new .cb-outer .cb-inner .cb-btns {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

#fb_auto_new .form_radio_btn {
  display: inline-block;
}

#fb_auto_new .form_radio_btn input[type=radio] {
  display: none;
}

#fb_auto_new .form_radio_btn label {
  cursor: pointer;
  line-height: 40px;
  border-radius: 50px;
  gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  user-select: none;
  background: #939393;
  padding: 5px 5px 5px 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  #fb_auto_new .form_radio_btn label {
    padding: 3px 3px 3px 18px;
    line-height: 32px;
  }
}
@media (max-width: 380px) {
  #fb_auto_new .form_radio_btn label {
    padding: 3px;
    background: transparent !important;
  }
}

#fb_auto_new .form_radio_btn label.no-text {
  padding: 5px !important;
  background: transparent !important;
}
@media (max-width: 480px) {
  #fb_auto_new .form_radio_btn label.no-text {
    padding: 3px !important;
  }
}

#fb_auto_new .form_radio_btn label img {
  width: 48px;
  height: 48px;
  filter: grayscale(1);
}
@media (max-width: 480px) {
  #fb_auto_new .form_radio_btn label img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 380px) {
  #fb_auto_new .form_radio_btn label img {
    width: 48px;
    height: 48px;
  }
}

#fb_auto_new .form_radio_btn input[type=radio]:checked + label img {
  filter: grayscale(0) !important;
}

#fb_auto_new .form_radio_btn input#cb-radio-0:checked + label {
  background: #df0000;
}

#fb_auto_new .form_radio_btn input#cb-radio-1:checked + label {
  background: #69e38a;
}

#fb_auto_new .form_radio_btn input#cb-radio-2:checked + label {
  background: #3d9bff;
}

#fb_auto_new .form_radio_btn input#cb-radio-3:checked + label {
  background: #7e3ce5;
}

#fb_auto_new .form_radio_btn label:hover {
  opacity: 0.85;
}

@media (max-width: 380px) {
  #fb_auto_new .form_radio_btn label > span {
    display: none;
  }
}

.select2 {
  width: 100% !important;
  display: block;
}
.select2.select2-hidden-accessible {
  width: 1px !important;
}
.select2 .selection {
  padding: 0;
  backdrop-filter: none;
}

.select2-container--default .select2-search--inline {
  float: none;
  vertical-align: bottom;
}
.select2-container--default .select2-search--inline .select2-search__field {
  min-height: 24px;
  margin-top: 5px;
  margin-left: 5px;
  resize: none;
  height: 18px;
  vertical-align: middle;
  overflow: hidden;
}
.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  background-color: transparent;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered, .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
  padding-right: 15px;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder, .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #828ea2;
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow, .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  right: 18px;
  top: calc(50% - 5px);
  width: 14px;
  height: 14px;
  padding: 0;
  background: url(../img/icons/chevron.svg) center/contain no-repeat;
  transition: 0.27s ease-in-out;
  transform: rotateX(0);
}
@media (max-width: 1739px) {
  .select2-container--default .select2-selection--multiple .select2-selection__arrow, .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 10px;
    height: 10px;
  }
}
.select2-container--default .select2-selection--multiple .select2-selection__arrow b, .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}
.select2-container--default .select2-selection--multiple {
  min-height: 64px;
  padding-top: 6px;
  padding-bottom: 5px;
}
@media (max-width: 1739px) {
  .select2-container--default .select2-selection--multiple {
    min-height: 58px;
    padding-top: 3px;
    padding-bottom: 2px;
  }
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin: 2px 3px 2px 0;
  padding-left: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  width: auto;
  padding-top: 3px;
  padding-bottom: 3px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border: none;
  padding: 0 4px;
  background-color: transparent;
}
.select2-container--default .select2-selection--single {
  height: 64px;
}
.select2-container--default.select2-container--open .select2-selection__arrow {
  transform: rotateX(180deg);
}
.select2-container--default.select2-container--open .select2-selection--multiple, .select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--font-dark);
  border-radius: 10px !important;
}
.select2-container--default .select2-dropdown {
  z-index: 10;
  margin-top: 5px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 100%;
  background: var(--bg-card);
  user-select: none;
  min-width: 85px;
}
.select2-container--default .select2-results__options {
  user-select: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #e2e8ed;
}
.select2-container--default .select2-results__options::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}
.select2-container--default .select2-results__options::-webkit-scrollbar-track {
  background: #e2e8ed;
}
.select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 0;
  border: none;
}
.select2-container--default .select2-results__option {
  display: block;
  padding: 5px 10px;
  margin-right: 10px;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  color: var(--primary);
  white-space: nowrap;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .select2-container--default .select2-results__option {
    font-size: 12px;
  }
}
.select2-container--default .select2-results__option.bold {
  font-weight: 600;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--secondary);
  color: #fff;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  display: none !important;
}

select.select2 {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 20px;
  background-color: transparent;
  height: 64px;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
  appearance: none;
}

.selection {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 40px;
}
@media (max-width: 1739px) {
  .selection {
    row-gap: 35px;
  }
}
@media (max-width: 1199px) {
  .selection {
    row-gap: 30px;
  }
}
@media (max-width: 575px) {
  .selection {
    row-gap: 20px;
  }
}
.selection__title {
  margin: 0 0 30px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .selection__title {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .selection__title {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .selection__title {
    font-size: 12px;
  }
}
.selection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1199px) {
  .selection__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .selection__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.selection__grid--three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .selection__grid--three {
    grid-template-columns: 100%;
  }
}
.selection__radio {
  height: 100%;
}
.selection__radio label {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 20px;
  height: 100%;
  position: relative;
  padding: 30px 30px 30px 100px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--font-dark);
  cursor: pointer;
}
@media (max-width: 1739px) {
  .selection__radio label {
    padding: 25px 25px 25px 85px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .selection__radio label {
    padding: 20px 20px 20px 75px;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .selection__radio label {
    row-gap: 15px;
    padding: 15px 10px 15px 58px;
    border-radius: 20px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .selection__radio label {
    padding: 47px 15px 15px;
  }
}
@media (max-width: 480px) {
  .selection__radio label {
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .selection__radio label {
    padding-right: 10px;
    font-size: 11px;
  }
}
.selection__radio label::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
@media (max-width: 1739px) {
  .selection__radio label::before {
    top: 25px;
    left: 25px;
  }
}
@media (max-width: 1199px) {
  .selection__radio label::before {
    top: 20px;
    left: 20px;
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 1023px) {
  .selection__radio label::before {
    top: 15px;
    left: 15px;
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 575px) {
  .selection__radio label::before {
    width: 22px;
    height: 22px;
  }
}
.selection__radio input {
  display: none;
}
.selection__radio input:checked + label {
  border-color: var(--secondary);
}
.selection__radio input:checked + label::before {
  background-color: var(--secondary);
  background-image: url(../img/icons/checkmark-outline.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  border-color: var(--secondary);
}
@media (max-width: 1199px) {
  .selection__radio input:checked + label::before {
    background-size: 18px;
  }
}
@media (max-width: 1023px) {
  .selection__radio input:checked + label::before {
    background-size: 16px;
  }
}
@media (max-width: 575px) {
  .selection__radio input:checked + label::before {
    background-size: 12px;
  }
}
.selection__radio--lg label {
  padding-left: 106px;
  font-size: 24px;
}
@media (max-width: 1739px) {
  .selection__radio--lg label {
    padding-left: 85px;
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .selection__radio--lg label {
    padding-left: 75px;
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .selection__radio--lg label {
    padding-left: 58px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .selection__radio--lg label {
    padding-top: 15px;
    padding-left: 58px;
    font-size: 14px;
  }
}
@media (max-width: 374px) {
  .selection__radio--lg label {
    font-size: 14px;
  }
}
.selection__radio--lg label::before {
  width: 46px;
  height: 46px;
}
@media (max-width: 1739px) {
  .selection__radio--lg label::before {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 1199px) {
  .selection__radio--lg label::before {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1023px) {
  .selection__radio--lg label::before {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 575px) {
  .selection__radio--lg label::before {
    width: 28px;
    height: 28px;
  }
}
.selection__radio--lg input:checked + label::before {
  background-size: 26px;
}
@media (max-width: 1739px) {
  .selection__radio--lg input:checked + label::before {
    background-size: 22px;
  }
}
@media (max-width: 1199px) {
  .selection__radio--lg input:checked + label::before {
    background-size: 20px;
  }
}
@media (max-width: 1023px) {
  .selection__radio--lg input:checked + label::before {
    background-size: 16px;
  }
}

@media (max-width: 1739px) {
  .select2-container--default .select2-selection--single,
  select.select2 {
    height: 58px;
  }
}

.fancybox__container {
  z-index: 9000;
}
.fancybox__content {
  width: 100%;
  height: auto !important;
  max-width: 90% !important;
  max-height: 90% !important;
  aspect-ratio: 16/9 !important;
  padding: 0 !important;
  background: #000;
}
.fancybox__content iframe {
  width: 100%;
  height: 100%;
  max-width: 1024px !important;
  max-height: 768px !important;
  display: block !important;
  margin: 0 auto;
  aspect-ratio: 16/9 !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9000;
  overflow-y: auto;
  display: none;
}
.modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  padding: 60px;
  border-radius: 50px;
  background: #fff;
  z-index: 9999;
}
@media (max-height: 900px) {
  .modal__inner {
    top: 10px;
    transform: translateX(-50%);
  }
}
@media (max-width: 1023px) {
  .modal__inner {
    width: 460px;
    padding: 40px 30px;
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .modal__inner {
    width: 380px;
    padding: 40px 30px;
    border-radius: 30px;
  }
}
@media (max-width: 380px) {
  .modal__inner {
    width: 100%;
    min-width: 310px;
  }
}
.modal__inner .btn {
  width: 100%;
  height: 75px;
  margin: 30px 0 25px;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .modal__inner .btn {
    margin: 20px 0 10px;
    height: 50px;
    font-size: 12px;
  }
}
.modal__inner .form-checkbox {
  justify-content: center;
}
@media (max-width: 1023px) {
  .modal__inner .form-checkbox {
    justify-content: flex-start;
  }
}
.modal__inner .form-checkbox label {
  color: var(--font-dark);
}
@media (max-width: 1023px) {
  .modal__inner .form-checkbox label {
    padding-top: 2px;
    font-size: 10px;
  }
}
.modal__inner .form-group label {
  color: rgba(78, 78, 78, 0.7);
}
.modal__inner .form-group input:focus,
.modal__inner .form-group textarea:focus {
  border-color: var(--font-dark);
}
.modal__title {
  margin: 0 0 22px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  text-align: center;
  color: var(--font-dark);
}
@media (max-width: 1023px) {
  .modal__title {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
.modal__text {
  margin: 0 -20px 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: var(--font-dark);
}
@media (max-width: 1023px) {
  .modal__text {
    margin: 0 0 30px;
    font-size: 12px;
  }
}
.modal__text:last-child {
  margin-bottom: 0;
}
.modal__inputs {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .modal__inputs {
    margin-bottom: 30px;
  }
}
.modal__btns {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 25px;
  margin-top: -20px;
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1023px) {
  .modal__btns {
    margin-bottom: 10px;
    margin-top: -15px;
  }
}
.modal__btns .btn {
  margin: 0;
}
@media (max-width: 1023px) {
  .modal__btns .btn {
    margin: 0;
  }
}
.modal__text.no_m {
  margin: 0 0 40px;
}

#js-modal-city .modal__inner {
  width: 850px;
}
@media (max-width: 1023px) {
  #js-modal-city .modal__inner {
    width: calc(100% - 20px);
  }
}

.city-search form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .city-search form {
    margin-bottom: 30px;
  }
}
.city-search form input {
  width: calc(100% - 152px);
  height: 64px;
  padding: 0 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #dcdcdc;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .city-search form input {
    width: 100%;
    height: 58px;
    margin-bottom: 15px;
  }
}
.city-search form .btn {
  width: 132px;
  height: 64px;
  margin: 0;
  border-radius: 45px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .city-search form .btn {
    width: 113px;
    height: 48px;
    font-size: 12px;
    margin-left: auto;
  }
}
.city-search__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  row-gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #e2e8ed;
}
.city-search__list::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}
.city-search__list::-webkit-scrollbar-track {
  background: #e2e8ed;
}
.city-search__list::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 0;
  border: none;
}
@media (max-width: 767px) {
  .city-search__list {
    grid-template-columns: repeat(2, 1fr);
    max-height: 270px;
  }
}
.city-search__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-dark);
  transition: 0.3s linear;
}
.city-search__link strong {
  font-weight: 600;
}
.city-search__link:hover {
  color: var(--secondary);
}
@media (max-width: 767px) {
  .city-search__link {
    font-size: 12px;
  }
}

.dropdown {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 5px);
  left: 10px;
  right: 10px;
  padding: 50px 60px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  display: none;
}
@media (max-width: 1739px) {
  .dropdown {
    padding: 40px;
    border-radius: 30px;
  }
}
@media (max-width: 1199px) {
  .dropdown {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .dropdown {
    border-radius: 10px;
  }
}
.dropdown__menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media (max-width: 1739px) {
  .dropdown__menu {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.dropdown__menu--six {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1739px) {
  .dropdown__menu--six {
    grid-template-columns: repeat(6, 1fr);
  }
}
.dropdown__link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}
@media (max-width: 1739px) {
  .dropdown__link {
    row-gap: 10px;
  }
}
.dropdown__link span {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--font-dark);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .dropdown__link span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .dropdown__link span {
    font-size: 12px;
  }
}
.dropdown__link:hover span {
  color: var(--secondary);
}
.dropdown__img {
  height: 122px;
}
@media (max-width: 1739px) {
  .dropdown__img {
    height: 98px;
  }
}
@media (max-width: 1199px) {
  .dropdown__img {
    height: 82px;
  }
}
.dropdown__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dropdown__grid {
  display: grid;
  grid-template-columns: 212px 1fr;
  column-gap: 30px;
}
@media (max-width: 1739px) {
  .dropdown__grid {
    grid-template-columns: 180px 1fr;
  }
}

.carousel {
  margin: 0 -10px;
}
.carousel .slick-track {
  display: flex;
  align-items: stretch;
}
.carousel .slick-slide {
  height: auto;
  padding: 0 10px;
}
.carousel .slick-slide > div,
.carousel .slick-slide > div > div {
  height: 100%;
}
.carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: -80px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid #ced7d9;
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .carousel .slick-arrow {
    top: auto;
    bottom: -70px;
  }
}
@media (max-width: 374px) {
  .carousel .slick-arrow {
    bottom: -70px;
  }
}
.carousel .slick-arrow:hover {
  border-color: var(--primary);
}
.carousel .slick-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
}
.carousel .slick-arrow.prev {
  right: 85px;
}
.carousel .slick-arrow.next {
  right: 10px;
}
.carousel .slick-arrow.next svg {
  transform: rotate(180deg);
}
.carousel .card-row__img {
  width: 100%;
}
@media (max-width: 1739px) {
  .carousel .card-row__img {
    height: 214px;
  }
}
.carousel .card-row__desc {
  width: 100%;
  flex-direction: column;
  padding: 30px 20px;
  gap: 15px;
}
@media (max-width: 767px) {
  .carousel .card-row__desc {
    width: 100%;
    padding: 10px;
  }
}
.carousel .card-row__car,
.carousel .card-row__info,
.carousel .card-row__price {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
.carousel .card-row__car .warn-konstr {
  display: block;
  width: 100%;
  min-height: 24px;
}
.carousel .card-row__info {
  display: flex;
  min-height: 90px;
}
.carousel .card-row__info .card-row__col {
  width: calc(33% - 10px);
}
.carousel .review-card___video {
  height: 230px;
}
@media (max-width: 767px) {
  .carousel .slick-list {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .carousel .card-type {
    width: 260px !important;
  }
}
@media (max-width: 767px) {
  .carousel .card,
  .carousel .card-stock,
  .carousel .review-card {
    width: 295px !important;
  }
}
@media (max-width: 767px) {
  .carousel .review-card,
  .carousel .video-card {
    width: 325px !important;
  }
}
@media (max-width: 767px) {
  .carousel .card-row {
    width: 295px !important;
  }
}
@media (max-width: 374px) {
  .carousel .card,
  .carousel .card-stock,
  .carousel .review-card,
  .carousel .video-card {
    width: 260px !important;
  }
}

.carousel-three {
  margin: 0 -10px;
}
.carousel-three .slick-track {
  display: flex;
  align-items: stretch;
}
.carousel-three .slick-slide {
  height: auto;
  padding: 0 10px;
}
.carousel-three .slick-slide > div,
.carousel-three .slick-slide > div > div {
  height: 100%;
}
.carousel-three .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: -120px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid #ced7d9;
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .carousel-three .slick-arrow {
    top: -97px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1199px) {
  .carousel-three .slick-arrow {
    top: -84px;
  }
}
@media (max-width: 767px) {
  .carousel-three .slick-arrow {
    top: auto;
    bottom: -90px;
  }
}
@media (max-width: 374px) {
  .carousel-three .slick-arrow {
    bottom: -80px;
  }
}
.carousel-three .slick-arrow:hover {
  border-color: var(--primary);
}
.carousel-three .slick-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
}
.carousel-three .slick-arrow.prev {
  right: 90px;
}
.carousel-three .slick-arrow.next {
  right: 10px;
}
.carousel-three .slick-arrow.next svg {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .carousel-three .slick-list {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .carousel-three .card-type {
    width: 260px !important;
  }
}
@media (max-width: 767px) {
  .carousel-three .card,
  .carousel-three .card-stock,
  .carousel-three .review-card {
    width: 295px !important;
  }
}
@media (max-width: 767px) {
  .carousel-three .video-card {
    width: 325px !important;
  }
}
@media (max-width: 374px) {
  .carousel-three .card,
  .carousel-three .card-stock,
  .carousel-three .review-card,
  .carousel-three .video-card {
    width: 260px !important;
  }
}

.gallery__carousel {
  margin-bottom: 20px;
}
.gallery__carousel .item {
  display: block !important;
}
.gallery__carousel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6288;
  object-fit: cover;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .gallery__carousel img {
    border-radius: 30px;
  }
}
.gallery__carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .gallery__carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.gallery__carousel .slick-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--border);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .gallery__carousel .slick-arrow svg {
    width: 18px;
    height: 18px;
  }
}
.gallery__carousel .slick-arrow.prev {
  left: 20px;
}
@media (max-width: 767px) {
  .gallery__carousel .slick-arrow.prev {
    left: 10px;
  }
}
.gallery__carousel .slick-arrow.next {
  right: 20px;
}
@media (max-width: 767px) {
  .gallery__carousel .slick-arrow.next {
    right: 10px;
  }
}
.gallery__carousel .slick-arrow.next svg {
  transform: rotate(180deg);
}
.gallery__thumbs .item {
  display: block !important;
}
.gallery__thumbs .slick-slide {
  position: relative;
  margin-right: 10px;
  padding-left: 1px;
  padding-right: 10px;
}
@media (max-width: 1023px) {
  .gallery__thumbs .slick-slide {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .gallery__thumbs .slick-slide {
    padding-right: 6px;
  }
}
.gallery__thumbs .slick-slide img {
  display: block;
  width: auto;
  height: 186px;
  aspect-ratio: 1.35;
  border-radius: 15px;
  object-fit: cover;
}
@media (max-width: 1739px) {
  .gallery__thumbs .slick-slide img {
    height: 140px;
  }
}
@media (max-width: 1199px) {
  .gallery__thumbs .slick-slide img {
    height: 100px;
  }
}
@media (max-width: 1023px) {
  .gallery__thumbs .slick-slide img {
    height: 84px;
  }
}
@media (max-width: 767px) {
  .gallery__thumbs .slick-slide img {
    height: 64px;
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .gallery__thumbs .slick-slide img {
    height: 54px;
  }
}
.gallery__thumbs .slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  right: 10px;
  bottom: 0;
  border: 3px solid var(--gray);
  border-radius: 15px;
  opacity: 0;
  transition: 0.3s linear;
}
@media (max-width: 1023px) {
  .gallery__thumbs .slick-slide::before {
    border-width: 2px;
  }
}
@media (max-width: 767px) {
  .gallery__thumbs .slick-slide::before {
    right: 6px;
    border-radius: 10px;
  }
}
.gallery__thumbs .slick-slide.slick-current::before {
  opacity: 1;
}
.gallery__carousel .slick-arrow:hover {
  border-color: var(--secondary);
}

.sets-carousel {
  margin-left: -10px;
  margin-right: 145px;
  margin-bottom: 20px;
}
@media (max-width: 1739px) {
  .sets-carousel {
    margin-right: 129px;
  }
}
@media (max-width: 1199px) {
  .sets-carousel {
    margin-right: 125px;
  }
}
@media (max-width: 1023px) {
  .sets-carousel {
    margin: 0 -40px 16px;
    padding: 0 40px;
  }
}
.sets-carousel .slick-track {
  margin-left: 0;
}
.sets-carousel .item {
  padding: 0 10px;
}
.sets-carousel .item a {
  display: block;
}
.sets-carousel .item img {
  width: 100%;
  aspect-ratio: 1.8;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .sets-carousel .item img {
    border-radius: 16px;
  }
}
@media (max-width: 1023px) {
  .sets-carousel .item img {
    width: 133px;
  }
}
.sets-carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ced7d9;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
.sets-carousel .slick-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--primary);
  transition: 0.3s linear;
}
.sets-carousel .slick-arrow.prev {
  right: -60px;
}
.sets-carousel .slick-arrow.next {
  right: -130px;
  transform: rotate(180deg);
}
@media (max-width: 1739px) {
  .sets-carousel .slick-arrow.next {
    right: -124px;
  }
}
.sets-carousel .slick-arrow:hover {
  border-color: var(--primary);
}
@media (max-width: 1023px) {
  .sets-carousel .slick-list {
    overflow: visible;
  }
}

.card-row-carousel {
  width: 368px;
}
@media (max-width: 1739px) {
  .card-row-carousel {
    width: 250px;
  }
}
@media (max-width: 1199px) {
  .card-row-carousel {
    width: 150px;
  }
}
@media (max-width: 1023px) {
  .card-row-carousel {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .card-row-carousel {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .card-row-carousel {
    width: 100%;
  }
}
.card-row-carousel .slick-list {
  height: 100%;
}
.card-row-carousel .slick-track {
  display: flex;
  height: 100%;
}
.card-row-carousel .slick-slide {
  display: block !important;
  float: none;
}
.card-row-carousel .slick-slide > div {
  height: 100%;
}
.card-row-carousel .item {
  display: block !important;
  height: 100%;
}
.card-row-carousel .card-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-row-carousel .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 20px;
}
@media (max-width: 575px) {
  .card-row-carousel .slick-dots {
    bottom: 10px;
    justify-content: flex-start;
    padding-left: 30px;
  }
}
.card-row-carousel .slick-dots li {
  display: block;
}
.card-row-carousel .slick-dots li button {
  display: block;
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 4px;
  font-size: 0;
  background: rgba(206, 215, 217, 0.5);
  transition: 0.3s linear;
}
@media (max-width: 1023px) {
  .card-row-carousel .slick-dots li button {
    width: 6px;
    height: 6px;
  }
}
.card-row-carousel .slick-dots li.slick-active button {
  width: 14px;
  background: #fff;
}

.main-carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .main-carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1023px) {
  .main-carousel .slick-arrow {
    top: auto;
    bottom: 430px;
    transform: none;
  }
}
@media (max-width: 374px) {
  .main-carousel .slick-arrow {
    bottom: 400px;
  }
}
.main-carousel .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.3);
}
.main-carousel .slick-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
}
.main-carousel .slick-arrow.prev {
  left: -40px;
}
@media (max-width: 1739px) {
  .main-carousel .slick-arrow.prev {
    left: -20px;
  }
}
@media (max-width: 1023px) {
  .main-carousel .slick-arrow.prev {
    left: -10px;
  }
}
.main-carousel .slick-arrow.next {
  right: -40px;
}
@media (max-width: 1739px) {
  .main-carousel .slick-arrow.next {
    right: -20px;
  }
}
@media (max-width: 1023px) {
  .main-carousel .slick-arrow.next {
    right: -10px;
  }
}
.main-carousel .slick-arrow.next svg {
  transform: rotate(180deg);
}
.main-carousel .slick-dots {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main-carousel .slick-dots li {
  width: auto;
  height: auto;
}
.main-carousel .slick-dots li button {
  font-size: 0;
  width: 15px;
  height: 15px;
  background: #e5e5e5;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: 0.3s linear;
}
.main-carousel .slick-dots li button:hover, .main-carousel .slick-dots li.slick-active button {
  background: var(--secondary);
}

.carousel404 {
  width: 100vw;
}
.carousel404__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  height: 262px;
  padding: 0 25px;
}
@media (max-width: 1739px) {
  .carousel404__item {
    height: 206px;
    gap: 40px;
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .carousel404__item {
    height: 146px;
    gap: 30px;
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  .carousel404__item {
    height: 85px;
    gap: 20px;
    padding: 0 10px;
  }
}
.carousel404__item p {
  margin: 0;
  color: var(--primary);
  font-size: 214px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1739px) {
  .carousel404__item p {
    font-size: 156px;
  }
}
@media (max-width: 1199px) {
  .carousel404__item p {
    font-size: 130px;
  }
}
@media (max-width: 1023px) {
  .carousel404__item p {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .carousel404__item p {
    font-size: 70px;
  }
}

.sidebar-carousel {
  margin-bottom: 20px;
}
.sidebar-carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: -58px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #ced7d9;
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 480px) {
  .sidebar-carousel .slick-arrow {
    top: -46px;
    width: 30px;
    height: 30px;
  }
}
.sidebar-carousel .slick-arrow:hover {
  border-color: var(--primary);
}
.sidebar-carousel .slick-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--primary);
}
@media (max-width: 480px) {
  .sidebar-carousel .slick-arrow svg {
    width: 14px;
    height: 14px;
  }
}
.sidebar-carousel .slick-arrow.prev {
  right: 45px;
}
.sidebar-carousel .slick-arrow.next {
  right: 0;
}
.sidebar-carousel .slick-arrow.next svg {
  transform: rotate(180deg);
}

.slide_container h2,
.slide_container .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide_container h2 svg,
.slide_container .section-title svg {
  width: 24px;
  height: 24px;
  fill: #000;
  display: block;
  cursor: pointer;
  transition: all 0.5s ease;
}
.slide_container h2 svg.active,
.slide_container .section-title svg.active {
  transform: rotate(180deg);
  transition: all 0.5s ease;
}
.slide_container .js-box__wrap,
.slide_container .box__wrap {
  max-height: 200px;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 1s ease;
}
.slide_container .js-box__wrap {
  max-height: 100px;
}
@media (max-width: 1739px) {
  .slide_container .js-box__wrap {
    max-height: 90px;
  }
}
@media (max-width: 1023px) {
  .slide_container .js-box__wrap {
    max-height: 86px;
  }
}
@media (max-width: 575px) {
  .slide_container .js-box__wrap {
    max-height: 77px;
  }
}
.slide_container .js-box__wrap:hover,
.slide_container .box__wrap:hover {
  opacity: 0.75;
}
.slide_container .js-box__wrap.active,
.slide_container .box__wrap.active {
  transition: all 1s ease;
  max-height: 100%;
  opacity: 1;
  cursor: text;
}
.slide_container .js-box__wrap.active:hover,
.slide_container .box__wrap.active:hover {
  opacity: 1;
}
.slide_container .hide_part a.car-brands__link:hover {
  color: var(--primary);
}

.carousel-four .card-row {
  display: flex;
}
.carousel-four .card-row__desc {
  position: relative;
  height: calc(100% - 260px);
}
@media (max-width: 1739px) {
  .carousel-four .card-row__desc {
    height: calc(100% - 214px);
  }
}
.carousel-four .card-row__car_info {
  flex-grow: 1;
}

.main-reviews-carousel .slick-arrow,
.main-video-reviews-carousel .slick-arrow {
  top: -80px;
}

.preview {
  position: relative;
  display: block;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .preview {
    width: 233px;
    flex: none;
  }
}
.preview__img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.preview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preview__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(40, 47, 47, 0) 0, rgba(40, 47, 47, 0.8) 100%);
  opacity: 0.8;
  transition: 0.3s linear;
}
.preview__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  z-index: 10;
  aspect-ratio: 1;
  padding: 40px;
}
@media (max-width: 1739px) {
  .preview__content {
    padding: 25px;
  }
}
@media (max-width: 1023px) {
  .preview__content {
    height: 280px;
    aspect-ratio: auto;
  }
}
.preview__label {
  align-self: flex-start;
  display: block;
  padding: 8px 18px;
  background: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .preview__label {
    padding: 8px 14px;
    font-size: 12px;
  }
}
.preview__title {
  margin: auto 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 1739px) {
  .preview__title {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .preview__title {
    font-size: 12px;
  }
}
.preview__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 1739px) {
  .preview__date {
    font-size: 12px;
  }
}
.preview:hover .preview__img::before {
  opacity: 1;
}
.preview--red .preview__img::before {
  background: linear-gradient(180deg, rgba(239, 34, 34, 0.1) 0, rgba(40, 47, 47, 0.9) 100%);
}
.preview--bg .preview__content {
  padding: 30px 30px 25px;
}
@media (max-width: 1199px) {
  .preview--bg .preview__content {
    padding: 20px;
  }
}
.preview__desc {
  margin-top: auto;
  padding: 20px;
  background: #fff;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .preview__desc {
    padding: 15px;
    border-radius: 20px;
  }
}
.preview__desc .preview__date,
.preview__desc .preview__title {
  color: var(--primary);
}
@media (max-width: 1023px) {
  .preview, .preview__img, .preview__img::before {
    border-radius: 30px;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: 31px;
  background: var(--bg-card);
  display: flex !important;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .card {
    border-radius: 21px;
  }
}
@media (max-width: 480px) {
  .card {
    border-radius: 11px;
  }
}
.card__img {
  position: relative;
  z-index: 10;
  display: block;
  height: 316px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .card__img {
    height: 282px;
  }
}
@media (max-width: 1199px) {
  .card__img {
    height: 242px;
  }
}
@media (max-width: 1023px) {
  .card__img {
    height: 276px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .card__img {
    height: 254px;
  }
}
@media (max-width: 374px) {
  .card__img {
    height: 205px;
  }
}
.card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__img::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 100%);
}
.card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 30px;
  left: 26px;
  padding: 5px 15px;
  background: #fff;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .card__label {
    top: 25px;
    left: 25px;
    padding: 4px 10px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .card__label {
    top: 20px;
    left: 20px;
    font-size: 10px;
  }
}
.card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 30px;
  left: 26px;
  gap: 3px;
  width: 51px;
  height: 33px;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 1739px) {
  .card__rating {
    top: 25px;
    left: 25px;
    width: 44px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .card__rating {
    top: 20px;
    left: 20px;
    width: 34px;
    height: 20px;
  }
}
.card__rating svg {
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
  fill: var(--secondary);
}
@media (max-width: 767px) {
  .card__rating svg {
    width: 10px;
    height: 10px;
  }
}
.card__rating span {
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .card__rating span {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .card__rating span {
    font-size: 10px;
  }
}
.card__desc {
  margin-top: -60px;
  padding: 100px 35px 40px;
  background: var(--bg-card);
  border-radius: 0 0 30px 30px;
  transition: 0.3s linear;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 1739px) {
  .card__desc {
    padding: 90px 25px 30px;
  }
}
@media (max-width: 1023px) {
  .card__desc {
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .card__desc {
    padding: 85px 20px 20px;
  }
}
.card__car {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1739px) {
  .card__car {
    margin-bottom: 25px;
  }
}
@media (max-width: 1023px) {
  .card__car {
    margin-bottom: 20px;
  }
}
.card__year {
  flex: none;
  padding-top: 3px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #8e8e89;
}
@media (max-width: 1739px) {
  .card__year {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .card__year {
    font-size: 12px;
  }
}
.card__name {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: var(--font-dark);
  text-transform: uppercase;
}
@media (max-width: 1739px) {
  .card__name {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .card__name {
    font-size: 16px;
  }
}
.card__name span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #8e8e89;
}
@media (max-width: 1739px) {
  .card__name span {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .card__name span {
    font-size: 12px;
  }
}
.card__info {
  margin-bottom: 30px;
}
@media (max-width: 1739px) {
  .card__info {
    margin-bottom: 25px;
  }
}
@media (max-width: 1023px) {
  .card__info {
    margin-bottom: 20px;
  }
}
.card__row {
  display: flex;
  justify-content: space-between;
}
.card__row:first-child {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeebde;
}
@media (max-width: 1739px) {
  .card__row:first-child {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}
@media (max-width: 1023px) {
  .card__row:first-child {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.card__row:first-child .card__item span:nth-child(2) {
  font-size: 16px;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .card__row:first-child .card__item span:nth-child(2) {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .card__row:first-child .card__item span:nth-child(2) {
    font-size: 12px;
  }
}
.card__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.card__item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #8e8e89;
}
@media (max-width: 1739px) {
  .card__item span {
    font-size: 12px;
  }
}
.card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  position: relative;
}
.card__price > p {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .card__price > p {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .card__price > p {
    font-size: 16px;
  }
}
.card__price > span {
  position: relative;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.card__price > span svg {
  width: 100%;
  height: 100%;
  fill: #eeebde;
  transition: 0.3s linear;
}
.card__price > span:hover svg {
  fill: var(--font-dark);
}
.card:hover .card__desc {
  border-color: #8e8e89;
}
.card__desc .card__info .card__row.flex-wrap {
  flex-wrap: wrap;
}
.card__desc .card__info .card__row.flex-wrap .card__item:nth-child(odd) {
  width: 60%;
}
.card__desc .card__info .card__row.flex-wrap .card__item:nth-child(even) {
  width: 40%;
}
@media (max-width: 767px) {
  .card__name, .card__price > p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .card__desc, .card__img {
    border-radius: 10px;
  }
}
.card__info .modif {
  font-size: 14px;
  margin-bottom: 10px;
}

.card-stock {
  display: block !important;
  border: 1px solid var(--border);
  border-radius: 51px;
  background: var(--bg-card);
}
@media (max-width: 1023px) {
  .card-stock {
    border-radius: 31px;
  }
}
@media (max-width: 480px) {
  .card-stock {
    border-radius: 11px;
  }
}
.card-stock__img {
  position: relative;
  z-index: 10;
  display: block;
  height: 386px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .card-stock__img {
    height: 256px;
  }
}
@media (max-width: 1199px) {
  .card-stock__img {
    height: 220px;
  }
}
@media (max-width: 1023px) {
  .card-stock__img {
    height: 252px;
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .card-stock__img {
    height: 232px;
  }
}
@media (max-width: 374px) {
  .card-stock__img {
    height: 188px;
  }
}
.card-stock__img img {
  display: block;
  mix-blend-mode: darken;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-stock__img::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 100%);
}
.card-stock__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 40px;
  left: 35px;
  gap: 3px;
  width: 51px;
  height: 33px;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 1739px) {
  .card-stock__rating {
    bottom: 25px;
    left: 25px;
    width: 44px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .card-stock__rating {
    bottom: 20px;
    left: 20px;
    width: 34px;
    height: 20px;
  }
}
.card-stock__rating svg {
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
  fill: var(--secondary);
}
@media (max-width: 767px) {
  .card-stock__rating svg {
    width: 10px;
    height: 10px;
  }
}
.card-stock__rating span {
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .card-stock__rating span {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .card-stock__rating span {
    font-size: 10px;
  }
}
.card-stock__label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 40px;
  right: 35px;
  width: auto;
  height: 33px;
  padding: 0 10px;
  background: var(--secondary);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 1739px) {
  .card-stock__label {
    bottom: 25px;
    right: 25px;
    height: 30px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .card-stock__label {
    bottom: 20px;
    right: 20px;
    height: 20px;
    font-size: 10px;
  }
}
.card-stock__desc {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  height: calc(100% - 326px);
  margin-top: -60px;
  padding: 100px 25px 40px;
  border-radius: 0 0 50px 50px;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .card-stock__desc {
    height: calc(100% - 196px);
    padding: 90px 25px 30px;
  }
}
@media (max-width: 1199px) {
  .card-stock__desc {
    height: calc(100% - 180px);
  }
}
@media (max-width: 1023px) {
  .card-stock__desc {
    height: calc(100% - 196px);
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .card-stock__desc {
    height: calc(100% - 172px);
    padding: 85px 20px 20px;
  }
}
@media (max-width: 374px) {
  .card-stock__desc {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 10px;
    height: calc(100% - 128px);
    padding-top: 80px;
  }
}
.card-stock__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--font-dark);
}
.card-stock__price {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--secondary);
}
@media (max-width: 374px) {
  .card-stock__price {
    margin-bottom: 10px;
    text-align: left;
  }
}
.card-stock__info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
@media (max-width: 1739px) {
  .card-stock__info {
    column-gap: 18px;
  }
}
@media (max-width: 1199px) {
  .card-stock__info {
    column-gap: 14px;
  }
}
.card-stock__info span {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #8e8e89;
}
@media (max-width: 1739px) {
  .card-stock__info span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .card-stock__info span {
    font-size: 12px;
  }
}
.card-stock__info span::after {
  content: "";
  position: absolute;
  right: -12px;
  top: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8e8e89;
}
@media (max-width: 1739px) {
  .card-stock__info span::after {
    right: -11px;
  }
}
@media (max-width: 1199px) {
  .card-stock__info span::after {
    right: -8px;
    width: 3px;
    height: 3px;
  }
}
.card-stock__info span:last-child::after {
  display: none;
}
@media (max-width: 1739px) {
  .card-stock__name, .card-stock__price {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .card-stock__name, .card-stock__price {
    font-size: 14px;
  }
}

.card-row {
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .card-row {
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .card-row {
    align-items: flex-start;
  }
}
.card-row__img {
  display: block;
  width: 368px;
  height: 260px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .card-row__img {
    width: 250px;
    height: 172px;
  }
}
@media (max-width: 1199px) {
  .card-row__img {
    width: 150px;
    height: 141px;
  }
}
@media (max-width: 1023px) {
  .card-row__img {
    width: 173px;
    height: 190px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .card-row__img {
    width: 225px;
  }
}
.card-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-row__desc {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: calc(100% - 368px);
  padding: 55px 60px 55px 50px;
}
@media (max-width: 1739px) {
  .card-row__desc {
    width: calc(100% - 250px);
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .card-row__desc {
    width: calc(100% - 150px);
    padding: 20px 30px;
  }
}
@media (max-width: 1023px) {
  .card-row__desc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .card-row__desc {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }
}
.card-row__car {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  row-gap: 10px;
  width: 25%;
  padding-right: 40px;
  border-right: 1px solid #eeebde;
}
@media (max-width: 1739px) {
  .card-row__car {
    width: 29.9%;
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .card-row__car {
    width: 29.2%;
  }
}
@media (max-width: 1023px) {
  .card-row__car {
    grid-area: 1/1/2/2;
    width: auto;
    padding: 0;
    border-right: none;
  }
}
.card-row__info {
  width: 43.46%;
  padding-left: 40px;
  padding-right: 40px;
  border-right: 1px solid #eeebde;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
  padding-top: 20px;
}
@media (max-width: 1739px) {
  .card-row__info {
    width: 42%;
    padding-left: 20px;
    padding-right: 20px;
    column-gap: 10px;
    padding-top: 16px;
  }
}
@media (max-width: 1199px) {
  .card-row__info {
    width: 41.2%;
    column-gap: 5px;
    padding-top: 12px;
  }
}
@media (max-width: 1023px) {
  .card-row__info {
    grid-area: 2/1/3/2;
    width: auto;
    padding: 0;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .card-row__info {
    column-gap: 10px;
  }
}
.card-row__price {
  align-self: center;
  width: 31.54%;
  padding-left: 40px;
}
@media (max-width: 1739px) {
  .card-row__price {
    width: 28.1%;
    padding-left: 20px;
  }
}
@media (max-width: 1199px) {
  .card-row__price {
    width: 29.6%;
  }
}
@media (max-width: 1023px) {
  .card-row__price {
    grid-area: 1/2/3/3;
    width: auto;
    padding-left: 30px;
    border-left: 1px solid #eeebde;
    align-self: stretch;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .card-row__price {
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid #eeebde;
  }
}
.card-row__price > p:first-child {
  margin: 0 0 5px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--secondary);
}
.card-row__price > p:first-child span {
  margin-left: 30px;
  font-weight: 400;
  font-size: 18px;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .card-row__price > p:first-child span {
    margin-left: 0;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .card-row__price > p:first-child span {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .card-row__price > p:first-child span {
    margin-left: 20px;
  }
}
.card-row__price > p:nth-child(2) {
  margin: 0 0 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .card-row__price > p:nth-child(2) {
    margin-bottom: 10px;
  }
}
.card-row__price-toggle {
  position: relative;
}
.card-row__price-toggle > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 181px;
  height: 33px;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .card-row__price-toggle > span {
    width: 152px;
    height: 30px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .card-row__price-toggle > span {
    width: 148px;
    height: 26px;
  }
}
.card-row__price-toggle > span:hover {
  background: #fff;
  color: var(--secondary);
}
.card-row__name {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .card-row__name {
    column-gap: 10px;
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .card-row__name {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .card-row__name {
    font-size: 14px;
  }
}
.card-row__age {
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
}
@media (max-width: 1739px) {
  .card-row__age {
    column-gap: 20px;
  }
}
.card-row__age span {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #8e8e89;
}
@media (max-width: 1739px) {
  .card-row__age span {
    font-size: 12px;
  }
}
.card-row__age span::after {
  content: "";
  position: absolute;
  right: -16px;
  top: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8e8e89;
}
@media (max-width: 1739px) {
  .card-row__age span::after {
    right: -12px;
  }
}
.card-row__age span:last-child::after {
  display: none;
}
.card-row__col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 1739px) {
  .card-row__col {
    row-gap: 6px;
  }
}
@media (max-width: 1199px) {
  .card-row__col {
    row-gap: 4px;
  }
}
.card-row__col span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #8e8e89;
}
@media (max-width: 1739px) {
  .card-row__col span {
    font-size: 12px;
  }
}
.card-row__fav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #8e8e89;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .card-row__fav {
    column-gap: 6px;
    font-size: 12px;
  }
}
.card-row__fav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #8e8e89;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .card-row__fav svg {
    width: 16px;
    height: 16px;
  }
}
.card-row__fav:hover {
  color: var(--secondary);
}
.card-row__fav:hover svg {
  stroke: var(--secondary);
}
.card-row__fav.active svg {
  fill: var(--secondary);
  stroke: var(--secondary);
}
.card-row__del {
  position: absolute;
  z-index: 10;
  top: 30px;
  right: 40px;
  display: block;
  width: 30px;
  height: 30px;
}
@media (max-width: 1739px) {
  .card-row__del {
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 767px) {
  .card-row__del {
    top: 10px;
    right: 10px;
  }
}
.card-row__del svg {
  width: 100%;
  height: 100%;
  stroke: #8e8e89;
  transition: 0.3s linear;
}
@media (max-width: 480px) {
  .card-row__del svg {
    stroke: var(--primary);
  }
}
.card-row__del:hover svg {
  stroke: var(--secondary);
}
.card-row--glry {
  padding: 20px;
}
.card-row--glry .card-row__desc {
  width: calc(100% - 334px);
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 0;
}
@media (max-width: 1739px) {
  .card-row--glry .card-row__desc {
    width: calc(100% - 280px);
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .card-row--glry .card-row__desc {
    width: calc(100% - 254px);
  }
}
@media (max-width: 1023px) {
  .card-row--glry .card-row__desc {
    width: 100%;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .card-row--glry .card-row__desc {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.card-row--glry .card-row__info {
  width: 50%;
}
@media (max-width: 1739px) {
  .card-row--glry .card-row__info {
    width: 41%;
  }
}
@media (max-width: 1199px) {
  .card-row--glry .card-row__info {
    width: 43%;
  }
}
.card-row--glry .card-row__price {
  width: 25%;
}
@media (max-width: 1739px) {
  .card-row--glry .card-row__price {
    width: 30.5%;
  }
}
@media (max-width: 1199px) {
  .card-row--glry .card-row__price {
    width: 28.5%;
  }
}
.card-row__gallery {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  width: 334px;
}
@media (max-width: 1739px) {
  .card-row__gallery {
    width: 280px;
  }
}
@media (max-width: 1199px) {
  .card-row__gallery {
    width: 254px;
  }
}
@media (max-width: 1023px) {
  .card-row__gallery {
    width: 100%;
  }
}
.card-row__gallery .card-row__img {
  width: calc(50% - 5px);
  height: 114px;
  border-radius: 30px;
}
@media (max-width: 1739px) {
  .card-row__gallery .card-row__img {
    width: calc(50% - 5px);
    height: 100px;
    border-radius: 25px;
  }
}
@media (max-width: 1023px) {
  .card-row__gallery .card-row__img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .card-row__gallery .card-row__img {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .card-row__gallery .card-row__img {
    height: 134px;
  }
}
@media (max-width: 374px) {
  .card-row__gallery .card-row__img {
    height: 100px;
  }
}
.card-row__price > p.info {
  margin: 5px 0 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--primary);
}
.card-row__price > p.warn-konstr {
  color: var(--secondary);
  font-weight: 400;
  font-size: 12px;
}
.card-row__price > p.small {
  font-weight: 400;
  font-size: 12px;
}
@media (max-width: 1739px) {
  .card-row--glry .card-row__car {
    width: 28.5%;
  }
}
@media (max-width: 1023px) {
  .card-row--glry .card-row__car, .card-row--glry .card-row__info, .card-row--glry .card-row__price {
    width: auto;
  }
}
@media (max-width: 575px) {
  .card-row__desc, .card-row__img {
    width: 100%;
  }
}
.card-row__age span:nth-child(2):after {
  display: none;
}
.card-row .card-row__desc {
  flex-grow: 1;
}
.card-row .card-row__desc .card-row__car {
  flex-grow: 1;
}
.card-row__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: stretch;
}
@media (max-width: 1739px) {
  .card-row__buttons {
    gap: 5px;
  }
}
.card-row__buttons > *:first-child {
  flex-grow: 1;
}
.card-row__buttons .wa {
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid green;
  border-radius: 60px;
  transition: 0.3s linear;
}
.card-row__buttons .wa svg {
  width: 24px;
  height: 24px;
  fill: green;
}
.card-row__buttons .wa:hover {
  background: green;
  transition: 0.3s linear;
}
.card-row__buttons .wa:hover svg {
  fill: #fff;
}
.card-row__buttons .msgs__tg {
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid #259dd9;
  border-radius: 60px;
  width: auto;
  height: auto;
}
.card-row__buttons .msgs__tg svg {
  width: 24px;
  height: 24px;
  fill: #259dd9;
}
.card-row__buttons .msgs__tg:hover {
  background: #259dd9;
}
.card-row__buttons .msgs__tg:hover svg {
  fill: #fff;
}
.card-row__buttons .btn {
  padding: 17px 5px;
}
@media (max-width: 1739px) {
  .card-row__buttons .btn {
    height: 42px;
    border-radius: 30px;
  }
}
@media (max-width: 1739px) {
  .card-row__buttons .msgs__tg,
  .card-row__buttons .wa {
    padding: 11px;
  }
}
@media (max-width: 1739px) {
  .card-row__buttons .msgs__tg svg,
  .card-row__buttons .wa svg {
    width: 18px;
    height: 18px;
  }
}
.card-row__buttons .max {
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: stretch;
  border: 1px solid #7324e2;
  border-radius: 60px;
  width: auto;
  height: auto;
  transition: background 0.4s;
}
@media (max-width: 1739px) {
  .card-row__buttons .max {
    padding: 11px;
  }
}
.card-row__buttons .max:hover {
  background: #7324e2;
}
.card-row__buttons .max svg {
  width: 24px;
  height: 24px;
  fill: #7324e2;
}
@media (max-width: 1739px) {
  .card-row__buttons .max svg {
    width: 18px;
    height: 18px;
  }
}
.card-row__buttons .max:hover svg {
  fill: #fff;
}

.card-sm {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 35px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-card);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .card-sm {
    padding: 30px 35px;
  }
}
@media (max-width: 1199px) {
  .card-sm {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .card-sm {
    padding: 30px 20px;
  }
}
.card-sm__title {
  margin: 0 0 30px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .card-sm__title {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .card-sm__title {
    font-size: 14px;
  }
}
.card-sm__img {
  height: 180px;
  padding: 10px;
  border-radius: 30px;
  margin-top: auto;
  margin-bottom: 30px;
  background-color: transparent;
}
@media (max-width: 1739px) {
  .card-sm__img {
    margin-bottom: 20px;
    height: 160px;
  }
}
@media (max-width: 1199px) {
  .card-sm__img {
    height: 145px;
    border-radius: 20px;
  }
}
.card-sm__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-sm__price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .card-sm__price {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .card-sm__price {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .card-sm__price {
    font-size: 14px;
  }
}
.card-sm__price svg {
  position: relative;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  transform: rotate(135deg);
  fill: none;
  stroke: var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .card-sm__price svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 1199px) {
  .card-sm__price svg {
    width: 22px;
    height: 22px;
  }
}
.card-sm__offers {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--font-gray);
}
@media (max-width: 1739px) {
  .card-sm__offers {
    font-size: 12px;
  }
}
.card-sm:hover .card-sm__price svg {
  top: -3px;
}

.card-type {
  display: block;
  padding: 64px 45px 45px;
  background: var(--bg-card);
  border-radius: 50px;
}
@media (max-width: 1739px) {
  .card-type {
    padding: 50px 38px 38px;
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .card-type {
    padding: 40px;
    border-radius: 30px;
  }
}
@media (max-width: 1023px) {
  .card-type {
    padding: 30px;
  }
}
.card-type__img {
  height: 135px;
  margin-bottom: 30px;
}
@media (max-width: 1739px) {
  .card-type__img {
    height: 122px;
  }
}
@media (max-width: 1199px) {
  .card-type__img {
    height: 110px;
    margin-bottom: 20px;
  }
}
.card-type__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-type__title {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .card-type__title {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1199px) {
  .card-type__title {
    font-size: 14px;
    line-height: 17px;
  }
}
.card-type__desc {
  margin: 0 0 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .card-type__desc {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .card-type__desc {
    font-size: 12px;
  }
}

.yt-card {
  position: relative;
  display: block;
}
@media (max-width: 767px) {
  .yt-card {
    width: 325px !important;
  }
}
@media (max-width: 374px) {
  .yt-card {
    width: 280px !important;
  }
}
.yt-card__img {
  position: relative;
  height: auto !important;
  aspect-ratio: 1.7778;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .yt-card__img {
    border-radius: 20px;
  }
}
.yt-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-card__img::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80px;
  height: 80px;
  background: url(../img/icons/logo-youtube.svg) center/contain no-repeat;
}
@media (max-width: 1199px) {
  .yt-card__img::before {
    width: 70px;
    height: 70px;
  }
}
.yt-card__img::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: rgba(1, 1, 1, 0.2);
  opacity: 0;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .yt-card__img::after {
    border-radius: 20px;
  }
}
.yt-card__img:hover::after {
  opacity: 1;
}
.yt-card__title {
  margin: 20px 0 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #010101;
}
@media (max-width: 1023px) {
  .yt-card__title {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .yt-card__title {
    margin-top: 12px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .yt-card__img, .yt-card__img::after {
    border-radius: 10px;
  }
}

.card-moto {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .card-moto {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .card-moto {
    padding: 10px;
  }
}
.card-moto__left {
  position: relative;
  width: 369px;
}
@media (max-width: 1739px) {
  .card-moto__left {
    width: 212px;
  }
}
@media (max-width: 1199px) {
  .card-moto__left {
    width: 100%;
  }
}
.card-moto__desc {
  width: calc(100% - 369px);
  padding: 30px 40px;
}
@media (max-width: 1739px) {
  .card-moto__desc {
    padding: 25px;
    width: calc(100% - 300px);
  }
}
@media (max-width: 575px) {
  .card-moto__desc {
    padding: 20px 10px;
  }
}
.card-moto__fav {
  position: absolute;
  z-index: 10;
  top: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .card-moto__fav {
    top: 20px;
    left: 20px;
  }
}
@media (max-width: 575px) {
  .card-moto__fav {
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
  }
}
.card-moto__fav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .card-moto__fav svg {
    width: 16px;
    height: 16px;
  }
}
.card-moto__fav:hover {
  border-color: var(--secondary);
}
.card-moto__fav:hover svg {
  stroke: var(--secondary);
}
.card-moto__img {
  display: block;
  height: 100%;
  border-radius: 50px;
  overflow: hidden;
}
.card-moto__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.card-moto__name {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .card-moto__name {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .card-moto__name {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .card-moto__name {
    font-size: 14px;
  }
}
.card-moto__age {
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
  margin-bottom: 22px;
}
@media (max-width: 1739px) {
  .card-moto__age {
    column-gap: 24px;
    margin-bottom: 18px;
  }
}
@media (max-width: 575px) {
  .card-moto__age {
    column-gap: 18px;
    margin-bottom: 20px;
  }
}
.card-moto__age span {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-gray);
}
@media (max-width: 1739px) {
  .card-moto__age span {
    font-size: 12px;
  }
}
.card-moto__age span::after {
  content: "";
  position: absolute;
  right: -16px;
  top: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--font-gray);
}
@media (max-width: 1739px) {
  .card-moto__age span::after {
    right: -14px;
  }
}
@media (max-width: 575px) {
  .card-moto__age span::after {
    width: 2px;
    height: 2px;
    right: -10px;
  }
}
.card-moto__age span:last-child::after {
  display: none;
}
.card-moto__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 6px;
  margin-bottom: 22px;
}
@media (max-width: 1739px) {
  .card-moto__info {
    margin-bottom: 18px;
  }
}
@media (max-width: 575px) {
  .card-moto__info {
    row-gap: 5px;
    margin-bottom: 20px;
  }
}
.card-moto__info span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--font-gray);
}
@media (max-width: 1739px) {
  .card-moto__info span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .card-moto__info span {
    font-size: 12px;
  }
}
.card-moto__price {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .card-moto__price {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .card-moto__price {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .card-moto__price {
    font-size: 14px;
  }
}
.card-moto__price span {
  margin-left: 20px;
  font-weight: 400;
  font-size: 18px;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .card-moto__price span {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .card-moto__price span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .card-moto__price span {
    font-size: 12px;
  }
}
.card-moto .card-row-gallery {
  width: 369px;
}
@media (max-width: 1739px) {
  .card-moto .card-row-gallery {
    width: 300px;
  }
}
@media (max-width: 1199px) {
  .card-moto .card-row-gallery, .card-moto__desc {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .card-moto .card-row-gallery a.pic {
    height: 310px;
  }
}
@media (max-width: 1023px) {
  .card-moto .card-row-gallery a.pic {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .card-moto .card-row-gallery a.pic {
    height: 180px;
  }
}
@media (max-width: 1023px) {
  .card-moto, .card-moto__img {
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .card-moto, .card-moto__img {
    border-radius: 10px;
  }
}

.card-video__title {
  margin: 20px 0 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .card-video__title {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .card-video__title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .card-video__title {
    font-size: 12px;
  }
}
.card-video__img {
  position: relative;
  height: 292px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .card-video__img {
    height: 244px;
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .card-video__img {
    height: 244px;
    border-radius: 30px;
  }
}
@media (max-width: 1023px) {
  .card-video__img {
    height: 202px;
  }
}
@media (max-width: 767px) {
  .card-video__img {
    height: 186px;
  }
}
.card-video__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-video__img::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80px;
  height: 80px;
  background: url(../img/icons/play.svg) center/contain no-repeat;
}
@media (max-width: 1199px) {
  .card-video__img::before {
    width: 70px;
    height: 70px;
  }
}
.card-video__img::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.2);
  opacity: 0;
  transition: 0.3s linear;
}
.card-video__img:hover::after {
  opacity: 1;
}
@media (max-width: 767px) {
  .card-video {
    width: 233px !important;
  }
}

.preview-row {
  display: grid;
  grid-template-columns: 355px 1fr;
  column-gap: 40px;
  border: 1px solid transparent;
  border-radius: 50px;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .preview-row {
    grid-template-columns: 210px 1fr;
    column-gap: 20px;
  }
}
@media (max-width: 1023px) {
  .preview-row {
    border-radius: 30px;
  }
}
@media (max-width: 575px) {
  .preview-row {
    grid-template-columns: 160px 1fr;
  }
}
@media (max-width: 480px) {
  .preview-row {
    grid-template-columns: 110px 1fr;
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .preview-row {
    grid-template-columns: 100px 1fr;
    column-gap: 10px;
  }
}
.preview-row:hover {
  border-color: var(--gray);
}
@media (max-width: 1023px) {
  .preview-row:hover {
    border-color: transparent;
  }
}
.preview-row__img {
  height: 310px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .preview-row__img {
    height: 244px;
  }
}
@media (max-width: 1023px) {
  .preview-row__img {
    border-radius: 30px;
  }
}
@media (max-width: 575px) {
  .preview-row__img {
    height: 188px;
  }
}
.preview-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preview-row__right {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 30px 30px 0;
}
@media (max-width: 1739px) {
  .preview-row__right {
    padding: 10px 10px 10px 0;
  }
}
@media (max-width: 1023px) {
  .preview-row__right {
    padding: 0;
  }
}
.preview-row__title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .preview-row__title {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .preview-row__title {
    font-size: 12px;
  }
}
.preview-row__title span {
  display: inline-block;
  margin-left: 15px;
  font-weight: 400;
  font-size: 12px;
  color: var(--gray);
}
@media (max-width: 575px) {
  .preview-row__title span {
    margin-left: 10px;
    font-size: 10px;
  }
}
.preview-row__title span svg {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  margin-bottom: 2px;
  fill: var(--gray);
}
@media (max-width: 575px) {
  .preview-row__title span svg {
    width: 12px;
    height: 12px;
  }
}
.preview-row__time {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
}
.preview-row__date {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
}
.preview-row__cat {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: rgba(206, 215, 217, 0.3);
  border-radius: 40px;
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .preview-row__cat {
    padding: 8px 16px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .preview-row__cat {
    padding: 8px 14px;
  }
}
@media (max-width: 1739px) {
  .preview-row__date, .preview-row__time {
    margin-bottom: 12px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .preview-row__date, .preview-row__time {
    margin-bottom: 5px;
  }
}
.preview-row__desc, .preview-row__days {
  color: var(--primary);
  line-height: 1.5;
}
.preview-row__days span {
  color: var(--secondary);
}

.card-row-gallery {
  width: 368px;
}
@media (max-width: 1739px) {
  .card-row-gallery {
    width: 250px;
  }
}
@media (max-width: 1199px) {
  .card-row-gallery {
    width: 150px;
  }
}
@media (max-width: 1023px) {
  .card-row-gallery {
    width: 100%;
  }
}
.card-row-gallery .pic {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: relative;
  z-index: 0;
}
.card-row-gallery .list {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 10px;
}
@media (max-width: 1023px) {
  .card-row-gallery .list {
    height: 380px;
  }
}
@media (max-width: 575px) {
  .card-row-gallery .list {
    height: 320px;
  }
}
@media (max-width: 480px) {
  .card-row-gallery .list {
    height: 260px;
  }
}
@media (max-width: 374px) {
  .card-row-gallery .list {
    height: 220px;
  }
}
.card-row-gallery .list .item {
  width: auto;
  flex-grow: 1;
  overflow: visible;
  display: block;
  height: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 1023px) {
  .card-row-gallery .list .item {
    display: none;
  }
}
.card-row-gallery .list .item:first-child .img {
  display: block;
  z-index: 1;
}
.card-row-gallery .list .item:first-child .img img {
  opacity: 1;
  transition: 1s;
}
.card-row-gallery .list .item:hover .dot {
  background: var(--secondary);
}
.card-row-gallery .list .item:hover .img {
  display: block;
  z-index: 1;
}
.card-row-gallery .list .item:hover .img img {
  opacity: 1;
  transition: 1s;
}
.card-row-gallery .list .img {
  display: none;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 29px 0 0 29px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .card-row-gallery .list .img {
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 480px) {
  .card-row-gallery .list .img {
    border-radius: 10px 0 0 10px;
  }
}
.card-row-gallery .list .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}
.card-row-gallery img.no_pic {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 29px 0 0 29px;
  opacity: 1;
  transition: 1s;
}
.card-row-gallery .dot_box {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  padding-right: 5px;
  padding-left: 5px;
}
@media (max-width: 1023px) {
  .card-row-gallery .dot_box {
    display: none;
  }
}
.card-row-gallery .dot {
  display: block;
  width: 100%;
  height: 4px;
  background: #333;
  margin-bottom: 5px;
  transition: 0.3s linear;
}
.card-row-gallery .loading {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.card-row-gallery .loading i {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #fff;
  transform: translateZ(0);
  animation: 1.1s linear infinite spinner;
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.card-row-gallery .buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  min-height: 187px;
}
.card-row-gallery .buttons .btn {
  width: 80%;
}
.card-row-gallery .slick-dots {
  list-style: none;
  padding: 5px 15px;
  margin: 0;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.card-row-gallery .slick-dots li {
  overflow: hidden;
  text-indent: -999px;
  height: 4px;
  background: #333;
  width: auto;
  flex-grow: 1;
}
.card-row-gallery .slick-dots li.slick-active {
  background: var(--secondary);
}
.card-row-gallery .slider_pic {
  border-radius: 9px 9px 0 0;
  display: block;
  color: #fff;
  font-size: 12px;
  min-height: 187px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .card-row-gallery .slider_pic {
    max-height: 187px;
  }
}
@media (max-width: 1023px) {
  .card-row-gallery .list .item:first-child {
    display: block;
  }
}
@media (max-width: 576px) {
  .card-row-gallery .slick-dots button {
    display: none;
  }
}

.card-auc .card__price > p:nth-child(2),
.card-moto .card__price > p:nth-child(2),
.sets-table table .cart-moto-auc .card-moto__price > p:nth-child(2) {
  margin: 0 0 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--font-dark);
}

@media (max-width: 480px) {
  .card-row,
  .card-row__img,
  .card-stock__desc,
  .card-stock__img {
    border-radius: 10px;
  }
}

.card-row__price > p:first-child span.price-descr,
.card__price > p span.price-descr,
.card-moto__price span.price-descr {
  display: block;
  font-size: 12px;
  color: var(--secondary);
  margin-left: 0;
  font-weight: 400;
}

.subdivision-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1739px) {
  .subdivision-cards {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .subdivision-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .subdivision-cards {
    grid-template-columns: 1fr;
  }
}
.subdivision-cards__item {
  position: relative;
  display: flex;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #1c1c1c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1739px) {
  .subdivision-cards__item {
    min-height: 240px;
  }
}
@media (max-width: 1199px) {
  .subdivision-cards__item {
    min-height: 220px;
    border-radius: 18px;
  }
}
@media (max-width: 1023px) {
  .subdivision-cards__item {
    min-height: 240px;
  }
}
@media (max-width: 480px) {
  .subdivision-cards__item {
    min-height: 200px;
    border-radius: 14px;
  }
}
.subdivision-cards__item::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -30px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(0);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), filter 0.45s ease;
}
.subdivision-cards__item:hover::before {
  transform: scale(1.07);
  filter: blur(7px);
}
.subdivision-cards__item::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.82;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.3) 38%, rgba(0, 0, 0, 0.36) 62%, rgba(0, 0, 0, 0.73) 100%);
  transition: opacity 0.45s ease;
}
.subdivision-cards__item:hover::after {
  opacity: 1;
}
.subdivision-cards__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px;
  padding: 28px 24px;
  text-align: center;
}
@media (max-width: 1739px) {
  .subdivision-cards__content {
    gap: 14px;
    padding: 24px 20px;
  }
}
@media (max-width: 1199px) {
  .subdivision-cards__content {
    gap: 12px;
    padding: 22px 18px;
  }
}
@media (max-width: 1023px) {
  .subdivision-cards__content {
    gap: 14px;
    padding: 24px 20px;
  }
}
@media (max-width: 480px) {
  .subdivision-cards__content {
    gap: 12px;
    padding: 22px 18px;
  }
}
.subdivision-cards__flag {
  flex: none;
  width: 54px;
  height: 36px;
  border-radius: 7px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .subdivision-cards__flag {
    width: 48px;
    height: 32px;
    border-radius: 6px;
  }
}
.subdivision-cards__flag svg {
  display: block;
  width: 100%;
  height: 100%;
}
.subdivision-cards__body {
  display: contents;
}
.subdivision-cards__title {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  text-wrap: balance;
}
@media (max-width: 1739px) {
  .subdivision-cards__title {
    font-size: 19px;
  }
}
@media (max-width: 1199px) {
  .subdivision-cards__title {
    font-size: 16px;
  }
}
.subdivision-cards__text {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(18, 18, 22, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 1739px) {
  .subdivision-cards__text {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .subdivision-cards__text {
    padding: 11px 12px;
  }
}
.subdivision-cards__text u {
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 2px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max-container-narrow);
  margin: 0 auto;
}
@media (max-width: 1739px) {
  .social-cards {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .social-cards {
    gap: 16px;
  }
}
@media (max-width: 1023px) {
  .social-cards {
    grid-template-columns: 1fr;
  }
}
.social-cards__item {
  position: relative;
  display: flex;
  align-items: center;
  aspect-ratio: 5/2;
  min-width: 0;
  padding: clamp(20px, 20px + 10 * (100vw - 480px) / 1260, 30px) clamp(20px, 20px + 20 * (100vw - 480px) / 1260, 40px);
  border-radius: 22px;
  overflow: hidden;
  background-color: #1c1c1c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .social-cards__item {
    border-radius: 18px;
  }
}
@media (max-width: 480px) {
  .social-cards__item {
    border-radius: 14px;
  }
}
@media (max-width: 575px) {
  .social-cards__item {
    aspect-ratio: auto;
    min-height: calc((100vw - 20px) / 2.5);
  }
}
.social-cards__item::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -30px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(0);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), filter 0.45s ease;
}
.social-cards__item:hover::before {
  transform: scale(1.07);
  filter: blur(6px);
}
.social-cards__item::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.86;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.22) 88%);
  transition: opacity 0.45s ease;
}
.social-cards__item:hover::after {
  opacity: 1;
}
.social-cards__body {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(16px, 16px + 12 * (100vw - 480px) / 1260, 28px);
  min-width: 0;
}
.social-cards__icon {
  flex: none;
  width: clamp(72px, 72px + 56 * (100vw - 480px) / 1260, 128px);
  height: clamp(72px, 72px + 56 * (100vw - 480px) / 1260, 128px);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}
.social-cards__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.social-cards__info {
  min-width: 0;
}
.social-cards__name {
  font-weight: 700;
  font-size: clamp(32px, 32px + 22 * (100vw - 480px) / 1260, 54px);
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  overflow-wrap: anywhere;
}
.social-cards__count {
  margin-top: clamp(4px, 4px + 6 * (100vw - 480px) / 1260, 10px);
  font-size: clamp(18px, 18px + 13 * (100vw - 480px) / 1260, 31px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.social-cards.social-cards__compact {
  max-width: none;
}
@media (min-width: 576px) {
  .social-cards.social-cards__compact {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .social-cards.social-cards__compact {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 576px) {
  .social-cards.social-cards__compact .social-cards__item {
    padding: clamp(12px, 12px + 6 * (100vw - 480px) / 1260, 18px) clamp(14px, 14px + 8 * (100vw - 480px) / 1260, 22px);
    border-radius: 16px;
  }
  .social-cards.social-cards__compact .social-cards__body {
    gap: clamp(10px, 10px + 6 * (100vw - 480px) / 1260, 16px);
  }
  .social-cards.social-cards__compact .social-cards__icon {
    width: clamp(40px, 40px + 20 * (100vw - 480px) / 1260, 60px);
    height: clamp(40px, 40px + 20 * (100vw - 480px) / 1260, 60px);
  }
  .social-cards.social-cards__compact .social-cards__name {
    font-size: clamp(16px, 16px + 8 * (100vw - 480px) / 1260, 24px);
  }
  .social-cards.social-cards__compact .social-cards__count {
    margin-top: clamp(2px, 2px + 3 * (100vw - 480px) / 1260, 5px);
    font-size: clamp(12px, 12px + 3 * (100vw - 480px) / 1260, 15px);
  }
}

.sets-table {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #e2e8ed;
}
@media (max-width: 1023px) {
  .sets-table {
    overflow-x: auto;
    margin: 0 -40px;
    padding: 0 40px 17px;
  }
}
@media (max-width: 575px) {
  .sets-table {
    margin: 0 -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 374px) {
  .sets-table {
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sets-table::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.sets-table::-webkit-scrollbar-track {
  background: #e2e8ed;
}
.sets-table::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 0;
  border: none;
}
.sets-table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 1023px) {
  .sets-table table {
    width: 880px;
  }
}
.sets-table table th {
  text-align: left;
  padding: 0 10px 14px 2px;
  border-bottom: 1px solid #ced7d9;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: var(--primary);
  white-space: nowrap;
}
.sets-table table th:first-child {
  padding-left: 0;
}
.sets-table table td {
  vertical-align: top;
  padding: 14px 10px 14px 2px;
  border-bottom: 1px solid #ced7d9;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: var(--primary);
  white-space: nowrap;
}
.sets-table table td:first-child {
  padding-left: 0;
  font-weight: 600;
  text-transform: uppercase;
}
.sets-table table td:last-child {
  padding-right: 0;
  padding-left: 20px;
}
.sets-table table td:last-child a {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 50px;
}
@media (max-width: 1739px) {
  .sets-table table td:last-child a {
    margin-left: auto;
  }
}
.sets-table table td:last-child a svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--secondary);
  transition: 0.3s linear;
}
.sets-table table td:last-child span {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--secondary);
  cursor: pointer;
}
.sets-table table td:last-child span svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--secondary);
  transition: 0.3s linear;
}
.sets-table table td a, .sets-table table td:first-child {
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .sets-table table td,
  .sets-table table th {
    font-size: 12px;
  }
}

.calc-table {
  margin: 40px 0 0;
}
@media (max-width: 1739px) {
  .calc-table {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .calc-table {
    margin-top: 30px;
  }
}
.calc-table__wrap {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 24px;
}
@media (max-width: 1199px) {
  .calc-table__wrap {
    overflow-x: auto;
    margin-left: -40px;
    margin-right: -40px;
    padding: 0 40px 10px;
  }
}
@media (max-width: 575px) {
  .calc-table__wrap {
    row-gap: 20px;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.calc-table__header {
  display: grid;
  grid-template-columns: 55% 22.5% 22.5%;
  padding-bottom: 12px;
  border-bottom: 1px solid #ced7d9;
}
.calc-table__header span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .calc-table__header span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .calc-table__header span {
    font-size: 12px;
  }
}
.calc-table__item {
  display: grid;
  grid-template-columns: 55% 22.5% 22.5%;
  padding: 12px 0;
  border-bottom: 1px solid #ced7d9;
}
.calc-table__item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .calc-table__item span {
    font-size: 12px;
  }
}
.calc-table__item span:first-child {
  padding-right: 10px;
}
.calc-table__item .price-breakdown__desc {
  margin: 15px 0;
}
.calc-table__footer {
  display: grid;
  grid-template-columns: 77.5% 22.5%;
}
.calc-table__footer span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .calc-table__footer span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .calc-table__footer span {
    font-size: 12px;
  }
}
.calc-table__disclaimer {
  margin-top: 40px;
}
@media (max-width: 1739px) {
  .calc-table__disclaimer {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .calc-table__disclaimer {
    margin-top: 30px;
  }
}
.calc-table__disclaimer p {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .calc-table__disclaimer p {
    margin-bottom: 15px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .calc-table__disclaimer p {
    margin-bottom: 10px;
  }
}
.calc-table__disclaimer p:last-child {
  margin-bottom: 0;
}
.calc-table__section {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .calc-table__footer, .calc-table__section {
    width: 480px;
  }
}

.comparison {
  margin: 0 -60px;
  padding: 0 60px 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #ced7d9;
}
@media (max-width: 1199px) {
  .comparison {
    margin: 0 -40px;
    padding: 0 40px 10px;
  }
}
@media (max-width: 480px) {
  .comparison {
    margin: 0 -30px;
    padding: 0 30px 10px;
  }
}
@media (max-width: 374px) {
  .comparison {
    margin: 0 -20px;
    padding: 0 20px 10px;
  }
}
.comparison::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.comparison::-webkit-scrollbar-track {
  background: #e2e8ed;
}
.comparison::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 0;
  border: none;
}
.comparison__row {
  display: flex;
}
.comparison__row:last-child .comparison__col {
  border-bottom: 1px solid #ced7d9;
}
.comparison__col {
  flex-shrink: 1;
  width: 289px;
  min-width: 289px;
  padding-right: 20px;
}
@media (max-width: 1739px) {
  .comparison__col {
    width: 220px;
    min-width: 220px;
  }
}
.comparison__col:first-child {
  width: 375px;
  min-width: 375px;
}
@media (max-width: 1739px) {
  .comparison__col:first-child {
    width: 310px;
    min-width: 310px;
  }
}
.comparison__header {
  position: relative;
  padding-bottom: 24px;
}
@media (max-width: 1739px) {
  .comparison__header {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .comparison__header {
    padding-bottom: 16px;
  }
}
.comparison__img {
  height: 169px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .comparison__img {
    height: 130px;
  }
}
@media (max-width: 1023px) {
  .comparison__img {
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .comparison__img {
    margin-bottom: 10px;
  }
}
.comparison__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.comparison__del {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
}
@media (max-width: 575px) {
  .comparison__del {
    top: 4px;
    right: 4px;
  }
}
.comparison__del svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #ced7d9;
  transition: 0.3s linear;
}
.comparison__del:hover svg {
  stroke: var(--secondary);
}
.comparison__name {
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (max-width: 1739px) {
  .comparison__name {
    margin-bottom: 14px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .comparison__name {
    margin-bottom: 5px;
    font-size: 12px;
  }
}
.comparison__year {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
}
.comparison__section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}
.comparison__section:last-child {
  margin-bottom: 0;
}
.comparison__section.open .comparison__title svg {
  transform: rotateX(180deg);
}
.comparison__section.open .comparison__table {
  display: block;
}
.comparison__title {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 10px;
  cursor: pointer;
}
.comparison__title span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
}
.comparison__title svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .comparison__title svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 575px) {
  .comparison__title svg {
    width: 14px;
    height: 14px;
  }
}
.comparison__table {
  display: none;
  padding-top: 14px;
}
.comparison__item .comparison__col {
  padding: 14px 0;
  border-top: 1px solid #ced7d9;
}
.comparison__item .comparison__col span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: var(--primary);
}
.comparison__item .comparison__col span img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  object-fit: cover;
}
.comparison__item .comparison__col:first-child span {
  color: var(--gray);
}
.comparison__legend {
  flex-wrap: wrap;
  row-gap: 14px;
  column-gap: 22px;
  padding: 14px 0;
  border-top: 1px solid #ced7d9;
}
.comparison__legend span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
}
.comparison__legend span img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 1739px) {
  .comparison__title span, .comparison__year {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .comparison__title span, .comparison__year {
    font-size: 12px;
  }
}
@media (max-width: 1739px) {
  .comparison__item .comparison__col span, .comparison__legend span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .comparison__item .comparison__col span, .comparison__legend span {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .comparison__col, .comparison__col:first-child {
    width: 158px;
    min-width: 158px;
  }
}

div.contract__time p span.day {
  display: inline-block;
  vertical-align: middle;
  min-width: 105px;
}

.table__t {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
}
.table__t td,
.table__t th {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.table__t td:first-child {
  text-align: left;
}
.table__t tr:nth-child(even) {
  background-color: #f2f2f2;
}
.table__t tr:hover td {
  background-color: #ddd;
}
.table__t th {
  font-weight: bold;
}

table.tut,
table.main_h,
table.main {
  text-align: center !important;
  border-collapse: collapse;
  border-spacing: 0;
}

table.tut tr:first-child,
table.main_h tr:first-child {
  color: #fff;
  background: var(--secondary);
  font-weight: 600;
  font-size: 14px;
}

table.main td,
table.main_h td {
  padding: 0 3px;
  border: 1px solid;
  word-break: break-all !important;
  white-space: normal !important;
  overflow-wrap: break-word;
  width: 50px;
  font-size: 12px;
  line-height: 14px;
}

table.tut tr,
table.main tr {
  background-color: rgb(238, 255, 255);
}

table.tut tr:nth-child(2n),
table.main tr:nth-child(2n) {
  background: #b8cce5;
}

.tabbar {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  bottom: -120%;
  width: 100%;
  transition: bottom 0.6s;
}
@media (max-width: 575px) {
  .tabbar {
    display: block;
  }
}
.tabbar.open {
  bottom: 0;
}
.tabbar__menu {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: stretch;
  gap: 5px;
  padding: 10px;
  background: var(--secondary);
}
.tabbar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  row-gap: 5px;
  width: calc((100% - 20px)/ 5);
}
.tabbar__link svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.tabbar__link span {
  font-weight: 400;
  font-size: 10px;
  color: #fff;
}

.calc-nav {
  display: flex;
  column-gap: 20px;
  overflow-x: auto;
}
@media (max-width: 1023px) {
  .calc-nav {
    margin-left: -60px;
    margin-right: -60px;
    padding: 0 60px 10px;
  }
}
@media (max-width: 575px) {
  .calc-nav {
    column-gap: 12px;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.calc-nav .btn-border {
  flex: none;
  padding: 24px 30px;
  font-size: 16px;
}
@media (max-width: 1739px) {
  .calc-nav .btn-border {
    padding: 20px 25px;
  }
}
@media (max-width: 1023px) {
  .calc-nav .btn-border {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .calc-nav .btn-border {
    padding: 16px 20px;
    font-size: 12px;
  }
}
.calc-nav .btn-border.current {
  background: var(--secondary);
  color: #fff;
}

.blog-nav {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 20px;
  overflow-x: auto;
}
@media (max-width: 1739px) {
  .blog-nav {
    column-gap: 14px;
  }
}
@media (max-width: 575px) {
  .blog-nav {
    column-gap: 12px;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
  }
}
.blog-nav__btn {
  flex: none;
  display: block;
  padding: 14px 24px;
  border: 1px solid #ced7d9;
  border-radius: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .blog-nav__btn {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 575px) {
  .blog-nav__btn {
    padding: 10px 14px;
    font-size: 12px;
    line-height: 15px;
  }
}
.blog-nav__btn:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

.contract-nav {
  display: flex;
  column-gap: 40px;
  overflow-x: auto;
  margin-bottom: 50px;
  scrollbar-width: none;
}
@media (max-width: 1739px) {
  .contract-nav {
    column-gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .contract-nav {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .contract-nav {
    margin: 0 -30px 30px;
    padding: 0 30px;
  }
}
@media (max-width: 374px) {
  .contract-nav {
    margin: 0 -20px 20px;
    padding: 0 20px;
  }
}
.contract-nav::-webkit-scrollbar {
  display: none;
}
.contract-nav__item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex: none;
  flex-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .contract-nav__item {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .contract-nav__item {
    font-size: 12px;
    column-gap: 10px;
  }
}
.contract-nav__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--font-gray);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 1739px) {
  .contract-nav__item span {
    font-size: 12px;
  }
}
.contract-nav__item::after {
  content: "";
  width: 187px;
  height: 2px;
  margin-left: 20px;
  background: #ced7d9;
  border-radius: 2px;
}
@media (max-width: 1739px) {
  .contract-nav__item::after {
    width: 46px;
    margin-left: 10px;
  }
}
@media (max-width: 1199px) {
  .contract-nav__item::after {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .contract-nav__item::after {
    width: 40px;
    margin-left: 10px;
  }
}
.contract-nav__item:last-child::after {
  display: none;
}
.contract-nav__item.current span {
  background: var(--secondary);
}
@media (max-width: 1199px) {
  .contract-nav .contract-nav__item::after {
    display: none;
  }
}

.exchange-rates__nav {
  display: none;
}
@media (max-width: 1023px) {
  .exchange-rates__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }
}
.exchange-rates__link {
  flex: none;
  display: block;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--gray);
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .exchange-rates__link {
    padding: 10px 14px;
    font-size: 12px;
    line-height: 15px;
  }
}

.dynamics-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .dynamics-nav {
    margin-bottom: 15px;
  }
}
.dynamics-nav__btn {
  flex: none;
  display: block;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray);
  transition: 0.3s linear;
}
.dynamics-nav__btn:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

.tab_swicher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.tab_swicher .country,
.tab_swicher .dayName {
  flex: none;
  display: block;
  padding: 10px 20px;
  border: 1px solid #ced7d9;
  border-radius: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--gray);
  transition: 0.3s linear;
  cursor: pointer;
}
.tab_swicher .country.active,
.tab_swicher .dayName.active {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #fff;
  cursor: text;
}

.tab-block .tab-item {
  display: none;
}
.tab-block .tab-item.current {
  display: block;
}
.tab-block .section__text_font-size {
  overflow-x: auto;
}

@media (min-width: 1024px) {
  .car-tabs .box__wrap {
    border-top-left-radius: 0;
  }
}
.car-tabs .box__wrap {
  max-width: 1100px;
  padding: 0;
  background: none;
}
.car-tabs .catalog__header {
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 40px;
}
.car-tabs .catalog__header .section__text {
  max-width: 100%;
  flex-grow: 1;
  margin-bottom: 0;
}

.catalog_tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1739px) {
  .catalog_tabs {
    gap: 15px;
  }
}
@media (max-width: 1023px) {
  .catalog_tabs {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.catalog_tabs .tab {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 60px;
  border: 1px solid var(--border);
  border-radius: 50px 50px 0 0;
  border-bottom: 0;
  cursor: pointer;
}
@media (max-width: 1739px) {
  .catalog_tabs .tab {
    gap: 20px;
    padding: 20px 20px;
  }
}
@media (max-width: 1199px) {
  .catalog_tabs .tab {
    padding: 20px 15px;
    border-radius: 20px 20px 0 20px;
  }
}
@media (max-width: 1023px) {
  .catalog_tabs .tab {
    border-radius: 10px;
    border-bottom: 1px solid var(--border);
  }
}
.catalog_tabs .tab .flag {
  display: block;
  width: 46px;
  height: auto;
  border: 1px solid var(--border);
}
@media (max-width: 1739px) {
  .catalog_tabs .tab .flag {
    width: 36px;
  }
}
.catalog_tabs .tab .flag.nobrd {
  border: 0;
}
.catalog_tabs .tab .checkbox {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 1px solid var(--border);
  transition: 0.5s ease all;
}
@media (max-width: 1739px) {
  .catalog_tabs .tab .checkbox {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1199px) {
  .catalog_tabs .tab .checkbox {
    width: 24px;
    height: 24px;
  }
}
.catalog_tabs .tab:hover .checkbox {
  border-color: var(--secondary);
  transition: 0.5s ease all;
}
.catalog_tabs .tab.active .checkbox {
  background-color: var(--secondary);
  background-image: url(../img/icons/checkmark-outline.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px;
  border-color: var(--secondary);
}
@media (max-width: 1739px) {
  .catalog_tabs .tab.active .checkbox {
    background-size: 24px;
  }
}
@media (max-width: 1199px) {
  .catalog_tabs .tab.active .checkbox {
    background-size: 18px;
  }
}
.catalog_tabs .tab .text {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: 100%;
}
.catalog_tabs .tab .text .name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--font-dark);
  transition: 0.5s ease all;
}
.catalog_tabs .tab.active .text .name {
  color: var(--secondary);
}
.catalog_tabs .tab:hover .text .name {
  color: var(--secondary);
  transition: 0.5s ease all;
}
.catalog_tabs .tab .text .price .from {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--font-dark);
}
.catalog_tabs .tab .text .price .diff {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-dark);
}
.catalog_tabs .tab .text .price .diff.green {
  color: #0E8E29;
}
.catalog_tabs .tab .text .price .diff.red {
  color: var(--secondary);
}
.catalog_tabs .tab .text .offers {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .catalog_tabs .tab .text .offers {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .catalog_tabs .tab .text .offers {
    font-size: 12px;
  }
}
.catalog_tabs .tab .text .offers .swheel {
  font-weight: 500;
}
.catalog_tabs .tab.active {
  background: var(--bg-box);
  border: 0;
  cursor: text;
}
@media (max-width: 1023px) {
  .catalog_tabs .tab.active {
    border: 1px solid var(--secondary);
  }
}
@media (max-width: 1739px) {
  .catalog_tabs .tab .text .name,
  .catalog_tabs .tab .text .price .from {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .catalog_tabs .tab .text .name,
  .catalog_tabs .tab .text .price .from {
    font-size: 14px;
  }
}

.sort {
  width: 278px;
}
@media (max-width: 767px) {
  .sort {
    width: 100%;
    max-width: 300px;
  }
}

.found {
  margin-bottom: 40px;
}
@media (max-width: 1739px) {
  .found {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .found {
    margin-bottom: 20px;
  }
}
.found__title {
  margin: 0 0 26px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .found__title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1023px) {
  .found__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .found__title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.found__desc {
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .found__desc {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .found__desc {
    margin-bottom: 30px;
  }
}
.found__desc p {
  margin: 0 0 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
.found__desc p:last-child {
  margin-bottom: 0;
}
.found__table {
  overflow-x: auto;
  padding-bottom: 10px;
}
@media (max-width: 480px) {
  .found__table {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 374px) {
  .found__table {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.found__table table {
  width: 580px;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .found__table table {
    width: 400px;
  }
}
.found__table table th {
  width: 25%;
  padding-bottom: 12px;
  text-align: left;
  border-bottom: 1px solid #ced7d9;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
.found__table table td {
  padding: 12px 0;
  border-bottom: 1px solid #ced7d9;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .found__table table td {
    font-size: 12px;
  }
}
@media (max-width: 1739px) {
  .found__desc p, .found__table table th {
    font-size: 14px;
  }
}

.search {
  display: flex;
  flex-wrap: wrap;
  width: 415px;
  height: 60px;
  border: 1px solid #ced7d9;
  border-radius: 10px;
}
@media (max-width: 1739px) {
  .search {
    width: 295px;
    height: 56px;
  }
}
@media (max-width: 575px) {
  .search {
    width: 100%;
    max-width: 300px;
    height: 52px;
  }
}
.search button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  border: none;
  border-radius: 10px;
  background: 0 0;
  cursor: pointer;
}
@media (max-width: 1739px) {
  .search button {
    width: 56px;
  }
}
@media (max-width: 575px) {
  .search button {
    width: 52px;
  }
}
.search button svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--gray);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .search button svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575px) {
  .search button svg {
    width: 22px;
    height: 22px;
  }
}
.search button:hover svg {
  stroke: var(--secondary);
}
.search input {
  width: calc(100% - 60px);
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
  background-color: transparent;
}
@media (max-width: 1739px) {
  .search input {
    width: calc(100% - 56px);
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .search input {
    width: calc(100% - 52px);
    font-size: 12px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}
@media (max-width: 1739px) {
  .pagination {
    column-gap: 35px;
  }
}
@media (max-width: 575px) {
  .pagination {
    column-gap: 20px;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 374px) {
  .pagination {
    flex-direction: column;
    row-gap: 20px;
  }
}
.pagination__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
@media (max-width: 1739px) {
  .pagination__nav {
    column-gap: 14px;
  }
}
.pagination__arr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid #ced7d9;
  border-radius: 50%;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .pagination__arr {
    width: 50px;
    height: 50px;
  }
}
.pagination__arr svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
}
@media (max-width: 1739px) {
  .pagination__arr svg {
    width: 18px;
    height: 18px;
  }
}
.pagination__arr:nth-child(2) svg {
  transform: rotate(180deg);
}
.pagination__arr:hover {
  border-color: var(--primary);
}
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.pagination__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .pagination__link {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 575px) {
  .pagination__link {
    font-size: 12px;
    line-height: 15px;
  }
}
.pagination__link:hover {
  color: var(--secondary);
}
.pagination__link.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  color: var(--secondary);
}
@media (max-width: 575px) {
  .pagination__link.current {
    width: 30px;
    height: 30px;
  }
}

.page_navigation_list a {
  color: var(--secondary);
  border-bottom: var(--secondary) dotted 1px;
}

.pag_next_arr svg {
  transform: rotate(180deg) !important;
}

.tooltipster-arrow {
  display: none;
}

.tooltipster-sidetip {
  transform: translateX(-46%);
}
.tooltipster-sidetip .tooltipster-box {
  width: 190px;
  padding: 12px;
  background: #fff;
  border: 1px solid #ced7d9;
  border-radius: 15px;
}
.tooltipster-sidetip .tooltipster-content {
  padding: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--primary);
}

.attention {
  display: grid;
  grid-template-columns: 26px 1fr 26px;
  column-gap: 15px;
  margin-bottom: 20px;
  padding: 22px 30px;
  background: #f33e3e;
  border-radius: 20px;
}
@media (max-width: 1023px) {
  .attention {
    border-radius: 15px;
  }
}
@media (max-width: 575px) {
  .attention {
    grid-template-columns: 22px 1fr 22px;
    padding: 20px 10px;
  }
}
.attention__icon {
  width: 26px;
  height: 26px;
}
@media (max-width: 575px) {
  .attention__icon {
    width: 22px;
    height: 22px;
  }
}
.attention__icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.attention__text {
  margin: 3px 15px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
@media (max-width: 1739px) {
  .attention__text {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 575px) {
  .attention__text {
    margin-right: 10px;
    font-size: 12px;
  }
}
.attention__text a {
  color: #fff;
  text-decoration: underline;
}
.attention__close {
  width: 26px;
  height: 26px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .attention__close {
    width: 22px;
    height: 22px;
  }
}
.attention__close svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
}

.status {
  font-size: 12px;
}
.status span {
  color: var(--secondary);
}

.social {
  margin-bottom: 100px;
}
@media (max-width: 1739px) {
  .social {
    margin-bottom: 90px;
  }
}
@media (max-width: 1199px) {
  .social {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .social {
    margin-bottom: 70px;
  }
}
.social__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
}
.social__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
  border-radius: 50px;
  padding-left: 100px;
}
@media (max-width: 1739px) {
  .social__left {
    padding-left: 40px;
  }
}
@media (max-width: 1199px) {
  .social__left {
    padding-left: 30px;
  }
}
@media (max-width: 1023px) {
  .social__left {
    width: calc(100% / 12 * 7 - 20px);
    padding-left: 0;
    border-radius: 30px;
  }
}
.social__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
}
@media (max-width: 1023px) {
  .social__right {
    width: calc(100% / 12 * 5 - 20px);
  }
}
.social__title {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .social__title {
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  .social__title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .social__title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .social__title {
    font-size: 18px;
  }
}
.social__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
}
.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
  aspect-ratio: 1;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 30px;
  transition: 0.3s linear;
}
@media (max-width: 1023px) {
  .social__link {
    width: calc(100% / 12 * 6 - 20px);
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .social__link {
    width: calc(100% / 12 * 3 - 20px);
  }
}
@media (max-width: 575px) {
  .social__link {
    max-height: 170px;
  }
}
.social__link svg {
  width: 50px;
  height: 50px;
  fill: #fff;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .social__link svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575px) {
  .social__link svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 480px) {
  .social__link svg {
    width: 26px;
    height: 26px;
  }
}
.social__link:hover {
  background: #fff;
}
.social__link:hover svg {
  fill: var(--secondary);
}
@media (max-width: 767px) {
  .social__left, .social__right {
    width: calc(100% / 12 * 12 - 20px);
  }
}

.social-two {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 205px 125px;
}
@media (max-width: 1739px) {
  .social-two {
    padding: 100px 80px;
  }
}
@media (max-width: 1199px) {
  .social-two {
    padding: 80px 60px;
  }
}
@media (max-width: 1023px) {
  .social-two {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .social-two {
    padding: 30px;
  }
}
.social-two__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 575px) {
  .social-two__list {
    column-gap: 14px;
  }
}
.social-two__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background: var(--secondary);
  border-radius: 50%;
  border: 1px solid var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1023px) {
  .social-two__link {
    width: 74px;
    height: 74px;
  }
}
@media (max-width: 575px) {
  .social-two__link {
    width: 60px;
    height: 60px;
  }
}
.social-two__link svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  transition: 0.3s linear;
}
@media (max-width: 1023px) {
  .social-two__link svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .social-two__link svg {
    width: 20px;
    height: 20px;
  }
}
.social-two__link:hover {
  background: #fff;
}
.social-two__link:hover svg {
  fill: var(--secondary);
}

.msgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 575px) {
  .msgs {
    gap: 5px;
  }
}
.msgs__item {
  position: relative;
}
.msgs__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(174, 179, 179, 0.3);
  border-radius: 50%;
  transition: 0.3s linear;
}
.msgs__wa svg {
  width: 18px;
  height: 18px;
  fill: #3dbf00;
}
.msgs__wa:hover {
  border-color: #3dbf00;
}
.msgs__tg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s linear;
  border: 1px solid rgba(174, 179, 179, 0.3);
  padding-right: 0;
}
.msgs__tg svg {
  width: 18px;
  height: 18px;
  fill: #259dd9;
}
.msgs__vk {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(174, 179, 179, 0.3);
  border-radius: 50%;
  transition: 0.3s linear;
}
.msgs__vk svg {
  width: 14px;
  height: 14px;
  fill: #07f;
}
.msgs__vk:hover {
  border-color: #07f;
}
.msgs--light .msgs__wa {
  border-color: #fff;
}
.msgs--light .msgs__wa svg {
  fill: #fff;
}
.msgs__tg:hover {
  border-color: #259dd9;
}
.msgs__max {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(174, 179, 179, 0.3);
  border-radius: 50%;
  transition: 0.3s linear;
}
.msgs__max:hover {
  border-color: #7324e2;
}
.msgs__max svg {
  width: 18px;
  height: 18px;
  fill: #7324e2;
}

.auc_list_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-for-lot {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-grow: 1;
  align-content: end;
}
.contact-for-lot .item {
  border-radius: 20px;
  transition: 0.3s linear;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  border-width: 1px;
  border-style: solid;
}
.contact-for-lot .ic,
.contact-for-lot .ph {
  height: 40px;
}
.contact-for-lot .ph {
  color: #fff;
  background: #d22735;
  border-color: #d22735;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 1199px) {
  .contact-for-lot .ph {
    font-size: 12px;
  }
}
.contact-for-lot .ph:hover {
  color: #d22735;
  background: #fff;
  border-color: #d22735;
}
.contact-for-lot .ic {
  width: 40px;
}
.contact-for-lot svg {
  width: 20px;
  height: 20px;
}
.contact-for-lot .tg {
  border-color: #259dd9;
}
.contact-for-lot .wa {
  border-color: #008000;
}
.contact-for-lot .mx {
  border-color: #7324e2;
}
.contact-for-lot .ic svg {
  transition: 0.3s linear;
}
.contact-for-lot .tg svg {
  fill: #259dd9;
}
.contact-for-lot .wa svg {
  fill: #008000;
}
.contact-for-lot .mx svg {
  fill: #7324e2;
}
.contact-for-lot .ic:hover {
  border-color: #8e8e89;
}
.contact-for-lot .ic:hover svg {
  fill: #8e8e89;
}
.contact-for-lot.big {
  gap: 10px;
}
.contact-for-lot.big .item {
  border-radius: 27px;
}
.contact-for-lot.big .ic,
.contact-for-lot.big .ph {
  height: 54px;
}
.contact-for-lot.big .ph {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
}
@media (max-width: 1199px) {
  .contact-for-lot.big .ph {
    font-size: 14px;
  }
}
.contact-for-lot.big .ic {
  width: 54px;
}
.contact-for-lot.big svg {
  width: 24px;
  height: 24px;
}

.our-social {
  padding: 16px 0;
}
.our-social .title {
  font-size: 18px;
  font-weight: 500;
  color: #5E6772;
  margin-bottom: 5px;
  width: 100%;
}
.our-social .social {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
}
.our-social .social a {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  padding: 4px;
}
.our-social .social svg {
  width: 24px;
  height: 24px;
}
.our-social .social a.youtube {
  color: #EA4335;
}
.our-social .social a.youtube svg {
  fill: #EA4335;
}
.our-social .social a.telegram {
  color: #3D9BFF;
}
.our-social .social a.telegram svg {
  fill: #fff;
  background: #3D9BFF;
  border-radius: 100%;
  padding: 5px;
}
.our-social .social a.vk {
  color: #4285F4;
}
.our-social .social a.vk svg {
  fill: #4285F4;
}

#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.05);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#spinner.active {
  display: flex;
}

#spinner i {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #fff;
  transform: translateZ(0);
  animation: 1.1s linear infinite spinner;
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

div[class^=css-] {
  border-radius: 0 !important;
}

.text-collapse {
  --text-collapse-h: 360px;
  --text-collapse-fade: var(--bg-color);
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1739px) {
  .text-collapse {
    max-width: 1000px;
  }
}
@media (max-width: 1199px) {
  .text-collapse {
    --text-collapse-h: 300px;
  }
}
@media (max-width: 767px) {
  .text-collapse {
    --text-collapse-h: 260px;
  }
}
@media (max-width: 575px) {
  .text-collapse {
    --text-collapse-h: 220px;
    padding: 0 30px;
  }
}
@media (max-width: 374px) {
  .text-collapse {
    padding: 0 20px;
  }
}
.text-collapse__body {
  position: relative;
  overflow: hidden;
  max-height: var(--text-collapse-h);
  transition: max-height 0.4s ease;
}
.text-collapse__body::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--text-collapse-fade));
  opacity: 1;
  transition: opacity 0.3s linear;
}
@media (max-width: 767px) {
  .text-collapse__body::after {
    height: 100px;
  }
}
.text-collapse__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: 100%;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--secondary);
  cursor: pointer;
  transition: opacity 0.3s linear;
}
@media (max-width: 1199px) {
  .text-collapse__toggle {
    margin-top: 15px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .text-collapse__toggle {
    font-size: 14px;
  }
}
.text-collapse__toggle:hover {
  opacity: 0.7;
}
.text-collapse__toggle svg {
  flex: none;
  width: 10px;
  height: 11px;
  fill: currentColor;
  transition: transform 0.3s linear;
}
@media (max-width: 575px) {
  .text-collapse__toggle svg {
    width: 8px;
    height: 9px;
  }
}
.text-collapse.is-measured:not(.is-collapsible) .text-collapse__body {
  max-height: none;
}
.text-collapse.is-measured:not(.is-collapsible) .text-collapse__body::after {
  content: none;
}
.text-collapse.is-collapsible .text-collapse__toggle {
  display: flex;
}
.text-collapse.is-open .text-collapse__body::after {
  opacity: 0;
}
.text-collapse.is-open .text-collapse__toggle svg {
  transform: rotate(180deg);
}

.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1739px) {
  .brands {
    gap: 14px;
  }
}
@media (max-width: 1365px) {
  .brands {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1023px) {
  .brands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }
}
.brands__item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 20px;
  height: 90px;
  padding: 0 25px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 20px;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .brands__item {
    height: 74px;
    padding: 0 22px;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .brands__item {
    height: 66px;
    padding: 0 18px;
    border-radius: 15px;
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  .brands__item {
    height: 54px;
  }
}
@media (max-width: 575px) {
  .brands__item {
    gap: 10px;
    height: 42px;
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .brands__item {
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .brands__item {
    height: 42px;
    padding: 0 10px;
  }
}
.brands__item img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (max-width: 1739px) {
  .brands__item img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1023px) {
  .brands__item img {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575px) {
  .brands__item img {
    width: 22px;
    height: 22px;
  }
}
.brands__item:hover {
  border-color: var(--gray);
}

.hits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .hits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hits {
    grid-template-columns: 100%;
  }
}
.hits__select {
  max-height: 410px;
  padding: 30px 20px 20px 35px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-card);
}
@media (max-width: 1739px) {
  .hits__select {
    max-height: 342px;
    padding: 25px 20px 20px 30px;
  }
}
@media (max-width: 1199px) {
  .hits__select {
    max-height: 320px;
  }
}
.hits__list {
  height: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #e2e8ed;
}
.hits__list::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}
.hits__list::-webkit-scrollbar-track {
  background: #e2e8ed;
}
.hits__list::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 0;
  border: none;
}
.hits__link {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-dark);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .hits__link {
    font-size: 12px;
  }
}
.hits__link.bold, .hits__link:first-child {
  font-weight: 600;
}
.hits__wrap {
  display: contents;
}
@media (max-width: 374px) {
  .hits + .section__footer {
    margin-top: 30px;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  row-gap: 10px;
  column-gap: 10px;
}
@media (max-width: 1023px) {
  .breadcrumbs {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .breadcrumbs {
    margin-bottom: 18px;
  }
}
.breadcrumbs__item {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .breadcrumbs__item {
    font-size: 12px;
    line-height: 15px;
  }
}
.breadcrumbs__link {
  color: var(--gray);
  transition: 0.3s linear;
}
.breadcrumbs__link:hover {
  color: var(--secondary);
}
.breadcrumbs__link::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  background: url(../img/icons/chevron.svg) center/contain no-repeat;
  transform: rotate(-90deg);
}

.looking {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
}
@media (max-width: 1739px) {
  .looking {
    column-gap: 10px;
  }
}
@media (max-width: 767px) {
  .looking {
    overflow-x: scroll;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}
.looking__label {
  padding-right: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .looking__label {
    width: 100%;
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 575px) {
  .looking__label {
    font-size: 12px;
    line-height: 15px;
  }
}
@media (max-width: 767px) {
  .looking__label {
    width: auto;
  }
}
.looking__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 18px;
  gap: 10px;
  height: 54px;
  background: #fff;
  border-radius: 40px;
}
@media (max-width: 1739px) {
  .looking__item {
    height: 44px;
    padding: 0 12px;
    border: 1px solid #eeebde;
  }
}
@media (max-width: 575px) {
  .looking__item {
    max-width: 100%;
    height: 42px;
  }
}
.looking__item a {
  margin: 0;
  max-width: 339px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: var(--font-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1739px) {
  .looking__item a {
    max-width: 291px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .looking__item a {
    max-width: 240px;
  }
}
@media (max-width: 374px) {
  .looking__item a {
    max-width: 200px;
  }
}
.looking__del {
  flex: none;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
@media (max-width: 1739px) {
  .looking__del {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .looking__del {
    width: 18px;
    height: 18px;
  }
}
.looking__del svg {
  width: 100%;
  height: 100%;
  stroke: var(--font-dark);
  transition: 0.3s linear;
}
.looking__del:hover svg {
  stroke: var(--gray);
}
.looking__add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .looking__add {
    width: 44px;
    height: 44px;
    border: 1px solid #ced7d9;
  }
}
@media (max-width: 575px) {
  .looking__add {
    width: 42px;
    height: 42px;
  }
}
.looking__add svg {
  width: 26px;
  height: 26px;
  stroke: var(--secondary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .looking__add svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .looking__add svg {
    width: 18px;
    height: 18px;
  }
}
.looking__add:hover {
  background: var(--secondary);
}
.looking__add:hover svg {
  stroke: #fff;
}
.looking.top_models {
  padding-top: 24px;
}
.looking.pop-auc {
  margin-bottom: 24px;
}

.catalog__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .catalog__header {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .catalog__header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .catalog__header {
    margin-bottom: 20px;
  }
}
.catalog__info {
  width: 352px;
}
@media (max-width: 1739px) {
  .catalog__info {
    width: 100%;
    max-width: 325px;
  }
}
.catalog__info p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .catalog__info p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .catalog__info p {
    font-size: 12px;
  }
}
.catalog__info p a {
  color: var(--secondary);
  text-decoration: underline;
}
.catalog__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 1739px) {
  .catalog__footer {
    margin-top: 50px;
  }
}
@media (max-width: 1199px) {
  .catalog__footer {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .catalog__footer {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 30px;
  }
}
@media (max-width: 374px) {
  .catalog__footer {
    margin-top: 20px;
  }
}
.catalog__qnt {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--gray);
}
@media (max-width: 1739px) {
  .catalog__qnt {
    font-size: 12px;
    line-height: 15px;
  }
}
.catalog__qnt span {
  margin-left: 10px;
}

.catalog-list {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 20px;
}
.catalog-list .card-row {
  flex-direction: row;
}

.car-brands {
  margin-bottom: 100px;
}
@media (max-width: 1739px) {
  .car-brands {
    margin-bottom: 90px;
  }
}
@media (max-width: 1023px) {
  .car-brands {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .car-brands {
    margin-bottom: 70px;
  }
}
.car-brands__title {
  margin: 0 0 50px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .car-brands__title {
    margin-bottom: 40px;
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .car-brands__title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.car-brands__row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 20px;
}
@media (max-width: 1739px) {
  .car-brands__row {
    column-gap: 20px;
    row-gap: 18px;
  }
}
.car-brands__link {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33;
  color: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .car-brands__link {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .car-brands__link {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .car-brands__link {
    font-size: 12px;
  }
}
.car-brands__link:hover {
  color: var(--secondary);
}
.car-brands__link strong {
  font-weight: 600;
}
.car-brands__link.hide {
  display: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.catalog-grid--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .catalog-grid, .catalog-grid--four {
    grid-template-columns: 100%;
  }
}
.catalog-grid--four .card__status,
.catalog-grid .card__status,
.catalog-grid .my-5 {
  font-size: 12px;
}
.catalog-grid--four .card__price > p:last-child {
  flex-basis: 100%;
}
.catalog-grid .card-row-gallery {
  width: 100%;
  min-height: 250px;
  position: relative;
}
@media (max-width: 1199px) {
  .catalog-grid .card-row-gallery {
    min-height: 210px;
  }
}
@media (max-width: 1023px) {
  .catalog-grid .card-row-gallery {
    min-height: 240px;
  }
}
@media (max-width: 767px) {
  .catalog-grid .card-row-gallery {
    min-height: 170px;
  }
}
@media (max-width: 575px) {
  .catalog-grid .card-row-gallery {
    min-height: 300px;
  }
}
@media (max-width: 420px) {
  .catalog-grid .card-row-gallery {
    min-height: 230px;
  }
}
.catalog-grid .card-row-gallery .list {
  overflow: hidden;
  max-height: 100%;
}
.catalog-grid .pic {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.catalog-grid .gallery_slider {
  max-width: 100%;
}
.catalog-grid .gallery_slider .pic {
  position: static;
  height: auto;
  width: 100%;
}
.catalog-grid .gallery_slider .slider_pic {
  position: static;
  max-width: 100%;
  width: 100%;
}
.catalog-grid .card-row-gallery.mobile {
  min-height: 50px !important;
}
.catalog-grid .card-row-gallery .list .item:first-child .img img {
  max-height: 100%;
}
.catalog-grid .card-row-gallery .list .img {
  border-radius: 30px 30px 0 0;
}

.moto-brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}
@media (max-width: 1739px) {
  .moto-brands {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .moto-brands {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto);
  }
}
@media (max-width: 1023px) {
  .moto-brands {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}
@media (max-width: 767px) {
  .moto-brands {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}
@media (max-width: 575px) {
  .moto-brands {
    row-gap: 12px;
  }
}
.moto-brands__link {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .moto-brands__link {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .moto-brands__link {
    font-size: 12px;
  }
}
.moto-brands__link span:first-child {
  display: inline-block;
  width: 170px;
  font-weight: 600;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .moto-brands__link span:first-child {
    width: 160px;
  }
}
@media (max-width: 575px) {
  .moto-brands__link span:first-child {
    width: 140px;
  }
}
.moto-brands__link:hover span:first-child {
  color: var(--secondary);
}
.moto-brands .link span {
  color: var(--font-dark);
  font-size: 16px;
}
@media (max-width: 1739px) {
  .moto-brands .link span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .moto-brands .link span {
    font-size: 12px;
  }
}
.moto-brands .link svg {
  width: 18px;
  height: 18px;
  stroke: var(--font-dark);
}
@media (max-width: 575px) {
  .moto-brands .link svg {
    width: 16px;
    height: 16px;
  }
}
.moto-brands .link:hover span {
  color: var(--secondary);
}
.moto-brands .link:hover svg {
  stroke: var(--secondary);
}

.type-moto {
  display: flex;
  column-gap: 20px;
}
@media (max-width: 1739px) {
  .type-moto {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
  }
}
@media (max-width: 1199px) {
  .type-moto {
    grid-template-columns: repeat(6, 1fr);
  }
}
.type-moto__link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.type-moto__link span {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  color: var(--font-dark);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .type-moto__link span {
    font-size: 10px;
  }
}
.type-moto__link:hover span {
  color: var(--secondary);
}
.type-moto__img {
  height: 90px;
  padding: 10px;
  background: #f8f7f7;
  border-radius: 15px;
}
@media (max-width: 1739px) {
  .type-moto__img {
    padding: 10px 5px;
  }
}
.type-moto__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}

.gnr-sets__years {
  margin: 0 0 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .gnr-sets__years {
    margin-bottom: 40px;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .gnr-sets__years {
    margin-bottom: 35px;
    font-size: 12px;
  }
}
.gnr-sets__section {
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .gnr-sets__section {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .gnr-sets__section {
    margin-bottom: 35px;
  }
}
.gnr-sets__section:last-child {
  margin-bottom: 0;
}
.gnr-sets__subtitle {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .gnr-sets__subtitle {
    margin-bottom: 25px;
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .gnr-sets__subtitle {
    font-size: 16px;
  }
}

.sets-catalog {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 60px;
}
@media (max-width: 1739px) {
  .sets-catalog {
    row-gap: 50px;
  }
}
@media (max-width: 1023px) {
  .sets-catalog {
    row-gap: 40px;
  }
}
@media (max-width: 575px) {
  .sets-catalog {
    row-gap: 30px;
  }
}
.sets-catalog__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .sets-catalog__title {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .sets-catalog__title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .sets-catalog__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.sets-catalog__nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
@media (max-width: 1739px) {
  .sets-catalog__nav {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}
@media (max-width: 1199px) {
  .sets-catalog__nav {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1023px) {
  .sets-catalog__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .sets-catalog__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .sets-catalog__nav {
    gap: 12px;
  }
}
.sets-catalog__link {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 25px;
  gap: 20px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .sets-catalog__link {
    padding: 22px;
  }
}
@media (max-width: 1023px) {
  .sets-catalog__link {
    border-radius: 15px;
  }
}
@media (max-width: 575px) {
  .sets-catalog__link {
    gap: 10px;
    padding: 10px 12px;
  }
}
.sets-catalog__link span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .sets-catalog__link span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .sets-catalog__link span {
    font-size: 12px;
  }
}
.sets-catalog__link:hover {
  border-color: var(--secondary);
}
.sets-catalog__icon {
  flex: none;
  width: 40px;
  height: 40px;
}
@media (max-width: 1739px) {
  .sets-catalog__icon {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .sets-catalog__icon {
    width: 22px;
    height: 22px;
  }
}
.sets-catalog__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sets-catalog__icon svg {
  width: 30px;
  height: 30px;
  color: var(--secondary);
  fill: var(--secondary);
}
@media (max-width: 767px) {
  .sets-catalog__icon svg {
    width: 20px;
    height: 20px;
  }
}
.sets-catalog__nav.auc {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .sets-catalog__link.auc.mob_hidden {
    display: none;
  }
}

.model-range {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 60px;
}
@media (max-width: 1739px) {
  .model-range {
    row-gap: 50px;
  }
}
@media (max-width: 1023px) {
  .model-range {
    row-gap: 40px;
  }
}
@media (max-width: 575px) {
  .model-range {
    row-gap: 30px;
  }
}
.model-range__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .model-range__title {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .model-range__title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .model-range__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.model-range__row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
}
@media (max-width: 1739px) {
  .model-range__row {
    column-gap: 35px;
  }
}
@media (max-width: 1023px) {
  .model-range__row {
    column-gap: 30px;
  }
}
@media (max-width: 575px) {
  .model-range__row {
    column-gap: 20px;
  }
}
.model-range__link {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .model-range__link {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .model-range__link {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .model-range__link {
    font-size: 12px;
  }
}
.model-range__link span {
  margin-left: 5px;
  color: var(--gray);
}
.model-range__link:hover {
  color: var(--secondary);
}

.set {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}
@media (max-width: 1023px) {
  .set {
    grid-template-columns: 100%;
    row-gap: 30px;
  }
}
.set .comparison__section {
  display: block;
}
.set .comparison__row.comparison__item .comparison__col {
  width: 50%;
  min-width: 1px;
  padding-right: 50px;
}

.fav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #798383;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 575px) {
  .fav {
    gap: 6px;
    font-size: 14px;
  }
}
.fav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #798383;
}
@media (max-width: 575px) {
  .fav svg {
    width: 18px;
    height: 18px;
  }
}

.compare {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  color: #798383;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 575px) {
  .compare {
    gap: 6px;
    font-size: 14px;
  }
}
.compare svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #798383;
}
@media (max-width: 575px) {
  .compare svg {
    width: 18px;
    height: 18px;
  }
}

.selection-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1199px) {
  .selection-card {
    gap: 25px 20px;
  }
}
@media (max-width: 767px) {
  .selection-card {
    gap: 12px;
  }
}
.selection-card__gallery {
  width: calc(50% - 20px);
}
@media (max-width: 1199px) {
  .selection-card__gallery {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .selection-card__gallery {
    width: 100%;
  }
}
.selection-card__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(50% - 20px);
  border-radius: 50px;
  padding: 50px;
  background: #fff;
}
@media (max-width: 1199px) {
  .selection-card__info {
    width: calc(50% - 10px);
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .selection-card__info {
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .selection-card__info {
    width: 100%;
    margin-bottom: 13px;
  }
}
@media (max-width: 575px) {
  .selection-card__info {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .selection-card__info {
    border-radius: 10px;
  }
}
.selection-card__sets {
  width: 100%;
}
.selection-card__name {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .selection-card__name {
    margin-bottom: 16px;
  }
}
.selection-card__name span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary-dark);
}
@media (max-width: 1199px) {
  .selection-card__name span {
    font-size: 12px;
  }
}
.selection-card__name h2 {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: var(--primary-dark);
}
.selection-card__price {
  margin-top: auto;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .selection-card__name h2, .selection-card__price {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .selection-card__name h2, .selection-card__price {
    font-size: 22px;
  }
}

.popular_brands .brands_box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}
.popular_brands .brands_box .country_box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2px;
  width: calc(50% - 12px);
}
@media (max-width: 1023px) {
  .popular_brands .brands_box .country_box {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .popular_brands .brands_box .country_box {
    gap: 14px;
  }
}
.popular_brands .brands_box .country_box .title {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
}
.popular_brands .brands_box .country_box .item {
  width: calc(33.33% - 2px);
}
@media (max-width: 1199px) {
  .popular_brands .brands_box .country_box .item {
    min-width: calc(50% - 5px);
  }
}
@media (max-width: 767px) {
  .popular_brands .brands_box .country_box .item {
    min-width: calc(50% - 5px);
  }
}
@media (max-width: 420px) {
  .popular_brands .brands_box .country_box .item {
    min-width: calc(50% - 7px);
    width: calc(50% - 7px);
  }
}
.popular_brands .brands_box .country_box .item a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 4px;
  color: var(--font-dark);
}
@media (max-width: 420px) {
  .popular_brands .brands_box .country_box .item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.popular_brands .brands_box .country_box .item a:hover {
  color: var(--secondary);
}
.popular_brands .brands_box .country_box .item a img {
  border-radius: 5px;
  width: 64px;
  height: 64px;
}
.popular_brands .brands_box .country_box.full {
  width: 100%;
}
.popular_brands .brands_box .country_box.full .item {
  width: calc(100% / 6 - 2px);
}

.brands_models_list {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 1023px) {
  .brands_models_list {
    flex-wrap: wrap;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .brands_models_list {
    max-width: 420px;
  }
}
@media (max-width: 575px) {
  .brands_models_list {
    max-width: 100%;
  }
}
.brands_models_list .col {
  width: calc(100% / 4 - 12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .brands_models_list .col {
    width: calc(50% - 8px);
  }
}
@media (max-width: 575px) {
  .brands_models_list .col {
    width: 100%;
  }
}
.brands_models_list .col .brands_models__link {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--font-dark);
  column-gap: 16px;
}
.brands_models_list .col .brands_models__link span:first-child {
  display: inline-block;
  transition: 1s ease all;
}
.brands_models_list .col .brands_models__link span:nth-child(2) {
  font-weight: 400;
  transition: 1s ease all;
  color: #8e8e89;
}
.brands_models_list .col .brands_models__link:hover span {
  color: var(--secondary);
  transition: 0.5s ease all;
}
.brands_models_list .col .brands_models__link.hidden {
  display: none;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.brands_models_list .col .link span {
  font-size: 14px;
  font-weight: 600;
}
.brands_models_list .col .link svg {
  transform: rotate(270deg);
  fill: red;
  stroke: none;
  width: 16px;
  height: 16px;
}
.brands_models_list .col .link.active svg {
  transform: rotate(90deg);
}
.brands_models_list .col .brands_models__link.hiding {
  font-weight: 400;
}

@media (max-width: 767px) {
  .idx_cars_sliders {
    padding-bottom: 100px;
  }
}
.idx_cars_sliders--with_footer {
  padding-bottom: 30px;
}
.idx_cars_sliders .filter.no_bg .select2 {
  background: #fff;
}
.idx_cars_sliders .filter.no_bg .form-group__double .select2.select2-container {
  border-radius: 0 10px 10px 0;
}
.idx_cars_sliders .filter.no_bg .form-group__double .select2.select2-container:first-of-type {
  border-radius: 10px 0 0 10px;
}
.idx_cars_sliders .filter.no_bg input[type=text] {
  background: #fff;
}
@media (min-width: 768px) {
  .idx_cars_sliders .box.brands {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .idx_cars_sliders .catalog {
    padding-top: 120px;
  }
}
@media (min-width: 1739px) {
  .idx_cars_sliders .catalog {
    padding-top: 160px;
  }
}
.idx_cars_sliders .carousel .card-row__desc {
  display: flex;
}

.other-countries {
  display: flex;
  gap: 20px 60px;
  flex-wrap: wrap;
}
@media (max-width: 1735px) {
  .other-countries {
    gap: 20px 40px;
  }
}
@media (max-width: 1023px) {
  .other-countries {
    gap: 20px;
  }
}
.other-countries .country {
  width: calc(100% / 2 - 30px);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  border-radius: 25px;
  background: var(--bg-card);
}
@media (max-width: 1735px) {
  .other-countries .country {
    width: calc(100% / 2 - 20px);
  }
}
@media (max-width: 1023px) {
  .other-countries .country {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .other-countries .country {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .other-countries .country {
    flex-direction: column;
    align-items: flex-start;
  }
}
.other-countries .country .country-flag img {
  display: block;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
}
@media (max-width: 575px) {
  .other-countries .country .country-flag img {
    max-width: 80px;
  }
}
.other-countries .country .country-text {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 6px;
}
.other-countries .country .country-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.other-countries .country .country-price {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--secondary);
}
@media (max-width: 1735px) {
  .other-countries .country .country-title,
  .other-countries .country .country-price {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .other-countries .country .country-title,
  .other-countries .country .country-price {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .other-countries .country .country-title,
  .other-countries .country .country-price {
    font-size: 14px;
  }
}
.other-countries .country b {
  font-weight: 600;
}
@media (max-width: 1199px) {
  .other-countries .country b {
    display: block;
  }
}
@media (max-width: 1023px) {
  .other-countries .country b {
    display: inline;
  }
}
@media (max-width: 767px) {
  .other-countries .country b {
    display: block;
  }
}
.other-countries .country .btn {
  margin-top: 8px;
  background: #fff;
  color: var(--secondary);
  padding: 10px 15px;
}
.other-countries .country .btn:hover {
  background: var(--secondary);
  color: #fff;
}

.car-card {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 10px));
  grid-template-rows: repeat(3, auto);
  column-gap: 20px;
  row-gap: 30px;
  align-content: start;
}
@media (max-width: 767px) {
  .car-card {
    grid-template-columns: 100%;
  }
}
.car-card__header {
  grid-area: 1/2/2/3;
  padding-left: 40px;
}
@media (max-width: 1739px) {
  .car-card__header {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .car-card__header {
    grid-area: 1/1/2/2;
  }
}
.car-card__header p {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 133%;
}
@media (max-width: 1739px) {
  .car-card__header p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .car-card__header p {
    font-size: 12px;
  }
}
.car-card__header p:last-child {
  margin-bottom: 0;
}
.car-card__header p span {
  font-weight: 600;
  color: var(--secondary);
}
.car-card__left {
  grid-area: 1/1/4/2;
}
@media (max-width: 767px) {
  .car-card__left {
    grid-area: 2/1/3/2;
  }
}
.car-card__right {
  grid-area: 2/2/3/3;
}
@media (max-width: 767px) {
  .car-card__right {
    grid-area: 3/1/4/2;
  }
}
.car-card .section-title {
  margin-top: 0;
  font-size: 45px;
}
@media (max-width: 1739px) {
  .car-card .section-title {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .car-card .section-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .car-card .section-title {
    font-size: 26px;
  }
}
.car-card__footer p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
  width: 100%;
}
@media (max-width: 1739px) {
  .car-card__footer p {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .car-card__footer p {
    order: 1;
  }
}
.car-card__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  margin-left: auto;
}
@media (max-width: 1739px) {
  .car-card__btns {
    column-gap: 18px;
  }
}
@media (max-width: 1199px) {
  .car-card__btns {
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  .car-card__btns {
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }
}
.car-card__btns .btn {
  height: 64px;
  font-size: 18px;
}
.car-card__fav {
  width: 40px;
  height: 40px;
}
@media (max-width: 575px) {
  .car-card__fav {
    width: 30px;
    height: 30px;
  }
}
.car-card__fav svg {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: var(--gray);
  transition: 0.3s linear;
}
.car-card__fav:hover svg {
  fill: var(--secondary);
  stroke: var(--secondary);
}
.car-card__desc {
  margin-bottom: 40px;
  padding: 40px;
  border-radius: 50px;
  background: #fff;
}
@media (max-width: 1199px) {
  .car-card__desc {
    padding: 30px;
  }
}
@media (max-width: 1023px) {
  .car-card__desc {
    border-radius: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 374px) {
  .car-card__desc {
    padding: 20px;
  }
}
.car-card__desc p {
  margin: 0;
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1739px) {
  .car-card__desc p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .car-card__desc p {
    font-size: 12px;
  }
}
.car-card--two {
  grid-template-columns: 1fr 646px;
  margin-bottom: 30px;
}
@media (max-width: 1739px) {
  .car-card--two {
    grid-template-columns: repeat(2, calc(50% - 10px));
  }
}
@media (max-width: 1023px) {
  .car-card--two {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    margin-bottom: 80px;
  }
}
.car-card--two .car-card__header {
  grid-area: 1/1/2/2;
  padding-left: 0;
}
.car-card--two .car-card__left {
  grid-area: 1/2/5/3;
}
@media (max-width: 1023px) {
  .car-card--two .car-card__left {
    grid-area: 3/1/4/2;
  }
}
.car-card--two .car-card__right {
  grid-area: 2/1/3/2;
}
.car-card--two .car-card__footer {
  grid-area: 3/1/4/2;
  padding: 0;
}
@media (max-width: 1023px) {
  .car-card--two .car-card__footer {
    grid-area: 4/1/5/2;
  }
}
.car-card--two .specifs {
  grid-template-columns: 100%;
  margin-bottom: 50px;
  background: 0 0 !important;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .car-card--two .specifs {
    padding-top: 0;
    margin-bottom: 20px;
  }
}
.car-card--two .btn {
  width: 410px;
  height: 75px;
  font-size: 18px;
}
.car-card__price {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 575px) {
  .car-card__price {
    font-size: 20px;
  }
}
.car-card__fav.active svg {
  fill: var(--secondary);
  stroke: var(--secondary);
}
.car-card__footer .car-card__btns .wa-link, .car-card__footer .car-card__btns .tg-link, .car-card__footer .car-card__btns .max-link {
  border-color: #3dbf00;
  width: 61px;
  height: 61px;
}
.car-card__footer .car-card__btns .tg-link {
  border-color: #0088cc;
}
.car-card__footer .car-card__btns .max-link {
  border-color: #4145e8;
}
.car-card__footer .car-card__btns .wa-link svg, .car-card__footer .car-card__btns .tg-link svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 575px) {
  .car-card__footer .car-card__btns .wa-link svg, .car-card__footer .car-card__btns .tg-link svg {
    width: 24px;
    height: 24px;
  }
}
.car-card__footer .car-card__btns .tg-link svg {
  fill: #0088cc;
}
@media (max-width: 575px) {
  .car-card__footer .car-card__btns .wa-link, .car-card__footer .car-card__btns .tg-link {
    width: 48px;
    height: 48px;
  }
}
.car-card__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 40px;
  row-gap: 30px;
  flex-direction: column;
}
@media (max-width: 1739px) {
  .car-card__footer {
    padding-left: 0;
    padding-right: 0;
  }
}
.car-card__footer .contact-for-lot {
  justify-content: flex-end;
}
.car-card__btns .contact-for-lot {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .car-card__footer .car-card__btns {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .car-card__btns .contact-for-lot.big {
    justify-content: flex-start;
  }
}

.specifs {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  background: #fff;
  border-radius: 50px;
  margin-bottom: 20px;
  padding: 40px;
}
@media (max-width: 1739px) {
  .specifs {
    row-gap: 16px;
  }
}
@media (max-width: 1199px) {
  .specifs {
    padding: 30px;
  }
}
@media (max-width: 1023px) {
  .specifs {
    border-radius: 30px;
  }
}
@media (max-width: 374px) {
  .specifs {
    padding: 20px;
  }
}
.specifs__col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1739px) {
  .specifs__col {
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .specifs__col {
    column-gap: 5px;
  }
}
@media (max-width: 374px) {
  .specifs__col {
    grid-template-columns: 98px 1fr;
  }
}
.specifs__col span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.33;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .specifs__col span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .specifs__col span {
    font-size: 12px;
  }
}
.specifs__col span:nth-child(even) {
  font-weight: 600;
}
.specifs__col span.external__link a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
}
.specifs__col span.external__link a svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary);
  transition: 0.3s linear;
}
.specifs__col span.external__link a:hover svg {
  transform: rotate(45deg);
}
.specifs__item {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  padding: 0 20px;
}
@media (max-width: 575px) {
  .specifs__item {
    gap: 16px;
  }
}
.specifs__item span {
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 133%;
}
@media (max-width: 575px) {
  .specifs__item span {
    font-size: 12px;
  }
}
.specifs__item span:first-child {
  flex: none;
  width: 140px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .specifs__item span:first-child {
    width: 100px;
  }
}

.car-price {
  position: relative;
  z-index: 10;
  margin: 0 40px 40px;
}
@media (max-width: 1739px) {
  .car-price {
    margin: 0 0 34px;
  }
}
@media (max-width: 1199px) {
  .car-price {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .car-price {
    margin-bottom: 25px;
  }
}
.car-price__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  align-items: center;
  margin-bottom: 20px;
}
.car-price__item:last-child {
  margin-bottom: 0;
}
.car-price__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  right: 2px;
  bottom: 4px;
  height: 0;
  border-bottom: 1px dashed var(--border);
}
.car-price__item span {
  padding-right: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.33;
  color: var(--primary);
  background-color: var(--bg-box);
}
@media (max-width: 1739px) {
  .car-price__item span {
    font-size: 14px;
  }
}
.car-price__item span:nth-child(2) {
  padding-left: 12px;
  padding-right: 0;
  font-weight: 600;
  color: var(--secondary);
}

.auction-list__header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 60px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1739px) {
  .auction-list__header {
    margin-bottom: 35px;
  }
}
.auction-list__toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .auction-list__toggle {
    font-size: 14px;
  }
}
.auction-list__toggle svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .auction-list__toggle svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 1199px) {
  .auction-list__toggle svg {
    width: 12px;
    height: 12px;
  }
}
.auction-list__toggle:hover {
  color: var(--secondary);
}
.auction-list__toggle:hover svg {
  fill: var(--secondary);
}
.auction-list__wrap {
  max-height: 598px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: 0.3s linear;
}
.auction-list__wrap.open {
  max-height: 2000px;
}
.auction-list__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 20px;
  position: relative;
  z-index: 10;
  margin-bottom: 16px;
}
.auction-list__item:last-child {
  margin-bottom: 0;
}
.auction-list__item::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  right: 2px;
  bottom: 4px;
  height: 0;
  border-bottom: 1px dashed var(--border);
}
.auction-list__item span {
  padding-right: 12px;
  background-color: var(--bg-box);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .auction-list__item span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .auction-list__item span {
    font-size: 12px;
  }
}
.auction-list__item span:nth-child(2) {
  max-width: 340px;
  padding-right: 0;
  padding-left: 12px;
  text-align: right;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .auction-list__item span:nth-child(2) {
    max-width: 450px;
  }
}
@media (max-width: 1199px) {
  .auction-list__item span:nth-child(2) {
    max-width: 252px;
  }
}
@media (max-width: 1023px) {
  .auction-list__item span:nth-child(2) {
    max-width: 205px;
  }
}
.auction-list__header .section-title {
  width: 100%;
  margin-bottom: 0;
}
.auction-list__header .link {
  gap: 4px;
}
.auction-list__header .link span {
  font-size: 16px;
}
@media (max-width: 575px) {
  .auction-list__header .link span {
    font-size: 14px;
  }
}

.price-breakdown--abs {
  display: none;
  position: absolute;
  z-index: 8900;
  top: calc(100% + 5px);
  right: 0;
  left: auto;
  width: 844px;
  padding: 32px 48px;
  background: #fff;
  box-shadow: 0 4px 92px rgba(41, 45, 52, 0.1), 0 2px 24px rgba(41, 45, 52, 0.12);
  border-radius: 12px;
  transform: none;
  color: var(--primary);
}
@media (max-width: 1199px) {
  .price-breakdown--abs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 50px 30px;
    border: none;
    border-radius: 0;
  }
}
.price-breakdown--abs .exchange,
.price-breakdown--abs .price-breakdown__list,
.price-breakdown--abs .price-breakdown__list li,
.price-breakdown--abs .price-breakdown__price,
.price-breakdown--abs .price-breakdown__subtitle,
.price-breakdown--abs .price-breakdown__title,
.price-breakdown--abs .price-breakdown__total span {
  color: var(--primary);
}
.price-breakdown__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  display: block;
}
@media (max-width: 1199px) {
  .price-breakdown__close {
    display: block;
  }
}
.price-breakdown__close svg {
  width: 100%;
  height: 100%;
}
.price-breakdown__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .price-breakdown__header {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}
.price-breakdown__title {
  max-width: 330px;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .price-breakdown__title {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .price-breakdown__title {
    font-size: 12px;
  }
}
.price-breakdown__average {
  flex: none;
  margin: 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .price-breakdown__average {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .price-breakdown__average {
    font-size: 16px;
  }
}
.price-breakdown__section {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 1fr 150px;
}
@media (max-width: 1199px) {
  .price-breakdown__section {
    column-gap: 5px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .price-breakdown__section {
    grid-template-columns: 1fr 120px;
  }
}
.price-breakdown__subtitle {
  grid-area: 1/1/2/2;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .price-breakdown__subtitle {
    font-size: 14px;
  }
}
.price-breakdown__price {
  grid-area: 1/2/2/3;
  align-self: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .price-breakdown__price {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px;
  }
}
.price-breakdown__price span:nth-child(2) {
  margin-left: 45px;
  font-weight: 400;
  display: block;
}
@media (max-width: 1739px) {
  .price-breakdown__price span:nth-child(2) {
    margin-left: 0;
  }
}
.price-breakdown__desc {
  grid-area: 2/1/3/3;
}
.price-breakdown__text {
  max-width: 420px;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .price-breakdown__text {
    max-width: 292px;
    font-size: 12px;
  }
}
.price-breakdown__list {
  margin: 0 0 20px;
  padding: 0 0 0 10px;
  list-style: disc;
  max-width: 480px;
  list-style-position: inside;
}
.price-breakdown__list:last-child {
  margin-bottom: 0;
}
.price-breakdown__list li {
  position: relative;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .price-breakdown__list li {
    font-size: 12px;
  }
}
.price-breakdown__list li:last-child {
  margin-bottom: 0;
}
.price-breakdown__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
}
.price-breakdown__footer .btn {
  width: 272px;
  height: 75px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .price-breakdown__footer .btn {
    width: 231px;
    height: 64px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .price-breakdown__footer .btn {
    width: 210px;
    height: 61px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .price-breakdown__footer .btn {
    width: 100%;
    max-width: 320px;
    height: 50px;
    font-size: 12px;
  }
}
.price-breakdown__total {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.price-breakdown__total span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .price-breakdown__total span {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .price-breakdown__total span {
    font-size: 14px;
  }
}
.price-breakdown__total span:nth-child(2) {
  margin-left: 10px;
  font-weight: 600;
}
.price-breakdown__disclaimer {
  margin-top: 40px;
}
@media (max-width: 1739px) {
  .price-breakdown__disclaimer {
    margin-top: 35px;
  }
}
@media (max-width: 1199px) {
  .price-breakdown__disclaimer {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .price-breakdown__disclaimer {
    margin-top: 20px;
  }
}
.price-breakdown__disclaimer p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .price-breakdown__disclaimer p {
    font-size: 12px;
  }
}
.price-breakdown .select2 {
  max-width: 280px !important;
  margin-top: 5px;
}
@media (max-width: 1365px) {
  .price-breakdown .select2 {
    max-width: 220px !important;
  }
}
.price-breakdown .select2-container--default .select2-selection--single,
.price-breakdown select.select2 {
  height: 42px;
}
@media (max-width: 1199px) {
  .price-breakdown .select2-container--default .select2-selection--single,
  .price-breakdown select.select2 {
    height: 36px;
  }
}
.price-breakdown .calc-input-new {
  width: 100px;
  margin-right: 2px;
  margin-top: 2px;
}
@media (max-width: 480px) {
  .price-breakdown .calc-input-new {
    width: 90px;
  }
}
.price-breakdown__price span.ml-20 {
  margin-left: 20px;
}
.price-breakdown__total span.js-calc-full-price {
  font-weight: 600;
}
.price-breakdown__warning {
  margin-top: 20px;
  color: var(--secondary);
}
.price-breakdown .warn-konstr {
  color: var(--secondary);
}
@media (max-width: 1539px) {
  .price-breakdown .select2-container--default .select2-selection--multiple .select2-selection__rendered,
  .price-breakdown .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .price-breakdown .select2-container--default .select2-selection--multiple .select2-selection__rendered,
  .price-breakdown .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .price-breakdown__price, .price-breakdown__subtitle, .price-breakdown__text {
    font-size: 12px;
  }
}
.price-breakdown__desc p {
  font-size: 80%;
}
@media (max-width: 1199px) {
  .price-breakdown__desc p {
    font-size: 12px;
  }
}
.price-breakdown__desc ul {
  margin: 0 0 10px 0;
  padding: 0 0 0 10px;
  list-style-position: outside;
}
.price-breakdown__desc ul li {
  position: relative;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .price-breakdown__desc ul li {
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 1.2;
  }
}
.price-breakdown__desc small {
  display: block;
  font-size: 12px;
  line-height: 16px;
}
@media (max-width: 1199px) {
  .price-breakdown__desc small {
    font-size: 10px;
    line-height: 12px;
  }
}
.price-breakdown .text-gray {
  color: #666;
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 1739px) {
  .price-breakdown .text-gray {
    font-size: 12px;
  }
}
.price-breakdown__section.section-custom {
  grid-row-gap: 5px;
}
.price-breakdown__section.section-custom .age-select {
  margin-bottom: 20px;
}

.exchange {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .exchange {
    column-gap: 40px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .exchange {
    column-gap: 33px;
    row-gap: 14px;
    font-size: 14px;
  }
}
.exchange span:first-child {
  width: 100%;
  font-weight: 500;
}
.exchange--row {
  row-gap: 0;
  margin-bottom: 40px;
}
@media (max-width: 1739px) {
  .exchange--row {
    row-gap: 0;
    margin-bottom: 35px;
  }
}
@media (max-width: 1199px) {
  .exchange--row {
    row-gap: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 1023px) {
  .exchange--row {
    row-gap: 6px;
  }
}
.exchange--row span:first-child {
  width: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .exchange--row span:first-child {
    width: 100%;
  }
}
@media (max-width: 1739px) {
  .exchange--row span:last-child {
    margin-left: auto;
  }
}
@media (max-width: 1023px) {
  .exchange--row span:last-child {
    margin-left: 0;
  }
}

.car {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 1739px) {
  .car {
    margin-bottom: 35px;
  }
}
@media (max-width: 1199px) {
  .car {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .car {
    padding-bottom: 78px;
  }
}
.car--grid {
  display: grid;
  grid-template-columns: 645px 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}
@media (max-width: 1739px) {
  .car--grid {
    grid-template-columns: 500px 1fr;
    row-gap: 10px;
  }
}
@media (max-width: 1199px) {
  .car--grid {
    grid-template-columns: 420px 1fr;
  }
}
@media (max-width: 1023px) {
  .car--grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 0;
  }
}
.car--grid .car__left {
  grid-area: 1/1/3/2;
  width: auto;
  margin: 0;
}
@media (max-width: 1023px) {
  .car--grid .car__left {
    width: 100%;
    padding-bottom: 30px;
  }
}
.car--grid .car__right {
  grid-area: 1/2/2/3;
  width: auto;
  margin: 0;
}
@media (max-width: 1023px) {
  .car--grid .car__right {
    order: -1;
    width: 100%;
  }
}
.car--grid .car__bottom {
  grid-area: 2/2/3/3;
  align-self: end;
}
@media (max-width: 1023px) {
  .car--grid .car__bottom {
    width: 100%;
  }
}
.car__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 7 - 20px);
}
.car__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 5 - 20px);
}
.car__title {
  margin: 0 0 50px;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .car__title {
    margin-bottom: 40px;
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .car__title {
    margin-bottom: 35px;
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .car__title {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
.car__info {
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 30px;
  row-gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .car__info {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .car__info {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .car__info {
    grid-template-columns: 100px 1fr;
    margin-bottom: 30px;
    column-gap: 20px;
  }
}
.car__info span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.33;
}
@media (max-width: 1739px) {
  .car__info span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .car__info span {
    font-size: 12px;
  }
}
.car__info span:nth-child(even) {
  font-weight: 600;
}
.car__price {
  margin: 0 0 50px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .car__price {
    margin-bottom: 40px;
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .car__price {
    margin-bottom: 35px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .car__price {
    margin-bottom: 30px;
  }
}
.car .btn {
  width: 410px;
  height: 75px;
  padding: 0;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .car .btn {
    width: 369px;
    height: 64px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .car .btn {
    width: 348px;
    height: 61px;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .car .btn {
    width: 307px;
    height: 58px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .car .btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 1739px) {
  .car__left, .car__right {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media (max-width: 767px) {
  .car__left, .car__right {
    width: calc(100% / 12 * 12 - 20px);
  }
}

.car-gallery {
  border-radius: 50px;
  overflow: hidden;
  padding: 40px;
  background: #fff;
}
@media (max-width: 1739px) {
  .car-gallery {
    padding: 40px 30px;
  }
}
@media (max-width: 1023px) {
  .car-gallery {
    padding: 0;
    background: 0 0;
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .car-gallery {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .car-gallery {
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 10px;
  }
}
.car-gallery .item {
  align-items: center;
  justify-content: center;
  display: flex !important;
  height: 385px;
  padding: 0;
}
@media (max-width: 1739px) {
  .car-gallery .item {
    height: 295px;
  }
}
@media (max-width: 1199px) {
  .car-gallery .item {
    height: 244px;
  }
}
@media (max-width: 1023px) {
  .car-gallery .item {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
}
.car-gallery .item a {
  display: block;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .car-gallery .item a {
    border-radius: 15px;
  }
}
.car-gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-gallery .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .car-gallery .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .car-gallery .slick-arrow {
    display: none !important;
  }
}
.car-gallery .slick-arrow:hover {
  border-color: var(--font-dark);
}
.car-gallery .slick-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--font-dark);
}
.car-gallery .slick-arrow.prev {
  left: 10px;
}
@media (max-width: 767px) {
  .car-gallery .slick-arrow.prev {
    left: 0;
  }
}
.car-gallery .slick-arrow.next {
  right: 10px;
}
@media (max-width: 767px) {
  .car-gallery .slick-arrow.next {
    right: 0;
  }
}
.car-gallery .slick-arrow.next svg {
  transform: rotate(180deg);
}
.car-gallery .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 30px;
}
@media (max-width: 1739px) {
  .car-gallery .slick-dots {
    bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .car-gallery .slick-dots {
    bottom: 14px;
  }
}
.car-gallery .slick-dots li {
  display: block;
}
.car-gallery .slick-dots li button {
  display: block;
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 4px;
  font-size: 0;
  background: rgba(206, 215, 217, 0.5);
  transition: 0.3s linear;
}
@media (max-width: 1023px) {
  .car-gallery .slick-dots li button {
    width: 6px;
    height: 6px;
  }
}
.car-gallery .slick-dots li.slick-active button {
  width: 54px;
}
.car-gallery--noarr {
  padding: 20px 10px 40px !important;
}
.car-gallery--noarr .slick-arrow {
  display: none !important;
}
@media (max-width: 480px) {
  .car-gallery .item,
  .car-gallery .item a {
    border-radius: 10px;
  }
}

.car-other__title {
  margin: 0 0 30px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .car-other__title {
    margin-bottom: 25px;
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .car-other__title {
    margin-bottom: 18px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .car-other__title {
    font-size: 18px;
  }
}
.car-other__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1739px) {
  .car-other__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .car-other__grid {
    grid-template-columns: 100%;
  }
}
.car-other__item {
  display: flex;
  align-items: center;
  column-gap: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid transparent;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .car-other__item {
    padding: 20px 30px;
  }
}
@media (max-width: 1023px) {
  .car-other__item {
    column-gap: 20px;
    padding: 20px;
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .car-other__item {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .car-other__item {
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .car-other__item {
    column-gap: 15px;
  }
}
.car-other__item:hover {
  border-color: var(--secondary);
}
.car-other__img {
  width: 132px;
  height: 77px;
  padding: 5px;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .car-other__img {
    width: 118px;
    height: 69px;
  }
}
@media (max-width: 575px) {
  .car-other__img {
    width: 100px;
    height: 70px;
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .car-other__img {
    width: 70px;
  }
}
.car-other__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.car-other__desc {
  width: calc(100% - 172px);
}
@media (max-width: 1023px) {
  .car-other__desc {
    width: calc(100% - 138px);
  }
}
@media (max-width: 575px) {
  .car-other__desc {
    width: calc(100% - 120px);
  }
}
.car-other__name {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .car-other__name {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .car-other__name {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .car-other__name {
    font-size: 12px;
  }
}
.car-other__info p {
  margin: 0 0 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .car-other__info p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .car-other__info p {
    font-size: 12px;
  }
}
.car-other__info p:last-child {
  margin-bottom: 0;
}
.car-other--sm .car-other__title {
  margin-bottom: 20px;
  font-size: 20px;
}
@media (max-width: 1739px) {
  .car-other--sm .car-other__title {
    font-size: 18px;
  }
}
.car-other .car-other__grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .car-other .car-other__grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 1739px) {
  .car-other--sm .car-other__item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;
  }
}
@media (max-width: 1023px) {
  .car-other--sm .car-other__item {
    flex-direction: row;
  }
}
@media (max-width: 1739px) {
  .car-other--sm .car-other__desc {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .car-other--sm .car-other__desc {
    width: calc(100% - 138px);
  }
}
@media (max-width: 575px) {
  .car-other--sm .car-other__desc {
    width: calc(100% - 120px);
  }
}
@media (max-width: 480px) {
  .car-other--sm .car-other__desc, .car-other__desc {
    width: calc(100% - 85px);
  }
}

.equipment__section {
  margin-bottom: 80px;
}
.equipment__section:last-child {
  margin-bottom: 0;
}
.equipment__title {
  margin: 0 0 50px;
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 1023px) {
  .equipment__title {
    margin-bottom: 35px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .equipment__title {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.equipment__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
}
.equipment__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
  padding-left: 40px;
  color: var(--primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  background: url(../img/icons/checkmark-red.svg) left top/25px no-repeat;
}
@media (max-width: 1199px) {
  .equipment__item {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media (max-width: 1023px) {
  .equipment__item {
    font-size: 16px;
    background-size: 24px;
  }
}
@media (max-width: 767px) {
  .equipment__item {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media (max-width: 575px) {
  .equipment__item {
    padding-left: 36px;
    font-size: 14px;
    background-size: 21px;
  }
}
.equipment__item.no {
  background: url(../img/icons/none.svg) left top/25px no-repeat;
}
@media (max-width: 1023px) {
  .equipment__item.no {
    background-size: 24px;
  }
}
@media (max-width: 575px) {
  .equipment__item.no {
    background-size: 21px;
  }
}
.equipment {
  height: 100%;
  opacity: 1;
  transition: 0.3s ease all;
}

.insurance__header {
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1023px) {
  .insurance__header {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .insurance__header {
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
}
.insurance__header p {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
}
.insurance__header p:last-child {
  margin-bottom: 0;
}
.insurance__header p span {
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.insurance__header p span:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  white-space: nowrap;
  height: 32px;
  padding: 4px 16px;
  border-radius: 30px;
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 575px) {
  .insurance__header p span:nth-child(2) {
    height: 28px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .insurance__header p span:nth-child(2) {
    padding: 4px 10px;
  }
}
.insurance__row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
}
.insurance__col {
  width: calc(50% - 40px);
}
@media (max-width: 1199px) {
  .insurance__col {
    width: 100%;
  }
}
.insurance__section {
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.insurance__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.insurance__title {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.insurance__title span {
  flex: none;
  font-weight: 400;
  line-height: 150%;
}
.insurance__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.insurance__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.insurance__item span {
  max-width: 420px;
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767px) {
  .insurance__item span {
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .insurance__item span {
    max-width: 260px;
  }
}
@media (max-width: 374px) {
  .insurance__item span {
    max-width: 220px;
  }
}
.insurance__item span:nth-child(2) {
  flex: none;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .insurance__header p span, .insurance__title {
    font-size: 20px;
  }
}

.inspection__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.inspection__item:first-child {
  padding-top: 0;
}
.inspection__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.inspection__item span {
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.inspection__item span.green {
  color: #329c00;
}
.inspection__item span.yellow {
  color: #ff8a00;
}
.inspection__item span.red {
  color: #ed3f3f;
}

.damage__scheme {
  display: flex;
  flex-wrap: wrap;
  column-gap: 80px;
  row-gap: 30px;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .damage__scheme {
    column-gap: 40px;
  }
}
@media (max-width: 1023px) {
  .damage__scheme {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .damage__scheme {
    row-gap: 10px;
    margin-bottom: 20px;
  }
}
.damage__img {
  position: relative;
  width: calc(50% - 40px);
  height: 596px;
}
@media (max-width: 1199px) {
  .damage__img {
    width: calc(50% - 20px);
    height: 400px;
  }
}
@media (max-width: 1023px) {
  .damage__img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .damage__img {
    height: 344px;
  }
}
.damage__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.damage__img .damage__marker {
  position: absolute;
  left: 50%;
  top: 100px;
}
@media (max-width: 1199px) {
  .damage__img .damage__marker {
    top: 80px;
  }
}
.damage__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  padding-bottom: 3px;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1023px) {
  .damage__marker {
    width: 25px;
    height: 25px;
    font-size: 18px;
    padding-bottom: 2px;
  }
}
@media (max-width: 575px) {
  .damage__marker {
    width: 22px;
    height: 22px;
    font-size: 16px;
    padding-bottom: 1px;
  }
}
.damage__marker.red {
  background: #ed3f3f;
}
.damage__marker.blue {
  background: #4eb4ff;
}
.damage__marker.orange {
  background: #ff8a00;
}
.damage__marker.black {
  background: #444;
}
.damage__marker.green {
  background: #3dbf00;
}
.damage__marker.purple {
  background: #9747ff;
}
.damage__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .damage__legend {
    gap: 15px;
    margin-bottom: 30px;
  }
}
.damage__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  width: 236px;
  height: 76px;
  padding: 10px 25px;
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  border-radius: 20px;
  background: #fff;
}
@media (max-width: 1023px) {
  .damage__item {
    width: calc((100% - 30px)/ 3);
    height: 64px;
    padding: 8px 20px;
  }
}
@media (max-width: 767px) {
  .damage__item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 575px) {
  .damage__item {
    width: 100%;
  }
}
.damage__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1023px) {
  .damage__list {
    gap: 15px;
  }
}
.damage__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-left: 25px;
}
@media (max-width: 1023px) {
  .damage__info {
    padding-left: 20px;
  }
}
.damage__info p {
  margin: 0;
  color: var(--primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.damage__info p span {
  margin-left: 4px;
  font-weight: 400;
}
.damage__img .damage__frw {
  left: 73%;
  top: 161px;
}
.damage__img .damage__fdr {
  left: 73%;
  top: 242px;
}
.damage__img .damage__qpl {
  left: 28%;
  top: 450px;
}
.damage__img .damage__rs {
  left: 50%;
  top: 48px;
}
.damage__img .damage__h {
  left: 50%;
  top: 143px;
}
.damage__img .damage__t {
  left: 50%;
  top: 510px;
}
.damage__img .damage__qpr {
  left: 72%;
  top: 444px;
}
.damage__img .damage__tf {
  left: 47%;
  top: 455px;
}
.damage__img .damage__rp {
  left: 47%;
  top: 500px;
}
.damage__img .damage__fdl {
  left: 28%;
  top: 239px;
}
.damage__img .damage__fp {
  left: 47%;
  top: 84px;
}
.damage__img .damage__ipl {
  left: 39%;
  top: 129px;
}
.damage__img .damage__fwal {
  left: 39%;
  top: 173px;
}
.damage__img .damage__bdr {
  left: 74%;
  top: 360px;
}
.damage__img .damage__bdl {
  left: 27%;
  top: 360px;
}
.damage__img .damage__ipr {
  left: 56%;
  top: 130px;
}
.damage__img .damage__rfs {
  left: 52%;
  top: 148px;
}
.damage__img .damage__lfs {
  left: 43%;
  top: 148px;
}
.damage__img .damage__fwr {
  left: 56%;
  top: 174px;
}
.damage__img .damage__tspr {
  left: 80%;
  top: 310px;
}
.damage__img .damage__rpmr {
  left: 65%;
  top: 318px;
}
.damage__img .damage__rpfr {
  left: 63%;
  top: 241px;
}
.damage__img .damage__rwar {
  left: 57%;
  top: 447px;
}
.damage__img .damage__rrs {
  left: 53%;
  top: 455px;
}

.car-img {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
}
@media (max-width: 480px) {
  .car-img {
    row-gap: 10px;
  }
}
.car-img__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
  aspect-ratio: 1.2757;
}
@media (max-width: 767px) {
  .car-img__item {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.car-img__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 1023px) {
  .car-img__item img {
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .car-img__item img {
    border-radius: 10px;
  }
}

.report__section {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1539px) {
  .report__section {
    flex-wrap: wrap;
  }
}
.report__title {
  width: 243px;
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media (max-width: 1539px) {
  .report__title {
    width: 100%;
    padding-top: 30px;
  }
}
@media (max-width: 1023px) {
  .report__title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .report__title {
    padding-top: 20px;
    font-size: 16px;
  }
}
.report__right {
  flex-grow: 1;
}
@media (max-width: 1539px) {
  .report__right {
    width: 100%;
  }
}
.report__subsection {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1023px) {
  .report__subsection {
    flex-wrap: wrap;
  }
}
.report__subsection:last-child {
  border-bottom: none;
}
.report__list {
  flex-grow: 1;
}
.report__item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-grow: 1;
  gap: 20px;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1023px) {
  .report__item {
    padding: 20px 0;
  }
}
@media (max-width: 575px) {
  .report__item {
    padding: 10px 0;
  }
}
.report__item:last-child {
  border-bottom: none;
}
.report__item span {
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1023px) {
  .report__item span {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .report__item span {
    font-size: 14px;
  }
}
.report__item span:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px 4px;
  border-radius: 30px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .report__item span:nth-child(2) {
    height: 34px;
  }
}
@media (max-width: 575px) {
  .report__item span:nth-child(2) {
    height: 20px;
    padding: 0 12px 2px;
  }
}
.report__item span:nth-child(2).green {
  border-color: #329c00;
  color: #329c00;
}
.report__item span:nth-child(2).yellow {
  border-color: #ff8a00;
  color: #ff8a00;
}
.report__item span:nth-child(2).red {
  border-color: #ed3f3f;
  color: #ed3f3f;
}
.report__subtitle {
  width: 500px;
  padding-right: 30px;
  color: var(--primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1365px) {
  .report__subtitle {
    width: 400px;
  }
}
@media (max-width: 1023px) {
  .report__subtitle {
    width: 100%;
    padding-top: 30px;
    font-weight: 500;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .report__subtitle {
    padding-top: 20px;
    font-size: 14px;
  }
}

.car-sets__section {
  margin-bottom: 15px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid transparent;
  background: #fff;
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .car-sets__section {
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 20px;
  }
}
.car-sets__section.open {
  border-color: var(--secondary);
}
.car-sets__section.open .car-sets__qnt {
  color: var(--secondary);
}
.car-sets__section.open .car-sets__icon {
  transform: rotateX(180deg);
}
.car-sets__section.open .car-sets__icon svg {
  fill: var(--secondary);
}
.car-sets__section.open .car-sets__list {
  display: block;
}
.car-sets__section:last-child {
  margin-bottom: 0;
}
.car-sets__header {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  cursor: pointer;
}
@media (max-width: 575px) {
  .car-sets__header {
    align-items: flex-start;
  }
}
.car-sets__img {
  width: 132px;
  height: 82px;
  margin-right: 40px;
}
@media (max-width: 1023px) {
  .car-sets__img {
    display: none;
  }
}
.car-sets__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.car-sets__info {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .car-sets__info {
    margin-right: 5px;
  }
}
.car-sets__info p {
  margin: 0;
  color: var(--primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 575px) {
  .car-sets__info p {
    font-size: 13px;
  }
}
.car-sets__info p:nth-child(2) {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
}
.car-sets__info p:nth-child(2) span {
  margin-right: 12px;
}
.car-sets__qnt {
  flex: none;
  margin-left: auto;
  color: var(--primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  transition: 0.3s linear;
}
.car-sets__icon {
  flex: none;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .car-sets__icon {
    width: 14px;
    height: 14px;
  }
}
.car-sets__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
  transition: 0.3s linear;
}
.car-sets__list {
  display: none;
  padding-top: 30px;
}
@media (max-width: 575px) {
  .car-sets__list {
    padding-top: 20px;
  }
}
.car-sets__item {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .car-sets__item {
    padding: 10px 0;
    font-size: 12px;
  }
}
.car-sets__item span:first-child {
  width: 240px;
}
@media (max-width: 1199px) {
  .car-sets__qnt span {
    display: none;
  }
}
@media (max-width: 575px) {
  .car-sets__info p:nth-child(2), .car-sets__qnt {
    font-size: 12px;
  }
}

.car-media__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .car-media__header {
    gap: 5px;
    margin-bottom: 20px;
  }
}
.car-media__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}
@media (max-width: 1023px) {
  .car-media__nav {
    margin-left: calc(((100vw - 760px)/ 2 + 55px) * -1);
    margin-right: calc(((100vw - 760px)/ 2 + 55px) * -1);
    padding-left: calc((100vw - 760px)/ 2 + 55px);
    padding-right: calc((100vw - 760px)/ 2 + 55px);
  }
}
@media (max-width: 767px) {
  .car-media__nav {
    margin-left: calc(((100vw - 560px)/ 2 + 55px) * -1);
    margin-right: calc(((100vw - 560px)/ 2 + 55px) * -1);
    padding-left: calc((100vw - 560px)/ 2 + 55px);
    padding-right: calc((100vw - 560px)/ 2 + 55px);
  }
}
@media (max-width: 575px) {
  .car-media__nav {
    gap: 4px;
    margin-left: calc(((100vw - 100%)/ 2 + 45px) * -1);
    margin-right: calc(((100vw - 100%)/ 2 + 45px) * -1);
    padding-left: calc((100vw - 100%)/ 2 + 45px);
    padding-right: calc((100vw - 100%)/ 2 + 45px);
  }
}
@media (max-width: 480px) {
  .car-media__nav {
    margin-left: calc(((100vw - 100%)/ 2 + 45px) * -1);
    margin-right: calc(((100vw - 100%)/ 2 + 45px) * -1);
    padding-left: calc((100vw - 100%)/ 2 + 45px);
    padding-right: calc((100vw - 100%)/ 2 + 45px);
  }
}
@media (max-width: 374px) {
  .car-media__nav {
    margin-left: calc(((100vw - 100%)/ 2 + 35px) * -1);
    margin-right: calc(((100vw - 100%)/ 2 + 35px) * -1);
    padding-left: calc((100vw - 100%)/ 2 + 35px);
    padding-right: calc((100vw - 100%)/ 2 + 35px);
  }
}
.car-media__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  height: 48px;
  padding: 4px 24px;
  border-radius: 40px;
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .car-media__nav a {
    height: 30px;
    padding: 2px 16px;
    font-size: 12px;
  }
}
.car-media__nav a.active, .car-media__nav a:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.car-media__colors {
  flex: none;
  display: flex;
  gap: 10px;
}
@media (max-width: 575px) {
  .car-media__colors {
    gap: 5px;
  }
}
.car-media__colors a {
  width: 30px;
  height: 30px;
  padding: 1px;
  border-radius: 50%;
  border: 1px solid transparent;
  overflow: hidden;
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .car-media__colors a {
    width: 26px;
    height: 26px;
  }
}
.car-media__colors a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-media__colors a.active, .car-media__colors a:hover {
  border-color: var(--secondary);
}
.car-media__carousel {
  margin: 0 -10px 24px;
}
@media (max-width: 575px) {
  .car-media__carousel {
    margin: 0 -5px 10px;
  }
}
.car-media__carousel .slick-slide {
  padding: 0 10px;
}
@media (max-width: 575px) {
  .car-media__carousel .slick-slide {
    padding: 0 5px;
  }
}
.car-media__bigimg {
  aspect-ratio: 1.9;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .car-media__bigimg {
    border-radius: 30px;
  }
}
.car-media__bigimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-media__thumbs {
  margin: 0 -6px;
  padding-bottom: 80px;
}
@media (max-width: 1023px) {
  .car-media__thumbs {
    padding-bottom: 60px;
  }
}
.car-media__thumbs .slick-slide {
  padding: 0 6px;
}
.car-media__thumbs .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid #ced7d9;
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .car-media__thumbs .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.car-media__thumbs .slick-arrow:hover {
  border-color: var(--primary);
}
.car-media__thumbs .slick-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
}
.car-media__thumbs .slick-arrow.prev {
  right: 90px;
}
.car-media__thumbs .slick-arrow.next {
  right: 10px;
}
.car-media__thumbs .slick-arrow.next svg {
  transform: rotate(180deg);
}
.car-media__img {
  width: 227px !important;
  height: 160px;
  overflow: hidden;
  padding: 0 5px;
}
@media (max-width: 1739px) {
  .car-media__img {
    width: 192px !important;
    height: 120px;
  }
}
@media (max-width: 1023px) {
  .car-media__img {
    width: 127px !important;
    height: 84px;
  }
}
.car-media__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 1023px) {
  .car-media__img img {
    border-radius: 15px;
  }
}
.car-media__panorama {
  height: 914px;
  border-radius: 20px;
}
@media (max-width: 1739px) {
  .car-media__panorama {
    height: auto;
    aspect-ratio: 1.87;
  }
}
.car-media__colors span {
  cursor: pointer;
}
.car-media__header i {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
}
.car-media__header span.active i {
  border-color: var(--secondary);
}
.car-media__panorama iframe {
  border: 2px solid #ccc;
}
@media (max-width: 1023px) {
  .car-media__thumbs .slick-list {
    overflow: visible;
  }
}
@media (max-width: 575px) {
  .car-media__bigimg, .car-media__img img {
    border-radius: 10px;
  }
}

.dynamics__tab {
  display: none;
}
.dynamics__tab.active {
  display: block;
}

.car-price__item svg,
.card-row__price svg {
  position: relative;
  width: 15px;
  height: 15px;
  cursor: pointer;
  top: 3px;
  left: 3px;
}

.js-price-popup span {
  cursor: pointer;
}

.dopParams.type_vvoz {
  margin-bottom: 30px;
  font-size: 18px;
}
.dopParams.type_vvoz span {
  margin-right: 30px;
}

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

.configuration.new .configuration-row.hide {
  display: none !important;
}
.configuration.new.X01 .configuration-value {
  padding-left: 0.71428571rem;
}
@media (max-width: 720px) {
  .configuration.new.X01 .configuration-value {
    padding-left: 0;
    flex: 1;
  }
}
.configuration.new.X01 .hide-l9 {
  display: none !important;
}
.configuration.new.X01 .configuration-value-applist .appitem {
  margin-right: 0.21428571rem;
}
@media (max-width: 720px) {
  .configuration.new.X01 .configuration-value-applist .appitem {
    margin-right: calc(50vw - 171px);
  }
}
.configuration.new.X02 .hide-l8 {
  display: none !important;
}
.configuration.new.X03 .configuration-value .img {
  height: 5.51785714rem;
}
.configuration.new.X03 .hide-l7 {
  display: none !important;
}
.configuration.new .configuration-tips {
  width: 100%;
  padding-left: 0.21428571rem;
  padding-right: 0.21428571rem;
}
@media (max-width: 720px) {
  .configuration.new .configuration-tips {
    padding: 40px 20px 48px;
  }
}
.configuration.new .configuration-tips-list {
  width: auto;
}
@media (max-width: 720px) {
  .configuration.new .configuration-tips-list {
    padding-top: 8px;
  }
}
@media (max-width: 720px) {
  .configuration.compare .configuration-value-carprice .configuration-compare-order {
    width: 60px;
    height: 32px;
    margin-top: 12px;
    font-size: 12px;
  }
}
@media (max-width: 720px) {
  .configuration.new {
    padding: 24px 0 0;
  }
}
@media (max-width: 720px) {
  .configuration.new.X01 .configuration-row.fixed .configuration-label, .configuration.new.X01 .configuration-row.normal .configuration-label {
    width: auto;
    flex: 1;
  }
}
@media (max-width: 720px) {
  .configuration.new.X01 .configuration-value-applist .appitem:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 720px) {
  .configuration.new .configuration-title {
    display: none;
  }
}
@media (max-width: 720px) {
  .configuration.new.X01 .configuration-value-carname {
    white-space: nowrap;
  }
}
@media (max-width: 720px) {
  .configuration.new.X02 .configuration-value-carname > span br, .configuration.new.X03 .configuration-value-carname > span br {
    display: block;
  }
}

.configuration-wrap {
  display: flex;
}

.configuration-part:first-child {
  z-index: 11;
  position: sticky;
  top: 56px;
}
.configuration-part.active .configuration-row.title {
  position: sticky;
  top: 100px;
  z-index: 100;
  background: #fafafa;
}

.configuration-row {
  position: relative;
  display: flex;
  background-color: #fff;
}
@media (max-width: 720px) {
  .configuration-row {
    padding: 0 12px;
  }
}
.configuration-row:after {
  position: absolute;
  bottom: 0;
  left: 0.21428571rem;
  width: calc(100% - 0.42857rem);
  height: 1px;
  background-color: #ced7d9;
  content: "";
}
@media (max-width: 720px) {
  .configuration-row:after {
    left: 20px;
    width: calc(100% - 40px);
  }
}
.configuration-row:last-child:not(.shortborder):after {
  left: 0;
  width: 100%;
}
.configuration-row.title {
  z-index: 1;
  position: sticky;
  top: 100px;
  width: 100%;
}
@media (max-width: 720px) {
  .configuration-row.title {
    position: static;
  }
}
.configuration-row.title .configuration-label {
  width: 100%;
}
.configuration-row.title .configuration-value {
  display: none;
}
.configuration-row.title.active {
  z-index: 11;
  position: fixed;
}
.configuration-row.overview:after {
  display: none;
}
@media (max-width: 720px) {
  .configuration-row.overview:after {
    display: block;
  }
}
.configuration-row.overview.first .configuration-value-overview {
  padding-top: 0.07142857rem;
}
@media (max-width: 720px) {
  .configuration-row.overview.first .configuration-value-overview {
    padding-top: 0;
  }
}
.configuration-row.overview.last .configuration-value-overview {
  padding-bottom: 0.07142857rem;
}
@media (max-width: 720px) {
  .configuration-row.overview.last .configuration-value-overview {
    padding-bottom: 0;
  }
}
.configuration-row.subtitle .configuration-label {
  display: block;
  width: 100%;
  background: var(--bg-box);
}
.configuration-row.subtitle .configuration-value {
  display: none;
}
.configuration-row.subtitle.lineimage .configuration-label {
  width: 2.85714286rem;
}
.configuration-row.subtitle.lineimage .configuration-value {
  display: block;
}
.configuration-row.subtitle.applist:after {
  display: none;
}
.configuration-row.tip .configuration-label {
  width: 100%;
  color: #999;
}
.configuration-row.tip .configuration-value {
  display: none;
}
@media (max-width: 720px) {
  .configuration-row.subtitle.lineimage {
    display: none;
  }
}
@media (max-width: 720px) {
  .configuration-row.overview .configuration-label {
    align-items: unset;
  }
}
@media (max-width: 720px) {
  .configuration-row.overview:nth-child(6) .configuration-value-overview-label:first-child {
    display: block;
  }
}
@media (max-width: 720px) {
  .configuration-row.overview:nth-child(7) .configuration-value-overview-cell, .configuration-row.overview:nth-child(8) .configuration-value-overview-cell {
    align-items: unset;
  }
}
@media (max-width: 720px) {
  .configuration-row.applist:not(.subtitle) .configuration-label {
    display: none;
  }
}

.configuration-nav {
  position: sticky;
  width: 15%;
  height: 100%;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .configuration-nav {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-bottom: 80px;
    overflow: auto;
    background-color: #fff;
    transform: translate3d(0, -100vh, 0);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media (max-width: 720px) {
  .configuration-nav.active {
    transform: translateZ(0);
  }
}

.configuration-nav-inner {
  position: relative;
  height: 100%;
  border-left: 1px solid #ced7d9;
}
@media (max-width: 720px) {
  .configuration-nav-inner {
    height: auto;
    padding-left: 0;
    border: 0;
  }
}

.configuration-nav-item {
  display: block;
  color: var(--gray);
  padding: 15px 0 15px 30px;
}
@media (max-width: 720px) {
  .configuration-nav-item {
    display: flex;
    padding: 16px 20px;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #191919;
  }
}
.configuration-nav-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .configuration-nav-item.current:after {
    font-family: lxiconfont !important;
    font-size: 20px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea12";
  }
}

.configuration-nav-flag {
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 22px;
  border-radius: 10px;
  background-color: #057568;
  transform: translateZ(0);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 720px) {
  .configuration-nav-flag {
    display: none;
  }
}

.configuration-label {
  display: flex;
  width: 16rem;
  padding: 15px 0 15px 30px;
  align-items: center;
  flex-shrink: 0;
  background: #fafafa;
}
@media (max-width: 720px) {
  .configuration-label {
    width: 120px;
    padding: 12px 8px;
  }
}
.configuration-label .img {
  display: inline-block;
  width: 0.21428571rem;
  height: 0.21428571rem;
  margin-right: 0.07142857rem;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .configuration-label .img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}

.configuration-label-multiple .text.sub {
  margin-top: 0.01785714rem;
}
@media (max-width: 720px) {
  .configuration-label-multiple .text.small,
  .configuration-label-multiple .text.sub {
    margin-top: 0;
    font-family: li-medium, Microsoft YaHei, SF Pro SC, SF Pro Display, PingFang SC, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
  }
}

.configuration-label-figure {
  display: flex;
  align-items: center;
}
.configuration-label-figure .text {
  margin: 0 16px 0 4px;
  color: #999;
}
@media (max-width: 720px) {
  .configuration-label-figure > span {
    display: none;
  }
}
@media (max-width: 720px) {
  .configuration-label-figure > span.m {
    display: unset;
    margin: 0;
    font-family: li-regular, Microsoft YaHei, SF Pro SC, SF Pro Display, PingFang SC, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #191919;
  }
}

.configuration-label-normal,
.configuration-value {
  display: flex;
  align-items: center;
}

.configuration-value {
  flex-grow: 1;
}
.configuration-value .img {
  width: 100%;
  height: 6.01785714rem;
  padding: 0;
}

.configuration-value-carname,
.configuration-value-carprice,
.configuration-value-normal {
  display: flex;
  height: 100%;
  flex-grow: 1;
  align-items: center;
  padding: 15px 0;
}

.configuration-value-carname > span,
.configuration-value-carprice > span,
.configuration-value-normal > span {
  display: flex;
  height: 100%;
  padding: 0.14285714rem 0.21428571rem;
  flex: 1;
  align-items: center;
}

.configuration-value-carname br {
  display: none;
}
.configuration-value-carname > span {
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 720px) {
  .configuration-value-carname > span {
    font-size: 12px;
    line-height: 20px;
  }
}

.configuration-value-carprice > span {
  line-height: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.configuration-value-multiple {
  padding: 0.14285714rem 0.21428571rem;
  flex: 1;
}
@media (max-width: 720px) {
  .configuration-value-multiple {
    padding: 12px 8px;
  }
}
.configuration-value-multiple .text {
  line-height: 0.21428571rem;
}
@media (max-width: 720px) {
  .configuration-value-multiple .text {
    line-height: 20px;
  }
}
@media (max-width: 720px) {
  .configuration-value-multiple .text.sub {
    display: block;
  }
}

.configuration-value-figure {
  display: block;
}
@media (max-width: 720px) {
  .configuration-value-figure {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
  }
}
@media (max-width: 720px) {
  .configuration-value-figure .text {
    margin: 0 8px 0 4px;
    white-space: nowrap;
  }
}
@media (max-width: 720px) {
  .configuration-value-figure .line {
    margin-left: 8px;
  }
}

.configuration-value-overview {
  display: flex;
  height: 100%;
  flex-grow: 1;
  align-items: center;
}

.configuration-value-overview-cell {
  height: 100%;
  padding: 0.28571429rem 0 0.28571429rem 0.21428571rem;
  flex: 1;
}
@media (max-width: 1440px) {
  .configuration-value-overview-cell {
    padding-right: 0.21428571rem;
  }
}
@media (max-width: 720px) {
  .configuration-value-overview-cell {
    display: flex;
    padding: 12px 8px;
    align-items: center;
  }
}

.configuration-value-overview-content {
  height: 100%;
}
@media (max-width: 720px) {
  .configuration-value-overview-content {
    height: unset;
  }
}
.configuration-value-overview-content .line {
  display: flex;
  height: 100%;
  align-items: center;
}

.configuration-value-overview-value {
  display: inline-block;
  font-size: 0.28571429rem;
  font-family: li-medium, Microsoft YaHei, SF Pro SC, SF Pro Display, PingFang SC, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #000;
  line-height: 0.35714286rem;
}
@media (max-width: 720px) {
  .configuration-value-overview-value {
    font-size: 16px;
    line-height: 28px;
  }
}

.configuration-value-overview-unit {
  display: inline-block;
  margin-left: 0.01785714rem;
  font-family: li-medium, Microsoft YaHei, SF Pro SC, SF Pro Display, PingFang SC, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
}
@media (max-width: 720px) {
  .configuration-value-overview-unit {
    margin-left: 0;
  }
}

.configuration-value-overview-name {
  padding-top: 0.07142857rem;
}
@media (max-width: 720px) {
  .configuration-value-overview-name {
    display: none;
  }
}

.configuration-value-overview-label {
  font-size: 0.21428571rem;
  font-family: li-medium, Microsoft YaHei, SF Pro SC, SF Pro Display, PingFang SC, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #000;
  line-height: 0.28571429rem;
}
@media (max-width: 720px) {
  .configuration-value-overview-label {
    font-size: 12px;
    line-height: 20px;
  }
}
.configuration-value-overview-label + .configuration-value-overview-list {
  padding-top: 0.07142857rem;
}
@media (max-width: 720px) {
  .configuration-value-overview-label:first-child {
    display: none;
  }
}

.configuration-value-overview-list {
  padding-top: 0.03571429rem;
}

.configuration-value-applist {
  display: flex;
  padding: 0.35714286rem 0;
  flex-grow: 1;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .configuration-value-applist {
    padding: 12px 8px 24px;
  }
}
.configuration-value-applist .appitem {
  width: 0.96428571rem;
  margin-right: 0.21428571rem;
  margin-bottom: 0.28571429rem;
  flex-shrink: 0;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
.configuration-value-applist .appitem:before {
  display: block;
  width: 0.53571429rem;
  height: 0.53571429rem;
  border-radius: 0.125rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  margin: 0 auto 0.07142857rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  content: "";
}
.configuration-value-applist .appitem:nth-child(6n) {
  margin-right: 0;
}
.configuration-value-applist .appitem.dt:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-dt.0999b916.png);
}
.configuration-value-applist .appitem.aqy:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-aqy.4ac432cc.png);
}
.configuration-value-applist .appitem.qqyy:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-qqyy.2c96f7d0.png);
}
.configuration-value-applist .appitem.wyyyy:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-wyyyy.17c0d11e.png);
}
.configuration-value-applist .appitem.blbl:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-blbl.9ebdab11.png);
}
.configuration-value-applist .appitem.xmly:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-xmly.b4058ba5.png);
}
.configuration-value-applist .appitem.mgsp:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-mgsp.2165c321.png);
}
.configuration-value-applist .appitem.qmkg:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-qmkg.8a4145b3.png);
}
.configuration-value-applist .appitem.lsktv:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-lsktv.67fc352e.png);
}
.configuration-value-applist .appitem.txsp:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-txsp.75d818ac.png);
}
.configuration-value-applist .appitem.ksjgs:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-ksjgs.c60c4daf.png);
}
.configuration-value-applist .appitem.hxsy:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-hxsy.be25fb7a.png);
}
.configuration-value-applist .appitem.jlyx:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-jlyx.2ed1e54d.png);
}
.configuration-value-applist .appitem.egdd:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-egdd.3e32c6f2.png);
}
.configuration-value-applist .appitem.zxsy:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-zxsy.cc657d35.png);
}
.configuration-value-applist .appitem.dd:before {
  background-image: url(https://s.ampmake.com/fed/m01/asset-1907/image/configuration/app-dd.e3978d9c.png);
}
.configuration-value-applist .tip {
  width: 100%;
  padding: 0 0.21428571rem;
  font-size: 12px;
  color: #999;
  line-height: 0.21428571rem;
}
@media (max-width: 720px) {
  .configuration-value-applist .tip {
    padding: 14px 0 0;
    line-height: 20px;
  }
}
@media (max-width: 1440px) {
  .configuration-value-applist .appitem,
  .configuration-value-applist .appitem:nth-child(6n) {
    margin-right: 0.21428571rem;
  }
}
@media (max-width: 1440px) {
  .configuration-value-applist .appitem:nth-child(5n) {
    margin-right: 0;
  }
}
@media (max-width: 720px) {
  .configuration-value-applist .appitem:nth-child(5n),
  .configuration-value-applist .appitem:nth-child(6n) {
    margin-right: calc(50vw - 171px);
  }
}
@media (max-width: 720px) {
  .configuration-value-applist .appitem:nth-child(3n) {
    margin-right: 0;
  }
}

.configuration-compare-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  height: 48px;
  padding: 40px 0;
  box-sizing: content-box;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}
@media (max-width: 720px) {
  .configuration-compare-topbar {
    padding: 8px 20px;
  }
}

.configuration-compare-title {
  font-size: 0.28571429rem;
  font-family: li-medium, Microsoft YaHei, SF Pro SC, SF Pro Display, PingFang SC, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
}
@media (max-width: 720px) {
  .configuration-compare-title {
    font-size: 18px;
  }
}

.configuration-compare-change {
  display: flex;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #000;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 720px) {
  .configuration-compare-change {
    height: 32px;
    font-size: 12px;
  }
}
.configuration-compare-change:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.image-tab-one {
  display: none;
}
.image-tab-one.active {
  display: block;
}

.vr-tab-one {
  display: none;
  height: 100%;
}
.vr-tab-one.active {
  display: block;
}

.cont-images {
  position: fixed;
  width: 100%;
  height: 100%;
  cursor: grab;
}
.cont-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cont-images-auto {
  border-radius: 50px;
  overflow: hidden;
  padding: 50px 40px;
  background: #fff;
}

div.dynamics__tab div.chart {
  display: flex;
  gap: 24px;
}
@media (max-width: 1023px) {
  div.dynamics__tab div.chart {
    flex-wrap: wrap;
  }
}

div.dynamics__tab div.chart_box {
  flex-grow: 1;
  max-width: 100%;
}

div.dynamics__tab div.chart_table {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 1023px) {
  div.dynamics__tab div.chart_table {
    width: 100%;
  }
}

div.dynamics__tab div.chart_table div.chart_table_item.head {
  font-weight: 600;
  margin-bottom: 16px;
}

div.dynamics__tab div.chart_table div.chart_table_item {
  display: flex;
  font-size: 14px;
  padding: 2px 10px;
}
@media (max-width: 1023px) {
  div.dynamics__tab div.chart_table div.chart_table_item {
    gap: 20px;
  }
}

div.dynamics__tab div.chart_table div.chart_table_item span:first-child {
  width: 48px;
  text-align: right;
  padding-right: 5px;
}

div.dynamics__tab div.chart_table div.chart_table_item span:nth-child(2) {
  width: 68px;
  padding: 0 5px;
  font-weight: 600;
}

div.dynamics__tab div.chart_table div.chart_table_item span:nth-child(3) {
  width: 64px;
}

div.dynamics__tab div.chart_table div.chart_table_item span.plus {
  color: green;
}

div.dynamics__tab div.chart_table div.chart_table_item span.minus {
  color: red;
}

@media (max-width: 1440px) {
  .configuration-inner {
    width: 760px;
  }
}
@media (max-width: 720px) {
  .configuration-inner {
    width: 100%;
    font-size: 12px;
    line-height: 20px;
  }
}

@media (max-width: 1199px) {
  .auction-list__toggle,
  .car-price__item span {
    font-size: 12px;
  }
}

@media (max-width: 720px) {
  .configuration-value-overview-label + .configuration-value-overview-list,
  .configuration-value-overview-list {
    padding-top: 12px;
  }
}

@media (max-width: 575px) {
  .inspection__item span,
  .insurance__item span {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  div.dynamics div.chart {
    position: relative;
  }
}

@media (max-width: 575px) {
  div.dynamics div.chart div.chart_box {
    position: relative;
    overflow: auto;
  }
}

.auctions_lists_items .aucListCont {
  display: none;
}
.auctions_lists_items .aucListCont .dynamics-nav {
  margin-bottom: 20px;
}
.auctions_lists_items .aucListCont.activeList {
  display: block;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .auctions_lists_items .aucListCont.activeList {
    max-width: 60%;
  }
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab {
  position: relative;
  background: #eee;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka {
  position: absolute;
  z-index: 3;
  opacity: 0;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka.plashkaFon {
  z-index: 1;
  background: #eaeff2;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .inf {
  position: absolute;
  right: 6px;
  top: 6px;
  background: var(--secondary);
  color: white;
  width: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  cursor: default;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc,
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .inf {
  display: none;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc .indesc {
  position: relative;
  margin-top: 20px;
  background: black;
  color: white;
  padding: 10px;
  border-radius: 10px;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc .indesc:before {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: auto;
  width: 20px;
  height: 20px;
  background: black;
  transform: rotate(45deg);
  left: 5px;
  z-index: -1;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc b {
  display: block;
  font-size: 16px;
  white-space: nowrap;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka:hover {
  z-index: 4;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka:hover .inf {
  display: block;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka:hover .inf:hover + .desc,
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc:hover {
  display: block;
  position: absolute;
  top: 20px;
  min-width: 250px;
  right: -6px;
  transform: translateX(87%);
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .leftInfo.plashka:hover .inf:hover + .desc,
.auctions_lists_items .aucListCont.activeList .dynamics__tab .leftInfo .desc:hover {
  transform: translateX(0);
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .leftInfo.plashka .desc .indesc:before {
  left: auto;
  right: 12px;
}
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka:hover,
.auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka:hover + .plashkaFon {
  opacity: 1;
}
@media (max-width: 640px) {
  .auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc .indesc,
  .auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc .indesc b {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc .indesc:before,
  .auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka:hover .inf,
  .auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .inf {
    display: none;
  }
}
@media (max-width: 640px) {
  .auctions_lists_items .aucListCont.activeList .dynamics__tab .plashka .desc {
    display: block;
    width: auto;
    min-width: fit-content;
  }
}

.instock-block {
  max-width: 350px;
  margin-bottom: 30px;
  color: #ff0000;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}
.instock-block select {
  margin-bottom: 10px;
  padding: 5px;
}
.instock-block button {
  display: block;
}

.compl_title {
  display: flex;
  align-items: center;
  gap: 15px;
}
.compl_title b {
  color: var(--secondary);
}
.compl_title svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: 0.3s ease all;
}
.compl_title svg:hover {
  fill: var(--secondary);
}
.compl_title svg.open {
  transform: rotate(180deg);
  transition: 0.3s ease all;
}

.hide_part {
  overflow: hidden;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s ease all;
}
@media (max-width: 1023px) {
  .hide_part {
    height: 215px;
  }
}
@media (max-width: 575px) {
  .hide_part {
    height: 220px;
  }
}

span.is-dtp {
  display: block;
  background: #ef2222;
  color: white;
  padding: 3px 10px;
  text-align: center;
}

span.is-dtp.v0 {
  background: #2c9b2c;
}

.radar__widget {
  height: 480px;
}
@media (max-width: 767px) {
  .radar__widget {
    height: 280px;
  }
}

.rate-info .rate-box {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .rate-info .rate-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.rate-info .car-rate-photo {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 1199px) {
  .rate-info .car-rate-photo {
    width: 100%;
  }
}
.rate-info .car-rate-photo .rate-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFCC32;
  padding: 10px;
  border-radius: 30px;
  aspect-ratio: 1;
  min-width: 112px;
  font-size: 12px;
  font-weight: 400;
  color: #000;
}
.rate-info .car-rate-photo .rate-total span.rate-total-num {
  font-size: 36px;
  font-weight: 700;
}
.rate-info .car-rate-photo .car-photo img {
  display: block;
  max-width: 104px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .rate-info .car-rate-photo .car-photo img {
    max-width: 100%;
    width: auto;
    max-height: 112px;
  }
}
@media (max-width: 1199px) {
  .rate-info .car-rate-photo .car-photo {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }
}
.rate-info .rate-tables {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: calc(100% - 30px - 246px);
}
@media (max-width: 1199px) {
  .rate-info .rate-tables {
    flex-grow: 1;
    width: 100%;
    min-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.rate-info .rate-tables .rate-table {
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .rate-info .rate-tables .rate-table {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .rate-info .rate-tables .rate-table table {
    width: 100%;
  }
}
.rate-info .rate-tables .x-scroll {
  overflow-x: auto;
  max-width: 100%;
}
.rate-info .rate-tables .rate-table table tr {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .rate-info .rate-tables .rate-table table tr {
    font-size: 12px;
  }
}
.rate-info .rate-tables .rate-table table tr th:first-child,
.rate-info .rate-tables .rate-table table tr td:first-child {
  text-align: left;
}
.rate-info .rate-tables .rate-table table tr th {
  font-weight: 600;
}
.rate-info .rate-tables .rate-table table tr th,
.rate-info .rate-tables .rate-table table tr td {
  padding: 5px 8px;
}
.rate-info .rate-tables .rate-table table tr td {
  border-bottom: 1px solid #E2E2E2;
}
.rate-info .rate-tables .rate-table table tr:last-child td {
  border-bottom: 0;
}
.rate-info .rate-tables .rate-table .green {
  color: #00A63A;
}
.rate-info .rate-tables .rate-table a {
  color: var(--secondary);
}

.car-order-box .car-card__footer {
  justify-content: flex-start;
}
.car-order-box .car-card__footer > * {
  width: 50%;
}
@media (max-width: 767px) {
  .car-order-box .car-card__footer > * {
    width: 100%;
  }
}
.car-order-box .car-card__footer .car-card__footer_left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.car-order-box .car-card__footer .car-card__footer_left .wa_text {
  max-width: 300px;
  margin: 0 auto;
}
.car-order-box .car-card__footer .car-card__footer_left p {
  width: auto;
  margin-bottom: 10px;
}
.car-order-box .car-card__footer .car-card__footer_left .qr_box {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.car-order-box .car-card__footer .car-card__btns {
  margin-left: 0;
  justify-content: center;
}
.car-order-box .car-card__footer .car-card__footer_left .qr {
  display: block;
  margin: 0 auto 10px auto;
  max-width: 160px;
  height: auto;
}
@media (max-width: 767px) {
  .car-order-box {
    margin-top: 20px;
  }
}

.calc-desc {
  max-width: 665px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .calc-desc {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .calc-desc {
    font-size: 12px;
  }
}
.calc-desc p {
  margin: 0 0 20px;
}
.calc-desc p.strong {
  margin-bottom: 0;
  font-weight: 600;
}
.calc-desc ol {
  margin: 0 0 20px;
  padding-left: 20px;
}
.calc-desc a {
  color: var(--secondary);
  font-weight: 600;
  transition: 0.3s linear;
}
.calc-desc a:hover {
  opacity: 0.5;
}

.calc-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 40px;
  height: 100%;
}
@media (max-width: 1739px) {
  .calc-wrap {
    row-gap: 35px;
  }
}
.calc-wrap__footer {
  margin-top: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .calc-wrap__footer {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .calc-wrap__footer {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .calc-wrap__footer {
    font-size: 12px;
  }
}
.calc-wrap__footer p {
  margin: 0;
}

.calc {
  display: grid;
  grid-template-columns: repeat(2, 258px);
  gap: 30px;
}
@media (max-width: 1739px) {
  .calc {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .calc {
    grid-template-columns: 100%;
  }
}
.calc .btn {
  height: 75px;
  margin-top: 10px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .calc .btn {
    height: 64px;
    margin-top: 15px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .calc .btn {
    height: 60px;
    margin-top: 10px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .calc .btn {
    height: 50px;
    margin-top: 0;
    font-size: 12px;
  }
}
.calc .form-checkbox {
  margin-top: 50px;
}
@media (max-width: 1739px) {
  .calc .form-checkbox {
    margin-top: 40px;
  }
}
@media (max-width: 1199px) {
  .calc .form-checkbox {
    margin-top: 0;
  }
}
.calc .form-checkbox.mt-15 {
  margin-top: 15px;
}

.calc-radio {
  display: inline-flex;
  margin-bottom: 40px;
  border-bottom: 1px solid #ced7d9;
}
@media (max-width: 1739px) {
  .calc-radio {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .calc-radio {
    width: 100%;
    margin-bottom: 20px;
  }
}
.calc-radio__item {
  position: relative;
  top: 2px;
}
@media (max-width: 575px) {
  .calc-radio__item {
    flex-grow: 1;
  }
}
.calc-radio__item label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 12px;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary);
  cursor: pointer;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .calc-radio__item label {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .calc-radio__item label {
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
  }
}
.calc-radio__item label:hover {
  color: var(--secondary);
}
.calc-radio__item input {
  display: none;
}
.calc-radio__item input:checked + label {
  border-bottom-color: var(--secondary);
}

.currencies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  margin-bottom: 30px;
  padding: 20px 40px;
  background: #fff;
  border-radius: 30px;
}
@media (max-width: 1739px) {
  .currencies {
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .currencies {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .currencies {
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .currencies {
    margin-left: -30px;
    margin-right: -30px;
    border-radius: 0;
    padding: 16px 30px;
  }
}
.currencies__label {
  margin-right: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}
.currencies__item {
  width: 150px;
}
@media (max-width: 1739px) {
  .currencies__item {
    width: 110px;
  }
}
@media (max-width: 1199px) {
  .currencies__item {
    width: 100px;
  }
}
@media (max-width: 1023px) {
  .currencies__item {
    display: none;
    width: auto;
  }
}
.currencies__item .form-group {
  position: relative;
}
.currencies__item .form-group label {
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}
@media (max-width: 1023px) {
  .currencies__item .form-group label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-bottom: 0;
  }
}
.currencies__item .form-group input {
  padding-left: 50px;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .currencies__item .form-group input {
    padding-left: 35px;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .currencies__item .form-group input {
    width: 100px;
    height: 42px;
    padding-left: 25px;
  }
}
.currencies__item .form-group span {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 21px;
  color: #798383;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .currencies__item .form-group span {
    bottom: 18px;
  }
}
@media (max-width: 1199px) {
  .currencies__item .form-group span {
    left: 10px;
  }
}
@media (max-width: 1023px) {
  .currencies__item .form-group span {
    left: auto;
    right: 75px;
    bottom: 11px;
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .currencies__item.active {
    display: block;
  }
}
@media (max-width: 575px) {
  .currencies__item .form-group label, .currencies__label {
    font-size: 12px;
  }
}

.bank {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 80px;
  padding: 14px 40px 14px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1739px) {
  .bank {
    gap: 40px;
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .bank {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .bank {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.bank__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  margin-right: auto;
}
.bank__item {
  flex: none;
  width: 150px;
  padding-top: 8px;
}
@media (max-width: 1739px) {
  .bank__item {
    width: 110px;
  }
}
@media (max-width: 1199px) {
  .bank__item {
    width: 100px;
  }
}
@media (max-width: 1023px) {
  .bank__item {
    display: none;
    width: 120px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .bank__item {
    width: 60px;
  }
}
.bank__item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 575px) {
  .bank__item span {
    font-size: 12px;
  }
}
.bank__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.bank__name img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
@media (max-width: 575px) {
  .bank__name img {
    width: 20px;
    height: 20px;
  }
}
.bank__name span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: var(--primary);
}
@media (max-width: 575px) {
  .bank__name span {
    font-size: 12px;
  }
}
.bank__date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.bank__date img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
@media (max-width: 575px) {
  .bank__date img {
    width: 14px;
    height: 14px;
  }
}
.bank__date span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 575px) {
  .bank__date span {
    font-size: 12px;
  }
}
.bank__site {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.bank__site img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
@media (max-width: 575px) {
  .bank__site img {
    width: 14px;
    height: 14px;
  }
}
.bank__site a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .bank__site a {
    font-size: 12px;
  }
}
.bank__site a:hover {
  color: var(--secondary);
}
.bank:last-child {
  border-bottom: 0;
}
@media (max-width: 1023px) {
  .bank__item.active {
    display: block;
  }
}

.bank-select {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 456px;
}
.bank-select label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
}

div.pay_methods div.item {
  margin-bottom: 36px;
}

div.pay_methods div.text {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .bank__item,
  .currencies__item {
    display: block !important;
  }
}

.dostavka_block .calc-delivery__cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2%;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .dostavka_block .calc-delivery__cols {
    flex-direction: column;
    gap: 1rem;
  }
}
.dostavka_block .calc-delivery__cols .calc-delivery__col {
  width: 32%;
}
@media (max-width: 991px) {
  .dostavka_block .calc-delivery__cols .calc-delivery__col {
    width: 100%;
  }
}
.dostavka_block .form-select__input {
  display: block;
  width: 100%;
  height: 64px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .dostavka_block .form-select__input {
    height: 58px;
    padding: 19px 20px;
  }
}
@media (max-width: 991px) {
  .dostavka_block .select2 {
    max-width: unset;
  }
}
.dostavka_block .calc-delivery__text {
  font-size: 13px;
}
.dostavka_block .calc-delivery__text a {
  color: var(--secondary);
}
.dostavka_block .calc-delivery__text a:hover {
  text-decoration: underline;
}

.delivery-update {
  margin: 15px 0;
  text-align: right;
}

.yt {
  margin-bottom: 100px;
}
@media (max-width: 1739px) {
  .yt {
    margin-bottom: 90px;
  }
}
@media (max-width: 1199px) {
  .yt {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .yt {
    margin-bottom: 70px;
  }
}
.yt .container {
  position: relative;
}
@media (max-width: 767px) {
  .yt .container {
    padding-bottom: 90px;
  }
}
@media (max-width: 374px) {
  .yt .container {
    padding-bottom: 80px;
  }
}
.yt .btn {
  position: absolute;
  z-index: 10;
  right: 170px;
  top: 0;
  padding: 20px 40px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .yt .btn {
    right: 164px;
    padding: 16px 30px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .yt .btn {
    top: -4px;
  }
}
@media (max-width: 1023px) {
  .yt .btn {
    right: 154px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .yt .btn {
    top: auto;
    bottom: 0;
    left: 10px;
    right: auto;
  }
}

.video-card {
  position: relative;
  display: block;
}
.video-card__img {
  position: relative;
  height: auto;
  aspect-ratio: 1.7778;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .video-card__img {
    border-radius: 25px;
  }
}
.video-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card__img::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80px;
  height: 80px;
  background: url(../img/icons/play.svg) center/contain no-repeat;
}
@media (max-width: 1739px) {
  .video-card__img::before {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .video-card__img::before {
    width: 50px;
    height: 50px;
  }
}
.video-card__img::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: rgba(1, 1, 1, 0.2);
  opacity: 0;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .video-card__img::after {
    border-radius: 25px;
  }
}
.video-card__img:hover::after {
  opacity: 1;
}
.video-card__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 100;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
@media (max-width: 1739px) {
  .video-card__content {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
}
@media (max-width: 374px) {
  .video-card__content {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
.video-card__date {
  display: block;
  padding: 10px 16px;
  background: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .video-card__date {
    padding: 8px 14px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .video-card__date {
    padding: 6px 12px;
  }
}
@media (max-width: 374px) {
  .video-card__date {
    font-size: 11px;
  }
}
.video-card__author {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
}
@media (max-width: 374px) {
  .video-card__author {
    column-gap: 10px;
  }
}
.video-card__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 1739px) {
  .video-card__author img {
    width: 43px;
    height: 43px;
  }
}
@media (max-width: 374px) {
  .video-card__author img {
    width: 40px;
    height: 40px;
  }
}
.video-card__text {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 1739px) {
  .video-card__text {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .video-card__text {
    font-size: 12px;
  }
}
.video-card__text span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 1739px) {
  .video-card__text span {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .video-card__img, .video-card__img::after {
    border-radius: 20px;
  }
}
.video-card__img video {
  width: 100%;
  height: 100%;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3px;
  width: 49px;
  height: 26px;
  background: #fff;
  border: 1px solid var(--secondary);
  border-radius: 20px;
  border-color: #ffab08;
}
@media (max-width: 1739px) {
  .rating {
    width: 44px;
  }
}
@media (max-width: 575px) {
  .rating {
    width: 34px;
    height: 20px;
    column-gap: 2px;
  }
}
.rating svg {
  width: 12px;
  height: 12px;
  margin-bottom: 1px;
  fill: #ffab08;
}
@media (max-width: 575px) {
  .rating svg {
    width: 9px;
    height: 9px;
  }
}
.rating span {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: #ffab08;
}
@media (max-width: 575px) {
  .rating span {
    font-size: 10px;
  }
}

.review-card {
  border-radius: 30px;
}
@media (max-width: 1739px) {
  .review-card {
    border-radius: 25px;
  }
}
@media (max-width: 767px) {
  .review-card {
    border-radius: 20px;
  }
}
.review-card__img {
  position: relative;
  display: block;
  height: 446px;
  margin-bottom: 20px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .review-card__img {
    height: 380px;
    border-radius: 25px;
  }
}
@media (max-width: 1199px) {
  .review-card__img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .review-card__img {
    height: 260px;
    border-radius: 20px;
  }
}
.review-card__img:last-child {
  margin-bottom: 0;
}
.review-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__img::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.2);
  opacity: 0;
  transition: 0.3s linear;
}
.review-card__img:hover::after {
  opacity: 1;
}
.review-card__img--video {
  height: auto !important;
  aspect-ratio: 1.7778;
}
.review-card__img--video::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80px;
  height: 80px;
  background: url(../img/icons/play.svg) center/contain no-repeat;
}
@media (max-width: 1199px) {
  .review-card__img--video::before {
    width: 70px;
    height: 70px;
  }
}
.review-card__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.review-card__label {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(206, 215, 217, 0.3);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .review-card__label {
    padding: 8px 14px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .review-card__label {
    padding: 6px 12px;
  }
}
@media (max-width: 374px) {
  .review-card__label {
    font-size: 11px;
  }
}
.review-card__author {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
}
@media (max-width: 374px) {
  .review-card__author {
    column-gap: 10px;
  }
}
.review-card__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 1739px) {
  .review-card__author img {
    width: 43px;
    height: 43px;
  }
}
@media (max-width: 374px) {
  .review-card__author img {
    width: 40px;
    height: 40px;
  }
}
.review-card__name {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .review-card__name {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .review-card__name {
    font-size: 12px;
  }
}
.review-card__name span {
  display: block;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 1739px) {
  .review-card__name span {
    font-size: 12px;
  }
}
.review-card--text {
  padding: 55px 40px;
  border: 1px solid var(--border);
  background: #fff;
}
@media (max-width: 1739px) {
  .review-card--text {
    padding: 40px;
  }
}
@media (max-width: 1199px) {
  .review-card--text {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .review-card--text {
    padding: 15px;
  }
}
.review-card--text .link span {
  font-size: 16px;
}
@media (max-width: 1739px) {
  .review-card--text .link span {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .review-card--text .link span {
    font-size: 12px;
  }
}
.review-card__text {
  max-height: 124px;
  overflow: hidden;
  margin-bottom: 20px;
  padding-top: 20px;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .review-card__text {
    max-height: 130px;
  }
}
@media (max-width: 1199px) {
  .review-card__text {
    max-height: 120px;
    margin-bottom: 10px;
  }
}
.review-card__text.open {
  max-height: 1000px;
}
.review-card__text p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .review-card__text p {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .review-card__text p {
    font-size: 14px;
  }
}
.review-card__thumbs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .review-card__thumbs {
    margin-top: 20px;
    margin-bottom: 15px;
  }
}
.review-card__thumbs a {
  display: block;
  width: calc((100% - 20px)/ 3);
  height: 90px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .review-card__thumbs a {
    height: 75px;
  }
}
@media (max-width: 1199px) {
  .review-card__thumbs a {
    height: 65px;
  }
}
@media (max-width: 767px) {
  .review-card__thumbs a {
    height: 60px;
  }
}
.review-card__thumbs a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__time {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--font-gray);
}
@media (max-width: 1199px) {
  .review-card__time {
    font-size: 12px;
  }
}
.review-card___video {
  height: 300px;
  margin-bottom: 20px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  background: #000;
}
@media (max-width: 1739px) {
  .review-card___video {
    height: auto;
    max-height: 300px;
  }
}
@media (max-width: 1199px) {
  .review-card___video {
    height: 248px;
  }
}
@media (max-width: 1023px) {
  .review-card___video {
    height: 186px;
  }
}
@media (max-width: 767px) {
  .review-card___video {
    height: 270px;
  }
}
@media (max-width: 575px) {
  .review-card___video {
    border-radius: 15px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .review-card___video {
    height: 180px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .review-card___video {
    max-height: 200px;
  }
}
.review-card___video a.video {
  display: block;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 575px) {
  .review-card___video a.video {
    display: block;
    min-width: 100px;
    min-height: 100px;
  }
}
.review-card___video a.video:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
  width: 48px;
  height: 48px;
  background: url(../img/icons/play_white.svg) no-repeat 50% 50% var(--secondary);
  background-size: 24px 24px;
  border: 1px solid #fff;
  border-radius: 100%;
  opacity: 0.8;
  transition: 1s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.review-card___video:hover a.video:after {
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
.review-card___video a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: calc(100% + 5px);
  min-height: calc(100% + 5px);
}
@media (max-width: 575px) {
  .review-card___video a img {
    min-width: 100px;
    min-height: 100px;
  }
}
@media (max-width: 480px) {
  .review-card, .review-card__img {
    border-radius: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1739px) {
  .review-card___video.youtube {
    max-height: 250px;
  }
}
.review-card__text.shadow {
  position: relative;
}
.review-card__text.shadow::after {
  content: "";
  display: block;
  height: 40px;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
}
.review-card--pic {
  border: 1px solid var(--border);
  border-radius: 25px;
  overflow: hidden;
}
.review-card--pic .text {
  padding: 40px;
  margin-bottom: 0;
}
.review-card--pic .review-card__text {
  max-height: 500px;
}
.review-card--pic .review-card__text.shadow {
  max-height: 130px;
}
.review-card--pic .review-card__text.shadow.open {
  max-height: 100%;
}
.review-card--pic .review-card__author .review-card__name {
  margin-bottom: 0;
}
.review-card--pic .text .link span {
  font-size: 12px;
}
.review-card--pic a {
  overflow: hidden;
  width: 100%;
  max-height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .review-card--pic a {
    max-height: 220px;
  }
}
.review-card--pic a img {
  object-fit: cover;
  object-position: center;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 1739px) {
  .reviews__grid {
    row-gap: 35px;
    margin-bottom: 65px;
  }
}
@media (max-width: 1199px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  .reviews__grid {
    row-gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .reviews__grid {
    row-gap: 20px;
    margin-bottom: 30px;
  }
}
.reviews__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1023px) {
  .reviews__footer {
    flex-direction: column;
    row-gap: 30px;
  }
}
.reviews__footer .pagination {
  margin-left: auto;
}
.reviews--four .reviews__grid {
  grid-template-columns: repeat(4, 1fr);
}
.reviews__grid.no_mb {
  margin-bottom: 0;
}
.reviews__grid.one {
  margin-top: 24px;
  padding: 16px 0;
  grid-template-columns: repeat(1, 1fr);
}
.reviews__grid.one .review-card {
  max-width: 530px;
}
@media (max-width: 1739px) {
  .reviews__grid.one .review-card {
    max-width: 430px;
  }
}
@media (max-width: 575px) {
  .reviews__grid.one .review-card {
    max-width: 100%;
  }
}

.companyWidgets {
  display: flex;
  justify-content: center;
  gap: 2em;
  align-items: center;
  margin: 30px 0;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .companyWidgets {
    gap: 20px;
  }
}

.widget__item {
  width: 260px;
  height: 100px;
  display: flex;
  border: 1px solid #cecece;
  border-radius: 30px;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 15px;
  background: #fff;
}
@media (max-width: 480px) {
  .widget__item {
    width: calc(50% - 10px);
    max-width: 160px;
    height: 80px;
    padding: 10px;
    border-radius: 20px;
  }
}
@media (max-width: 374px) {
  .widget__item {
    width: 100%;
  }
}
.widget__img {
  flex: none;
  width: 85px;
  padding-right: 15px;
  border-right: 1px solid #cecece;
}
@media (max-width: 480px) {
  .widget__img {
    width: 60px;
    padding-right: 6px;
  }
}
.widget__rating {
  display: flex;
  gap: 4px;
}
@media (max-width: 480px) {
  .widget__rating {
    gap: 1px;
  }
}
.widget__rating svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}
@media (max-width: 480px) {
  .widget__rating svg {
    width: 10px;
    height: 14px;
  }
}
.widget__right {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .widget__right {
    padding-left: 6px;
  }
}

.sites-reviews__qnt {
  font-weight: 400;
  font-size: 12px;
  color: #646464;
}
@media (max-width: 480px) {
  .sites-reviews__qnt {
    font-size: 10px;
  }
}
.sites-reviews {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 4px 30px;
}
@media (max-width: 1739px) {
  .sites-reviews {
    margin: 0 -10px;
  }
}
@media (max-width: 1023px) {
  .sites-reviews {
    justify-content: center;
  }
}
.sites-reviews__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 40px;
  background: #fff;
  border-radius: 30px;
}
@media (max-width: 1739px) {
  .sites-reviews__item {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media (max-width: 1199px) {
  .sites-reviews__item {
    padding: 20px 30px;
  }
}
@media (max-width: 1023px) {
  .sites-reviews__item {
    width: calc(100% / 12 * 8 - 20px);
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .sites-reviews__item {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media (max-width: 480px) {
  .sites-reviews__item {
    flex-direction: column;
    row-gap: 20px;
    border-radius: 10px;
  }
}
.sites-reviews__img {
  flex-wrap: wrap;
  width: 150px;
  border-right: 1px solid #e4e7f4;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px;
  margin-right: 15px;
  border-radius: 6px;
}
@media (max-width: 1199px) {
  .sites-reviews__img {
    width: 140px;
  }
}
@media (max-width: 480px) {
  .sites-reviews__img {
    justify-content: center;
    width: 100%;
    height: auto;
    border-right: none;
  }
}
.sites-reviews__img img {
  width: 110px;
  height: 58px;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .sites-reviews__img img {
    width: 100px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .sites-reviews__img img {
    width: 90px;
    height: 40px;
  }
}
.sites-reviews__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding-left: 50px;
}
@media (max-width: 1199px) {
  .sites-reviews__right {
    gap: 20px;
    padding-left: 30px;
  }
}
@media (max-width: 480px) {
  .sites-reviews__right {
    justify-content: center;
    padding-left: 0;
  }
}
.sites-reviews .rating {
  width: 62px;
  height: 32px;
}
@media (max-width: 480px) {
  .sites-reviews .rating {
    width: 50px;
    height: 26px;
  }
}
.sites-reviews .rating svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 480px) {
  .sites-reviews .rating svg {
    width: 14px;
    height: 14px;
  }
}
.sites-reviews .rating span {
  font-size: 14px;
}

.running {
  padding: 30px 0 50px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .running {
    padding: 20px 0 40px;
  }
}
@media (max-width: 1023px) {
  .running {
    padding: 10px 0 30px;
  }
}
@media (max-width: 480px) {
  .running {
    display: none;
  }
}
.running img {
  height: 105px;
  object-fit: contain;
}
@media (max-width: 1739px) {
  .running img {
    height: 90px;
  }
}
@media (max-width: 1199px) {
  .running img {
    height: 70px;
  }
}
@media (max-width: 1023px) {
  .running img {
    height: auto;
  }
}

.star-full,
.star-partial {
  fill: gold;
}

.star-empty {
  fill: #d3d3d3;
}

.reviews_promo {
  margin-bottom: 100px;
}
.reviews_promo .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 4rem 0 2rem 0;
}
.reviews_promo .buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: calc(100% / 4 - 18px);
  padding: 1rem;
  background-color: var(--bg-box);
  color: #000;
  border-radius: 1rem;
  transition: 0.5s ease all;
}
@media (max-width: 767px) {
  .reviews_promo .buttons a {
    font-size: 14px;
    gap: 0.5rem;
    width: calc(100% / 2 - 1rem);
  }
}
.reviews_promo .buttons a img {
  max-width: 36px;
}
.reviews_promo .buttons a:hover {
  background: #eee;
  transition: 1s ease all;
}

.reviews_promo_flex {
  display: flex;
  gap: 24px;
}
@media (max-width: 1023px) {
  .reviews_promo_flex {
    display: flex;
    gap: 24px;
    flex-direction: column;
  }
}
.reviews_promo_flex .col_1,
.reviews_promo_flex .col_3 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: calc(100% / 4 - 18px);
  width: calc(100% / 4 - 18px);
}
.reviews_promo_flex .col_2 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023px) {
  .reviews_promo_flex .col_1,
  .reviews_promo_flex .col_2,
  .reviews_promo_flex .col_3 {
    width: 100%;
  }
}
.reviews_promo_flex .col_inner {
  display: flex;
  gap: 1.5rem;
  flex-grow: 1;
}
@media (max-width: 1023px) {
  .reviews_promo_flex .col_inner {
    flex-direction: column;
  }
}
.reviews_promo_flex .col_inner .col {
  width: calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .reviews_promo_flex .col_inner .col {
    width: 100%;
  }
}
.reviews_promo_flex .reviews_promo_item.video {
  background-color: #000;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.reviews_promo_flex .reviews_promo_item.video img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0.5;
  transition: 0.5s ease all;
}
.reviews_promo_flex .reviews_promo_item.video:hover img {
  opacity: 0.9;
  transition: 1s ease all;
}
.reviews_promo_flex .reviews_promo_item.video a {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  gap: 0.4rem;
  color: #fff;
}
.reviews_promo_flex .reviews_promo_item.video .site {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 10px;
}
.reviews_promo_flex .reviews_promo_item.video .site img {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 1;
}
.reviews_promo_flex .reviews_promo_item.video .caption .caption_car {
  font-weight: 700;
}
.reviews_promo_flex .reviews_promo_item.text {
  flex-grow: 1;
  background-color: var(--bg-box);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: #000;
  padding: 30px;
  font-size: 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 100%;
}
.reviews_promo_flex .reviews_promo_item.text .head {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.reviews_promo_flex .reviews_promo_item.text .head .name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-weight: 700;
}
.reviews_promo_flex .reviews_promo_item.text .head .name .stars {
  display: flex;
}
.reviews_promo_flex .reviews_promo_item.text .head .name .stars img {
  display: block;
}
.reviews_promo_flex .reviews_promo_item.text .text {
  margin-bottom: 0;
  max-width: 100%;
  color: #000;
}

.auto_reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.auto_reviews .item {
  width: calc(100% / 2 - 15px);
  padding: 30px 60px;
  background: var(--bg-box);
  border-radius: 70px;
}
@media (max-width: 1499px) {
  .auto_reviews .item {
    width: 100%;
    padding: 20px 30px;
  }
}
@media (max-width: 1023px) {
  .auto_reviews .item {
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .auto_reviews .item {
    border-radius: 10px;
  }
}
.auto_reviews .item .review-head {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .auto_reviews .item .review-head {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.auto_reviews .item .review-head .user {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.auto_reviews .item .review-head .user .avatar {
  max-width: 112px;
  min-width: 112px;
}
.auto_reviews .item .review-head .user .avatar img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.auto_reviews .item .review-head .user .user-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
}
.auto_reviews .item .review-head .user .user-info .name {
  font-weight: 600;
}
.auto_reviews .item .review-head .car-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .auto_reviews .item .review-head .car-info {
    width: 100%;
    flex-grow: 1;
    align-items: center;
  }
}
.auto_reviews .item .review-head .car-info a {
  color: var(--secondary);
}
.auto_reviews .item .review-head .car-info .rate-main {
  padding: 10px 20px;
  border-radius: 30px;
  background: #FFCC32;
  font-weight: 700;
}
.auto_reviews .item .all_rates {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.auto_reviews .item .all_rates .rates_item {
  width: calc(100% / 5);
  font-size: 14px;
  padding: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .auto_reviews .item .all_rates .rates_item {
    width: 50%;
  }
}
.auto_reviews .item .all_rates .rates_item .rate_name {
  font-weight: 600;
  flex-grow: 1;
}
.auto_reviews .item .opinion .rev_text {
  overflow: hidden;
  max-height: 196px;
  margin-bottom: 10px;
  position: relative;
}
.auto_reviews .item .opinion .rev_text:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--bg-box));
}
.auto_reviews .item .opinion .rev_text.open:after {
  display: none;
}
.auto_reviews .item .opinion .more {
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
}
.auto_reviews .item .pics {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.auto_reviews .item .pics img {
  display: block;
  width: auto;
  min-width: 70px;
  height: 100px;
  background: #E2E2E2;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.video-review-item {
  display: flex !important;
  margin-bottom: 1px;
}

.video-review-card {
  position: relative;
  overflow: hidden;
  display: flex;
  border: 1px solid var(--border);
  border-radius: 25px;
  flex-direction: column;
}
.video-review-card a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: auto;
  aspect-ratio: 1920/1080;
  overflow: hidden;
}
.video-review-card .video-review-card-img {
  flex-grow: 1;
}
.video-review-card .video-review-card-name {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 20px 20px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-review-card .video-review-card-person {
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 1199px) {
  .video-review-card .video-review-card-person {
    font-size: 18px;
  }
}
.video-review-card .video-review-card-car {
  font-size: 16px;
}
@media (max-width: 1199px) {
  .video-review-card .video-review-card-car {
    font-size: 14px;
  }
}
.video-review-card a:before,
.video-review-card a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  color: #fff;
  background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.25));
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.video-review-card a:after {
  top: auto;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.25));
}
.video-review-card .video-review-card-play {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.video-review-card:hover a:before, .video-review-card:hover a:after, .video-review-card:hover .video-review-card-play {
  opacity: 0.9;
}
.video-review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.m-blog {
  margin-bottom: 100px;
}
@media (max-width: 1739px) {
  .m-blog {
    margin-bottom: 90px;
  }
}
@media (max-width: 1199px) {
  .m-blog {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .m-blog {
    margin-bottom: 70px;
  }
}
@media (max-width: 374px) {
  .m-blog {
    margin-bottom: 60px;
  }
}
.m-blog__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .m-blog__header {
    display: block;
  }
}
@media (max-width: 575px) {
  .m-blog__header {
    margin-bottom: 20px;
  }
}
.m-blog__header .section-title {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .m-blog__header .section-title {
    margin-bottom: 30px;
  }
}
.m-blog__nav {
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  .m-blog__nav {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .m-blog__nav {
    gap: 12px;
    margin: 0 -10px;
    padding: 0 10px 10px;
    overflow-x: auto;
  }
}
.m-blog__link {
  flex: none;
  display: block;
  padding: 14px 24px;
  gap: 10px;
  border: 1px solid #ced7d9;
  border-radius: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray);
  white-space: nowrap;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .m-blog__link {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 1199px) {
  .m-blog__link {
    padding: 10px 14px;
    font-size: 12px;
    line-height: 15px;
  }
}
.m-blog__link.active {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #fff;
}
.m-blog__link.active:hover {
  color: #fff;
}
.m-blog__link:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.m-blog__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .m-blog__row {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .m-blog__row {
    display: flex;
    overflow-x: auto;
    margin-bottom: 30px;
    margin-right: -10px;
    margin-left: -10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
  }
}

.blog__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .blog__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .blog__header {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .blog__header {
    row-gap: 10px;
  }
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 1739px) {
  .blog__grid {
    row-gap: 35px;
    margin-bottom: 65px;
  }
}
@media (max-width: 1023px) {
  .blog__grid {
    grid-template-columns: 100%;
    row-gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .blog__grid {
    row-gap: 20px;
    margin-bottom: 30px;
  }
}
.blog__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1023px) {
  .blog__footer {
    flex-direction: column;
    row-gap: 30px;
  }
}
.blog__info {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--gray);
}
@media (max-width: 1739px) {
  .blog__info {
    font-size: 12px;
    line-height: 15px;
  }
}
.blog__info span {
  margin-left: 10px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
}
@media (max-width: 1739px) {
  .article-meta {
    column-gap: 30px;
  }
}
@media (max-width: 575px) {
  .article-meta {
    column-gap: 20px;
  }
}
.article-meta__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
}
@media (max-width: 575px) {
  .article-meta__item {
    column-gap: 6px;
  }
}
.article-meta__item svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}
@media (max-width: 575px) {
  .article-meta__item svg {
    width: 16px;
    height: 16px;
  }
}
.article-meta__item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .article-meta__item span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .article-meta__item span {
    font-size: 12px;
  }
}

.article {
  max-width: 1080px;
}
@media (max-width: 1739px) {
  .article {
    max-width: 1000px;
  }
}
.article ol {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  counter-reset: num;
  max-width: 1080px;
}
@media (max-width: 1739px) {
  .article ol {
    max-width: 790px;
    margin-bottom: 25px;
  }
}
.article ol .sm-block9 {
  margin-bottom: 15px;
}
.article ol li {
  position: relative;
  padding-left: 44px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.article ol li:last-child {
  margin-bottom: 0;
}
.article ol li::before {
  content: counter(num);
  counter-increment: num;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .article ol li::before {
    font-size: 14px;
  }
}
.article ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  max-width: 1080px;
}
@media (max-width: 1739px) {
  .article ul {
    max-width: 790px;
    margin-bottom: 25px;
  }
}
.article ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .article ul li {
    margin-bottom: 14px;
    font-size: 14px;
  }
}
.article ul li:last-child {
  margin-bottom: 0;
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}
.article p {
  margin: 0 0 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .article p {
    margin-bottom: 25px;
    font-size: 14px;
  }
}
.article p a {
  color: var(--secondary);
  text-decoration: underline;
}
.article p.italic {
  font-style: italic;
}
.article ol:last-child,
.article p:last-child,
.article ul:last-child {
  margin-bottom: 0;
}
.article div {
  margin-bottom: 70px;
}
@media (max-width: 1739px) {
  .article div {
    margin-bottom: 60px;
  }
}
@media (max-width: 1023px) {
  .article div {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .article div {
    margin-bottom: 30px;
  }
}
.article div:last-child {
  margin-bottom: 0;
}
.article h2 {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .article h2 {
    margin-bottom: 35px;
    font-size: 35px;
  }
}
@media (max-width: 1023px) {
  .article h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .article h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.article img {
  display: block;
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .article img {
    border-radius: 40px;
  }
}
@media (max-width: 767px) {
  .article img {
    min-height: 275px;
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .article img {
    border-radius: 30px;
    margin-bottom: 12px;
  }
}
.article figcaption {
  margin: 0;
  padding: 20px 0 0;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--font-gray);
  text-align: center;
}
@media (max-width: 1739px) {
  .article figcaption {
    padding-top: 16px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .article figcaption {
    padding-top: 12px;
  }
}
.article .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
}
@media (max-width: 1739px) {
  .article .row {
    column-gap: 20px;
  }
}
@media (max-width: 1023px) {
  .article .row {
    row-gap: 40px;
  }
}
@media (max-width: 575px) {
  .article .row {
    row-gap: 30px;
  }
}
.article .col {
  width: calc(50% - 20px);
}
@media (max-width: 1739px) {
  .article .col {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1023px) {
  .article .col {
    width: 100%;
  }
}
.article__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 30px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
@media (max-width: 1739px) {
  .article__footer {
    margin-top: 60px;
    padding-top: 35px;
  }
}
@media (max-width: 1023px) {
  .article__footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .article__footer {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.article__author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 16px;
  margin-bottom: 0 !important;
}
.article__author img {
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 0 !important;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 1739px) {
  .article__author img {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .article__author img {
    min-height: 1px;
  }
}
@media (max-width: 575px) {
  .article__author img {
    width: 60px;
    height: 60px;
  }
}
.article__author div {
  width: calc(100% - 86px);
  max-width: 208px;
}
.article__author div span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--gray);
}
@media (max-width: 1739px) {
  .article__author div span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .article__author div span {
    font-size: 12px;
  }
}
.article__author div span:first-child {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .article__author div span:first-child {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .article__author div span:first-child {
    font-size: 14px;
  }
}
.article blockquote {
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--secondary);
  border-right: 4px solid var(--secondary);
  border-radius: 30px;
  background: #ddd;
  line-height: 1.6;
}
.article div.gallery__carousel {
  margin-bottom: 30px !important;
}
.article div.gallery__thumbs {
  margin-bottom: 70px !important;
}
.article .gallery div.slick-list,
.article .gallery div.slick-slide,
.article .gallery img {
  margin-bottom: 0 !important;
}
.article .section--slider div {
  margin-bottom: 5px !important;
}
.article .section--slider {
  padding-top: 120px;
}
.article .card__price {
  margin-top: 20px;
}
.article .card__price > p {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--secondary);
}
.article .card__img img {
  border-radius: 0;
}
@media (max-width: 1023px) {
  .article ol,
  .article p,
  .article ul {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .article .gallery__thumbs .slick-slide img {
    width: auto;
    height: auto;
    min-height: 64px;
    object-fit: cover;
  }
}

.share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
}
@media (max-width: 1739px) {
  .share {
    column-gap: 25px;
  }
}
@media (max-width: 767px) {
  .share {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
  }
}
.share__label {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .share__label {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .share__label {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .share__label {
    font-size: 20px;
  }
}
.share__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
}
.share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  background-color: transparent;
  transition: 0.3s linear;
}
.share__link svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
  transition: 0.3s linear;
}
.share__link:hover {
  background-color: var(--secondary);
}
.share__link:hover svg {
  fill: #fff;
}

.shortcode {
  margin: 30px 0;
}
.shortcode__item {
  display: flex;
  overflow-x: scroll;
  background: #282f2f;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  white-space: nowrap;
  border-radius: 5px;
  margin-top: 10px;
}

.ya-share2__container ul li:before {
  display: none !important;
}

.big-image {
  display: block;
  overflow: hidden;
  border-radius: 50px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .big-image {
    max-width: 70%;
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 1023px) {
  .big-image {
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .big-image {
    border-radius: 10px;
  }
}
.big-image img {
  display: block;
}

.seo-block {
  margin: 100px 0;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.answer-block {
  margin: 60px 0 30px 0;
}

.answer-item {
  border-top: 1px solid rgba(134, 134, 134, 0.2);
  padding: 15px 0;
}
.answer-item:last-child {
  border-bottom: 1px solid rgba(134, 134, 134, 0.2);
}

.question {
  display: flex;
  cursor: pointer;
  gap: 15px;
  font-weight: bold;
}
.question:hover {
  color: var(--secondary);
}
.question .arrow-down {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--secondary);
  border-right: 2px solid var(--secondary);
  transform: rotate(135deg) translate(20%, 10%);
}
.question.active .arrow-down {
  transform: rotate(-45deg) translate(-60%, 20%);
}

.answer {
  display: none;
  margin: 30px 0;
}

.tags__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 60px 0 30px 0;
  align-items: baseline;
}

.tags-items {
  display: flex;
  flex-wrap: wrap;
}
.tags-items.hide-tags {
  display: none;
}

.show-all-tags {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  margin-left: 5px;
  transition: all 0.5s;
  border-bottom: 1px dashed #c6c6c6;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .show-all-tags {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .show-all-tags {
    font-size: 12px;
    margin-left: 0;
  }
}
.show-all-tags:hover {
  border-bottom-color: transparent;
}

.tags-item, .tags-item:focus {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s linear;
  margin-right: 10px;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .tags-item, .tags-item:focus {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .tags-item, .tags-item:focus {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6px;
    font-size: 12px;
    margin-left: 0;
  }
}
.tags-item:hover {
  text-decoration: none;
  color: #000;
}
.tags-item.hide-tags {
  display: none;
}

.seo_text {
  margin-bottom: 36px;
}

.after-title-info {
  margin-top: -20px;
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

.account {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}
@media (max-width: 1023px) {
  .account {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.account__area {
  background: var(--bg-box);
  padding: 80px 60px;
  border-radius: 50px;
}
@media (max-width: 1739px) {
  .account__area {
    padding: 80px 20px;
  }
}
@media (max-width: 1023px) {
  .account__area {
    width: calc(50% - 10px);
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .account__area {
    width: 100%;
    padding: 50px 20px;
  }
}
.account__area:first-child {
  grid-area: 1/1/2/4;
  padding: 70px 60px;
}
@media (max-width: 1739px) {
  .account__area:first-child {
    padding: 60px;
  }
}
@media (max-width: 1023px) {
  .account__area:first-child {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .account__area:first-child {
    padding: 30px;
  }
}
.account__area:nth-child(2) {
  grid-area: 2/1/3/2;
}
.account__area:nth-child(3) {
  grid-area: 2/2/3/3;
}
.account__area:nth-child(4) {
  grid-area: 2/3/3/4;
}
.account__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .account__title {
    margin-bottom: 35px;
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .account__title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.account__link {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  height: 100%;
}
@media (max-width: 575px) {
  .account__link {
    column-gap: 15px;
  }
}
.account__link span {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .account__link span {
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .account__link span {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .account__link span {
    font-size: 20px;
  }
}
.account__link svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--primary);
}
.account__link:hover span {
  color: var(--secondary);
}
.account__row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 100px;
  row-gap: 30px;
  align-items: stretch;
}
@media (max-width: 1739px) {
  .account__row {
    column-gap: 90px;
  }
}
.account__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 20px;
  width: 935px;
  padding: 40px 50px;
  background: #fff;
  border-radius: 30px;
  justify-content: space-between;
}
@media (max-width: 1739px) {
  .account__wrap {
    width: 500px;
  }
}
@media (max-width: 1199px) {
  .account__wrap {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .account__wrap {
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .account__wrap {
    padding: 30px;
  }
}
@media (max-width: 374px) {
  .account__wrap {
    padding: 25px 15px;
  }
}
.account__wrap .btn {
  width: 311px;
  height: 75px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .account__wrap .btn {
    width: 285px;
    height: 64px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .account__wrap .btn {
    width: 100%;
    max-width: 280px;
  }
}
@media (max-width: 575px) {
  .account__wrap .btn {
    height: 50px;
    font-size: 12px;
  }
}
.account__wrap .acc-user__docs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.account__wrap .buttons .btn {
  width: auto;
  height: auto;
  padding: 14px 14px;
}
.account__wrap .buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.account__wrap .buttons div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 5px;
  font-size: 12px;
  align-items: center;
}
@media (max-width: 1735px) {
  .account__wrap .buttons div .docs_title {
    width: 100%;
  }
}
.account__wrap .buttons div .btn {
  font-size: 12px;
  width: 100px;
}

.acc-user {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
}
@media (max-width: 1739px) {
  .acc-user {
    column-gap: 25px;
  }
}
@media (max-width: 575px) {
  .acc-user {
    column-gap: 15px;
  }
}
.acc-user__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
}
@media (max-width: 1739px) {
  .acc-user__icon {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .acc-user__icon {
    width: 60px;
    height: 60px;
  }
}
.acc-user__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--secondary);
}
@media (max-width: 1739px) {
  .acc-user__icon svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575px) {
  .acc-user__icon svg {
    width: 20px;
    height: 20px;
  }
}
.acc-user__name {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--font-dark);
}
.acc-user__tel {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .acc-user__name, .acc-user__tel {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .acc-user__name, .acc-user__tel {
    font-size: 14px;
  }
}

.contract {
  display: grid;
  grid-template-columns: 700px 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 30px;
}
@media (max-width: 1199px) {
  .contract {
    grid-template-columns: 560px 1fr;
  }
}
@media (max-width: 1023px) {
  .contract {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.contract__col {
  grid-row-start: 1;
  grid-row-end: -1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 1739px) {
  .contract__col {
    row-gap: 35px;
  }
}
@media (max-width: 575px) {
  .contract__col {
    row-gap: 30px;
  }
}
.contract__section {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
}
@media (max-width: 575px) {
  .contract__section {
    column-gap: 10px;
  }
}
.contract__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  font-weight: 400;
  font-size: 14px;
  color: var(--secondary);
}
@media (max-width: 575px) {
  .contract__num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}
.contract__text {
  width: calc(100% - 44px);
}
@media (max-width: 575px) {
  .contract__text {
    width: calc(100% - 36px);
  }
}
.contract__text ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.contract__text ul li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .contract__text ul li {
    margin-bottom: 14px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .contract__text ul li {
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 12px;
  }
}
.contract__text ul li:last-child {
  margin-bottom: 0;
}
.contract__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}
@media (max-width: 1739px) {
  .contract__text ul li::before {
    top: 6px;
  }
}
@media (max-width: 575px) {
  .contract__text ul li::before {
    top: 6px;
    width: 6px;
    height: 6px;
  }
}
.contract__text ul:last-child {
  margin-bottom: 0;
}
.contract__text p {
  margin: 0 0 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .contract__text p {
    font-size: 14px;
  }
}
.contract__text p:last-child {
  margin-bottom: 0;
}
.contract__text .btn {
  width: 238px;
  height: 62px;
  font-size: 16px;
}
@media (max-width: 1739px) {
  .contract__text .btn {
    width: 216px;
    height: 59px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .contract__text .btn {
    width: 194px;
    height: 50px;
    font-size: 12px;
  }
}
.contract__title {
  margin: 2px 0 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .contract__title {
    margin-bottom: 18px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .contract__title {
    margin-bottom: 14px;
    font-size: 12px;
  }
}
.contract__addr {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .contract__addr {
    margin-bottom: 10px;
  }
}
.contract__addr svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}
@media (max-width: 575px) {
  .contract__addr svg {
    width: 16px;
    height: 16px;
  }
}
.contract__addr p {
  width: calc(100% - 28px);
}
@media (max-width: 575px) {
  .contract__addr p {
    width: calc(100% - 24px);
  }
}
.contract__time {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .contract__time {
    margin-bottom: 20px;
  }
}
.contract__time svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}
@media (max-width: 575px) {
  .contract__time svg {
    width: 16px;
    height: 16px;
  }
}
.contract__time p {
  width: calc(100% - 28px);
}
@media (max-width: 575px) {
  .contract__time p {
    width: calc(100% - 24px);
  }
}
.contract__load {
  grid-column-start: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  width: 500px;
  height: 212px;
  margin-left: auto;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 30px;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .contract__load {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    width: 272px;
    padding: 30px 20px;
  }
}
@media (max-width: 1023px) {
  .contract__load {
    margin-left: 0;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .contract__load {
    width: 100%;
  }
}
.contract__load img {
  width: 80px;
  height: 80px;
}
@media (max-width: 575px) {
  .contract__load img {
    width: 65px;
    height: 65px;
  }
}
.contract__load div p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .contract__load div p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .contract__load div p {
    font-size: 12px;
  }
}
.contract__load div p:first-child {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .contract__load div p:first-child {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .contract__load div p:first-child {
    font-size: 14px;
  }
}
.contract__load:hover {
  border-color: var(--border);
}
@media (max-width: 1023px) {
  .contract__text p, .contract__text ul {
    margin-bottom: 20px;
  }
}

.entry {
  display: grid;
  grid-template-columns: 1048px;
  row-gap: 80px;
}
@media (max-width: 1739px) {
  .entry {
    grid-template-columns: 100%;
    row-gap: 30px;
  }
}
@media (max-width: 575px) {
  .entry {
    row-gap: 40px;
  }
}
.entry__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .entry__title {
    margin-bottom: 35px;
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .entry__title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .entry__title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.entry .btn {
  display: inline-flex;
  width: 294px;
  height: 76px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .entry .btn {
    width: 272px;
    height: 65px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .entry .btn {
    height: 52px;
    font-size: 12px;
  }
}
.entry .btn svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  transition: 0.3s linear;
}
.entry .btn svg.arr {
  transform: rotate(135deg);
}
.entry .btn:hover svg {
  stroke: var(--secondary);
}
.entry .btn-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 343px;
  height: 76px;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .entry .btn-border {
    width: 313px;
    height: 64px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .entry .btn-border {
    height: 52px;
    font-size: 12px;
  }
}
.entry__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .entry__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .entry__grid {
    grid-template-columns: 100%;
  }
}
.entry__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 25px;
}
.entry__row .form-group {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
}
.entry__row .form-group:first-child, .entry__row .form-group:nth-child(2) {
  width: calc(100% / 12 * 6 - 20px);
}
.entry__row .form-group:nth-child(3), .entry__row .form-group:nth-child(4), .entry__row .form-group:nth-child(5), .entry__row .form-group:nth-child(6) {
  width: calc(100% / 12 * 3 - 20px);
}
.entry__row .form-group:nth-child(7) {
  width: calc(100% / 12 * 9 - 20px);
}
.entry__row .form-group:nth-child(8) {
  width: calc(100% / 12 * 3 - 20px);
}
.entry__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .entry .btn,
  .entry .btn-border {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .entry__row .form-group label {
    margin-right: -5px;
  }
}

.oneImgCont .delete {
  content: "";
  position: absolute;
  top: 8px;
  left: 90%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url(../img/icons/deleteico.svg) center/contain no-repeat;
  cursor: pointer;
  transition: 0.3s;
}
.oneImgCont {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  position: relative;
}

.hiddenInput1:before {
  content: "Загрузить файлы";
  position: absolute;
  top: 0;
  left: 40px;
  width: 200px;
  height: 100%;
  z-index: 1;
  padding: 10px;
}
.hiddenInput1:after {
  content: "";
  display: block;
  position: absolute;
  width: 31px;
  height: 31px;
  background: url(../img/icons/addico.svg) center/contain no-repeat;
  top: 5px;
  left: 5px;
}
.hiddenInput1 input {
  position: relative;
  z-index: 2;
  opacity: 0;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  font-size: 0;
  height: 40px;
}
.hiddenInput1 {
  position: relative;
  cursor: pointer;
  border-image: initial;
  border: 1px dashed #cdcdcd;
}

.loadFileBt,
.loadFileBtPodpis {
  display: none;
}

@media (max-width: 480px) {
  .account__area,
  .account__wrap,
  .article img {
    border-radius: 10px;
  }
}

.map {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .map {
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .map {
    aspect-ratio: 1.029;
  }
}
.map iframe {
  display: block;
  height: 100%;
}

.tracking {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.tracking input {
  width: 500px;
  height: 64px;
  padding: 0 20px;
  border: 1px solid #ced7d9;
  border-radius: 10px;
  background: #fff;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .tracking input {
    width: 403px;
    height: 58px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .tracking input {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .tracking input {
    width: 100%;
  }
}
.tracking input:focus {
  border-color: var(--primary);
}
.tracking .btn {
  width: 238px;
  height: 64px;
  font-size: 16px;
}
@media (max-width: 1739px) {
  .tracking .btn {
    height: 58px;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .tracking .btn {
    width: 240px;
  }
}
@media (max-width: 575px) {
  .tracking .btn {
    width: 100%;
  }
}

.track-auto {
  margin-bottom: 100px;
}
@media (max-width: 1739px) {
  .track-auto {
    margin-bottom: 90px;
  }
}
@media (max-width: 1199px) {
  .track-auto {
    margin-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .track-auto {
    margin-bottom: 70px;
  }
}
.track-auto__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .track-auto__title {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .track-auto__title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .track-auto__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.track-auto__title .rating {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 20px;
}
@media (max-width: 575px) {
  .track-auto__title .rating {
    margin-left: 16px;
  }
}
.track-auto__info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 100px;
  padding: 50px;
  background: #fff;
  border-radius: 30px;
}
@media (max-width: 1739px) {
  .track-auto__info {
    justify-content: space-between;
    column-gap: normal;
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .track-auto__info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 30px;
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .track-auto__info {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .track-auto__info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .track-auto__info {
    border-radius: 10px;
  }
}
.track-auto__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.track-auto__item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--font-gray);
}
@media (max-width: 1739px) {
  .track-auto__item span {
    font-size: 12px;
  }
}
.track-auto__item span:nth-child(2) {
  font-size: 16px;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .track-auto__item span:nth-child(2) {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .track-auto__item span:nth-child(2) {
    font-size: 12px;
  }
}
.track-auto__title + .track-auto__info.track-auto__params {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -20px;
  margin-bottom: 20px;
}

.track-status__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .track-status__title {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
.track-status__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  position: relative;
  min-height: 180px;
  margin-bottom: 20px;
}
@media (max-width: 1739px) {
  .track-status__item {
    column-gap: 16px;
    min-height: 130px;
  }
}
@media (max-width: 575px) {
  .track-status__item {
    min-height: 110px;
  }
}
.track-status__item::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 14px;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}
.track-status__item:last-child {
  min-height: 1px;
  margin-bottom: 0;
}
.track-status__item:last-child::before {
  display: none;
}
.track-status__item.active .track-status__num {
  background: var(--secondary);
}
.track-status__item.active .track-status__desc p {
  color: var(--primary);
}
.track-status__item.active .track-status__desc p:nth-child(2) {
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .track-status__item.active .track-status__desc p:nth-child(2) {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .track-status__item.active .track-status__desc p:nth-child(2) {
    margin-top: 10px;
  }
}
.track-status__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--font-gray);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #fff;
}
.track-status__desc {
  width: calc(100% - 50px);
}
.track-status__desc p {
  margin: 4px 0 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--font-gray);
}
@media (max-width: 1739px) {
  .track-status__desc p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .track-status__desc p, .track-status__num {
    font-size: 12px;
  }
}

.days_map_box {
  display: flex;
  gap: 24px;
}
@media (max-width: 1199px) {
  .days_map_box {
    flex-wrap: wrap;
  }
}
.days_map_box .days_tab_cont {
  display: flex;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .days_map_box .days_tab_cont {
    width: 100%;
  }
}
.days_map_box .auc_map {
  width: auto;
}

.days_tab .days_blocks,
.popular_brands .popular_brands_blocks {
  display: none;
}

.days_tab .days_blocks.active,
.popular_brands .popular_brands_blocks.active {
  display: block;
  width: 100%;
  max-width: 755px;
}

.days_tab .days_blocks .dayName {
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  padding-bottom: 10px;
  border-bottom: 1px solid #c6c6c6;
}
.days_tab .days_blocks .region_section {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
  height: 0;
}
.days_tab .days_blocks.active .region_section {
  height: auto;
}
.days_tab .days_blocks .region_section .name {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 27px;
  color: #000;
  margin-bottom: 12px;
}
.days_tab .days_blocks .region_section .region_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 5px 0 0;
}
.days_tab .days_blocks .region_section .region_list .auc {
  width: calc(100% / 3 - 48px / 3);
  display: flex;
  gap: 8px;
}
@media (max-width: 1199px) {
  .days_tab .days_blocks .region_section .region_list .auc {
    width: calc(50% - 12px);
  }
}
.days_tab .days_blocks .region_section .region_list .auc .t_types {
  display: flex;
  gap: 8px;
}
@media (max-width: 1199px) {
  .days_tab .days_blocks.active {
    max-width: 100%;
  }
}

.jpmap__map {
  position: relative;
}
.jpmap__map svg {
  display: block;
  width: 845px;
}
@media (max-width: 1739px) {
  .jpmap__map svg {
    width: 630px;
  }
}
@media (max-width: 767px) {
  .jpmap__map svg {
    width: 480px;
  }
}
@media (max-width: 567px) {
  .jpmap__map svg {
    width: 295px;
  }
}
.jpmap__map .rgn {
  fill: #878787;
  stroke: transparent;
  stroke-width: 2px;
  cursor: pointer;
  transition: 0.3s linear;
}
.jpmap__map .rgn.hkd.active, .jpmap__map .rgn.hkd.hover, .jpmap__map .rgn.hkd:hover {
  fill: rgba(200, 28, 28, 0.5);
  stroke: #c81c1c;
}
.jpmap__map .rgn.thk.active, .jpmap__map .rgn.thk.hover, .jpmap__map .rgn.thk:hover {
  fill: rgba(73, 200, 28, 0.5);
  stroke: #49c81c;
}
.jpmap__map .rgn.knt.active, .jpmap__map .rgn.knt.hover, .jpmap__map .rgn.knt:hover {
  fill: rgba(145, 200, 28, 0.5);
  stroke: #91c81c;
}
.jpmap__map .rgn.chb.active, .jpmap__map .rgn.chb.hover, .jpmap__map .rgn.chb:hover {
  fill: rgba(28, 98, 200, 0.5);
  stroke: #1c62c8;
}
.jpmap__map .rgn.kns.active, .jpmap__map .rgn.kns.hover, .jpmap__map .rgn.kns:hover {
  fill: rgba(200, 28, 152, 0.5);
  stroke: #c81c98;
}
.jpmap__map .rgn.chg.active, .jpmap__map .rgn.chg.hover, .jpmap__map .rgn.chg:hover {
  fill: rgba(200, 121, 28, 0.5);
  stroke: #c8791c;
}
.jpmap__map .rgn.shk.active, .jpmap__map .rgn.shk.hover, .jpmap__map .rgn.shk:hover {
  fill: rgba(28, 200, 190, 0.5);
  stroke: #1cc8be;
}
.jpmap__map .rgn.ksh.active, .jpmap__map .rgn.ksh.hover, .jpmap__map .rgn.ksh:hover {
  fill: rgba(200, 172, 28, 0.5);
  stroke: #c8ac1c;
}

.region-labels__item {
  position: absolute;
  z-index: 10;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  cursor: pointer;
}
@media (max-width: 567px) {
  .region-labels__item {
    font-size: 10px;
  }
}
.region-labels__item.hkd {
  top: 100px;
  left: 670px;
  background: #c81c1c;
}
.region-labels__item.thk {
  top: 350px;
  left: 584px;
  background: #49c81c;
}
.region-labels__item.knt {
  top: 520px;
  left: 520px;
  background: #91c81c;
}
.region-labels__item.chb {
  top: 524px;
  left: 410px;
  background: #1c62c8;
}
.region-labels__item.kns {
  top: 580px;
  left: 310px;
  background: #c81c98;
}
.region-labels__item.chg {
  top: 565px;
  left: 180px;
  background: #c8791c;
}
.region-labels__item.shk {
  top: 636px;
  left: 215px;
  background: #1cc8be;
}
.region-labels__item.ksh {
  top: 680px;
  left: 80px;
  background: #c8ac1c;
}
.region-labels__title {
  padding: 3px 6px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.region-labels__qnt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px 6px;
}
.region-labels__qnt svg {
  width: 28px;
  height: 18px;
  fill: #fff;
}

.faq {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .faq {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .faq {
    row-gap: 20px;
  }
}
.faq__col {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
  align-items: flex-start;
}
@media (max-width: 767px) {
  .faq__col {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.faq__item {
  margin-bottom: 20px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 1739px) {
  .faq__item {
    padding: 30px 40px;
  }
}
@media (max-width: 575px) {
  .faq__item {
    padding: 20px;
  }
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq__header span {
  width: calc(100% - 53px);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .faq__header span {
    width: calc(100% - 47px);
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .faq__header span {
    font-size: 14px;
  }
}
.faq__header svg {
  position: relative;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--secondary);
  transform: rotate(-135deg);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .faq__header svg {
    width: 22px;
    height: 22px;
  }
}
.faq__header:hover svg {
  top: 3px;
}
.faq__header.open svg {
  transform: rotate(-225deg);
}
.faq__header.open:hover svg {
  top: -3px;
}
.faq__text {
  display: none;
  padding: 20px 100px 0 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .faq__text {
    padding-right: 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 575px) {
  .faq__text {
    padding-right: 15px;
  }
}
.faq__text p {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-dark);
  margin-bottom: 14px;
}
@media (max-width: 1739px) {
  .faq__text p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .faq__text p {
    font-size: 12px;
  }
}
.faq__text p:last-child {
  margin-bottom: 0;
}

.advant {
  margin-bottom: 100px;
}
@media (max-width: 1739px) {
  .advant {
    margin-bottom: 90px;
  }
}
@media (max-width: 1199px) {
  .advant {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .advant {
    margin-bottom: 70px;
  }
}
@media (max-width: 374px) {
  .advant {
    margin-bottom: 60px;
  }
}
.advant__grid {
  display: grid;
  grid-template-columns: 705px repeat(3, 1fr);
  grid-template-rows: repeat(2, 358px);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media (max-width: 1739px) {
  .advant__grid {
    grid-template-columns: 447px repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
@media (max-width: 1199px) {
  .advant__grid {
    grid-template-columns: calc(50% - 20px) repeat(2, calc(25% - 10px));
    grid-template-rows: repeat(3, auto);
  }
}
@media (max-width: 1023px) {
  .advant__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .advant__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
  }
}
.advant__area:first-child {
  grid-area: 1/1/2/2;
}
.advant__area:nth-child(2) {
  grid-area: 1/2/2/3;
}
.advant__area:nth-child(3) {
  grid-area: 1/3/2/4;
}
.advant__area:nth-child(4) {
  grid-area: 1/4/2/5;
}
.advant__area:nth-child(5) {
  grid-area: 2/2/3/3;
}
.advant__area:nth-child(6) {
  grid-area: 2/3/3/4;
}
.advant__area:nth-child(7) {
  grid-area: 2/4/3/5;
}
.advant__area:nth-child(8) {
  grid-area: 2/1/3/2;
}
.advant__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  margin: 0;
  padding-left: 100px;
  padding-right: 100px;
  font-weight: 700;
  font-size: 50px;
  line-height: 61px;
  background: var(--bg-box);
  border-radius: 50px;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .advant__title {
    padding-left: 60px;
    padding-right: 60px;
    font-size: 38px;
    line-height: 46px;
  }
}
@media (max-width: 1199px) {
  .advant__title {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 34px;
    line-height: 41px;
  }
}
@media (max-width: 767px) {
  .advant__title {
    padding: 50px 100px 50px 40px;
  }
}
@media (max-width: 575px) {
  .advant__title {
    padding: 50px 30px;
    font-size: 26px;
    line-height: 32px;
  }
}
@media (max-width: 374px) {
  .advant__title {
    padding: 40px 20px;
    font-size: 22px;
    line-height: 27px;
  }
}
.advant__img {
  height: 100%;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .advant__img {
    height: 200px;
  }
}
.advant__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .advant__img img {
    object-position: 90% center;
  }
}
.advant__item {
  height: 100%;
  padding: 60px 38px;
  background: var(--bg-box);
  border-radius: 50px;
}
@media (max-width: 1739px) {
  .advant__item {
    padding: 40px 29px;
  }
}
@media (max-width: 1023px) {
  .advant__item {
    border-radius: 30px;
  }
}
@media (max-width: 575px) {
  .advant__item {
    padding: 20px;
  }
}
.advant__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .advant__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .advant__icon {
    width: 22px;
    height: 22px;
  }
}
.advant__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--secondary);
}
.advant__name {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .advant__name {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .advant__name {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .advant__name {
    margin-bottom: 0;
    font-size: 12px;
  }
}
.advant__desc {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .advant__desc {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .advant__desc {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .advant__desc {
    display: none;
  }
}
@media (max-width: 1739px) {
  .advant__name br {
    display: none;
  }
}
@media (max-width: 1023px) {
  .advant__img, .advant__title {
    border-radius: 30px;
  }
}

.scheme {
  margin-bottom: 100px;
}
@media (max-width: 1739px) {
  .scheme {
    margin-bottom: 90px;
  }
}
@media (max-width: 1199px) {
  .scheme {
    margin-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .scheme {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .scheme {
    margin-bottom: 60px;
  }
}
.scheme__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .scheme__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .scheme__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 374px) {
  .scheme__grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.scheme__img {
  min-height: 315px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .scheme__img {
    border-radius: 30px;
  }
}
@media (max-width: 374px) {
  .scheme__img {
    width: 100%;
    height: 160px;
  }
}
.scheme__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scheme__step {
  min-height: 315px;
  padding: 64px;
  background: var(--bg-box);
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .scheme__step {
    padding: 30px;
  }
}
.scheme__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 130px;
}
@media (max-width: 1739px) {
  .scheme__icon {
    margin-bottom: 90px;
  }
}
@media (max-width: 1199px) {
  .scheme__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .scheme__icon {
    width: 22px;
    height: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 374px) {
  .scheme__icon {
    margin-bottom: 0;
  }
}
.scheme__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--secondary);
}
.scheme__title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .scheme__title {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .scheme__title {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .scheme__title {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.scheme__text {
  margin: 0;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .scheme__text {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .scheme__text {
    font-size: 12px;
  }
}
@media (max-width: 1539px) {
  .scheme__img, .scheme__step {
    min-height: 305px;
  }
}
@media (max-width: 1365px) {
  .scheme__img, .scheme__step {
    min-height: 285px;
  }
}
@media (max-width: 767px) {
  .scheme__step:not(:has(~ .scheme__step)):nth-child(odd) {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
@media (max-width: 374px) {
  .scheme__desc {
    width: calc(100% - 42px);
  }
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 20px;
}
.contacts__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.contacts__icon {
  width: 30px;
  height: 30px;
  margin-top: 8px;
}
@media (max-width: 1199px) {
  .contacts__icon {
    width: 28px;
    height: 28px;
    margin-top: 7px;
  }
}
@media (max-width: 1023px) {
  .contacts__icon {
    margin-top: 2px;
  }
}
@media (max-width: 575px) {
  .contacts__icon {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 374px) {
  .contacts__icon {
    margin-top: 0;
  }
}
.contacts__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--secondary);
}
.contacts__icon--green svg {
  fill: var(--green);
}
.contacts__icon--blue svg {
  fill: #4eb4ff;
}
.contacts__text {
  width: calc(100% - 40px);
}
@media (max-width: 1199px) {
  .contacts__text {
    width: calc(100% - 38px);
  }
}
@media (max-width: 575px) {
  .contacts__text {
    width: calc(100% - 32px);
  }
}
.contacts__text a {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: var(--primary);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .contacts__text a {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .contacts__text a {
    font-size: 26px;
  }
}
.contacts__text a:hover {
  color: var(--gray);
}
.contacts__text address {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .contacts__text address {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .contacts__text address {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .contacts__text address {
    font-size: 12px;
  }
}
.contacts__title {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: var(--primary);
}
@media (max-width: 1739px) {
  .contacts__title {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .contacts__title {
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .contacts__text a, .contacts__title {
    font-size: 20px;
  }
}
.contacts__icon--violet svg {
  fill: #7324e2;
}

.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .team {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .team {
    grid-template-columns: 100%;
  }
}
.team__item {
  padding: 40px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #dedede;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .team__item {
    padding: 35px;
  }
}
@media (max-width: 1365px) {
  .team__item {
    padding: 25px;
  }
}
@media (max-width: 1023px) {
  .team__item {
    border-radius: 30px;
  }
}
@media (max-width: 374px) {
  .team__item {
    padding: 20px;
  }
}
.team__item:hover {
  border-color: #ababab;
}
.team__member {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
@media (max-width: 1739px) {
  .team__member {
    column-gap: 16px;
  }
}
@media (max-width: 1199px) {
  .team__member {
    column-gap: 12px;
  }
}
@media (max-width: 575px) {
  .team__member {
    margin-bottom: 16px;
  }
}
.team__img {
  flex: none;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .team__img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 1199px) {
  .team__img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .team__img {
    width: 50px;
    height: 50px;
  }
}
.team__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__name p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--font-dark);
}
@media (max-width: 1739px) {
  .team__name p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .team__name p {
    font-size: 12px;
  }
}
.team__name p:first-child {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1739px) {
  .team__name p:first-child {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .team__name p:first-child {
    margin-bottom: 6px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .team__name p:first-child {
    margin-bottom: 4px;
  }
}
.team__tel {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 10px;
}
.team__tel svg {
  width: 30px;
  height: 30px;
  fill: var(--secondary);
}
@media (max-width: 1739px) {
  .team__tel svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .team__tel svg {
    width: 18px;
    height: 18px;
  }
}
.team__tel a {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: var(--font-dark);
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .team__tel a {
    font-size: 22px;
  }
}
@media (max-width: 1539px) {
  .team__tel a {
    font-size: 20px;
  }
}
@media (max-width: 1365px) {
  .team__tel a {
    font-size: 18px;
  }
}
.team__tel a:hover {
  color: var(--font-gray);
}
.team.team-index-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-container-narrow);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .team.team-index-page {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .team.team-index-page {
    grid-template-columns: repeat(1, 1fr);
    max-width: 320px;
  }
}
.team.team-index-page .team__tel a {
  font-size: 28px;
  line-height: 1.3;
}
@media (max-width: 1199px) {
  .team.team-index-page .team__tel a {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media (max-width: 1023px) {
  .team.team-index-page .team__tel a {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .team.team-index-page .team__tel a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .team.team-index-page .team__item {
    padding: 20px;
  }
}

.requis {
  display: grid;
  grid-template-columns: 1fr 243px;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 45px;
  grid-row-gap: 40px;
}
@media (max-width: 1739px) {
  .requis {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 30px;
  }
}
@media (max-width: 1199px) {
  .requis {
    row-gap: 25px;
  }
}
@media (max-width: 575px) {
  .requis {
    row-gap: 20px;
  }
}
@media (max-width: 374px) {
  .requis {
    row-gap: 15px;
  }
}
.requis__title {
  grid-area: 1/1/2/2;
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 1739px) {
  .requis__title {
    margin-bottom: 5px;
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .requis__title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .requis__title {
    font-size: 20px;
  }
}
.requis__list {
  margin: 0;
  padding: 0;
  list-style: none;
  grid-area: 2/1/3/2;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1739px) {
  .requis__list {
    font-size: 16px;
  }
}
.requis__list li {
  margin-bottom: 4px;
}
.requis__list li:last-child {
  margin-bottom: 0;
}
.requis__load {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  grid-area: 2/2/3/3;
  align-self: start;
  padding: 30px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 30px;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .requis__load {
    width: 100%;
    max-width: 243px;
  }
}
@media (max-width: 1023px) {
  .requis__load {
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .requis__load {
    max-width: 300px;
    padding: 30px 20px;
  }
}
.requis__load:hover {
  border-color: var(--border);
}
.requis__load img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .requis__load img {
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  .requis__load img {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
}
.requis__load p {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--font-dark);
}
.requis__load span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--font-dark);
}
@media (max-width: 1199px) {
  .requis__load span {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .requis__list, .requis__load p {
    font-size: 14px;
  }
}

.director {
  position: relative;
}
.director__img {
  height: 850px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .director__img {
    height: 640px;
  }
}
@media (max-width: 1199px) {
  .director__img {
    height: 576px;
  }
}
@media (max-width: 1023px) {
  .director__img {
    height: 500px;
    border-radius: 30px;
  }
}
@media (max-width: 480px) {
  .director__img {
    height: 356px;
    border-radius: 10px;
  }
}
.director__img--sm {
  height: 700px;
}
@media (max-width: 1739px) {
  .director__img--sm {
    height: 558px;
  }
}
@media (max-width: 1199px) {
  .director__img--sm {
    height: 500px;
  }
}
@media (max-width: 480px) {
  .director__img--sm {
    height: 356px;
  }
}
.director img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.director__desc {
  position: absolute;
  left: 50px;
  bottom: 50px;
  max-width: calc(100% - 100px);
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .director__desc {
    left: 45px;
    bottom: 45px;
    max-width: calc(100% - 90px);
    border-radius: 20px;
    padding: 25px;
  }
}
@media (max-width: 1023px) {
  .director__desc {
    left: 40px;
    bottom: 40px;
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 575px) {
  .director__desc {
    left: 30px;
    bottom: 30px;
    max-width: calc(100% - 60px);
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .director__desc {
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .director__desc {
    left: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
    padding: 12px;
  }
}
.director__name {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #282f2f;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .director__name {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .director__name {
    margin-bottom: 6px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .director__name {
    font-size: 12px;
  }
}
.director__role {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #282f2f;
  transition: 0.3s linear;
}
@media (max-width: 1739px) {
  .director__role {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .director__role {
    font-size: 12px;
  }
}
@media (max-width: 374px) {
  .director__img, .director__img--sm {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .advant__img,
  .advant__item,
  .advant__title,
  .faq__item {
    border-radius: 10px;
  }
}

.actions__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1739px) {
  .actions__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .actions__header {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .actions__header {
    row-gap: 10px;
  }
}
.actions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 1739px) {
  .actions__grid {
    row-gap: 35px;
    margin-bottom: 65px;
  }
}
@media (max-width: 1023px) {
  .actions__grid {
    grid-template-columns: 100%;
    row-gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .actions__grid {
    row-gap: 20px;
    margin-bottom: 30px;
  }
}

.actions-index__wrap {
  width: 100%;
}
.actions-index__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
  margin-bottom: 50px;
}
.actions-index__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1199px) {
  .actions-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .actions-index__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.actions-index__row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid var(--border);
  border-radius: 25px;
  overflow: hidden;
}
.actions-index__row-second {
  padding: 0 20px 20px 20px;
}
.actions-index__row-img {
  width: 100%;
  min-height: 100px;
  aspect-ratio: 12/7;
  overflow: hidden;
}
.actions-index__row-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.actions-index__title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary);
}
.actions-index__desc {
  color: var(--primary);
  line-height: 1.5;
}

.last-buy-index__wrap {
  width: 100%;
}
@media (max-width: 767px) {
  .last-buy-index__wrap {
    margin-bottom: 150px;
  }
}
.last-buy-index__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
  margin-bottom: 50px;
}
.last-buy-index__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 25px;
  overflow: hidden;
}
.last-buy-index__row-second {
  padding: 0 0 20px 0;
}
.last-buy-index__row-img {
  width: 100%;
  max-width: 420px;
  min-height: 100px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (max-width: 767px) {
  .last-buy-index__row-img {
    max-height: 225px;
  }
}
.last-buy-index__row-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.last-buy-index__owner {
  padding: 10px 20px 10px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
}
.last-buy-index__name {
  color: var(--secondary);
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 1199px) {
  .last-buy-index__name {
    font-size: 18px;
  }
}
.last-buy-index__city {
  white-space: nowrap;
}
.last-buy-index__info {
  border-top: 1px solid var(--border);
  padding: 10px 20px 0 20px;
  color: var(--primary);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.last-buy-index__model {
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 1199px) {
  .last-buy-index__model {
    font-size: 18px;
  }
}
.last-buy-index__price {
  white-space: nowrap;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  border-radius: 50px;
  padding: 4px 16px;
  color: #fff;
  background-color: var(--secondary);
}
@media (max-width: 1199px) {
  .last-buy-index__price {
    font-size: 18px;
  }
}

.err404 {
  padding-top: 20px;
}
@media (max-width: 1199px) {
  .err404 {
    padding-top: 0;
  }
}
.err404__col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .err404__col {
    gap: 14px;
  }
}
.err404__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .err404__grid {
    gap: 14px 10px;
  }
}
@media (max-width: 767px) {
  .err404__grid {
    grid-template-columns: 100%;
    gap: 10px;
  }
}
.err404__area {
  height: 288px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .err404__area {
    height: 212px;
  }
}
@media (max-width: 1199px) {
  .err404__area {
    height: 176px;
  }
}
@media (max-width: 1023px) {
  .err404__area {
    height: 168px;
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .err404__area {
    height: 140px;
  }
}
@media (max-width: 374px) {
  .err404__area {
    height: 150px;
  }
}
.err404__area:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
}
.err404__area:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-box);
}
@media (max-width: 1739px) {
  .err404__area:nth-child(2) {
    padding: 0 55px;
  }
}
@media (max-width: 1199px) {
  .err404__area:nth-child(2) {
    padding: 0 40px;
  }
}
@media (max-width: 1023px) {
  .err404__area:nth-child(2) {
    padding: 0 55px 0 45px;
  }
}
@media (max-width: 767px) {
  .err404__area:nth-child(2) {
    padding: 0 40px;
    text-align: center;
  }
}
@media (max-width: 374px) {
  .err404__area:nth-child(2) {
    padding: 0 15px;
  }
}
.err404__area:nth-child(3) {
  grid-column-start: 1;
  grid-column-end: -1;
  height: 464px;
}
@media (max-width: 1739px) {
  .err404__area:nth-child(3) {
    height: 410px;
  }
}
@media (max-width: 1199px) {
  .err404__area:nth-child(3) {
    height: 460px;
  }
}
.err404__title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 214px;
  font-style: normal;
  font-weight: 800;
}
@media (max-width: 1739px) {
  .err404__title {
    font-size: 156px;
  }
}
@media (max-width: 1199px) {
  .err404__title {
    font-size: 130px;
  }
}
@media (max-width: 1023px) {
  .err404__title {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .err404__title {
    font-size: 80px;
  }
}
.err404__text {
  max-width: 540px;
}
@media (max-width: 767px) {
  .err404__text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}
.err404__text--center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 1739px) {
  .err404__text--center {
    max-width: 520px;
  }
}
@media (max-width: 1199px) {
  .err404__text--center {
    max-width: 420px;
  }
}
@media (max-width: 1023px) {
  .err404__text--center {
    max-width: 380px;
  }
}
@media (max-width: 575px) {
  .err404__text--center {
    max-width: 268px;
  }
}
.err404__text p {
  margin: 0 0 30px;
  color: var(--primary);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1739px) {
  .err404__text p {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .err404__text p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .err404__text p {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
.err404__img {
  height: 464px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1739px) {
  .err404__img {
    height: 410px;
  }
}
@media (max-width: 1199px) {
  .err404__img {
    height: 460px;
  }
}
@media (max-width: 1023px) {
  .err404__img {
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .err404__col .container {
    order: 1;
    margin-top: 18px;
  }
}
@media (max-width: 480px) {
  .err404__area, .err404__img {
    border-radius: 10px;
  }
}

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

.dark {
  --primary: #ffffff;
  --font-dark: #ffffff;
  --font-gray: #CED7D9;
  --bg-box: #282F2F;
  --bg-card: var(--bg-dark);
  --border: #798383;
  background: var(--bg-dark);
}
.dark .navbar {
  background: var(--bg-dark);
}
.dark .top__wrap {
  border-bottom-color: rgba(206, 215, 217, 0.1);
}
.dark .top-menu__link:hover {
  color: var(--primary);
}
.dark .top-menu .toggle .top-menu__link:hover svg {
  fill: var(--primary);
}
.dark .t-social__link {
  border-color: var(--border);
}
.dark .t-social__link svg {
  fill: var(--border);
}
.dark .t-social__link:hover {
  border-color: var(--secondary);
}
.dark .t-social__link:hover svg {
  fill: var(--secondary);
}
.dark .more-dropdown {
  background: var(--bg-box-dark);
  border: 1px solid rgba(121, 131, 131, 0.2);
}
.dark .dropdown {
  background: var(--bg-box-dark);
}
.dark .form-group label {
  color: #ced7d9;
}
.dark .card-sm__img {
  background: #fff;
}
.dark .hits__select {
  border-color: transparent;
}
.dark .scheme__step {
  background: var(--bg-box);
}
.dark .card-stock {
  border-color: transparent;
}
.dark .card-row__car,
.dark .card-row__info {
  border-color: rgba(206, 215, 217, 0.2);
}
.dark .faq__item,
.dark .mobile-menu {
  background: var(--bg-dark);
}
.dark .modal__inner {
  background: var(--bg-box);
}
.dark .looking__del svg {
  stroke: #282f2f;
}
.dark .filter-group {
  background: var(--bg-dark);
}
.dark .form-group input:placeholder-shown {
  background: var(--bg-dark);
}
.dark .form-group input::placeholder {
  background: var(--bg-dark);
}
.dark .card-moto,
.dark .specifs {
  background: var(--bg-dark);
}
.dark .gallery__carousel .slick-arrow svg {
  stroke: #fff;
}
.dark .car-gallery {
  background: var(--bg-dark);
}
@media (max-width: 1023px) {
  .dark .car-gallery {
    background: 0 0;
  }
}
.dark .car-gallery .slick-arrow svg {
  stroke: var(--primary);
}
.dark .car-gallery .slick-arrow:hover {
  border-color: var(--primary);
}
.dark .car-other__item,
.dark .selection__radio label {
  background: var(--bg-dark);
}
.dark .team__item {
  background: var(--bg-box);
}
.dark .account__wrap,
.dark .contract__load,
.dark .form-group input,
.dark .requis__load {
  background: var(--bg-dark);
}
.dark ::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.dark .select2-selection__choice__display {
  color: #282f2f;
}
.dark .form-group textarea,
.dark .review-card--text,
.dark .select2-container--default .select2-selection--multiple,
.dark .select2-container--default .select2-selection--single,
.dark .sets-catalog__link,
.dark .track-auto__info {
  background: var(--bg-dark);
}
.dark .video-card__date {
  background: var(--bg-box);
}
.dark .nav__dropdown {
  background: var(--bg-box-dark);
  border-color: rgba(121, 131, 131, 0.2);
}
.dark .hero .filter {
  background: rgba(41, 41, 41, 0.7);
}
.dark .hero--full .filter {
  background: var(--bg-box);
}
.dark .header--hfull .navbar {
  background-color: transparent;
}
.dark .header--hfull .navbar.fixed {
  background-color: var(--bg-dark);
}
.dark .header--hfull .t-social__link {
  border-color: #fff;
}
.dark .header--hfull .t-social__link svg {
  fill: #fff;
}
.dark .header--hfull .t-social__link:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
.dark .header--hfull .t-social__link:hover svg {
  fill: rgba(255, 255, 255, 0.6);
}
.dark .brands__item {
  color: var(--primary-dark);
}
.dark .form-group__double .select2-container {
  background: var(--bg-dark);
  border-radius: 10px 0 0 10px;
}
.dark .form-group__double .select2-container:last-child {
  border-radius: 0 10px 10px 0;
}
.dark .best-course,
.dark .currencies {
  background: #424242;
}
.dark .car-sets__section {
  background: var(--bg-dark);
}
.dark .first-menu__link:hover {
  border-color: transparent;
  background: #2e3138;
  backdrop-filter: none;
}
.dark .first-menu__link:hover svg {
  fill: #fff;
}
.dark .first-menu__link:hover span {
  color: #fff;
}
.dark .car-sets__info p,
.dark .car-sets__item {
  color: var(--primary);
}
.dark .preview__desc .preview__date,
.dark .preview__desc .preview__title {
  color: var(--bg-dark);
}
.dark .car-price__item svg,
.dark .card-row__price svg {
  fill: #8e8e89;
}
.dark .tooltipster-content {
  color: var(--bg-dark);
}
.dark .price-breakdown__price,
.dark .price-breakdown__subtitle,
.dark .price-breakdown__title,
.dark .price-breakdown__total span {
  color: var(--primary);
}
.dark .btn-border,
.dark .crm-history__delete button,
.dark .crm__card,
.dark .crm__date,
.dark .crm__filter,
.dark .crm__full-history,
.dark .crm__full-info,
.dark .crm__status,
.dark .rating,
.dark input.calc-input {
  background-color: var(--bg-card);
}
.dark input.calc-input {
  color: #fff;
}
.dark .crm__date {
  background: url(../img/icons/calendar.svg) right 20px center/20px 20px no-repeat !important;
}
.dark .price-breakdown--abs {
  background-color: var(--bg-card);
  color: var(--primary);
  border: 1px solid var(--border);
}
.dark .price-breakdown--abs .price-breakdown__list,
.dark .price-breakdown--abs .price-breakdown__price,
.dark .price-breakdown--abs .price-breakdown__subtitle,
.dark .price-breakdown--abs .price-breakdown__title,
.dark .price-breakdown--abs .price-breakdown__total span {
  color: var(--primary);
}
.dark .widget__item {
  background-color: var(--bg-card);
}
.dark .widget__img {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px;
  margin-right: 15px;
  border-radius: 6px;
}
.dark .sites-reviews__qnt {
  color: var(--primary);
}
.dark .sites-reviews__item {
  background-color: var(--bg-card);
}
.dark .car-price__item svg {
  fill: var(--secondary);
}
.dark .looking__item {
  background: var(--bg-card);
  color: var(--primary);
}
.dark .looking__item a {
  color: var(--primary);
}
.dark .request .btn-border {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
.dark .request .btn-border:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.dark .director__desc {
  background: var(--bg-box);
}
.dark .director__name,
.dark .director__role {
  color: #fff;
}
.dark .days_tab .days_blocks .dayName {
  color: #fff;
}
.dark .days_tab .days_blocks .region_section .name {
  color: #fff;
}
.dark .days_tab .days_blocks .region_section .region_list .auc .t_types svg {
  fill: #fff;
}
.dark .review-card__text.shadow::after {
  background: linear-gradient(180deg, transparent 0%, #282f2f 100%);
}
.dark .slide_container h2 svg,
.dark .slide_container .section-title svg {
  fill: #fff;
}
.dark .form-checkbox.agree_box label a {
  color: #eee;
}
.dark .table__t tr:nth-child(even) {
  background-color: #000;
}
.dark .table__t tr:hover td {
  background-color: var(--secondary);
}
.dark .reviews_promo_flex .reviews_promo_item.text .head .name {
  color: #fff;
}
.dark .reviews_promo .buttons a {
  color: #fff;
  transition: 1s ease all;
}
.dark .reviews_promo .buttons a:hover {
  background: #000;
  transition: 1s ease all;
}
.dark .login-btn {
  background-color: var(--bg-box);
}
@media (max-width: 1199px) {
  .dark .menu-btn {
    background-color: var(--bg-box);
  }
}
@media (max-width: 1199px) {
  .dark .header--hfull .menu-btn {
    background: #fff;
  }
}
.dark .idx_cars_sliders .filter.no_bg .select2 {
  background: var(--bg-dark);
}
.dark .idx_cars_sliders .filter.no_bg input[type=text] {
  background: var(--bg-dark);
}
.dark .popular_brands .brands_box .country_box .item a img {
  background: none;
}
.dark .other-countries .country .btn {
  background: var(--bg-card);
}
.dark .select2-container--default.select2-container--disabled .select2-selection--single {
  background: var(--bg-box);
}
.dark .rate-info .rate-tables .rate-table table tr td {
  border-color: var(--border);
}
.dark .tracking input {
  color: #000;
}

.dark .price-breakdown__close svg,
.price-breakdown__close svg {
  fill: var(--secondary);
}

.dark .review-card__text.open::after,
.review-card__text.open::after {
  display: none;
}

@media (max-width: 1739px) {
  .box__sidebar .social__link svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1739px) {
  .box__content .card-row__img {
    width: 350px;
    height: 200px;
  }
}
@media (max-width: 1365px) {
  .box__content .card-row__img {
    width: 250px;
  }
}
@media (max-width: 1023px) {
  .box__content .card-row__img {
    width: 225px;
  }
}
@media (max-width: 575px) {
  .box__content .card-row__desc, .box__content .card-row__img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .box__wrap,
  .card-sm__img {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .first-menu__link,
  .social__left,
  .social__link {
    border-radius: 10px;
  }
}

@media (max-width: 1199px) {
  .first-left .btn {
    width: 210px;
    height: 60px;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .first-left .btn {
    width: 177px;
    height: 50px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .first-left__title {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .first-left__title {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .s-request__btn,
  .s-request__full-btn {
    width: 196px;
    height: 55px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .s-request__btn,
  .s-request__full-btn {
    width: 141px;
    height: 45px;
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  .first-form__title,
  .track-status__title {
    font-size: 24px;
  }
}

@media (max-width: 1023px) {
  .request__area:first-child {
    grid-area: 1/1/2/4;
  }
}
@media (max-width: 1023px) {
  .request__area:nth-child(2) {
    grid-area: 2/1/3/2;
  }
}
@media (max-width: 1023px) {
  .request__area:nth-child(3) {
    grid-area: 2/3/3/4;
  }
}
@media (max-width: 1023px) {
  .request__area:nth-child(4) {
    grid-area: 2/2/3/3;
  }
}

@media (max-width: 767px) {
  .hero .btn {
    height: 50px;
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .first-form__title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .first-carousel .slick-arrow.prev {
    right: 94px;
  }
}
@media (max-width: 575px) {
  .first-carousel .slick-arrow.next {
    right: 30px;
  }
}

@media (max-width: 1023px) {
  .footer_cols .col:nth-child(3) {
    border-right: 1px solid #D9D9D9;
  }
}
@media (max-width: 767px) {
  .footer_cols .col:nth-child(3) {
    border-radius: 0 0 10px 10px;
  }
}
@media (max-width: 1023px) {
  .footer_cols .col:nth-child(4) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .footer_cols .col:nth-child(2),
  .footer_cols .col:nth-child(3),
  .footer_cols .col:nth-child(4) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .footer_cols .col:nth-child(4),
  .footer_cols .col:nth-child(5) {
    border-radius: 10px;
  }
}

.btn.telegram-auth svg {
  width: 42px;
  height: 42px;
  fill: #fff;
  display: block;
  transition: 1s;
}
.btn.green {
  background: #1bae3d;
  border-color: #1bae3d;
}
.btn.green:hover {
  color: #fff;
  background: #22da4c;
  border-color: #22da4c;
}

@media (max-width: 1739px) {
  .calc-toggle__btn span:nth-child(2) {
    display: block;
  }
}

@media (max-width: 1739px) {
  .btn-reset,
  .dynamics-nav__btn {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 575px) {
  .btn-reset,
  .dynamics-nav__btn {
    padding: 10px 14px;
    font-size: 12px;
    line-height: 15px;
  }
}

.protect-form .modal__text {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .filter-nowrap .btn {
    font-size: 12px;
  }
}

.form-checkbox.agree_box label {
  font-size: 12px;
}
.form-checkbox.agree_box label a:hover {
  color: var(--secondary);
}

@media (max-width: 380px) {
  #fb_auto_new .form_radio_btn input#cb-radio-0:checked + label {
    background: transparent;
  }
}

.gallery__carousel .slick-arrow:hover svg {
  stroke: var(--secondary);
}

@media (max-width: 1739px) {
  .carousel .slick-arrow.prev {
    right: 74px;
  }
}

@media (max-width: 1739px) {
  .carousel-three .slick-arrow.prev {
    right: 74px;
  }
}

@media (max-width: 480px) {
  .sidebar-carousel .slick-arrow.prev {
    right: 38px;
  }
}

.card-row__fav.active {
  color: var(--secondary);
}
@media (max-width: 1739px) {
  .card-row__price > p:first-child {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .card-row__price > p:first-child {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .card-row__price > p:first-child {
    display: block;
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .card-sm,
  .hits__select {
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .card-sm {
    border-radius: 10px;
    padding: 20px 10px;
  }
}

@media (max-width: 575px) {
  .calc-table__section {
    width: 440px;
  }
}
@media (max-width: 575px) {
  .calc-table__footer {
    width: 440px;
  }
}

@media (max-width: 480px) {
  .comparison__img,
  .contract__load,
  .sets-catalog__link {
    border-radius: 10px;
  }
}

.contract-nav__item.current {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .found__table table th {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .found__desc p {
    margin-bottom: 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .attention,
  .box__content .card-row__img,
  .car-card__desc,
  .gallery__carousel img,
  .specifs {
    border-radius: 10px;
  }
}

.moto-brands .link.active {
  color: var(--secondary);
}

.popular_brands .popular_brands_blocks.active {
  max-width: 100%;
}

@media (max-width: 575px) {
  .selection-card__name h2 {
    margin-top: 4px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .selection-card__price {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hits__select {
    border-radius: 10px;
  }
}

@media (max-width: 1739px) {
  .catalog-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1199px) {
  .catalog-grid--four {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .catalog-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .catalog-grid--four {
    grid-template-columns: 100%;
  }
}

.idx_cars_sliders .filter.no_bg {
  background: none;
  padding: 0;
  padding-bottom: 0px;
}

.idx_cars_sliders .card-row__car,
.idx_cars_sliders .card-row__info,
.dark .idx_cars_sliders .card-row__car,
.dark .idx_cars_sliders .card-row__info,
.dark .idx_cars_sliders .card-row__price,
.idx_cars_sliders .card-row__price {
  border: 0;
}

.sets-catalog__link.auc {
  background: var(--bg-box);
}

.looking__item.active a {
  color: #fff;
}

@media (max-width: 1739px) {
  .car-card__btns .btn {
    height: 61px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .car-card__btns .btn {
    height: 59px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .car-card__btns .btn {
    height: 48px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .car-card--two .btn {
    width: 100%;
    height: 58px;
    font-size: 12px;
  }
}

@media (max-width: 1739px) {
  .car-media__thumbs .slick-arrow.prev {
    right: 74px;
  }
}

@media (max-width: 720px) {
  .configuration-row.title .configuration-label {
    width: 75%;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
  }
}
@media (max-width: 720px) {
  .configuration-row.title .configuration-label:after {
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #191919;
    border-bottom: 1.5px solid #191919;
    margin-left: 6px;
    flex-shrink: 0;
    transform: rotate(45deg) translate3d(-1px, 0, 0);
    content: "";
  }
}
@media (max-width: 720px) {
  .configuration-row.title .configuration-value {
    display: flex;
    flex-shrink: 0;
  }
}
@media (max-width: 720px) {
  .configuration-row.subtitle .configuration-label {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 720px) {
  .configuration-value-carname > span,
  .configuration-value-carprice > span,
  .configuration-value-normal > span {
    padding: 12px 8px;
  }
}

@media (max-width: 720px) {
  .configuration-value-carprice > span {
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 20px;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .configuration-value-applist .appitem {
    width: 100px;
    margin-right: calc(50vw - 171px);
    margin-bottom: 24px;
  }
}
@media (max-width: 720px) {
  .configuration-value-applist .appitem:before {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 4px;
  }
}

@media (max-width: 575px) {
  .insurance__header p span {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .insurance__title {
    font-size: 16px;
  }
}

@media (max-width: 1365px) {
  .reviews--four .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .reviews--four .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .reviews--four .reviews__grid, .reviews__grid {
    grid-template-columns: 100%;
  }
}

@media (max-width: 1739px) {
  .article ol li {
    font-size: 14px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
@media (max-width: 575px) {
  .article ol li {
    margin-bottom: 10px;
    padding-left: 36px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .article ol li::before {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .article ul {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .article ul li {
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .article ul li::before {
    top: 6px;
    width: 6px;
    height: 6px;
  }
}
@media (max-width: 575px) {
  .article p {
    margin-bottom: 15px;
    font-size: 12px;
  }
}

@media (max-width: 1739px) {
  .entry .btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 767px) {
  .entry__row .form-group:first-child, .entry__row .form-group:nth-child(2) {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media (max-width: 767px) {
  .entry__row .form-group:nth-child(3), .entry__row .form-group:nth-child(4), .entry__row .form-group:nth-child(5), .entry__row .form-group:nth-child(6) {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media (max-width: 767px) {
  .entry__row .form-group:nth-child(7) {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media (max-width: 767px) {
  .entry__row .form-group:nth-child(8) {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media (max-width: 374px) {
  .entry__row .form-group:nth-child(3), .entry__row .form-group:nth-child(4), .entry__row .form-group:nth-child(5), .entry__row .form-group:nth-child(6), .entry__row .form-group:nth-child(8) {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.entry__row.auto_info .form-group, .entry__row.auto_info .form-group:nth-child(1), .entry__row.auto_info .form-group:nth-child(2), .entry__row.auto_info .form-group:nth-child(3), .entry__row.auto_info .form-group:nth-child(4), .entry__row.auto_info .form-group:nth-child(5), .entry__row.auto_info .form-group:nth-child(6) {
  width: calc(100% / 12 * 3 - 20px);
}
.entry__row.auto_info .form-group.full {
  width: 100%;
}

@media (max-width: 575px) {
  .acc-user__name {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .acc-user__tel {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .contract__text ul {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .contract__text p {
    margin-bottom: 10px;
    font-size: 12px;
  }
}

@media (max-width: 1749px) {
  .region-labels__item.hkd {
    top: 70px;
    left: 490px;
  }
}
@media (max-width: 1749px) {
  .region-labels__item.thk {
    top: 255px;
    left: 430px;
  }
}
@media (max-width: 1749px) {
  .region-labels__item.knt {
    top: 390px;
    left: 380px;
  }
}
@media (max-width: 1749px) {
  .region-labels__item.chb {
    top: 400px;
    left: 297px;
  }
}
@media (max-width: 1749px) {
  .region-labels__item.kns {
    top: 430px;
    left: 225px;
  }
}
@media (max-width: 1749px) {
  .region-labels__item.chg {
    top: 413px;
    left: 128px;
  }
}
@media (max-width: 1749px) {
  .region-labels__item.shk {
    top: 474px;
    left: 148px;
  }
}
@media (max-width: 1749px) {
  .region-labels__item.ksh {
    top: 505px;
    left: 42px;
  }
}

@media (max-width: 575px) {
  .track-status__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .map,
  .preview-row__img,
  .requis__load,
  .team__item {
    border-radius: 10px;
  }
}

@media (max-width: 1199px) {
  .advant__area:nth-child(2) {
    grid-area: 1/2/2/3;
  }
}
@media (max-width: 1199px) {
  .advant__area:nth-child(3) {
    grid-area: 1/3/2/4;
  }
}
@media (max-width: 1199px) {
  .advant__area:nth-child(4) {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 1199px) {
  .advant__area:nth-child(5) {
    grid-area: 2/3/3/4;
  }
}
@media (max-width: 1199px) {
  .advant__area:nth-child(6) {
    grid-area: 3/1/4/2;
  }
}
@media (max-width: 1199px) {
  .advant__area:nth-child(7) {
    grid-area: 3/2/4/4;
  }
}
@media (max-width: 1199px) {
  .advant__area:nth-child(8) {
    grid-area: 2/1/3/2;
  }
}
@media (max-width: 1023px) {
  .advant__area:first-child {
    grid-area: 1/1/2/3;
  }
}

@media (max-width: 1199px) {
  .scheme__img {
    min-height: 1px;
  }
}
@media (max-width: 1199px) {
  .scheme__step {
    min-height: 1px;
    padding: 25px;
  }
}
@media (max-width: 1023px) {
  .scheme__step {
    padding: 25px 29px;
    border-radius: 30px;
  }
}
@media (max-width: 575px) {
  .scheme__step {
    padding: 20px 18px;
  }
}
@media (max-width: 374px) {
  .scheme__step {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .contacts__text a {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .contacts__title {
    margin-bottom: 6px;
    font-size: 18px;
  }
}
@media (max-width: 374px) {
  .contacts__text a, .contacts__title {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .requis__list {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .request__area:first-child {
    grid-area: 1/1/2/3;
  }
}
@media (max-width: 767px) {
  .request__area:nth-child(2) {
    grid-area: 3/1/4/2;
  }
}
@media (max-width: 767px) {
  .request__area:nth-child(3) {
    grid-area: 3/2/4/3;
  }
}
@media (max-width: 767px) {
  .request__area:nth-child(4) {
    grid-area: 2/1/3/3;
  }
}

@media (max-width: 1023px) {
  .btn.telegram-auth svg {
    width: 24px;
    height: 24px;
  }
}

.filter-menu__link.active {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #fff;
}
.filter-menu__link:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.filter-menu__link.active:hover {
  color: #fff;
  cursor: text;
}

@media (max-width: 480px) {
  .preview,
  .preview__img,
  .preview__img::before,
  .request__img,
  .s-request,
  .scheme__img,
  .scheme__step {
    border-radius: 10px;
  }
}

.hits__link.active,
.hits__link:hover {
  color: var(--secondary);
}

.car-card__btns .btn {
  width: 300px;
}

@media (max-width: 575px) {
  .entry .btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 1023px) {
  .entry__row.auto_info .form-group, .entry__row.auto_info .form-group:nth-child(1), .entry__row.auto_info .form-group:nth-child(2), .entry__row.auto_info .form-group:nth-child(3), .entry__row.auto_info .form-group:nth-child(4), .entry__row.auto_info .form-group:nth-child(5), .entry__row.auto_info .form-group:nth-child(6) {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media (max-width: 575px) {
  .entry__row.auto_info .form-group, .entry__row.auto_info .form-group:nth-child(1), .entry__row.auto_info .form-group:nth-child(2), .entry__row.auto_info .form-group:nth-child(3), .entry__row.auto_info .form-group:nth-child(4), .entry__row.auto_info .form-group:nth-child(5), .entry__row.auto_info .form-group:nth-child(6) {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .region-labels__item.hkd {
    top: 60px;
    left: 365px;
  }
}
@media (max-width: 767px) {
  .region-labels__item.thk {
    top: 205px;
    left: 320px;
  }
}
@media (max-width: 767px) {
  .region-labels__item.knt {
    top: 300px;
    left: 288px;
  }
}
@media (max-width: 767px) {
  .region-labels__item.chb {
    top: 294px;
    left: 221px;
  }
}
@media (max-width: 767px) {
  .region-labels__item.kns {
    top: 341px;
    left: 166px;
  }
}
@media (max-width: 767px) {
  .region-labels__item.chg {
    top: 324px;
    left: 86px;
  }
}
@media (max-width: 767px) {
  .region-labels__item.shk {
    top: 370px;
    left: 104px;
  }
}
@media (max-width: 767px) {
  .region-labels__item.ksh {
    top: 400px;
    left: 8px;
  }
}

@media (max-width: 1023px) {
  .advant__area:nth-child(2) {
    grid-area: 1/3/2/4;
  }
}
@media (max-width: 1023px) {
  .advant__area:nth-child(3) {
    grid-area: 2/1/3/2;
  }
}
@media (max-width: 1023px) {
  .advant__area:nth-child(4) {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 1023px) {
  .advant__area:nth-child(5) {
    grid-area: 2/3/3/4;
  }
}
@media (max-width: 1023px) {
  .advant__area:nth-child(6) {
    grid-area: 3/2/4/3;
  }
}
@media (max-width: 1023px) {
  .advant__area:nth-child(7) {
    grid-area: 3/3/4/4;
  }
}
@media (max-width: 1023px) {
  .advant__area:nth-child(8) {
    grid-area: 3/1/4/2;
  }
}

.footer .f-menu__title.active {
  color: var(--secondary);
}

.calc-toggle__btn.active,
.calc-toggle__btn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.blog-nav__btn.active {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #fff;
}

.car-sets__item.active,
.car-sets__item:hover {
  color: var(--secondary);
}

@media (max-width: 567px) {
  .region-labels__item.hkd {
    top: 35px;
    left: 220px;
  }
}
@media (max-width: 567px) {
  .region-labels__item.thk {
    top: 122px;
    left: 192px;
  }
}
@media (max-width: 567px) {
  .region-labels__item.knt {
    top: 183px;
    left: 172px;
  }
}
@media (max-width: 567px) {
  .region-labels__item.chb {
    top: 170px;
    left: 121px;
  }
}
@media (max-width: 567px) {
  .region-labels__item.kns {
    top: 223px;
    left: 109px;
  }
}
@media (max-width: 567px) {
  .region-labels__item.chg {
    top: 189px;
    left: 35px;
  }
}
@media (max-width: 567px) {
  .region-labels__item.shk {
    top: 223px;
    left: 51px;
  }
}
@media (max-width: 567px) {
  .region-labels__item.ksh {
    top: 243px;
    left: 4px;
  }
}

@media (max-width: 767px) {
  .advant__area:nth-child(2) {
    grid-area: 2/1/3/2;
  }
}
@media (max-width: 767px) {
  .advant__area:nth-child(3) {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 767px) {
  .advant__area:nth-child(4) {
    grid-area: 3/1/4/2;
  }
}
@media (max-width: 767px) {
  .advant__area:nth-child(5) {
    grid-area: 3/2/4/3;
  }
}
@media (max-width: 767px) {
  .advant__area:nth-child(6) {
    grid-area: 4/1/5/2;
  }
}
@media (max-width: 767px) {
  .advant__area:nth-child(7) {
    grid-area: 4/2/5/3;
  }
}
@media (max-width: 767px) {
  .advant__area:nth-child(8) {
    grid-area: 5/1/6/3;
  }
}

.btn-reset.active {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #fff;
}

.exchange-rates__link.active {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #fff;
}

.dynamics-nav__btn.active {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #fff;
}

.configuration-nav-item.active {
  border-left: 3px solid var(--secondary);
  margin-left: -3px;
  background-color: #fafafa;
}

.looking__item.active {
  background: var(--secondary);
}

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