@import '../fonts/stylesheets.css';
* {
  box-sizing: border-box;
}

:root {
  --c-bg: #ffffff;
  --c-bg-dark: #222;
  --c-primary-darker: #70000f;
  --c-primary-dark: #a30015;
  --c-primary: #d6001c;
  --c-text: #222;
  --c-gray: #cfcfcf;
  --c-gray-light: #f7f7f7;
  --c-text-invert: #ffffff;
}

html {
  font-size: 14px;
  line-height: 1.5;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--c-bg-dark);
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0 auto;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 1200px) {
  body {
    max-width: 1920px;
  }
}

a {
  color: var(--c-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

p {
  margin: 0 0 0.5rem;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.nowrap {
  white-space: nowrap;
}

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

.with-arrow {
  position: relative;
  padding-right: 45px !important;
}

.with-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}

.with-arrow:hover::after {
  border-color: white;
}

input,
select,
textarea {
  display: block;
  height: 50px;
  width: 100%;
  padding: 0 1rem;
  font-size: 1rem;
  background: var(--c-gray-light);
  border: 1px solid var(--c-gray);
  color: var(--c-textt);
  border-radius: 0;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--c-primary);
  outline: none;
}

select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf-8, <svg version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m16 4.7-.78-.79-7 7.1-7-7.1-.78.79 7.8 7.9z" color="black"/></svg>');
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

textarea {
  height: auto;
  resize: none;
}

.form-row {
  margin-bottom: 0.75rem;
}

.btn {
  height: 50px;
  padding: 0 20px;
  font-weight: 500;
  line-height: 1.25;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease;
  font-family: inherit;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none !important;
  text-transform: uppercase;
  background: var(--c-primary);
  border: 2px solid var(--c-primary);
  color: var(--c-text-invert);
  cursor: pointer;
}
.btn__icon {
  margin-top: -0.15em;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  fill: currentColor;
}
.btn.btn--outline:not(:hover) {
  color: inherit;
}
.btn.btn--outline:not(:hover):after {
  border-color: currentColor;
}
.btn.btn--outline:hover:after {
  border-color: white;
}
.btn:hover, .btn:focus {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  outline: none;
}
.btn:active {
  background: var(--c-primary-darker);
  border-color: var(--c-primary-darker);
}

.btn--outline:not(:hover) {
  background: none !important;
}

.btn--secondary {
  background-color: var(--c-text-invert);
  color: var(--c-text);
  border-color: var(--c-text);
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: var(--c-gray-light);
  border-color: var(--c-text);
  color: var(--c-text);
}
.btn--secondary:hover::after, .btn--secondary:focus::after {
  border-color: var(--c-text) !important;
}
.btn--secondary:active {
  background-color: var(--c-gray);
  border-color: var(--c-text);
  color: var(--c-text);
}
.btn--secondary:active::after {
  border-color: var(--c-text) !important;
}

.ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.ul li {
  display: flex;
  align-items: start;
  margin-bottom: 0.25em;
}
.ul li:before {
  content: "";
  display: block;
  margin-top: 0.7em;
  margin-right: 0.4em;
  height: 2px;
  width: 1em;
  background: var(--c-primary);
}

.spoiler {
  margin-bottom: 1rem;
}
.spoiler.open .spoiler__header::after {
  transform: translateY(50%) rotateZ(-45deg);
}
.spoiler__header {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--c-gray);
  cursor: pointer;
}
.spoiler__header::after {
  content: "";
  display: block;
  height: 0.75em;
  width: 0.75em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotateZ(135deg);
}
.spoiler__body {
  padding: 1rem;
  display: none;
}

