@charset "UTF-8";
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: #f6f6f6 !important;
  font-family: var(--font-family) !important;
}
body a {
  text-decoration: none !important;
  transition: 0.3s ease all;
}
body svg {
  transition: 0.3s ease all;
}
body svg path {
  transition: 0.3s ease all;
}
body img {
  transition: 0.3s ease all;
}
body textarea {
  outline: 0;
}
body dt {
  font-weight: unset;
}
body dd {
  margin-bottom: 0;
}
body h1, body h2 {
  font-weight: 700;
  font-size: clamp(32px, 2vw, 36px) !important;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--second-family);
}
@media (max-width: 992px) {
  body h1, body h2 {
    text-align: start;
  }
}
body .splide__arrow {
  background: unset !important;
  transition: 0.3s ease all;
  background: transparent;
  width: 45px;
  height: 45px;
}
body .splide__arrow svg {
  width: 45px;
  height: 45px;
}
body .splide__arrow svg {
  fill: transparent;
}

:root {
  --font-family: "Manrope", sans-serif;
  --second-family: "Oswald", sans-serif;
  --third-family: "Montserrat", sans-serif;
  --font3: "Inter", sans-serif;
}

main {
  flex: 1 0 auto;
  margin-bottom: 40px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

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

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.row-vertical-gap-20p {
  row-gap: 20px;
}

.row-vertical-gap-30p {
  row-gap: 30px;
}

.gap-10p {
  gap: 10px;
}

.gap-20p {
  gap: 20px;
}

.gap-30p {
  gap: 30px;
}

.btn-inlineWhite.flex, .btn-red.flex {
  display: inline-flex;
  gap: 12px;
  justify-content: center;
}

.btn-inlineWhite {
  border: 1px solid #c62828;
  border-radius: 10px;
  padding: 12.5px 24px;
  background: #f6f6f6;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #c62828;
  font-family: var(--font-family);
  width: fit-content;
  transition: 0.3s ease all;
}
.btn-inlineWhite:hover {
  color: #f6f6f6;
  background: #c62828;
}
.btn-inlineWhite:hover svg path {
  stroke: #f6f6f6;
}

.btn-red {
  border: 1px solid #c62828;
  background: #c62828;
  border-radius: 10px;
  padding: 12.5px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff7e8;
  width: fit-content;
  transition: 0.3s ease all;
}
.btn-red.white-border {
  border-color: #f6f6f6;
}
.btn-red:hover {
  color: #c62828;
  background: #f6f6f6;
}
.btn-red:hover svg path {
  fill: #c62828;
}

.btn-inlineRed {
  border: 1px solid #c62828;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 12.5px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #c62828;
  width: fit-content;
  transition: 0.3s ease all;
}
.btn-inlineRed.white-border {
  border-color: #f6f6f6;
}
.btn-inlineRed.text-white {
  color: #f6f6f6 !important;
}
.btn-inlineRed:hover {
  background: #c62828 !important;
  color: #f6f6f6;
}

.subTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
}

.subText {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}

.link-reset {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #9ca3af;
}
.link-reset:hover {
  opacity: 0.6;
  color: #9ca3af;
}

.col-column-gap-30p {
  gap: 30px;
}

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #f6f6f6;
  padding: 14px 0px;
  list-style: none;
  display: none;
  z-index: 20;
}
.has-dropdown .dropdown a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.has-dropdown .dropdown a span {
  padding: 5px 20px;
}
.has-dropdown .dropdown a:hover {
  background: #c62828;
  color: #fff;
}

.has-dropdown:hover .dropdown {
  display: block;
}

@media (max-width: 992px) {
  .has-dropdown {
    position: relative;
  }
  .has-dropdown .dropdown {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }
  .has-dropdown.active .dropdown {
    max-height: 500px;
    padding: 14px 0;
  }
  .has-dropdown:hover .dropdown {
    display: block;
  }
}
.breadcrumbs {
  margin: 30px 0;
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
.breadcrumbs ul li {
  position: relative;
}
.breadcrumbs ul li:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -17px;
  padding-right: 10px;
  content: "";
  display: inline-block;
  width: 3px;
  height: 5px;
  margin-left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='3' height='5' viewBox='0 0 3 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.532483 0.0905455C0.409901 -0.0309477 0.212039 -0.0300649 0.0905455 0.0925172C-0.0309477 0.215099 -0.0300649 0.412961 0.0925172 0.534455L0.827088 1.2625C1.12521 1.55797 1.32971 1.76132 1.46809 1.93363C1.6025 2.101 1.64861 2.20851 1.66089 2.30479C1.66859 2.36525 1.66859 2.42642 1.66089 2.48688C1.64861 2.58316 1.6025 2.69067 1.46809 2.85804C1.32971 3.03034 1.12521 3.23369 0.827088 3.52917L0.0925172 4.25721C-0.0300649 4.37871 -0.0309477 4.57657 0.0905455 4.69915C0.212039 4.82173 0.409901 4.82261 0.532483 4.70112L1.28029 3.95996C1.56194 3.68082 1.79214 3.45267 1.95539 3.24939C2.12516 3.03801 2.24804 2.82345 2.28087 2.5659C2.29527 2.45297 2.29527 2.33869 2.28087 2.22577C2.24804 1.96822 2.12516 1.75366 1.95539 1.54227C1.79214 1.33899 1.56194 1.11085 1.28029 0.831706L0.532483 0.0905455Z' fill='%239CA3AF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.breadcrumbs ul li a {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #9ca3af;
}
.breadcrumbs ul li a:hover {
  color: #c62828;
}
.breadcrumbs ul li span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #2a2a2a;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 10;
}
.header .dropdown-menu {
  padding: 0;
  border-radius: 10px;
}
.header .dropdown-menu .dropdown-item {
  padding: 10px;
  border-radius: 10px;
}
.header .dropdown-menu .dropdown-item:hover {
  background-color: #ff8989;
}
.header__lang-btn {
  gap: 5px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  padding: 9px 13px;
}
.header__offcanvas {
  height: fit-content !important;
}
.header__offcanvas-header {
  background: #c62828;
}
.header__offcanvas-header .btn {
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  padding: 12px;
}
.header__offcanvas-body {
  background: #f6f6f6;
}
@media (max-width: 992px) {
  .header__offcanvas .header__links {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 20px;
  }
  .header__offcanvas .header__links li {
    width: 100%;
  }
  .header__offcanvas .header__up-socs {
    display: flex;
  }
  .header__offcanvas .header__up-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .header__offcanvas .header__up-mobFlex {
    display: flex;
    gap: 15px;
  }
}
.header__up {
  background: #c62828;
  padding: 16px 0px;
}
@media (max-width: 992px) {
  .header__up {
    padding: 10px 0px;
  }
}
.header__up-logo:hover {
  transform: scale(1.02);
}
@media (max-width: 992px) {
  .header__up-logo img {
    height: 28px;
  }
}
.header__up-currency {
  display: flex;
  align-items: center;
  justify-content: end;
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  padding: 3px 13px;
  gap: 10px;
  cursor: pointer;
  background: #c62828;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #f6f6f6;
}
.header__up-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__up-socs {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}
.header__up-socs a {
  display: flex;
}
.header__up-socs a:hover {
  opacity: 0.6;
}
@media (max-width: 992px) {
  .header__up-socs {
    display: none;
  }
}
.header__up-content {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
.header__up-lang {
  display: flex;
  align-items: center;
  justify-content: end;
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  padding: 6px 13px;
  gap: 10px;
  cursor: pointer;
  background: #c62828;
}
.header__up-lang-name {
  display: flex;
  align-items: center;
  gap: 5px;
  border-right: 1px solid #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
  font-family: var(--font-family);
}
.header__up-lang-name span {
  display: block;
  padding-right: 10px;
}
.header__up-lang-val {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__down {
  padding: 10px 0;
  background: #f6f6f6;
}
.header__down-btnBlock {
  display: flex;
  justify-content: end;
  gap: 30px;
}
.header__down-btnBlock a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .header__down-btnBlock span {
    display: none;
  }
}
@media (max-width: 992px) {
  .header__down-btnBlock {
    justify-content: center;
    width: 100%;
    gap: 17px;
  }
  .header__down-btnBlock a {
    font-size: 14px;
    padding: 12px 10px;
  }
}
.header__down-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.header__links {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .header__links {
    display: none;
  }
}
.header__links li {
  position: relative;
}
.header__links a {
  display: inline-flex;
  font-weight: 400;
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--font-family);
  gap: 5px;
  align-items: center;
  width: 100%;
}
@media (max-width: 992px) {
  .header__links a {
    font-size: 16px;
  }
}
.header__links a span {
  display: inline-block;
}
.header__links a.active {
  color: #c62828;
}
.header__links a:hover {
  color: #c62828;
}
.header__links a:hover svg path {
  fill: #c62828;
}
.header__btnCanvas {
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  padding: 12px 13px;
}
@media (min-width: 993px) {
  .header__btnCanvas {
    display: none;
  }
}