.header {
  position: relative;
  z-index: 10;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  background: var(--c-bg);
  transition: 0.15s ease;
}
.header.stick {
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 1px 0 var(--c-bg-dark);
}
.header::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: black;
  opacity: 0;
  transition: 0.5s ease-out;
  pointer-events: none;
}
.header.backdrop::before {
  opacity: 0.4;
  pointer-events: all;
}
.header__brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
}
.header__logo {
  flex: 0 1 auto;
  height: 24px;
  position: relative;
  top: -2px;
  padding-right: 1rem;
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.header__title {
  display: none;
  line-height: 1.25;
  font-size: 10px;
  font-weight: bold;
}
.header__info {
  font-size: 11px;
}
.header__info-item {
  margin-right: 1em;
  display: inline-flex;
}
.header__address {
  display: none;
}
.header__menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85vw;
  max-width: 380px;
  padding: 3.5rem 2rem 1.5rem;
  background: var(--c-bg);
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.header__menu.show {
  transform: none;
}
.header__actions {
  display: flex;
  align-items: center;
  justify-content: end;
  flex: 0 0 auto;
}
.header__callback {
  display: none;
}
.header__menu-btn {
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.15s ease;
  cursor: pointer;
  z-index: 1;
}
.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-primary);
  transition: 0.15s ease;
  transform-origin: center left;
}
.header__menu-btn.active span:first-child, .header__menu-btn.active span:last-child {
  transform: translateX(9%) rotateZ(45deg);
  width: 112%;
}
.header__menu-btn.active span:last-child {
  transform: translateX(9%) rotateZ(-45deg);
}
.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
  }
  .header.stick {
    padding: 1rem 2rem;
  }
  .header__logo {
    height: 30px;
  }
  .header__logo::after {
    content: "";
    display: block;
    margin-left: 1rem;
    height: 2rem;
    width: 1px;
    background: var(--c-primary);
  }
  .header__title {
    display: block;
    font-size: 11px;
  }
  .header__info {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 1rem;
    line-height: 1.25;
    font-size: inherit;
  }
  .header__info-item {
    padding: 0 1rem;
  }
  .header .contact--tel {
    font-size: 0.875rem;
    color: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    align-items: center;
  }
  .header__logo {
    height: 47px;
    margin-top: -16px;
  }
  .header__logo::after {
    margin-top: 16px;
  }
  .header__menu-btn {
    display: none;
  }
  .header__callback {
    display: block;
  }
  .header__menu {
    padding: 0;
    position: static;
    padding-top: 1rem;
    width: 100%;
    max-width: 100%;
    transform: none;
  }
}
@media screen and (min-width: 1366px) {
  .header {
    max-width: 1680px;
    margin: 0 auto;
  }
  .header__address {
    display: block;
  }
  .header__info-item {
    max-width: 250px;
  }
  .header__info-item .contact {
    align-items: center;
  }
  .header__info-item .contact .contact__icon {
    font-size: 1rem;
  }
  .header__info-item .contact--tel {
    font-size: 1.25rem;
  }
}
.main-menu {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.main-menu__nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu__nav-link {
  padding: 0.5rem 0;
  color: inherit;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: 0.15s ease;
}
.main-menu__nav-link:hover, .main-menu__nav-link:active, .main-menu__nav-link:focus {
  text-decoration: none;
  border-color: var(--c-primary);
}
.main-menu__title {
  font-size: 0.75em;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.main-menu__nav-link-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25em;
  margin-top: -0.15em;
  width: 1.5em;
  height: 1.5em;
  color: inherit;
  fill: currentColor;
}
.main-menu__contacts-item {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1200px) {
  .main-menu__nav {
    padding: 1rem 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .main-menu__nav-link {
    padding: 0.5rem 2rem;
  }
  .main-menu__title {
    display: none;
  }
  .main-menu__contacts {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .main-menu .contact--tel {
    font-weight: normal;
  }
}
.contact {
  display: inline-flex;
  color: inherit;
  transition: color 0.15s ease;
}
.contact__icon {
  flex-shrink: 0;
  margin-right: 0.5em;
  width: 1.25em;
  height: 1.25em;
  fill: var(--c-primary);
}
.contact--tel {
  font-weight: bold;
  white-space: nowrap;
}
.contact--tel:hover {
  color: var(--c-primary);
  text-decoration: none;
}

.main-block {
  max-width: 960px;
  margin: 0 auto;
}
.main-block__container {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
.main-block__text {
  padding: 1.5em 1rem 3rem;
}
.main-block__title1 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.main-block__title2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.main-block__title3 {
  font-size: 16px;
  margin-bottom: 0.5rem;
}
.main-block__list {
  margin: 1rem 0;
}
.main-block__btns {
  margin-top: 1.5rem;
}
.main-block__btns .btn {
  width: 100%;
}
.main-block__btns .btn:not(:last-child) {
  margin-bottom: 1rem;
}
.main-block__scroll-btn {
  display: none;
  position: absolute;
  padding: 0;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main-block__scroll-btn:after {
  top: 33%;
  left: 36%;
  transform: rotateZ(45deg);
}

@media screen and (min-width: 768px) {
  .main-block__text {
    padding: 2rem;
  }
  .main-block__title1 {
    font-size: 32px;
  }
  .main-block__title2 {
    font-size: 28px;
  }
  .main-block__title3 {
    font-size: 22px;
  }
  .main-block__btns {
    display: flex;
    flex-wrap: wrap;
  }
  .main-block__btns .btn {
    width: auto;
    flex: 1 0 0;
  }
  .main-block__btns .btn:not(:last-child) {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .main-block {
    min-width: 100%;
  }
  .main-block__container {
    flex-direction: row;
  }
  .main-block__title1 {
    font-size: 38px;
    margin-bottom: 1.5rem;
  }
  .main-block__title2 {
    margin-bottom: 1.4rem;
  }
  .main-block__text, .main-block__slider {
    flex: 0 0 50%;
    width: 50%;
  }
  .main-block__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main-block__text-container {
    max-width: 700px;
  }
  .main-block__scroll-btn {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .main-block__title1 {
    font-size: 42px;
  }
  .main-block__title2 {
    font-size: 36px;
  }
  .main-block__title3 {
    font-size: 30px;
  }
  .main-block__list {
    margin: 1.5rem 0 2rem;
    font-size: 20px;
  }
}
.main-block-slider {
  overflow: hidden;
}
.main-block-slider__slide {
  display: flex;
  max-height: 600px;
}
.main-block-slider__slide img {
  object-fit: cover;
}
.main-block-slider .slick-track {
  display: flex;
}
.main-block-slider .slick-slide {
  display: flex !important;
  height: auto;
}
.main-block-slider .slick-dots {
  padding: 0;
  margin: 1rem;
  margin-top: 0;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  list-style: none;
}
.main-block-slider .slick-dots li {
  flex: 1 0 auto;
  padding: 0 10px;
}
.main-block-slider .slick-dots li button {
  height: 8px;
  width: 100%;
  border: none;
  border-radius: 0;
  appearance: none;
  background: var(--c-primary);
  font-size: 0;
  box-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.15s ease;
  outline: none;
}
.main-block-slider .slick-dots li.slick-active button,
.main-block-slider .slick-dots li button:hover {
  background: white;
}
@media screen and (min-width: 768px) {
  .main-block-slider .slick-dots {
    margin: 1rem;
  }
}

.card {
  background-color: var(--c-bg);
  color: var(--c-text);
}
.card__img {
  position: relative;
  display: flex;
  padding: 20px;
  padding-bottom: 55px;
  max-height: 550px;
  background: #000;
  background: var(--c-gray-light);
  position: relative;
}
.card__img img {
  max-width: 650px;
  object-fit: contain;
}
#m6 .card__img img {
  max-width: 720px;
}
.card__img-nav {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
}
.card__img-nav a {
  display: block;
  margin: 0 5px;
  width: 25px;
  height: 25px;
  border: 1px solid var(--c-gray);
  box-shadow: 0 0 0 1px var(--c-text-invert);
}

@media screen and (min-width: 768px) {
  .card__img {
    padding: 50px;
    padding-bottom: 90px;
  }
  .card__img img {
    max-width: 550px;
    margin: 0 auto;
  }
  .card__img-nav {
    bottom: 40px;
  }
  .card__img-nav a {
    width: 40px;
    height: 30px;
    margin: 0 15px;
    border-color: var(--c-text-invert);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 1025px) {
  .card {
    display: flex;
    align-items: stretch;
  }
  .card:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .card__img, .card__info {
    flex: 0 0 50%;
    width: 50%;
  }
  .card__img {
    padding: 50px;
    padding-bottom: 100px;
    aspect-ratio: auto;
    max-height: 100%;
    position: relative;
    overflow: hidden;
  }
  .card__img img {
    max-width: 650px;
  }
  .card__img-nav {
    bottom: 60px;
  }
  .card__img-nav a {
    width: 60px;
    height: 40px;
    margin: 0 15px;
    border-color: var(--c-text-invert);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  }
  .card__info {
    align-self: center;
  }
}
.card-info {
  padding: 1.5rem 1rem 2rem;
}
.card-info__container {
  max-width: 650px;
  margin: 0 auto;
}
.card-info__short-descr {
  line-height: 1.2;
  opacity: 0.6;
  margin-bottom: 0.75em;
}
.card-info__title {
  margin-bottom: 0.75rem;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.25;
}
.card-info__nav {
  margin-bottom: 0.75em;
  font-size: 1.5em;
}
.card-info__nav-link {
  display: inline-block;
  margin-right: 0.75em;
  text-underline-offset: 0.25em;
}
.card-info__nav-link.active {
  text-decoration: underline;
}
.card-info__price {
  font-size: 24px;
  margin-bottom: 1rem;
}
.card-info__descr {
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 1rem;
  opacity: 0.75;
}
.card-info__list {
  margin: 1.5rem 0 2rem;
}
.card-info__list li {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  position: relative;
}
.card-info__list li:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  border-bottom: 1px solid currentColor;
  opacity: 0.2;
}
.card-info__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.card-info__btns .btn {
  width: 100%;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .card-info {
    padding: 2rem;
  }
  .card-info__title {
    font-size: 40px;
  }
  .card-info__price {
    font-size: 26px;
  }
  .card-info__descr {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .card-info {
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .card-info__short-descr {
    text-align: left;
    margin-bottom: 1.25em;
  }
  .card-info__title {
    text-align: left;
    font-size: 40px;
  }
  .card-info__price {
    text-align: left;
    font-size: 28px;
  }
  .card-info__descr {
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 14px;
  }
  .card-info__list li {
    font-size: 16px;
  }
  .card-info__btns {
    flex-wrap: nowrap;
  }
  .card-info__btns .btn:not(:last-child) {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1600px) {
  .card-info__title {
    font-size: 50px;
  }
  .card-info__price {
    font-size: 40px;
  }
  .card-info__descr {
    margin-bottom: 2rem;
    font-size: 16px;
  }
  .card-info__list li {
    font-size: 18px;
  }
}
.sel-conf {
  position: relative;
  padding: 3rem 1rem;
}
.sel-conf__title {
  margin-bottom: 1rem;
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.sel-conf__nav {
  padding: 0;
  margin: 1.5rem auto;
  list-style: none;
  max-width: calc(1000px + 1rem);
}
.sel-conf__nav li {
  margin: 0.5rem 0;
  padding: 0.5rem 1.5rem;
  min-width: 100px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #fff;
  cursor: pointer;
  transition: 0.15s ease;
}
.sel-conf__nav li.active, .sel-conf__nav li:hover {
  border-color: var(--c-primary);
  background: var(--c-primary);
}
.sel-conf__item {
  display: none;
}
.sel-conf__item.active {
  display: block;
}

@media screen and (min-width: 768px) {
  .sel-conf {
    padding: 5rem 1rem 6rem;
  }
  .sel-conf__title {
    font-size: 32px;
  }
  .sel-conf__nav {
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
  .sel-conf__nav li {
    flex: 1 0 auto;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    display: inline-block;
  }
}
@media screen and (min-width: 1200px) {
  .sel-conf__title {
    font-size: 40px;
  }
  .sel-conf__nav {
    margin-bottom: 2.25rem;
  }
}
.sel-conf-item {
  margin: 0 auto 1rem;
  max-width: 1000px;
  background: var(--c-bg-light);
  color: #000;
}
.sel-conf-item__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.sel-conf-item__title span {
  font-weight: 600;
}
.sel-conf-item__img {
  padding: 1.5rem 2rem;
  background-size: cover;
  background-position: 40% center;
}
.sel-conf-item__info {
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sel-conf-item__actions {
  padding: 0 1rem 1rem;
  display: flex;
  align-items: center;
}
.sel-conf-item__actions .btn {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .sel-conf-item {
    display: flex;
  }
  .sel-conf-item__img {
    flex: 0 0 25%;
  }
  .sel-conf-item__info {
    margin-bottom: 0;
    padding: 0 1rem;
    flex: 1 0 auto;
  }
  .sel-conf-item__actions {
    padding: 1rem 1rem 1rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .sel-conf-item__img {
    flex: 0 0 280px;
  }
  .sel-conf-item__info {
    padding: 0 2rem;
  }
  .sel-conf-item__actions {
    padding: 1rem 2rem 1rem 0;
  }
}
.credit {
  position: relative;
  margin: 2rem auto 0;
  padding: 2rem 1rem;
  position: relative;
  background: var(--c-gray-light);
}
.credit__info {
  position: relative;
  margin-bottom: 1.5rem;
}
.credit__title {
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.credit__subtitle {
  font-size: 16px;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  text-align: center;
  opacity: 0.6;
}
.credit__form {
  position: relative;
}
.credit__form .btn {
  width: 100%;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .credit {
    position: relative;
    padding: 4rem 1rem;
    margin: 4rem auto 0;
  }
  .credit::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -9999px;
    left: -9999px;
    bottom: 0;
    background: var(--c-gray-light);
  }
  .credit__title {
    font-size: 32px;
  }
  .credit__subtitle {
    font-size: 28px;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .credit {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 1280px) {
  .credit {
    max-width: 1280px;
    display: flex;
  }
  .credit__info {
    margin: 0;
    flex: 0 0 744px;
  }
  .credit__title {
    text-align: left;
  }
  .credit__subtitle {
    text-align: left;
  }
  .credit__form {
    padding-left: 4rem;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.trade-in {
  padding: 3rem 0;
  background: var(--c-bg);
}
.trade-in__container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1rem;
}
.trade-in__title {
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
  text-transform: uppercase;
}
.trade-in__title span {
  color: var(--c-primary);
}
.trade-in__subtitle {
  margin: 0 auto 1.5rem;
  max-width: 800px;
  font-size: 14px;
  line-height: 1.25;
  opacity: 0.6;
  text-align: center;
}
.trade-in__form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.trade-in__form .form-row {
  flex: 0 0 100%;
  padding: 0 1rem;
  margin-bottom: 1.6rem;
}
.trade-in__submit {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .trade-in {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
  .trade-in__title {
    font-size: 32px;
  }
  .trade-in__subtitle {
    font-size: 24px;
  }
}
@media screen and (min-width: 960px) {
  .trade-in__form .form-row {
    flex: 0 0 280px;
  }
}
@media screen and (min-width: 1200px) {
  .trade-in {
    padding-top: 6rem;
    padding-bottom: 5.5rem;
  }
  .trade-in__title {
    font-size: 40px;
  }
  .trade-in__subtitle {
    margin-bottom: 2.75rem;
  }
}
.footer {
  position: relative;
  background: var(--c-bg-dark);
  color: var(--c-text-invert);
}
.footer .contact__icon {
  fill: currentColor;
}
.footer:before {
  content: "";
  background: var(--c-bg-dark);
  width: 9999px;
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: -11;
  transform: translateX(-50%);
}
.footer__container {
  padding: 3rem 1rem 0;
}
.footer__spoilers {
  padding: 0 1rem 1.5rem;
}
.footer__col {
  margin-bottom: 2rem;
  font-size: 14px;
  flex: 1 0 auto;
}
.footer__col:last-child {
  flex: 0 1 auto;
  min-width: 0;
}
.footer__col-title {
  margin-bottom: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}
.footer__spoilers {
  width: 100%;
}
.footer__spoilers .spoiler__body * {
  color: var(--c-text-invert) !important;
  font-size: 0.875em;
}
.footer__logo {
  height: 32px;
  display: flex;
}
.footer__logo img {
  height: 100%;
  width: auto;
}
.footer__item {
  margin-bottom: 1.5rem;
}
.footer__item-title {
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 14px;
}
.footer__item-content {
  margin-bottom: 0.75em;
}

@media screen and (min-width: 768px) {
  .footer__container {
    max-width: calc(1280px + 2rem);
    padding: 3rem 1rem 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .footer__spoilers {
    margin: 0 auto;
    max-width: calc(1280px + 2rem);
  }
  .footer__col {
    min-width: 180px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer__logo {
    height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__logo {
    height: 47px;
  }
  .footer__col:last-child br {
    display: none;
  }
  .footer__col-title {
    font-size: 20px;
    margin-bottom: 1.4rem;
  }
  .footer__item-title {
    font-size: 17px;
    margin-bottom: 1.4rem;
  }
  .footer__item-content {
    font-size: 16px;
    margin-bottom: 1.25em;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
}
.modal.show {
  display: block;
}
.modal__container {
  padding: 1rem;
  display: flex;
  align-items: start;
  height: 100vh;
}
.modal__dialog {
  position: relative;
  margin: 3rem auto;
  min-width: 280px;
  max-height: 100%;
  padding: 3.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  background: var(--c-text-invert);
  color: var(--c-text);
}
.modal__header {
  padding: 0 1.5rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}
.modal__title {
  line-height: 1.25;
  text-transform: uppercase;
}
.modal__title .nowrap {
  white-space: normal;
  display: block;
}
.modal__body {
  padding: 0 1.5rem 1rem;
  overflow-y: auto;
  text-align: center;
}
.modal__body-text {
  margin-bottom: 1.25rem;
}
.modal__submit {
  text-transform: uppercase;
  min-width: 280px;
  padding-top: 2em;
  padding-bottom: 1.75em;
  margin-top: 1rem;
  width: 100%;
}
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 3rem;
  width: 3rem;
  line-height: 1;
  border: none;
  background: none;
  font-size: 3rem;
  cursor: pointer;
  transition: 0.15s ease;
  color: var(--c-primary);
}
.modal__close:hover {
  color: var(--c-text);
}
.modal .btn:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
}
.modal .btn:hover:after {
  border-color: var(--c-primary-dark);
}

@media screen and (min-width: 768px) {
  .modal__dialog {
    width: 550px;
  }
  .modal__header {
    padding: 1rem 2.5rem;
  }
  .modal__title .nowrap {
    white-space: nowrap;
    display: unset;
  }
  .modal__body {
    padding: 0 2.5rem 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .modal__container {
    align-items: center;
  }
}
.advantages {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.advantages__title {
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-size: calc(22px + 11 * ((100vw - 320px) / 1600));
  font-weight: 600;
  text-align: center;
  color: var(--c-text);
}
.advantages__nav {
  padding: 0 0.5rem;
  margin: 0 -2rem;
  margin-bottom: 15px;
  display: flex;
  overflow: auto;
}
.advantages__nav > li {
  min-width: 200px;
  width: 100%;
  max-width: 360px;
  margin: 0.5rem;
}
.advantages__item {
  margin-bottom: 2rem;
}
.advantages__item p {
  margin-bottom: 1em;
  text-align: center;
}
.advantages__item-title {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .advantages__nav {
    margin: 0 -1rem;
  }
}

@media screen and (min-width: 1025px) {
  .advantages {
    padding: 6rem 0 0;
  }
  .advantages__nav {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .advantages__nav > li {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .advantages__item p {
    max-width: 800px;
    margin: 3rem auto 0;
    margin-bottom: 2rem;
    font-size: 18px;
  }
  .advantages__item img {
    margin-top: 4rem;
  }
  .advantages__action-btn {
    margin-top: 2rem;
  }
}

/* Advantages Slider */
.adv-slider:not(.active) {
  display: none;
}
.adv-slider__slide {
  padding: 0 16px;
  position: relative;
}
.adv-slider__slide img {
  width: 100%;
}
.adv-slider__slide:not(.slick-current) {
  cursor: pointer;
}
.adv-slider__slide:not(.slick-current)::after {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%) scaleX(-1);
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  width: 80px;
  height: 290px;
  max-width: 100%;
  max-height: 100%;
  background: #4e4e4e;
  opacity: 0.66;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAyCAYAAABCtcuVAAACnElEQVRYR7XY3YdVYRTH8bN7U930B3QTRTRF79HLEFEUI8OkaCjKmCRJMhdDMRcjSVKNSNFQk7pIihSRml41pdv+lpy+a/udY85uvz9rH5Z1zDjPx1prP+c8e0ftdntrq9X6TkxHUTRMbuQVAa1h5T9a/Q7YmSakyBYFW0X6RawgboKd88ZiSNhq8m9iOXEd7IIn1oWErVVlS8lXwS55YT2QsD7yT2IxMQk25oH9BwnbSJ4j7P8TYOOhWCokbDP5h4ArYJdDsExI2DbyNwHjYBN1sVxI2A7yFwFjYJN1sEJI2E7yrICLYNeqYqUgYf3k9wLOg92ogpWGhO0lvxNwFuxWWawSJGwf+a2AUbCpMlhlSNh+8msBI2B3i7BakLCD5JcCToHdy8NqQ8IGyM8FnAR7kIUFQcIGyc8EDINNp2HBkLAh8hMBx8AeJzEXSNhR8iMBQ2BP52NukLDj5IcCDoN15hf/DLi+OBacYMH7WnQA7IW9d4dU2WlyZ28dAnvVCCRslHxblR1oDBI2Qo6/opqGZjCOEHONQFwQC1n8E7Gd+MCM+t0hIfaLbEftjyB73FsHsoBFDbGzRhdxhUCsO4Z02zV/g7q0Lm0myW+BYAhkkSrZkmyXW0VCvrKgHTZ7ZuJWkdplSG4lHbBW6xKXcLxPkhUEV6R2fdY+KYVUvrxB7FbGLmGbSWmkEiTEZrKpaPBpbSw1I5AlfNgQu2/KvbqyZlUIJSqp1K7S+yixT2ojuTNSu2zwNpMgJBMCWaaZbKg7k8J9JMQe2djdea3BF151IPZ8wZD1nkhP64TYjbG1K3gmqa0Dsccytk+sEnckrghkJfkNsc67XT37CMjOXXb+muVbeHfWzg79u1W0i0XsvtQexfwNXTDr8/8Apmj4Pa9PGAcAAAAASUVORK5CYII=);
  background-size: 26px 49px;
  background-repeat: no-repeat;
  z-index: 22;
  cursor: pointer;
  background-position: center;
  transition: background-color 0.3s;
}
.adv-slider__slide.slick-current + .adv-slider__slide::after {
  left: 16px;
  right: auto;
  transform: translate(0, -50%);
}
.adv-slider__slide:hover::after {
  background-color: #2f2f2f;
}
.adv-slider__text {
  font-size: 24px;
  margin-top: 30px;
  text-align: center;
  color: black;
}
.adv-slider__slide:not(.slick-current) .adv-slider__text {
  display: none;
}
.adv-slider .slick-dots {
  width: 45%;
  margin: 0 auto;
  display: flex;
  margin-top: 30px;
  padding: 0;
  background-color: #ddd;
}
.adv-slider .slick-dots li {
  font-size: 0;
  height: 3px;
  width: 100%;
  background: var(--c-primary);
  border: none;
  transition: .5s ease;
}
.adv-slider .slick-dots li.slick-active ~ li {
  width: 0!important;;
}
.adv-slider .slick-dots button {
  display: none;
}

@media (max-width: 768px) {
  .adv-slider {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .adv-slider__slide::after {
    content: none!important;
  }
}

@media (max-width: 767px) {
  .adv-slider__slide {
    padding-left: 4px;
    padding-right: 4px;
  }

  .advantages__content-item {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (max-width: 500px) {
  .adv-slider__text {
    font-size: 16px;
  }
  .slick-dots {
    font: 65%;
  }
}


.consent {
  margin-top: 1rem;
  font-size: .75em;
  color: #777;
  text-align: left;
}
.consent a {
  color: #444;
}
.consent a:not(:hover) {
  text-decoration: underline;
}

.cookie-consent {
  position: fixed;
  z-index: 10000000000;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 370px;
  padding: 1rem;
  background: var(--c-bg);
  border-radius: 1rem;
  box-shadow: 0 0 16px #0004;
  font-size: .875rem;
}
.cookie-consent__text a:not(:hover) {
  text-decoration: underline;
}

.cookie-consent__btn {
  margin-top: 1rem;
  border: none;
  width: 100%;
  padding: 1rem  2rem;
  background: var(--c-primary);
  color: var(--c-bg);
  font-weight: normal;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
}

@media (min-width: 758px) {
  .cookie-consent {
    bottom: 2rem;
    left: 2rem;
    right: unset;
  }
}

.policy-consent {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  inset: 0;
  height: 100%;
  z-index: 10000000000;
  color: inherit;
}
.policy-consent__wrap {
  background: var(--c-bg);
  padding: 1rem;
  overflow: auto;
  height: 100%;
}
.policy-consent__close {
  display: block;
  margin-bottom: 1rem;
  margin-left: auto;
  background: none;
  border: none;
  font-weight: 100;
  stroke: currentColor;
  cursor: pointer;
}
.policy-consent__header {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.375em;
  font-weight: 600;
}
.policy-consent__back {
  background: none;
  border: none;
  stroke: currentColor;
  opacity: .5;
  cursor: pointer;
}
.policy-consent__btn {
  position: sticky;
  bottom: 0;
  margin-top: 1rem;
  border: none;
  width: 100%;
  padding: 1rem  2rem;
  background: var(--c-primary);
  color: var(--c-bg);
  font-weight: normal;
  font-size: 1rem;
  text-align: center;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .policy-consent__wrap {
    margin-left: auto;
    max-width: 520px;
    padding: 2rem 4rem 2rem 5rem;
  }
  .policy-consent__back {
    display: none;
  }
  .policy-consent__close {
    position: relative;
    top: -1rem;
    right: -3rem;
  }
  .policy-consent__header {
    font-size: 1.75em;
  }
}