.section__mainBanner.pagination-classicPos .splide__pagination {
  bottom: 33px;
}
@media (max-width: 992px) {
  .section__mainBanner-img-desk {
    display: none;
  }
}
@media (min-width: 993px) {
  .section__mainBanner-img-mob {
    display: none;
  }
}
.section__mainBanner-item {
  height: 620px;
  position: relative;
}
.section__mainBanner-item img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__mainBanner-content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.section__mainBanner-title {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 120%;
  color: #c62828;
  font-family: var(--second-family);
  margin-bottom: 30px;
}
.section__mainBanner-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 140%;
  color: #f6f6f6;
  margin-bottom: 50px;
}
.section__mainBanner .splide__pagination {
  bottom: 93px;
}
.section__mainBanner .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  opacity: 1;
  width: 15px;
  height: 15px;
  background: #9ca3af;
}
.section__mainBanner .splide__pagination .splide__pagination__page.is-active {
  background: #c62828;
}
.section__bannerSections {
  position: relative;
  margin-bottom: 60px;
  top: -40px;
}
@media (max-width: 992px) {
  .section__bannerSections .section__bannerSections-row {
    flex-wrap: unset !important;
    width: 100%;
    overflow-y: scroll;
  }
  .section__bannerSections .section__bannerSections-row > div {
    width: 298px;
  }
}
.section__bannerSections-item {
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2a2a2a;
  font-family: var(--font-family);
  align-items: center;
  gap: 15px;
  box-shadow: 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #f6f6f6;
}
.section__bannerSections-item img {
  width: 79px;
  height: 48px;
  object-fit: contain;
}
.section__bannerSections-item:hover {
  border-color: #c62828;
  color: #2a2a2a;
  box-shadow: rgb(198, 40, 40) 0px 0px 15px 3px;
}
.section__formModelAuto {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__formModelAuto {
    margin-bottom: 100px;
  }
}
.section__formModelAuto.whiteBg form {
  background: unset;
  box-shadow: unset;
  padding: 0;
}
.section__formModelAuto.whiteBg form .filter__label {
  color: #2a2a2a;
}
.section__formModelAuto.whiteBg form .filter__range, .section__formModelAuto.whiteBg form .filter__input {
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 12px;
}
.section__formModelAuto.whiteBg form input {
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
}
.section__formModelAuto.whiteBg form .filter__option-radioBox {
  border-color: #c62828;
  color: #c62828;
}
.section__formModelAuto.whiteBg form .filter__input-radionButton:checked + .filter__option-radioBox {
  color: #f6f6f6;
  background: #c62828;
}
.section__formModelAuto-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #f6f6f6;
  font-family: var(--font-family);
  margin-bottom: 15px;
}
.section__formModelAuto-col {
  margin-bottom: 30px;
}
.section__formModelAuto-col:nth-last-child(-n+4) {
  margin-bottom: 0px;
}
@media (max-width: 992px) {
  .section__formModelAuto-col:nth-last-child(-n+4) {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .section__formModelAuto-col:last-child {
    margin-bottom: 0px !important;
  }
}
.section__formModelAuto form {
  box-shadow: 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
}
.section__formModelAuto label {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__formModelAuto label span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #f6f6f6;
  font-family: var(--font-family);
}
.section__formModelAuto button[type=submit] {
  height: 49px;
}
.section__items {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__items {
    margin-bottom: 100px;
  }
}
.section__items.search {
  margin-bottom: 115px;
}
.section__items-flexBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}
@media (max-width: 768px) {
  .section__items-flexBlock {
    flex-direction: column;
    align-items: start;
  }
  .section__items-flexBlock .btn-red {
    width: 100%;
  }
}
.section__items .splide__arrow.splide__arrow--prev {
  display: none;
}
.section__items .splide__pagination {
  bottom: -50px;
}
.section__items .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  opacity: 1;
  width: 15px;
  height: 15px;
  background: #9ca3af;
}
.section__items .splide__pagination .splide__pagination__page.is-active {
  background: #c62828;
}
.section__items-block {
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.35);
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.section__items-block-header {
  margin-bottom: 5px;
}
.section__items-block-blockVal {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__items-block-flexVal {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.section__items-block-itemVal {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.section__items-block-itemVal img {
  width: 24px;
  height: 24px;
}
.section__items-block-itemVal dt, .section__items-block-itemVal dd {
  display: block;
}
.section__items-block-itemVal dd {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2a2a2a;
  font-family: var(--font-family);
  margin-bottom: 0;
}
.section__items-block .btn-red {
  margin-bottom: 15px;
}
.section__items-block-price {
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2a2a2a;
  font-family: var(--font-family);
  margin-bottom: 30px;
}
.section__items-block-content {
  padding: 15px 14px;
}
.section__items-block-sticker {
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 18px;
  padding: 3px 10px;
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  font-family: var(--font-family);
}
.section__items-block-sticker.available, .section__items-block-sticker.red {
  background: #c62828;
  color: #f6f6f6;
}
.section__items-block-sticker.un-order {
  background: #9ca3af;
  color: #2a2a2a;
}
.section__items-block-sticker.blue {
  background: #2c56a2;
  color: #f6f6f6;
}
.section__items-block-sticker.yellow {
  color: #2a2a2a;
  background: #ffd964;
}
.section__items-block-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 20px;
}
.section__items-block-wish {
  position: absolute;
  top: 15px;
  right: 15px;
}
.section__items-block-wish:hover svg path {
  fill: black;
}
.section__items-block-img img {
  width: 100%;
  max-height: 255px;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border-bottom: 0.2px solid rgba(156, 163, 175, 0.35);
  border-radius: 10px;
}
.section__newAuto {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__newAuto {
    margin-bottom: 100px;
  }
}
.section__newAuto .row {
  row-gap: 30px;
}
.section__newAuto.search {
  margin-bottom: 100px;
  padding: 50px 0;
}
.section__newAuto.search .section__newAuto-block {
  height: fit-content;
}
.section__newAuto.search .section__newAuto-block-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__newAuto-form {
  margin-bottom: 50px;
}
.section__newAuto-form select {
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
}
.section__newAuto-form .filter__label {
  color: #2a2a2a;
}
.section__newAuto-form-result {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__newAuto-form .filter__range {
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
}
.section__newAuto-block {
  display: block;
  height: 100%;
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  font-family: var(--font-family);
  margin-bottom: 20px;
  position: relative;
  transition: 0.3s ease all;
}
.section__newAuto-block:hover .section__newAuto-block-price span svg {
  transform: translateX(-20px) rotate(39deg);
}
.section__newAuto-block-article {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9ca3af;
}
.section__newAuto-block-img img {
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 210px;
  object-fit: cover;
  aspect-ratio: 1;
}
.section__newAuto-block-content {
  padding: 20px 15px 15px 15px;
}
.section__newAuto-block-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 20px;
}
.section__newAuto-block-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: 0.3s ease all;
}
.section__newAuto-block-price span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #c62828;
}
.section__newAuto-block-price span strong {
  font-size: 24px;
  text-transform: uppercase;
}
.section__newAuto-block-price span svg {
  transition: 0.3s ease all;
  position: relative;
}
.section__newAuto-block-count {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9ca3af;
}
.section__newAuto .splide__pagination {
  bottom: -50px;
}
.section__newAuto .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  opacity: 1;
  width: 15px;
  height: 15px;
  background: #9ca3af;
}
.section__newAuto .splide__pagination .splide__pagination__page.is-active {
  background: #c62828;
}
.section__bigForm {
  margin-bottom: 150px;
  padding: 50px 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .section__bigForm {
    margin-bottom: 100px;
  }
}
.section__bigForm.whiteForm form {
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 20px;
}
.section__bigForm.whiteForm form button[type=submit]:hover {
  border: 1px solid #c62828 !important;
}
.section__bigForm.whiteForm form .filter__label {
  color: #2a2a2a;
}
.section__bigForm.bg-red .btn-red.flex {
  width: fit-content;
}
.section__bigForm.bg-red .section__bigForm-img {
  right: 0;
  top: 0;
  bottom: 0;
}
.section__bigForm.bg-red .section__bigForm-img img {
  height: 100%;
}
.section__bigForm.black-bg {
  background: #2a2a2a;
}
.section__bigForm.black-bg .filter__option-radioBox {
  border-color: #d61f1f;
  color: #d61f1f;
}
.section__bigForm.black-bg .filter__input-radionButton:checked + .filter__option-radioBox {
  background: #d61f1f;
  color: #f6f6f6;
}
.section__bigForm-socsContent .border-whiteLinks a {
  border: 1px solid #f6f6f6;
  border-radius: 10px;
}
.section__bigForm-socsContent-flex {
  display: flex;
  align-items: center;
  gap: 19px;
}
@media (max-width: 768px) {
  .section__bigForm-socsContent-flex {
    flex-direction: column;
  }
  .section__bigForm-socsContent-flex .btn-red.flex {
    width: 100%;
  }
  .section__bigForm-socsContent-flex.smallSocs {
    flex-direction: row;
  }
}
.section__bigForm-socsContent-flex.smallSocs a:hover {
  opacity: 0.6;
}
.section__bigForm .filter__label {
  text-transform: unset;
}
.section__bigForm-checkbox {
  display: flex;
  margin-top: 20px;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
  font-family: var(--font-family);
}
.section__bigForm-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.section__bigForm-checkbox-box {
  display: block;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  margin-top: 3px;
  border: 0.5px solid #f6f6f6;
  border-radius: 5px;
  background: #d8c5c1;
  position: relative;
  transition: all 0.25s ease;
}
.section__bigForm-checkbox input:checked + .section__bigForm-checkbox-box {
  background: #c62828;
  border-color: #ffffff;
}
.section__bigForm-checkbox-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 9px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  background-image: url("data:image/svg+xml;utf8,<svg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M11.5819 0.800651L4.0819 8.30065C4.03837 8.34423 3.98667 8.37881 3.92976 8.4024C3.87286 8.42599 3.81186 8.43813 3.75026 8.43813C3.68866 8.43813 3.62766 8.42599 3.57076 8.4024C3.51385 8.37881 3.46215 8.34423 3.41862 8.30065L0.13737 5.0194C0.0494134 4.93144 0 4.81215 0 4.68776C0 4.56337 0.0494134 4.44408 0.13737 4.35612C0.225327 4.26816 0.344621 4.21875 0.469011 4.21875C0.5934 4.21875 0.712695 4.26816 0.800651 4.35612L3.75026 7.30632L10.9186 0.13737C11.0066 0.0494132 11.1259 0 11.2503 0C11.3747 0 11.4939 0.0494132 11.5819 0.13737C11.6699 0.225326 11.7193 0.344621 11.7193 0.469011C11.7193 0.5934 11.6699 0.712695 11.5819 0.800651Z' fill='%23F6F6F6'/></svg>");
}
.section__bigForm-checkbox input:checked + .section__bigForm-checkbox-box::after {
  opacity: 1;
}
.section__bigForm-checkbox:hover .section__bigForm-checkbox-box {
  transform: scale(1.05);
}
.section__bigForm .header__up-lang {
  display: flex;
  justify-content: space-between;
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  color: #2a2a2a;
  height: 48px;
}
.section__bigForm .header__up-lang span {
  color: #2a2a2a;
}
.section__bigForm-content {
  position: relative;
  z-index: 2;
}
.section__bigForm-img {
  position: absolute;
  right: -150px;
  z-index: 1;
}
.section__bigForm-img.non-aspect img {
  aspect-ratio: unset;
}
@media (max-width: 992px) {
  .section__bigForm-img.imgMob {
    display: block;
    position: unset;
    margin-top: 50px;
  }
  .section__bigForm-img.imgMob img {
    width: 100%;
  }
}
.section__bigForm-img img {
  object-fit: contain;
  aspect-ratio: 1;
}
@media (max-width: 992px) {
  .section__bigForm-img {
    display: none;
  }
}
.section__bigForm-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(32px, 2vw, 36px);
  line-height: 140%;
  color: #f6f6f6;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .section__bigForm-title {
    text-align: center;
    padding: 0 20px;
  }
}
.section__bigForm-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
  font-family: var(--font-family);
  margin-bottom: 30px;
}
.section__bigForm.insideItems {
  margin: 70px 0 100px;
}
.section__bigForm.bigCar_2 .section__bigForm-img {
  right: 0;
  left: 0;
}
.section__bigForm.bigCar_2 .section__bigForm-img img {
  aspect-ratio: 0;
}
.section__about {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__about {
    margin-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .section__about-videoBlock {
    margin-bottom: 28px;
  }
}
.section__about-slider {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .section__about-thumb {
    margin-bottom: 30px;
  }
}
.section__about-thumb img {
  width: 100%;
  height: 147px;
  border-radius: 10px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .section__about-thumb img {
    height: 150px;
  }
}
@media (max-width: 576px) {
  .section__about-thumb img {
    height: 130px;
  }
}
.section__about-thumb .splide__slide {
  border-radius: 10px !important;
  border: unset !important;
}
@media (max-width: 992px) {
  .section__about-thumb .splide__slide {
    height: fit-content !important;
  }
}
.section__about-thumb .splide__slide.is-active {
  border: unset !important;
  opacity: 0.8;
}
.section__about-col {
  margin-bottom: 30px;
}
.section__about-col:nth-last-child(-n+2) {
  margin-bottom: 0px;
}
@media (max-width: 992px) {
  .section__about-col:nth-last-child(-n+2) {
    margin-bottom: 30px;
  }
}
.section__about-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--font-family);
  margin-bottom: 31px;
}
.section__about-itemVideo {
  position: relative;
}
.section__about-itemVideo video {
  border-radius: 10px;
  width: 100%;
  height: 300px;
}
@media (max-width: 992px) {
  .section__about-itemVideo video {
    height: 100%;
  }
}
.section__about-itemVideo button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section__about-flex {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.section__about-flex img {
  flex: 1;
  height: 147px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .section__about-flex img {
    height: 71px;
  }
}
.section__about-item {
  border: 0.2px solid #c62828;
  border-radius: 10px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--font-family);
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .section__about-item {
    margin: 0 15px;
  }
}
.section__about-item dt {
  word-break: break-word;
  font-weight: 700;
  line-height: 120%;
  font-size: clamp(16px, 1.4vw, 20px);
}
.section__about-item dd {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
}
.section__about-item dt, .section__about-item dd {
  display: block;
}
.section__about-item-flex {
  display: flex;
  flex-direction: column;
}
.section__howItWork {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 45px 0 78px;
  margin-bottom: 150px;
}
.section__howItWork.whiteCards .section__howItWork-item {
  background: #f6f6f6;
}
.section__howItWork.whiteCards .section__howItWork-item .section__howItWork-svg {
  display: none;
}
.section__howItWork.whiteCards .section__howItWork-item span {
  color: #2a2a2a;
}
@media (max-width: 992px) {
  .section__howItWork {
    margin-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .section__howItWork-col {
    margin-bottom: 20px;
  }
}
.section__howItWork-title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: #f6f6f6;
  font-family: var(--second-family);
  text-align: center;
}
.section__howItWork-svg {
  position: absolute;
  top: 50%;
  right: -17%;
  height: 5px;
  display: flex;
}
@media (max-width: 992px) {
  .section__howItWork-svg.item1 {
    right: -30px;
  }
  .section__howItWork-svg.item2 {
    top: 100%;
    right: 0;
    left: 0;
    transform: rotate(90deg);
    display: flex;
    justify-content: center;
  }
  .section__howItWork-svg.item3 {
    top: 100%;
    right: 0;
    left: 0;
    transform: rotate(90deg);
    display: flex;
    justify-content: center;
  }
  .section__howItWork-svg.item4 {
    right: 0;
    left: -30px;
  }
  .section__howItWork-svg.item5 {
    right: -30px;
  }
}
.section__howItWork-item {
  height: 100%;
  box-shadow: 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #c62828;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  position: relative;
}
.section__howItWork-item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  color: #f6f6f6;
  font-family: var(--font-family);
}
.section__howItWork-item img {
  height: 62px;
}
.section__howItWork_2 {
  margin-bottom: 100px;
}
.section__howItWork_2-warn-block {
  background: #f6f6f6;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  height: 100%;
}
.section__howItWork_2-warn-block img {
  width: 54px;
  height: 50px;
  object-fit: contain;
}
.section__howItWork_2-redBlock {
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section__howItWork_2-redBlock .btn-red {
  border-color: #f6f6f6;
}
@media (max-width: 992px) {
  .section__howItWork_2-redBlock {
    margin-top: 20px;
  }
  .section__howItWork_2-redBlock h2 {
    text-align: start;
  }
}
.section__howItWork_2-redBlock h2, .section__howItWork_2-redBlock .subTitle, .section__howItWork_2-redBlock .subText {
  color: #f6f6f6;
}
.section__howItWork_2-redBlock-block {
  border-bottom: 0.2px solid rgba(246, 246, 246, 0.3);
  padding-bottom: 15px;
  padding-top: 15px;
}
.section__howItWork_2-redBlock-block .subTitle {
  margin-bottom: 20px;
}
.section__howItWork_2-redBlock-block:first-child {
  padding-top: 0;
}
.section__reviews .splide__pagination {
  bottom: -50px;
}
.section__reviews .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  opacity: 1;
  width: 15px;
  height: 15px;
  background: #9ca3af;
}
.section__reviews .splide__pagination .splide__pagination__page.is-active {
  background: #c62828;
}
.section__reviews-slider {
  margin-bottom: 100px;
}
.section__reviews-videoItem {
  cursor: pointer;
}
.section__reviews-videoItem:hover .section__reviews-videoItem-svgPlay {
  transform: scale(1.1);
}
.section__reviews-videoItem-svgPlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 0.3s ease all;
}
.section__reviews-videoItem-img {
  position: relative;
  margin-bottom: 15px;
}
.section__reviews-videoItem-img img {
  border-radius: 10px;
  height: 297px;
  width: 100%;
  object-fit: cover;
}
.section__reviews-videoItem-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #2a2a2a;
}
.section__reviews-item {
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 20px;
  display: block;
}
.section__reviews-item:hover {
  box-shadow: 0px 0px 15px 3px #c62828;
}
.section__reviews-item-img {
  margin-bottom: 10px;
}
.section__reviews-item-img img {
  height: 219px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.section__reviews-item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__reviews-item-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}
.section__reviews-item-name {
  margin-bottom: 0 !important;
}
.section__reviews-item-text, .section__reviews-item-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical;
}
.section__reviews-item-link {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #c62828;
}
.section__howWeWork-row {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__howWeWork-row {
    margin-bottom: 100px;
  }
}
.section__howWeWork-item {
  background: #f6f6f6;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
}
.section__howWeWork-item.small {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__howWeWork-item.small img {
  margin-bottom: 10px;
}
.section__howWeWork-item img {
  margin-bottom: 20px;
  object-fit: contain;
}
.section__howWeWork-item-subTitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #2a2a2a;
}
.section__howWeWork-item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 15px;
}
.section__howWeWork-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__documents {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__documents {
    margin-bottom: 100px;
  }
}
.section__documents-item {
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  align-items: center;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .section__documents-item .subTitle {
    font-size: 14px;
  }
  .section__documents-item .subText {
    font-size: 12px;
  }
}
.section__documents-item-head {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 992px) {
  .section__documents-item-head {
    width: 75%;
  }
}
.section__documents-item-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__documents-item-links a {
  display: flex;
  gap: 7px;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__documents-item-links a:hover {
  color: #2a2a2a;
  opacity: 0.6;
}
.section__team {
  padding: 50px 0;
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__team {
    margin-bottom: 100px;
  }
}
.section__team h2, .section__team .subText {
  color: #f6f6f6;
}
.section__team-flexBlocks {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.section__team-block-img {
  margin-bottom: 20px;
  text-align: center;
}
.section__team-block-img img {
  border-radius: 10px;
  width: 100%;
  height: 337px;
  object-fit: contain;
}
.section__team-block-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #f6f6f6;
  margin-bottom: 15px;
}
.section__team-block-prop {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #f6f6f6;
}
.section__address {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__address {
    margin-bottom: 100px;
  }
}
.section__address-block {
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 30px;
}
@media (max-width: 992px) {
  .section__address-block {
    padding: 20px;
  }
  .section__address-block .section__bigForm-socsContent-flex .btn-red.flex {
    width: fit-content;
  }
}
.section__address-itemFlex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section__address-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 10px;
}
.section__address-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__address-item {
  display: flex;
  gap: 15px;
}
.section__address-item img {
  width: 23px;
  height: 33px;
}
.section__feedback {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__feedback {
    margin-bottom: 100px;
  }
  .section__feedback .row-vertical-gap-30p.flex-rev {
    flex-direction: column-reverse;
  }
}
.section__feedback-block {
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 20px;
}
.section__feedback-block-subText {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #9ca3af;
}
.section__feedback-block-socsFlex {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .section__feedback-block-socsFlex {
    margin-bottom: 20px;
  }
}
.section__feedback-block-socsFlex a {
  display: flex;
  justify-content: center;
  width: 100%;
}
.section__feedback-block-socsFlex a:hover {
  opacity: 0.6;
}
@media (max-width: 475px) {
  .section__feedback-block-socsFlex a {
    width: 80px;
    height: 78px;
  }
  .section__feedback-block-socsFlex a svg {
    width: 80px;
    height: 78px;
  }
}
.section__feedback-block-socsFlex a svg {
  width: 100%;
}
.section__feedback-block .filter__label {
  color: #2a2a2a;
  text-transform: none;
}
.section__feedback-block .section__bigForm-checkbox {
  margin-top: 0;
}
.section__feedback-block .section__bigForm-checkbox .section__bigForm-checkbox-box {
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
}
.section__feedback-block .section__bigForm-checkbox .section__bigForm-checkbox-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__suitable {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__suitable {
    margin-bottom: 100px;
  }
}
.section__suitable-item {
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 20px 18px;
  background: #f6f6f6;
  transition: 0.3s ease all;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section__suitable-item:hover {
  box-shadow: 0px 0px 15px 3px rgba(156, 163, 175, 0.3);
}
.section__suitable-item:hover .section__suitable-item-hiddenText {
  transform: translateY(0);
  opacity: 1;
}
.section__suitable-item img {
  height: 122px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}
.section__suitable-item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #2a2a2a;
}
.section__suitable-item-hiddenText {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.35s ease;
  z-index: 3;
}
.section__suitable-item-hiddenText span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__news {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__news {
    margin-bottom: 100px;
  }
}
.section__news .splide__pagination {
  bottom: -50px;
}
.section__news .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  opacity: 1;
  width: 15px;
  height: 15px;
  background: #9ca3af;
}
.section__news .splide__pagination .splide__pagination__page.is-active {
  background: #c62828;
}
.section__news-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .section__news-flex {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .section__news-flex a {
    width: 100%;
  }
}
.section__news-flex h2 {
  margin-bottom: 0;
}
.section__news-item {
  border-radius: 10px;
  padding: 20px;
  height: 360px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 15px;
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
}
.section__news-item:hover .section__news-item-title, .section__news-item:hover .section__news-item-date {
  transform: translateY(-20px);
}
.section__news-item-shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 32.33%, rgba(102, 102, 102, 0.8) 100%);
}
.section__news-item-title, .section__news-item-date {
  position: relative;
  z-index: 2;
  transition: 0.3s ease all;
}
.section__news-item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #f6f6f6;
}
.section__news-item-date {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
}
.section__advantage {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__advantage {
    margin-bottom: 100px;
  }
}
.section__advantage-col {
  margin-bottom: 30px;
}
.section__advantage-item {
  background: #f6f6f6;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-family);
  height: 100%;
}
.section__advantage-item img {
  margin-bottom: 20px;
  object-fit: contain;
  aspect-ratio: 1;
  height: 110px;
  width: 100%;
}
.section__advantage-item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  color: #2a2a2a;
  margin-bottom: 15px;
}
.section__advantage-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #2a2a2a;
}
.section__advantage-redItem {
  box-shadow: 1px 1px 15px 0 rgba(156, 163, 175, 0.25);
  background: #c62828;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section__advantage-redItem-title {
  font-weight: 700;
  font-size: clamp(25px, 1.4vw, 32px);
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;
}
.section__advantage-redItem-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #f6f6f6;
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  padding: 14px 24px;
}
.section__advantage-redItem-btn:hover {
  color: #c62828;
  background: #f6f6f6;
}
.section__faq {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__faq {
    margin-bottom: 100px;
  }
}
.section__ytVideo {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__ytVideo {
    margin-bottom: 100px;
  }
}
.section__ytVideo .splide__pagination {
  bottom: -50px;
}
.section__ytVideo .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  opacity: 1;
  width: 15px;
  height: 15px;
  background: #9ca3af;
}
.section__ytVideo .splide__pagination .splide__pagination__page.is-active {
  background: #c62828;
}
.section__ytVideo-item:hover .section__ytVideo-svg {
  transform: scale(1.1);
}
.section__ytVideo-img {
  position: relative;
}
.section__ytVideo-img img {
  width: 100%;
  height: 195px;
  border-radius: 10px;
  object-fit: cover;
}
.section__ytVideo-img.red img {
  border: 1px solid #c62828;
}
.section__ytVideo-img.red path {
  fill: #c62828;
}
.section__ytVideo-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease all;
}
.section__ytVideo-title {
  margin-top: 18px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #9ca3af;
  font-family: var(--font-family);
}
.section__ourSocs {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__ourSocs {
    margin-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .section__ourSocs-titleBlock {
    margin-bottom: 30px;
  }
  .section__ourSocs-titleBlock svg {
    width: 100%;
  }
}
.section__ourSocs-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 140%;
  color: #3c3d40;
  font-family: var(--second-family);
}
.section__ourSocs-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}
.section__ourSocs-item {
  background: #f6f6f6;
  width: 100%;
  min-width: 188px;
  height: 100%;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.5px solid #c62828;
  border-radius: 10px;
}
.section__ourSocs-item:hover {
  opacity: 0.6;
}
@media (max-width: 992px) {
  .section__ourSocs-item {
    min-width: 155px;
    min-height: 155px;
    height: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 350px) {
  .section__ourSocs-item {
    min-width: unset;
  }
}
.section__autoProbegDetail {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail {
    margin-bottom: 100px;
  }
}
.section__autoProbegDetail.inspect .section__autoProbegDetail-slider .splide__slide img {
  height: 469px;
}
@media (max-width: 576px) {
  .section__autoProbegDetail.inspect .section__autoProbegDetail-slider .splide__slide img {
    height: 201px;
  }
}
.section__autoProbegDetail.inspect .section__autoProbegDetail-slider .splide__pagination {
  bottom: 20px;
}
.section__autoProbegDetail.inspect .section__autoProbegDetail-slider .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  opacity: 1;
  width: 15px;
  height: 15px;
  background: #9ca3af;
}
.section__autoProbegDetail.inspect .section__autoProbegDetail-slider .splide__pagination .splide__pagination__page.is-active {
  background: #c62828;
}
.section__autoProbegDetail.inspect .section__autoProbegDetail-thumb .splide__slide {
  height: fit-content !important;
}
.section__autoProbegDetail.inspect .section__autoProbegDetail-thumb .splide__slide img {
  height: 170px;
}
@media (max-width: 576px) {
  .section__autoProbegDetail.inspect .section__autoProbegDetail-thumb .splide__slide img {
    height: 96px;
  }
}
.section__autoProbegDetail__tabs {
  margin-bottom: 150px;
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 30px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail__tabs {
    padding: 20px 20px 0;
  }
}
.section__autoProbegDetail__tabs-pane {
  display: none;
}
.section__autoProbegDetail__tabs-pane.active {
  display: block;
}
.section__autoProbegDetail__tabs-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail__tabs-nav {
    padding-bottom: 15px;
    overflow-x: auto;
  }
}
.section__autoProbegDetail__tabs-nav::-webkit-scrollbar {
  width: 14px;
}
.section__autoProbegDetail__tabs-nav::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #c62828;
}
.section__autoProbegDetail__tabs-nav::-webkit-scrollbar-track {
  border-radius: 10px;
  fill: #f6f6f6;
  box-shadow: inset 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
}
.section__autoProbegDetail__tabs-btn {
  border: 0;
  padding: 0;
  background: unset;
  outline: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
  min-width: fit-content;
}
.section__autoProbegDetail__tabs-btn.active {
  color: #c62828;
}
.section__autoProbegDetail-exchange {
  margin-bottom: 30px;
}
.section__autoProbegDetail-exchange span {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 15px;
}
.section__autoProbegDetail-exchange-flex {
  display: flex;
  align-items: center;
  gap: 29px;
}
@media (max-width: 768px) {
  .section__autoProbegDetail-exchange-flex {
    flex-direction: column;
    align-items: unset;
  }
}
.section__autoProbegDetail-exchange-flex input {
  width: 189px !important;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
}
@media (max-width: 768px) {
  .section__autoProbegDetail-exchange-flex input {
    width: 100% !important;
  }
}
.section__autoProbegDetail-approximate {
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 20px 30px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-approximate {
    padding: 20px;
  }
}
.section__autoProbegDetail-approximate-row {
  border-top: 0.2px solid rgba(156, 163, 175, 0.3);
  border-bottom: 0.2px solid rgba(156, 163, 175, 0.3);
  position: relative;
  margin-left: unset !important;
  margin-right: unset !important;
}
.section__autoProbegDetail-approximate-row:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  border-left: 0.2px solid rgba(156, 163, 175, 0.3);
  height: 100%;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-approximate-row:after {
    content: unset;
  }
}
.section__autoProbegDetail-approximate-row .section__autoProbegDetail-approximate-col .section__autoProbegDetail-approximate-item:last-child {
  border-bottom: 0;
}
.section__autoProbegDetail-approximate-row div {
  padding-left: unset;
  padding-right: unset;
}
.section__autoProbegDetail-approximate-row div:nth-child(odd) .section__autoProbegDetail-approximate-item {
  padding: 15px 0px 15px;
  margin-right: 15px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-approximate-row div:nth-child(odd) .section__autoProbegDetail-approximate-item {
    margin-right: 0;
  }
}
.section__autoProbegDetail-approximate-row div:nth-child(even) .section__autoProbegDetail-approximate-item {
  padding: 15px 0px 15px;
  margin-left: 15px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-approximate-row div:nth-child(even) .section__autoProbegDetail-approximate-item {
    margin-left: 0;
  }
}
.section__autoProbegDetail-approximate-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 18px;
}
.section__autoProbegDetail-approximate-price {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
  color: #c62828;
  min-width: 35%;
  text-align: end;
}
.section__autoProbegDetail-approximate-item {
  padding: 15px 10px;
  border-bottom: 0.2px solid rgba(156, 163, 175, 0.3);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__autoProbegDetail-approximate-item input[type=number] {
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  border-radius: 5px;
  width: 93px;
  padding: 4px 3px;
  text-align: end;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
@media (max-width: 768px) {
  .section__autoProbegDetail-approximate-item .filter__select-flags {
    width: 100% !important;
  }
}
.section__autoProbegDetail-approximate-item-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-approximate-item-flex {
    align-items: start;
  }
}
.section__autoProbegDetail-approximate-item .section__bigForm-checkbox {
  align-items: center;
  margin-top: 0px;
}
.section__autoProbegDetail-approximate-item .section__bigForm-checkbox-box {
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
}
.section__autoProbegDetail-approximate-item .section__bigForm-checkbox-text {
  color: #2a2a2a;
}
.section__autoProbegDetail-approximate-item-list {
  margin: 0;
  padding-left: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__autoProbegDetail-approximate-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  width: 50%;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-approximate-item-text {
    width: 100%;
  }
}
.section__autoProbegDetail-approximate-itemFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-approximate-itemFlex {
    flex-direction: column;
    align-items: end;
  }
}
.section__autoProbegDetail-approximate-itemFlex div {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__autoProbegDetail-approximate-itemTitle, .section__autoProbegDetail-approximate-itemFlex span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__autoProbegDetail-approximate-footer {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-approximate-footer {
    flex-direction: column;
    align-items: start;
  }
  .section__autoProbegDetail-approximate-footer button[type=submit] {
    width: 100%;
  }
}
.section__autoProbegDetail-approximate-footer-price {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  display: flex;
  gap: 5px;
}
.section__autoProbegDetail-approximate-footer-price span {
  display: block;
  font-weight: 700;
  font-size: 20px;
}
.section__autoProbegDetail-slider {
  margin-bottom: 30px;
}
.section__autoProbegDetail-slider.tabs img {
  height: 655px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}
@media (max-width: 576px) {
  .section__autoProbegDetail-slider.tabs img {
    height: 203px;
  }
}
.section__autoProbegDetail-slider img {
  height: 390px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}
@media (max-width: 576px) {
  .section__autoProbegDetail-slider img {
    height: 203px;
  }
}
@media (max-width: 992px) {
  .section__autoProbegDetail-thumb {
    margin-bottom: 30px;
  }
}
.section__autoProbegDetail-thumb.tabs img {
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 576px) {
  .section__autoProbegDetail-thumb.tabs img {
    height: 96px;
  }
}
.section__autoProbegDetail-thumb.tabs .splide__slide {
  height: fit-content !important;
}
.section__autoProbegDetail-thumb img {
  height: 111px;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 576px) {
  .section__autoProbegDetail-thumb img {
    height: 96px;
  }
}
.section__autoProbegDetail-thumb .splide__slide {
  border: unset !important;
}
@media (max-width: 576px) {
  .section__autoProbegDetail-thumb .splide__slide {
    height: fit-content !important;
  }
}
.section__autoProbegDetail-thumb .splide__slide.is-active {
  border: unset !important;
  opacity: 0.8;
}
.section__autoProbegDetail-title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--second-family);
}
.section__autoProbegDetail-col {
  margin-bottom: 20px;
}
.section__autoProbegDetail-col .section__autoProbegDetail-mainInfo-item:last-child {
  margin-bottom: 0;
}
.section__autoProbegDetail-mainInfo {
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  background: #f6f6f6;
  padding: 20px;
  margin-bottom: 20px;
}
.section__autoProbegDetail-mainInfo-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.section__autoProbegDetail-mainInfo-item dt {
  font-family: var(--font-family);
  width: 45%;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9ca3af;
}
.section__autoProbegDetail-mainInfo-item dd {
  width: 50%;
  font-family: var(--font-family);
  margin-bottom: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__autoProbegDetail-mainInfo2 {
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  background: #f6f6f6;
  padding: 20px;
  margin-bottom: 20px;
}
.section__autoProbegDetail-mainInfo2-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.section__autoProbegDetail-mainInfo2-item.rating dd {
  display: flex;
  gap: 12px;
  align-items: center;
}
.section__autoProbegDetail-mainInfo2-item.rating dd span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section__autoProbegDetail-mainInfo2-item dt {
  font-family: var(--font-family);
  width: 45%;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__autoProbegDetail-mainInfo2-item dd {
  width: 50%;
  font-family: var(--font-family);
  margin-bottom: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-mainInfo2-item dd {
    display: flex;
    flex-direction: column;
    align-items: end !important;
    text-align: end;
  }
}
.section__autoProbegDetail-mainInfo2-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section__autoProbegDetail-mainInfo2-list-item {
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__autoProbegDetail-mainInfo2-list-item a:hover {
  opacity: 0.6;
}
.section__autoProbegDetail-mainInfo2-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section__autoProbegDetail-priceTitle {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--font-family);
}
@media (max-width: 992px) {
  .section__autoProbegDetail-priceTitle {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
  }
}
.section__autoProbegDetail-priceVal {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  font-family: var(--font-family);
  font-size: 16px;
}
.section__autoProbegDetail-priceVal.china {
  color: #2a2a2a;
  width: -webkit-fill-available;
  max-width: 40%;
  text-align: end;
}
.section__autoProbegDetail-priceVal.china span {
  font-size: 20px;
  text-transform: uppercase;
}
.section__autoProbegDetail-priceVal.country {
  color: #c62828;
}
.section__autoProbegDetail-priceVal.country span {
  font-size: 24px;
  text-transform: uppercase;
}
.section__autoProbegDetail-mainBlock {
  margin-bottom: 100px;
}
.section__autoProbegDetail-subTitle {
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--second-family);
  margin-bottom: 30px;
}
.section__autoProbegDetail-propertyBlock {
  margin-top: 150px;
}
@media (max-width: 992px) {
  .section__autoProbegDetail-propertyBlock {
    margin-top: 100px;
  }
}
.section__autoProbegDetail-propertyBlock-flexColumn {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}
.section__ourProjects {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__ourProjects {
    margin-bottom: 100px;
  }
}
.section__ourProjects-block {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
}
@media (max-width: 992px) {
  .section__ourProjects-block {
    margin-bottom: 30px;
  }
}
.section__ourProjects-block-img img {
  height: 204px;
  width: 100%;
  object-fit: cover;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
}
.section__ourProjects-block-title {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #2a2a2a;
}
.section__ourProjects-block-country {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  gap: 5px;
}
.section__ourProjects-block-content {
  padding: 20px 15px;
}
.section__ourProjects .splide__pagination {
  bottom: -50px;
}
.section__ourProjects .splide__pagination .splide__pagination__page {
  transform: scale(1) !important;
  opacity: 1;
  width: 15px;
  height: 15px;
  background: #9ca3af;
}
.section__ourProjects .splide__pagination .splide__pagination__page.is-active {
  background: #c62828;
}
.section__projectDetail {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__projectDetail {
    margin-bottom: 100px;
  }
}
.section__projectDetail-slider {
  margin-bottom: 30px;
}
.section__projectDetail-slider img {
  height: clamp(182px, 32vw, 480px);
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}
@media (max-width: 576px) {
  .section__projectDetail-slider img {
    height: clamp(185px, 40vw, 300px);
  }
}
@media (max-width: 992px) {
  .section__projectDetail-thumb {
    margin-bottom: 30px;
  }
}
.section__projectDetail-thumb img {
  height: 116px;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 576px) {
  .section__projectDetail-thumb img {
    height: 96px;
  }
}
.section__projectDetail-thumb .splide__slide {
  border: unset !important;
}
@media (max-width: 576px) {
  .section__projectDetail-thumb .splide__slide {
    height: fit-content !important;
  }
}
.section__projectDetail-thumb .splide__slide.is-active {
  border: unset !important;
  opacity: 0.8;
}
.section__projectDetail-description p {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__projectDetail-block {
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 30px;
}
.section__projectDetail-block.red {
  background: #c62828;
}
.section__projectDetail-block.red .subTitle, .section__projectDetail-block.red .subText {
  color: #f6f6f6;
}
.section__projectDetail-block-flexItems {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.section__projectDetail-block-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.section__projectDetail-block-item dt {
  width: 50%;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__projectDetail-block-item dd {
  margin-bottom: 0;
  width: 50%;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
@media (max-width: 992px) {
  .section__projectDetail-block-item dd {
    text-align: end;
  }
}
.section__formSearch.poisk-po-baze {
  margin-bottom: 100px;
}
.section__formSearch.checkboxes form {
  flex-direction: column;
  background: unset;
  box-shadow: unset;
  padding: unset !important;
}
.section__formSearch-container {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #2a2a2a;
}
.section__formSearch.bg-red {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.section__formSearch-flexHeader {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 992px) {
  .section__formSearch-flexHeader {
    flex-direction: column;
  }
}
.section__formSearch-flexHeader .subText {
  font-size: 20px;
}
.section__formSearch-flexHeader h2, .section__formSearch-flexHeader .subText {
  color: #f6f6f6;
}
.section__formSearch-imgSmall img {
  height: 144px;
  width: 100%;
}
.section__formSearch-checkboxesBlock {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  overflow-x: auto;
}
.section__formSearch-checkboxesBlock .filter__option-radioBox {
  color: #2a2a2a !important;
  width: max-content;
}
.section__formSearch-checkboxesBlock .filter__input-radionButton:hover + .filter__option-radioBox {
  background: #c62828;
  color: #fff7e8 !important;
}
.section__formSearch-checkboxesBlock .filter__input-radionButton:checked + .filter__option-radioBox {
  color: #f6f6f6 !important;
  padding: 14px !important;
}
.section__formSearch-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  border-radius: 10px;
}
.section__formSearch-content input {
  max-width: 70%;
  width: -webkit-fill-available;
  background: unset;
  outline: 0;
  border: 0;
  padding: 10px 15px;
}
@media (max-width: 992px) {
  .section__formSearch-content input {
    max-width: unset;
    width: 100%;
  }
}
.section__formSearch-content button[type=submit] {
  align-items: center;
}
.section__formSearch-content button[type=submit] svg {
  margin-top: -1px;
}
.section__formSearch form {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #2a2a2a;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .section__formSearch form {
    flex-direction: column;
  }
}
.section__formSearch form .filter__option-radioBox {
  border-color: #c62828;
  color: #c62828;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 14px 35px;
}
.section__formSearch form .filter__option-radioBox svg path {
  fill: #c62828;
}
.section__formSearch form .filter__input-radionButton:checked + .filter__option-radioBox {
  background: #c62828;
  color: #fff7e8;
}
.section__formSearch form .filter__input-radionButton:checked + .filter__option-radioBox svg path {
  fill: #fff7e8;
}
@media (max-width: 992px) {
  .section__formSearch.inspect form .section__formSearch-content {
    flex-direction: column;
    background: unset;
    box-shadow: unset;
    gap: 23px;
  }
  .section__formSearch.inspect form .section__formSearch-content input {
    border-radius: 10px;
    box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
    background: #f6f6f6;
  }
  .section__formSearch.inspect form .section__formSearch-content button[type=submit] {
    width: 100%;
  }
}
.section__calculatorInfo {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__calculatorInfo {
    margin-bottom: 100px;
  }
}
.section__calculatorInfo-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__calculatorInfo-item {
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}
.section__calculatorInfo-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--second-family);
}
.section__calculatorInfo-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.section__calculatorInfo-list-item {
  display: flex;
  gap: 15px;
}
.section__calculatorInfo-list-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.section__calculatorInfo-howUse {
  padding: 50px 0;
  margin-bottom: 100px;
  background-size: cover;
  background-repeat: repeat-y;
}
.section__calculatorInfo-howUse h2 {
  color: #f6f6f6;
}
.section__calculatorInfo-howUse-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section__calculatorInfo-howUse-img {
  width: 71px;
  height: 60px;
}
.section__calculatorInfo-howUse-img img {
  width: 71px;
  height: 60px;
  object-fit: contain;
}
.section__calculatorInfo-howUse-item {
  display: flex;
  gap: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
}
@media (max-width: 992px) {
  .section__calculatorInfo-howUse-item {
    flex-direction: column;
  }
}
.section__calculatorInfo-howUse-item span {
  display: block;
  font-weight: 700;
}
.section__calculatorInfo-form {
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 30px;
}
.section__calculatorInfo-form.finalForm .filter__label {
  text-transform: unset;
  margin-bottom: 5px;
}
.section__calculatorInfo-form.red {
  background: #c62828;
}
.section__calculatorInfo-form.red .section__calculatorInfo-form-title {
  color: #f6f6f6;
}
.section__calculatorInfo-form.red .filter__label {
  color: #f6f6f6;
}
.section__calculatorInfo-form.red .section__calculatorInfo-form-smallText {
  color: #f6f6f6;
}
.section__calculatorInfo-form-resultBlock.general .section__calculatorInfo-form-result {
  border: unset;
  border-radius: unset;
  position: relative;
  border-bottom: 0.2px solid rgba(156, 163, 175, 0.3);
}
.section__calculatorInfo-form-resultBlock.general .section__calculatorInfo-form-result:before {
  content: "";
  height: 3px;
  width: 15px;
  background: #f6f6f6;
  position: absolute;
  left: 0;
  top: 100%;
}
.section__calculatorInfo-form-resultBlock.general .section__calculatorInfo-form-result:after {
  content: "";
  height: 3px;
  width: 15px;
  background: #f6f6f6;
  position: absolute;
  right: 0;
  top: 100%;
}
.section__calculatorInfo-form-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  color: #9ca3af;
  background: #f6f6f6;
  border: 0.5px solid #9ca3af;
  border-radius: 5px;
  padding: 15px;
}
.section__calculatorInfo-form-result-list {
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  border-radius: 5px;
  overflow: hidden;
}
.section__calculatorInfo-form-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 15px;
}
.section__calculatorInfo-form-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__calculatorInfo-form-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section__calculatorInfo-form-smallText {
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
  color: #2a2a2a;
  margin-top: 10px;
}
.section__calculatorInfo-form .filter__label {
  color: #2a2a2a;
}
.section__calculatorInfo-form .filter__option-radioBox {
  background: #f6f6f6;
  color: #c62828;
  border-color: #c62828;
}
.section__calculatorInfo-form .filter__input-radionButton:checked + .filter__option-radioBox {
  background: #c62828;
  color: #f6f6f6;
}
.section__calculatorInfo-form .section__bigForm-checkbox-box {
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
}
.section__calculatorInfo-form .section__bigForm-checkbox-text {
  color: #2a2a2a;
}
.section__shipCost {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__shipCost {
    margin-bottom: 100px;
  }
}
.section__shipCost-formTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #f6f6f6;
  margin-bottom: 30px;
}
.section__shipCost-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--second-family);
  margin-bottom: 50px;
}
.section__shipCost-blockTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 30px;
}
.section__shipCost-table {
  max-height: 370px;
  overflow-y: auto;
  padding-right: 30px;
}
.section__shipCost-table::-webkit-scrollbar {
  width: 14px;
}
.section__shipCost-table::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #c62828;
}
.section__shipCost-table::-webkit-scrollbar-track {
  border-radius: 10px;
  fill: #f6f6f6;
  box-shadow: inset 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
}
.section__shipCost-tableBlock {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__shipCost-tableBlock {
    margin-bottom: 100px;
  }
}
.section__shipCost-tableBlock:last-child {
  margin-bottom: 0;
}
.section__shipCost-block {
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  background: #f6f6f6;
  padding: 30px 30px 10px;
}
.section__shipCost-block table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 992px) {
  .section__shipCost-block table {
    min-width: 500px;
    overflow-x: scroll;
    white-space: normal;
  }
}
.section__shipCost-block table thead tr th {
  padding-bottom: 18px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #9ca3af;
}
.section__shipCost-block table thead tr th:nth-child(1), .section__shipCost-block table thead tr th:nth-child(2) {
  width: 400px;
}
.section__shipCost-block table thead tr th:nth-child(3) {
  width: 310px;
}
.section__shipCost-block table tbody tr {
  border-top: 0.2px solid rgba(156, 163, 175, 0.3);
}
.section__shipCost-block table tbody tr td {
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__shipCost-block table tbody tr td .country {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.section__shipCost form {
  background: #c62828;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 150px;
}
.section__shipCost form .filter__option-radioBox {
  display: flex;
  gap: 10px;
  align-items: center;
}
.section__shipCost form .select2-container--default {
  background: #f6f6f6;
}
.section__newsDetail {
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .section__newsDetail {
    margin-bottom: 100px;
  }
}
.section__newsDetail-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section__newsDetail-flex {
  display: flex;
  gap: 30px;
}
@media (max-width: 992px) {
  .section__newsDetail-flex {
    flex-direction: column;
  }
  .section__newsDetail-flex.revers {
    flex-direction: column-reverse;
  }
  .section__newsDetail-flex .section__newsDetail-item {
    width: 100%;
  }
}
.section__newsDetail-item {
  width: 50%;
}
.section__newsDetail-img {
  margin-bottom: 30px;
}
.section__newsDetail-img img {
  height: 550px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .section__newsDetail-img img {
    height: clamp(144px, 40vw, 400px);
  }
}
.section__newsDetail-imgSmall {
  height: fit-content;
}
.section__newsDetail-imgSmall img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.section__newsDetail-properties {
  display: flex;
  flex-direction: column;
}
.section__newsDetail-properties-block {
  padding: 15px 0;
  border-top: 0.2px solid rgba(156, 163, 175, 0.3);
  display: flex;
}
.section__newsDetail-properties-block:first-child {
  border-top: unset;
}
.section__newsDetail-properties-block .head {
  color: #9ca3af;
  font-weight: 500;
}
.section__newsDetail-properties-block dt {
  width: 50%;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__newsDetail-properties-block dd {
  width: 50%;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__newsDetail-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 30px;
}
.section__newsDetail-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
}
.section__newsDetail-text ul {
  margin: 15px 0;
  padding-left: 22px;
}
.section__newsDetail-text.description {
  margin-bottom: 50px;
}
.section__newsDetail-socs {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #2a2a2a;
}
.section__newsDetail-socs span {
  display: flex;
  gap: 16px;
  align-items: center;
}
.section__newsDetail-socs span a {
  display: block;
}
.section__newsDetail-socs span a:hover {
  opacity: 0.6;
}

.footer {
  background: #f6f6f6;
}
@media (max-width: 992px) {
  .footer {
    margin-top: 100px;
  }
}
.footer__up {
  padding: 31px 0 22px;
  background: #c62828;
}
.footer__up-logo {
  display: flex;
}
.footer__up-logo:hover {
  transform: scale(1.015);
}
@media (max-width: 992px) {
  .footer__up-logo {
    justify-content: center;
    margin-bottom: 15px;
  }
}
.footer__up-links {
  display: flex;
  gap: 15px;
  justify-content: end;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .footer__up-links {
    flex-direction: column;
    align-items: center;
  }
}
.footer__up-links a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
}
.footer__up-links a:hover {
  opacity: 0.6;
  color: #f6f6f6;
}
.footer__down {
  padding: 30px 0;
}
.footer__down.borderDown {
  border-bottom: 1px solid rgba(156, 163, 175, 0.3);
}
.footer__down-borderRight {
  border-right: 1px solid rgba(156, 163, 175, 0.3);
}
.footer__down-flexSocs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .footer__down-flexSocs {
    justify-content: center;
  }
}
.footer__down-flexSocs a {
  display: block;
}
.footer__down-flexSocs a:hover {
  opacity: 0.6;
}
.footer__down-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .footer__down-links {
    flex-direction: column;
    align-items: center;
  }
  .footer__down-links.sections {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.footer__down-links a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--font-family);
}
.footer__down-links a:hover {
  color: #c62828;
}
.footer__down-links a.bold {
  font-weight: 700;
}
.footer__down-mob {
  display: flex;
}
@media (max-width: 992px) {
  .footer__down-mob {
    justify-content: center;
  }
}
.footer__down-mob a {
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 6px 15px;
  background: #f6f6f6;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--font-family);
}
.footer__down-mob a:hover {
  color: #2a2a2a;
  opacity: 0.6;
}
.footer__down-mob:hover {
  color: #2a2a2a;
  opacity: 0.6;
}
.footer__down-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__down-flex a {
  display: block;
}
@media (max-width: 992px) {
  .footer__down-flex {
    flex-direction: column;
    align-items: unset;
    gap: 20px;
  }
  .footer__down-flex a {
    width: 100%;
    padding: 12px;
    justify-content: center;
    display: flex !important;
  }
}
.footer__down-flexLinks {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 992px) {
  .footer__down-flexLinks.mob {
    flex-direction: column;
    align-items: unset;
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .footer__down-flexLinks {
    gap: 20px;
  }
}
.footer__down-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .footer__down-title {
    margin-top: 50px;
    text-align: center;
  }
}
.footer__down-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .footer__down-text {
    text-align: center;
  }
}

.filter__input-radionButton {
  display: none;
}

.filter__option-radioBox {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #f6f6f6;
  transition: all 0.25s ease;
  border-radius: 10px;
  padding: 14px 24px;
  border: 1px solid #f6f6f6;
}

.filter__input-radionButton:checked + .filter__option-radioBox {
  background: #f6f6f6;
  color: #d61f1f;
}

.filter__label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #f6f6f6;
  font-family: var(--font-family);
  margin-bottom: 15px;
}

.filter__select {
  height: 49px;
  position: relative;
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  border-radius: 10px;
  border: 0.2px solid rgba(156, 163, 175, 0.25);
  display: block;
}

.filter__select select, .filter__select .select2-container--default {
  height: 49px;
  width: 100% !important;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  padding: 0 48px 0 20px;
  background: #f6f6f6;
  border-radius: 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: black;
}
.filter__select select::placeholder, .filter__select .select2-container--default::placeholder {
  color: #9ca3af;
}

.filter__select__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.filter__range {
  display: flex;
  height: 49px;
  background: #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
}
.filter__range пробег input::-webkit-outer-spin-button,
.filter__range input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter__range input {
  width: 50%;
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 20px;
  font-size: 16px;
  outline: none;
  color: #9AA3AE;
}

.filter__input {
  height: 49px;
}
.filter__input input {
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  border-radius: 10px !important;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  padding: 0px 15px;
  outline: 0;
  width: 100%;
  height: 100%;
  text-align: start !important;
}

.filter__textarea {
  width: 100%;
  resize: none;
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  background: #f6f6f6;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  padding: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: black;
  font-family: var(--font-family);
}
.filter__textarea::placeholder {
  color: #9ca3af;
}

.filter__range input:first-child {
  border-right: 1px solid #CFCFCF;
}

.header__up-lang {
  position: relative;
  cursor: pointer;
}

.header__up-lang-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  display: none;
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.header__up-lang.open .header__up-lang-dropdown {
  display: block;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

.lang-item:hover {
  background: #f5f5f5;
}

.header__up-lang-current {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #f6f6f6;
  font-family: var(--font-family);
}

.select2-selection__arrow {
  display: none;
}

.select2-selection--single {
  height: 100%;
}

.select2-selection__rendered {
  display: flex !important;
  align-items: center !important;
  padding-left: unset !important;
  height: 100%;
}

.select2-container--default {
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
}
.select2-container--default .select2-selection--single {
  background-color: transparent !important;
  border: unset !important;
}
.selection, .select2-selection--single {
  height: 100% !important;
}

.select2-dropdown.select2-dropdown--below {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.select2-results__option.select2-results__option--selectable {
  transition: 0.2s ease all;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #c62828 !important;
}

.faq-item {
  background: #f6f6f6;
  border: 0.5px solid rgba(156, 163, 175, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 30px;
}
.faq-item:hover {
  box-shadow: 0px 0px 15px 3px #c62828;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}
.faq-question-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq-question-headerImg {
  height: 60px;
  object-fit: contain;
}

.faq-question:hover {
  background-color: #f6f6f6;
}

.section__faq-col .faq-item:last-child {
  margin-bottom: 0;
}

.faq-question h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--third-family);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-content {
  margin: 0px 28px;
  padding: 20px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--font-family);
  border-top: 0.5px solid rgba(156, 163, 175, 0.3);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.filter__select-country {
  display: none;
}

.filter__select-flags-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9ca3af;
  margin-top: 10px;
}
.filter__select-flags .select2-container--default {
  border-radius: 10px !important;
}
.filter__select-flags .select2-container--default .select2-selection--single {
  background: #f6f6f6 !important;
  background-color: #f6f6f6 !important;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: inset 1px 4px 4px 0 rgba(42, 42, 42, 0.25);
  border: 0.5px solid rgba(156, 163, 175, 0.3) !important;
  border-radius: 10px !important;
  padding: 11px 15px;
}
.filter__select-flags .select2-container--default .select2-selection--single::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3535 6.35375L8.35354 11.3538C8.3071 11.4002 8.25196 11.4371 8.19126 11.4623C8.13056 11.4874 8.0655 11.5004 7.99979 11.5004C7.93408 11.5004 7.86902 11.4874 7.80832 11.4623C7.74762 11.4371 7.69248 11.4002 7.64604 11.3538L2.64604 6.35375C2.55222 6.25993 2.49951 6.13269 2.49951 6C2.49951 5.86732 2.55222 5.74007 2.64604 5.64625C2.73986 5.55243 2.86711 5.49973 2.99979 5.49973C3.13247 5.49973 3.25972 5.55243 3.35354 5.64625L7.99979 10.2931L12.646 5.64625C12.6925 5.5998 12.7476 5.56295 12.8083 5.53781C12.869 5.51267 12.9341 5.49973 12.9998 5.49973C13.0655 5.49973 13.1305 5.51267 13.1912 5.53781C13.2519 5.56295 13.3071 5.5998 13.3535 5.64625C13.4 5.69271 13.4368 5.74786 13.462 5.80856C13.4871 5.86925 13.5001 5.93431 13.5001 6C13.5001 6.0657 13.4871 6.13076 13.462 6.19145C13.4368 6.25215 13.4 6.3073 13.3535 6.35375Z' fill='%232A2A2A'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}
.filter__select-flags .select2-container--default .select2-selection__rendered {
  padding-left: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  font-family: var(--font-family);
  padding-right: 0 !important;
  width: 150px;
}
.filter__select-flags .select2-country {
  display: flex;
  gap: 5px;
  align-items: center;
}

.accordion__header {
  width: 100%;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #2a2a2a;
}

.accordion__icon {
  display: flex;
  transition: transform 0.3s ease;
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__content-item {
  border-top: 0.2px solid rgba(156, 163, 175, 0.3);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}
.accordion__content-item dt {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #9ca3af;
  width: 50%;
}
.accordion__content-item dd {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
  width: 50%;
}
.accordion__content-item:first-child {
  margin-top: 15px;
}

.komplektacia__accordion {
  margin-bottom: 150px;
}

.komplektacia__item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #f6f6f6;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}

.komplektacia__item-header {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: start;
}

.komplektacia__item-flex {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 16px);
  line-height: 140%;
  color: #9ca3af;
}

.komplektacia__item-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.komplektacia__item.active .komplektacia__item-arrow {
  transform: rotate(-135deg);
}

.komplektacia__item-content {
  display: none;
}

.komplektacia__item.active .komplektacia__item-content {
  display: block;
}

.komplektacia__item-option {
  border-top: 0.2px solid rgba(156, 163, 175, 0.3);
  margin: 0px 20px;
  padding: 15px 0;
  display: block;
  font-size: 16px;
  line-height: 140%;
  color: #2a2a2a;
}
.komplektacia__item-option:hover {
  color: #c62828;
}

.komplektacia__item-option:last-child {
  border-bottom: none;
}

.offcanvasFilter {
  background: #f6f6f6;
  border-left: unset !important;
}
@media (min-width: 993px) {
  .offcanvasFilter {
    top: unset !important;
    left: unset !important;
    width: unset !important;
    border-right: unset !important;
    transform: unset !important;
    position: unset !important;
    bottom: 0;
    z-index: unset !important;
    display: unset !important;
    flex-direction: unset !important;
    max-width: unset !important;
    color: unset !important;
    visibility: unset !important;
    background-color: unset !important;
    background-clip: unset !important;
  }
  .offcanvasFilter .offcanvas-header {
    display: none;
  }
  .offcanvasFilter .offcanvas-body {
    padding: 0px;
    overflow-y: unset;
  }
}

.dropdown__sort {
  margin-bottom: 55px;
  position: relative;
}
@media (max-width: 992px) {
  .dropdown__sort {
    width: 100%;
  }
}
.dropdown__sort-btn {
  width: 297px;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
  border-radius: 12px;
  background: #f6f6f6;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 992px) {
  .dropdown__sort-btn {
    width: 100%;
  }
}
.dropdown__sort .dropdown-menu.show {
  width: 100%;
  background: #f6f6f6;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hiddenForm {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  position: relative;
  top: -8px;
  transform: translateY(-10px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
}
.hiddenForm form {
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  margin: 0;
  padding: 30px;
  box-shadow: unset;
  background: #f6f6f6;
  border: 0.2px solid rgba(156, 163, 175, 0.3);
}
.hiddenForm form label {
  color: #2a2a2a;
}

.hiddenForm.active {
  max-height: fit-content; /* можно поставить больше если форма высокая */
  opacity: 1;
  transform: translateY(0);
}

.btnOpenForm {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.btnOpenForm.active {
  color: #f6f6f6;
  background: #c62828;
}
.btnOpenForm.active svg {
  transform: rotate(90deg);
}
.btnOpenForm.active svg path {
  fill: #f6f6f6;
}

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