@charset "UTF-8";

@font-face {
  font-family: TENET;
  src:url(../fonts/TENETSans-Regular.otf) format("opentype");
  font-weight:400;
  font-style:normal;
  font-display:swap
}
@font-face {
  font-family: TENET;
  src:url(../fonts/TENETSans-SemiExpandedBold.otf) format("opentype");
  font-weight:700;
  font-style:normal;
  font-display:swap
}

@keyframes zoomPulse {
  from { transform: scale(1) }
  to { transform: scale(1.2) }
}
@-webkit-keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}
@keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}

* {
  scroll-behavior: smooth;
}

:root {
  --c-primary: #00657B;
  --c-primary-light: #057f9b;
  --c-primary-light-2: #26a2be;
  --c-primary-dark: #2b2827;
  --c-bg: #F6F7F7;
  --c-text: #3E3A39;
  --c-secondary: #ABBBBE;
  --c-secondary-light: #c0d1d4;
  --c-accent: #c30d23;
}
.plyr__control--overlaid {
  --plyr-control-icon-size: 60px;
}

.text-accent {
  color: var(--c-accent)!important;
}
.text-secondary {
  color: var(--c-secondary)!important;
}
.text-primary-light {
  color: var(--c-primary-light)!important;
}

html {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

html, body {
  max-width: 100vw;
  /* overflow-x: hidden; */
}

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

video {
  outline:none;
  clip-path: fill-box;
  filter: grayscale(0);
}

.nowrap {
  white-space: nowrap !important;
}

.btn {
  position: relative;
  height: 45px;
  display: inline-flex;
  place-items: center;
  padding: 0 20px;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid;
  border-radius: 12px;
  overflow: hidden;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}
.btn > span {
  position: relative;
}
.btn--primary {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #ffffff;
}
.btn--primary:hover,
.btn--primary.active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  box-shadow: var(--c-secondary) 0px 4px 14px;
}
@media (pointer: coarse) {
  .btn--primary:hover:not(.active) {
    background: var(--c-primary);
  }
}
.btn--secondary {
  background: transparent;
  border: 2px solid var(--c-text);
  color: var(--c-text);
}
.btn--secondary:hover {
  color: white;
  border-color: var(--c-primary);
  background: var(--c-primary);
}
.btn--lg {
  height: 55px;
}
@media (max-width: 767px) {
  .btn,
  .btn--lg {
    height: auto;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}
@media (min-width: 768px) {
  .btn--lg {
    height: 65px;
    font-size: 20px;
  }
}
.btn--primary-light {
  background-color: var(--c-primary-light);
  border: 1px solid var(--c-primary-light-2);
  color: var(--c-bg);
}
.btn--primary-light:hover:not(.active) {
  background: var(--c-primary-light-2);
  box-shadow: var(--c-primary-light) 0px 4px 14px;
}

.btn--secondary-filled {
  background: var(--c-secondary);
  border-color: var(--c-secondary);
  color: var(--c-text);
}
.btn--secondary-filled:hover {
  background: var(--c-secondary-light);
  border-color: var(--c-secondary-light);
}

.input-radio {
  margin-bottom: .5em;
  display: flex;
  gap: .75em;
}
.input-radio input {
  appearance: none;
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  color: var(--c-text);
  padding: 0!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-radio input:checked {
  border-color: var(--c-primary);
  color: var(--c-primary)!important;
}
.input-radio input:checked::after {
  content: '';
  display: block;
  width: .4em;
  height: .4em;
  flex: 0 0 .4em;
  background: var(--c-primary);
  border-radius: 50%;
}
.radio-group-label {
  margin-bottom: 1.125rem!important;
}
@media (min-width: 768px) {
  .radio-group-label {
    margin-bottom: 1.5rem!important;
  }
}

.header {
  max-width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
  .header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:1rem;
  padding: 1.375rem 2.5rem;
  color: var(--c-bg);
  background: #0D171A;
  backdrop-filter: blur(10px);
}
.header__secondary {
  padding: .75rem 2.5rem;
  text-align: center;
  background: var(--c-secondary);
  color: var(--c-bg);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header__logo img:nth-of-type(2) {
  margin-top: 4px;
}
.header__logo-line {
  width: 1px;
  background-color: var(--c-bg);
  align-self: stretch;
}
.header__secondary-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header__secondary-nav ul {
  width: 100%;
  justify-content: center;
}
.header__secondary-nav ul li a:hover {
  color: var(--c-primary);
}
.header__secondary-nav .drawer-list ul li a:hover {
  color: inherit;
}
.header__secondary-nav-small {
  display: none;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 2em;
}
.header-nav ul li a {
  display: flex;
  transition: .25s ease-in-out;
  color: inherit;
}
.header-nav ul li a:hover {
  color: var(--c-primary-light);
}
.header-nav ul li a svg {
  margin-right: .5em;
}
.header__primary-nav {
  font-size: clamp(12px, 0.675vw, 1rem);
}
@media (max-width: 1600px) {
  .header__secondary-nav-small {
    display: block;
  }
  .header__primary-nav .main-menu {
    display: none;
  }
  .header__logo {
    transform: none!important;
    position: static;
    margin-right: auto;
  }
}
@media (max-width: 1420px) and (min-width: 1280px) {
  .header__logo {
    transform: translateX(-66%) scale(0.8);
  }
}
@media (max-width: 1279px) {
  .header__main {
    backdrop-filter: none;
    background: var(--c-primary);
  }
  .header__primary-nav {
    display: none;
  }
  .header__logo {
    position: static;
    transform: none;
  }
}
@media (max-width: 991px) {
  .header__main {
    padding: 1rem;
  }
  .header__secondary {
    display: none;
  }
  .header__logo img {
    max-width: 40%;
  }
}
@media (max-width: 525px) {
  .header__callback-btn {
    display: none;
  }

  .header .menu {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .call-disabled .header-tel-contact {
    display: none !important;
  }
}


@media only screen and (max-width: 1300px) {
  body header, body .menu_desk, body main .block2, body main .block3 .block3_content, body main .block4 .block4_content, body main .block5 {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 1000px) {
  body header, body .menu_desk, body main .block2, body main .block3 .block3_content, body main .block4 .block4_content, body main .block5 {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 980px) {
  body header, body .menu_desk, body main .block2, body main .block3 .block3_content, body main .block4 .block4_content, body main .block5 {
    max-width: 726px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  body header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--c-bg);
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 750px) {
  body header, body .menu_desk, body main .block2, body main .block3 .block3_content, body main .block4 .block4_content, body main .block5 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

html {
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  /* свойство scroll-behavior не наследуется, применяется к прокручиваемым блокам */
}

a {
  text-decoration: none;
  color: var(--c-text);
  transition: .15s ease;
}

a:active,
a:focus {
  outline: none;
}

input,
textarea,
select {
  outline: none;
  transition: .2s ease-in-out;
  border: 2px solid #acafb044;
}

input:active,
textarea:active,
select:active,
input:focus,
textarea:focus,
select:focus,
input:hover,
textarea:hover,
select:hover {
  border-color: var(--c-primary);
}


:focus {
  outline: none;
}

textarea {
  resize: none;
}

textarea {
  resize: vertical;
}

textarea {
  resize: horizontal;
}

input::focus::-webkit-input-placeholder {
  color: transparent;
}

input::focus:-ms-input-placeholder {
  color: transparent;
}

input::focus::-ms-input-placeholder {
  color: transparent;
}

input::focus::placeholder {
  color: transparent;
}

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" fill="%2300657B"/></svg>');
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

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

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

.page::-webkit-scrollbar {
  width: 6px;
  height: 85px;
  background-color: transparent;
}

.page::-webkit-scrollbar-thumb {
  background-color: #000;
}


body {
  color: var(--c-text);
  background-color: var(--c-bg);
  font-style: normal;
  scroll-behavior: smooth;
  /* свойство scroll-behavior не наследуется, применяется к прокручиваемым блокам */
}

body header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body header .header_content {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 980px) {
  body header .header_content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 50px;
  }
}

@media only screen and (max-width: 570px) {
  body header .header_content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 50px;
  }
}

@media only screen and (max-width: 380px) {
  body header .header_content {
    margin-right: 40px;
  }
}

body header .header_content .header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  margin-right: 30px;
  flex: 0 0 auto;
}

@media (max-width: 1200px) {
  body header .header_content .header_logo {
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (max-width: 991px) {
  body header .header_content .header_logo a {
    margin-right: 20px;
  }
  body header .header_content {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 570px) {
  body header .header_content .header_logo a {
    height: 100%;
    margin-right: 0px;
    display: flex;
    align-items: center;
  }
  body header .header_content .header_logo a img {
    max-height: 50px;
    margin-top: -15px;
    margin-bottom: -10px;
  }
}

.header_logo a {
  font-size: 0;
}

body header .header_content .header_logo a img {
  height: 38px;
}

body header .header_content .header_logo .line {
  margin: 0 20px;
  width: 1px;
  background: #AFAFAF;
  height: 45%;
  cursor: pointer;
}

@media only screen and (max-width: 980px) {
  body header .header_content .header_logo .line {
    display: none;
  }
}

@media only screen and (max-width: 570px) {
  body header .header_content .header_logo .line {
    display: none;
  }
}

body header .header_content .header_logo p {
  font-weight: 500;
  font-size: 12.9px;
}

@media only screen and (max-width: 980px) {
  body header .header_content .header_logo p {
    display: none;
  }
}

body header .header_content .header_logo p:nth-of-type(2) {
  font-weight: 400;
}

body header .header_logo_name p:nth-child(2) {
  font-size: 11px;
}

body header .header_content .header_map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  font-size: 12px;
  padding: 0 15px;
  max-width: 400px;
}

body header .header_content .header_map svg {
  margin-right: 10px;
  flex: 1 0 auto;
}

@media only screen and (max-width: 1200px) {
  body header .header_content .header_map {
    display: none;
  }
}

body header .header_content .header_right_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
}

@media only screen and (max-width: 330px) {
  body header .header_content .header_right_info {
    display: none;
  }
}

body header .header_content .header_right_info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
}

body header .header_content .header_right_info a svg {
  margin-right: 10px;
}

@media only screen and (max-width: 370px) {
  body header .header_content .header_right_info a svg {
    margin-right: 0px;
  }
}

body header .header_content .header_right_info a[href^="tel"] {
  font-weight: 700;
  font-size: 12px;
  margin-right: 25px;
  color: white;
}

@media (max-width: 980px) {
  body header .header_content .header_right_info {
    margin-left: auto;
  }
}


@media (min-width: 741px) and (max-width: 980px) {
  body header .header_content .header_right_info {
    padding-left: 10px;
    padding-right: 30px;
  }
  body header .header_content .header_right_info a[href^="tel"] {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 570px) {
  body header .header_content .header_right_info a[href^="tel"] {
    font-size: 14px;
    margin-right: 0px;
  }
}

@media only screen and (max-width: 360px) {
  body header .header_content .header_right_info a[href^="tel"] {
    font-size: 11px;
  }
}

@media only screen and (max-width: 740px) {
  body header .header_content .header_right_info a:last-child {
    display: none;
  }
}

body header .header_content .header_right_info img {
  height: 100%;
}

body .menu_desk {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-bg);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 10px;
}

body .menu_desk div {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

@media only screen and (max-width: 1300px) {
  body .menu_desk {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 1000px) {
  body .menu_desk {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 980px) {
  body .menu_desk {
    display: none;
  }
}

body .menu_desk a {
  padding-top: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 18px;
  -webkit-transition: all .17s ease;
  transition: all .17s ease;
  color: var(--c-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  padding: 16px 10px 12px;
}
body .menu_desk li {
  list-style: none;
  flex: 0 0 auto;
}

body .menu_desk a {
  font-size: 12px;
}

body .menu_desk a {
  border-bottom: 4px solid transparent;
  height: 52px;
  margin-bottom: -1px;
}
body .menu_desk a svg {
  transition: .15s ease;
}
body .menu_desk a:hover {
  border-bottom: 4px solid var(--c-primary);
  color: var(--c-text);
}
body .menu_desk a:hover svg {
  fill: #000;
}

body .menu_desk a svg {
  margin-right: 10px;
}

body main .block1 {
  color: white;
  background-image: url("../img/block1/block1_fon.jpg");
  background-position: right 52%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1400px) {
  body main .block1 {
    background-position: -100px 52%;
  }
}

@media only screen and (max-width: 1050px) {
  body main .block1 {
    background-position: right 50%;
  }
}

@media only screen and (max-width: 980px) {
  body main .block1 {
    margin-top: 28px;
  }
}

@media only screen and (max-width: 750px) {
  body main .block1 {
    padding: 0 !important;
  }
}

@media only screen and (max-width: 400px) {
  body main .block1 {
    background-position: 92.5% 50%;
  }
}

body main .block1 .block1_content {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  border-radius: 0.4rem;
  padding: 50px 0px;
  position: relative;
}

@media only screen and (max-width: 1300px) {
  body main .block1 .block1_content {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 1000px) {
  body main .block1 .block1_content {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 980px) {
  body main .block1 .block1_content {
    max-width: 726px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 750px) {
  body main .block1 .block1_content {
    width: 100%;
    padding-left: 2.64%;
    padding-right: 2.64%;
  }
}

@media only screen and (max-width: 600px) {
  body main .block1 .block1_content {
    max-width: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding: 20px 20px;
  }
}

@media only screen and (max-width: 1000px) {
  body main .block1 .block1_content {
    background-position: 70%;
  }
}

@media only screen and (max-width: 750px) {
  body main .block1 .block1_content {
    border-radius: 0;
    background-position: 80%;
  }
}

body main .block1 .block1_content .block1_content_tittle2 {
  font-size: 37px;
  font-weight: 500;
  color: white;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle2 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle2 {
    font-size: calc(16px + 18 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (min-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle2 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle2 {
    margin-bottom: calc(10px + 20 * ((100vw - 320px) / 1600));
  }
}

body main .block1 .block1_content .block1_content_tittle3 {
  font-size: 37px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle3 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle3 {
    font-size: calc(16px + 18 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (min-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle3 {
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle3 {
    margin-bottom: calc(25px + 20 * ((100vw - 320px) / 1600));
  }
}

body main .block1 .block1_content .block1_content_tittle {
  z-index: 20;
  position: relative;
  font-size: 47px;
  color: white;
  font-weight: 900;
  margin-bottom: 21px;
}

@media only screen and (min-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle {
    font-size: 44px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block1 .block1_content .block1_content_tittle {
    font-size: calc(19px + 25 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (max-width: 1100px) {
  body main .block1 .block1_content .block1_content_tittle br {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  body main .block1 .block1_content .block1_content_tittle br {
    display: block;
  }
}

@media only screen and (max-width: 750px) {
  body main .block1 .block1_content .block1_content_tittle {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  body main .block1 .block1_content .block1_content_tittle {
    width: 100%;
  }
}

body main .block1 .block1_content .block1_content_card {
  z-index: 20;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

body main .block1 .block1_content .block1_content_card .block1_content_card_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
}

body main .block1 .block1_content .block1_content_card .block1_content_card_item:not(:last-child) {
  margin-bottom: 9px;
}

body main .block1 .block1_content .block1_content_card .block1_content_card_item div {
  height: 2px;
  width: 14px;
  background: #000;
  margin-right: 10px;
}

body main .block1 .block1_content .block1_content_card .block1_content_card_item p {
  font-size: 22px;
  font-weight: 500;
}

@media only screen and (max-width: 750px) {
  body main .block1 .block1_content .block1_content_card .block1_content_card_item p {
    font-size: 14px;
  }
}

body main .block1 .block1_content .block1_content_bottom_info {
  z-index: 20;
  position: relative;
  color: white;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  body main .block1 .block1_content .block1_content_bottom_info {
    font-size: 18px;
    margin: 20px 0;
  }
}

body main .block1 .block1_content .block1_content_bottom_info span {
  color: #000;
}

body main .block1 .block1_content a {
  text-transform: uppercase;
  z-index: 20;
  position: relative;
  cursor: pointer;
  color: white;
  display: inline-block;
  padding: 17px 40px;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  text-align: center;
  background-color: #000;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.4s ease,background 0.4s ease;
  transition: all 0.4s ease,background 0.4s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  text-transform: uppercase;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1920px) {
  body main .block1 .block1_content a {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block1 .block1_content a {
    font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (min-width: 1920px) {
  body main .block1 .block1_content a {
    margin-top: 90px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block1 .block1_content a {
    margin-top: calc(30px + 60 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (max-width: 600px) {
  body main .block1 .block1_content a {
    padding: 18px 0px;
  }
}

body main .block1 .block1_content a:after {
  content: '';
  display: block;
  width: 30px;
  height: 200px;
  opacity: 0.5;
  margin-left: 60px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0))) no-repeat -2px 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) no-repeat -2px 0;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3ffffff', endColorstr='#b3ffffff',GradientType=0 );
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media only screen and (max-width: 750px) {
  body main .block1 .block1_content a {
    padding: 14px 40px;
  }
}

@media only screen and (max-width: 600px) {
  body main .block1 .block1_content a {
    padding: 14px 0px;
    width: 100%;
  }
}

body main .block1 .block1_content a:hover {
  background-color: #000;
  opacity: 0.7;
}

body main .block2_to {
  margin-top: 60px;
  margin-bottom: 60px;
  border: 0px;
  border-bottom: 1px solid var(--c-primary-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media only screen and (max-width: 1000px) {
  body main .block2_to {
    margin-top: 50px;
    margin-bottom: 50px;
    width: 80%;
  }
}

@media only screen and (max-width: 600px) {
  body main .block2_to {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}

body main .block2 {
  color: var(--c-text);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 50px;
}

@media only screen and (max-width: 1100px) {
  body main .block2 {
    margin-top: 45px;
  }
}

body main .block2 .block2_content {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

body main .block2 .block2_content .block2_content_card {
  margin-bottom: 3rem;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

@media (min-width: 1101px) {
  body main .block2 .block2_content .block2_content_card {
    margin-bottom: 4.5rem;
    padding: 2rem;
    border-radius: 24px;
  }
}

@media only screen and (max-width: 1100px) {
  body main .block2 .block2_content .block2_content_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda {
  overflow: hidden;
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda, body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  padding: 15px 40px 15px 28px;
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda img, body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda img {
  margin-right: 7px;
}

@media (max-width: 480px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda img, body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda img {
    width: 20px;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p, body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p {
  z-index: 20;
  position: relative;
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p:nth-of-type(1), body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(1) {
  font-size: 14px;
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p:nth-of-type(2), body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(2) {
  font-size: 24px;
  line-height: 32px;
}

@media only screen and (min-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p:nth-of-type(2), body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(2) {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p:nth-of-type(2), body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(2) {
    font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (max-width: 600px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p:nth-of-type(2), body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(2) {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 374px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p:nth-of-type(1), body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(1) {
    font-size: 12px;
  }
}
@media only screen and (max-width: 380px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p:nth-of-type(2), body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(2) {
    font-size: 16px;
  }
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda img {
    margin-right: 12px;
  }
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda div p {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 411px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda p:nth-of-type(2), body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(2) {
    font-size: 14px;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda {
  background-color: var(--c-primary);
  color: white;
}

@media only screen and (max-width: 600px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda {
    padding: 10px 30px 10px 30px;
  }
}

@media only screen and (max-width: 430px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda {
    padding: 10px 15px 10px 20px;
  }
}

@media only screen and (max-width: 411px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda {
    padding: 10px 5px 10px 15px;
  }
}
@media only screen and (max-width: 359px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda {
    padding: 10px;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .left_vigoda div {
  position: relative;
  z-index: 20;
  white-space: nowrap;
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda {
  flex: 1 0 auto;
  padding: 15px 65px 15px 50px;
  background-color: var(--c-bg);
  position: relative;
}
@media screen  and (max-width: 767px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda {
    padding: 15px 53px 15px 43px;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(2) {
  position: relative;
  text-decoration: none;
}

.right_vigoda del {
  text-decoration: none;
  position: relative;
}
.right_vigoda del::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: -2px;
  right: -2px;
  height: 3px;
  background: #000AA;
}
@media (min-width: 1200px) {
  .right_vigoda del::after {
    height: 4px;
    top: calc(50% - 2px);
  }
}
/*body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda p:nth-of-type(2)::before {
  position: absolute;
  top: 42%;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #000;*/
}

@media only screen and (max-width: 600px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda {
    padding: 10px 40px 10px 30px;
  }
}

@media only screen and (max-width: 413px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda {
    padding: 10px 35px 10px 35px;
  }
}

@media only screen and (max-width: 411px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda {
    padding: 10px 30px 10px 40px;
  }
}
@media only screen and (max-width: 359px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda {
    padding: 10px 30px 10px 30px;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda:before {
  z-index: 19;
  position: absolute;
  content: "";
  left: -50px;
  top: -20px;
  width: 60px;
  height: 140px;
  background: var(--c-primary);
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

@media only screen and (max-width: 430px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda:before {
    width: 45px;
    left: -35px;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right_vigoda .right_vigoda:after {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  width: 60px;
  height: 140px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  right: -42px;
  background: #fff;
}

body main .block2 .block2_content .block2_content_card .vigoda_desk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 990px) {
  body main .block2 .block2_content .block2_content_card .vigoda_desk {
    display: none !important;
  }
}

body main .block2 .block2_content .block2_content_card .for_vigoda {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 400;
}

body main .block2 .block2_content .block2_content_card .for_vigoda span {
  white-space: nowrap;
}

@media only screen and (min-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .for_vigoda {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .for_vigoda {
    font-size: calc(12px + 2 * ((100vw - 320px) / 1600));
  }
}

body main .block2 .block2_content .block2_content_card .for_vigoda .mobile {
  font-size: 12px !important;
}

body main .block2 .block2_content .block2_content_card .mobile {
  display: none;
}

@media only screen and (max-width: 990px) {
  body main .block2 .block2_content .block2_content_card .mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

body main .block2 .block2_content .block2_content_card .mobile_vigoda {
  display: none;
}

@media only screen and (max-width: 990px) {
  body main .block2 .block2_content .block2_content_card .mobile_vigoda {
    display: block !important;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_left {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1100px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_left {
    width: 100%;
    margin-bottom: 20px;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_left .car_img {
  width: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.car-img-wrap {
  position: relative;
}
.car-img-wrap::before {
  content: none;
  display: block;
  aspect-ratio: 1391/474;
  height: 100%;
  background: center/cover url(../img/bg.png) no-repeat;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
}

body main .block2 .block2_content .block2_content_card .block2_content_card_left .car_img:hover {
  margin-left: -10px;
}

@media only screen and (max-width: 1100px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .car_img {
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 500px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 550px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .car_img {
    width: 100%;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_content_card_left_tittle span {
  color: var(--c-accent);
}
body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_content_card_left_tittle {
  font-weight: 700;
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

@media only screen and (min-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_content_card_left_tittle {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_content_card_left_tittle {
    font-size: calc(26px + 18 * ((100vw - 320px) / 1600));
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_info_car {
  line-height: 22px;
  font-size: 14px;
  color: #999;
}


@media only screen and (min-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_info_car {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_info_car {
    font-size: calc(12px + 6 * ((100vw - 320px) / 1600));
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right {
  width: 48%;
}

@media only screen and (max-width: 1100px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right {
    width: 100%;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card {
  z-index: 20;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-top: 30px;
}

@media only screen and (max-width: 990px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card {
    margin-top: 0px;
    margin-bottom: 1.75rem;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  align-items: start;
}
body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item > div {
  margin-top: .5em;
  flex: 1 0 auto;
}
@media (max-width: 768px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item > div {
    margin-top: .35em;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item:not(:last-child) {
  margin-bottom: 9px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item:not(:last-child) {
    margin-bottom: 15px;
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item div {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--c-primary);
  transform: rotateZ(-45deg);
  margin-right: .7em;
  position: relative;
  top: .1em;
  flex: 0 0 auto;
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item p {
  font-size: 22px;
  font-weight: 500;
}

@media only screen and (min-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item p {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item p {
    font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
  }
}

body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item p span {
  font-size: 22px;
  font-weight: 700;
}

@media only screen and (min-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item p span {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_right .block2_right_content_card .block2_right_content_card_item p span {
    font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
  }
}

.buttons {
  margin-top: 30px;
}
.buttons .btn {
  display: flex;
  margin: 10px 0;
  height: 55px;
}
@media (min-width: 768px) {
  .buttons .btn {
    height: 65px;
    font-size: 20px;
  }
}

body main .block3 .block3_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1270px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
body main .block3.block3--credit .block3_content {
  flex-direction: row;
  align-items: end;
}
body main .block3.block3--credit .block3_content .block3_content_right {
  margin-bottom: 2em;
}
body main .block3.block3--credit + .block2_to {
  margin-bottom: 60px!important;
}
body main .block3.block3--credit .block3_content_left > img {
  margin-top: 30px;
}
body main .block3.block3--credit [type='submit'] {
  margin-top: 14px;
}

body main .block3.block3--tradein .block3_content .block3_content_left p:nth-of-type(2) {
  font-size: 20px;
  line-height: 1.4;
}
@media (min-width: 1201px) {
  body main .block3.block3--tradein .block3_content .block3_content_left p:nth-of-type(2) {
    max-width: 75%;
    margin: 0 auto;
  }
}

.credit__badge {
  margin-bottom: 0.5em;
  background: var(--c-accent);
  display: inline-block;
  width: auto;
  align-self: start;
  color: #fff;
  padding: .2em .5em;
}

.credit__tabs {
  display: flex;
  align-items: stretch;
  margin: 1rem 0 1.25rem;
}
.credit__tabs-btn {
  transition: .15s ease-in-out;
  user-select: none;
}
.credit__tabs-btn.current span {
  text-decoration: underline 2px;
  text-underline-offset: .375em;
}
.credit__tabs-btn:not(.current) {
  cursor: pointer;
}
.credit__tabs-btn:not(:last-child)::after {
  content: ' ';
  margin: .25em 1em;
  border-right: 1px solid currentColor;
}
.credit__tabs-btn:not(.current):not(:hover) {
  opacity: .67;
}
.credit__tabs-content-item:not(.current) {
  display: none;
}

@media only screen and (max-width: 1200px) {
  body main .block3 .block3_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  body main .block3.block3--credit .block3_content {
    flex-direction: column;
  }
  body main .block3.block3--tradein .block3_content .block3_content_left p:nth-of-type(2) {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  body main .block3 .block3_content {
    margin-bottom: 4rem;
  }
}

body main .block3 .block3_content .block3_content_left {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: center;
  margin-bottom: 2em;
}

body main .block3.block3--credit .block3_content .block3_content_left {
  text-align: left;
}
body main .block3.block3--credit .block3_content .block3_content_left img {
  max-height: 400px;
  display: flex;
  width: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 1201px) {
  body main .block3.block3--credit .block3_content .block3_content_left,
  body main .block3.block3--credit .block3_content .block3_content_right
  {
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 1300px) {
  body main .block3 .block3_content .block3_content_left {
    width: 57%;
  }
}

@media only screen and (max-width: 1200px) {
  body main .block3 .block3_content .block3_content_left {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 600px) {
  body main .block3 .block3_content .block3_content_left {
    width: 100%;
  }
}

body main .block3 .block3_content .block3_content_left img {
  width: 100%;
}

body main .block3 .block3_content .block3_content_left p:nth-of-type(1) {
  color: var(--c-text);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: .5em;
  font-size: 2em;
}
body main .block3 .block3_content .block3_content_left p:nth-of-type(2) {
  color: #999;
  line-height: 1.2;
  font-weight: 400;
  font-size: .875em;
}
@media (min-width: 1101px) {
  body main .block3 .block3_content .block3_content_left p:nth-of-type(1) {
    margin-bottom: 20px;
    font-size: calc(26px + 18 * ((100vw - 320px) / 1600));
  }
  body main .block3 .block3_content .block3_content_left p:nth-of-type(2) {
    font-size: 1.125em;
  }
}
@media (min-width: 1921px) {
  body main .block3 .block3_content .block3_content_left p:nth-of-type(1) {
    font-size: 40px;
  }
}


body main .block3 .block3_content .block3_content_right {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media only screen and (max-width: 1300px) {
  body main .block3 .block3_content .block3_content_right {
    width: 40%;
  }
}

@media only screen and (max-width: 1200px) {
  body main .block3 .block3_content .block3_content_right {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 900px) {
  body main .block3 .block3_content .block3_content_right {
    width: 80%;
  }
}

@media only screen and (max-width: 900px) {
  body main .block3.block3--credit .block3_content .block3_content_right {
    margin-bottom: 0;
  }
  body main .block3 .block3_content .block3_content_right {
    width: 90%;
  }
}

@media only screen and (max-width: 600px) {
  body main .block3 .block3_content .block3_content_right {
    width: 100%;
  }
}

body main .block3 .block3_content .block3_content_right form {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body main .block3 .block3_content .block3_content_right form .form_card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 460px) {
  body main .block3 .block3_content .block3_content_right form .form_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

body main .block3 .block3_content .block3_content_right form .form_card .form_item:nth-of-type(1) {
  width: 50%;
}

@media only screen and (max-width: 460px) {
  body main .block3 .block3_content .block3_content_right form .form_card .form_item:nth-of-type(1) {
    width: 100%;
  }
}

body main .block3 .block3_content .block3_content_right form .form_card .form_item:nth-of-type(2) {
  width: 37%;
}

@media only screen and (max-width: 500px) {
  body main .block3 .block3_content .block3_content_right form .form_card .form_item:nth-of-type(2) {
    width: 45%;
  }
}

@media only screen and (max-width: 460px) {
  body main .block3 .block3_content .block3_content_right form .form_card .form_item:nth-of-type(2) {
    width: 100%;
  }
}



body main .block3 .block3_content .block3_content_right form .form_item {
  width: 100%;
}
@media (min-width: 1201px) {
  body main .block3.block3--tradein .block3_content .block3_content_right form .form_item {
    margin-bottom: 1em;
  }
  body main .block3.block3--credit .block3_content .block3_content_right form .form_item {
    margin-bottom: 1.6em;
  }
}

body main .block3 .block3_content .block3_content_right form .form_item input::-webkit-input-placeholder {
  font-size: 16.6px;
  color: #abbbbe;
  line-height: 1.2;
  font-weight: 400;
}

body main .block3 .block3_content .block3_content_right form .form_item input:-ms-input-placeholder {
  font-size: 16.6px;
  color: #abbbbe;
  line-height: 1.2;
  font-weight: 400;
}

body main .block3 .block3_content .block3_content_right form .form_item input::-ms-input-placeholder {
  font-size: 16.6px;
  color: #abbbbe;
  line-height: 1.2;
  font-weight: 400;
}

body main .block3 .block3_content .block3_content_right form .form_item input::placeholder {
  font-size: 16.6px;
  color: #abbbbe;
  line-height: 1.2;
  font-weight: 400;
}

body main .block3 .block3_content .block3_content_right form .form_item select, body main .block3 .block3_content .block3_content_right form .form_item input,
input[type=text],
input[type=tel],
inpyt[type=email],
textarea {
  width: 100%;
  padding: 15px 28px;
  background-color: transparent;
  font-size: 16.6px;
  line-height: 1.2;
  font-weight: 400;
  border-radius: 12px;
  border: 1px solid var(--c-primary-light);
}

@media only screen and (max-width: 1200px) {
  body main .block3 .block3_content .block3_content_right form .form_item select, body main .block3 .block3_content .block3_content_right form .form_item input {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 600px) {
  body main .block3 .block3_content .block3_content_right form .form_item select, body main .block3 .block3_content .block3_content_right form .form_item input {
    padding: 12px 48px 12px 28px;
  }
}

body main .block3 .block3_content .block3_content_right form .form_item select option, body main .block3 .block3_content .block3_content_right form .form_item input option {
  margin-top: 10px;
  margin-bottom: 10px;
}

body main .block3 .block3_content .block3_content_right form .form_item p {
  font-size: 15.2px;
  color: var(--c-text);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 7px;
}

body main #obmen {
  margin-bottom: 0px;
}

body main .block4 {
  background-color: #000;
  color: #fff;
  background-image: url(../img/block4/block4_fon.png);
  background-position: center top;
  background-size: auto;
  padding: 0px 0px;
  background-repeat: no-repeat;
  padding-bottom: 80px;
  padding-top: 30px;
}

@media only screen and (max-width: 600px) {
  body main .block4 {
    padding-bottom: 0px;
  }
}

body main .block4 .block4_content {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media only screen and (max-width: 1300px) {
  body main .block4 .block4_content {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 1000px) {
  body main .block4 .block4_content {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 980px) {
  body main .block4 .block4_content {
    max-width: 726px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 750px) {
  body main .block4 .block4_content {
    width: 100%;
    padding-left: 2.64%;
    padding-right: 2.64%;
  }
}

@media only screen and (max-width: 600px) {
  body main .block4 .block4_content {
    max-width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

body main .block4 .block4_content .block4_content_tittle {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 50px;
}

@media only screen and (min-width: 1920px) {
  body main .block4 .block4_content .block4_content_tittle {
    font-size: 48px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block4 .block4_content .block4_content_tittle {
    font-size: calc(22px + 26 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (max-width: 500px) {
  body main .block4 .block4_content .block4_content_tittle {
    margin-bottom: 15px;
    margin-top: 30px;
  }
}

body main .block4 .block4_content .block4_content_tittle span {
  color: #000;
}

body main .block4 .block4_content .block4_description {
  font-size: 29px;
  font-weight: 400;
}

@media only screen and (min-width: 1920px) {
  body main .block4 .block4_content .block4_description {
    font-size: 29px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block4 .block4_content .block4_description {
    font-size: calc(18px + 11 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (max-width: 980px) {
  body main .block4 .block4_content .block4_description br {
    display: none;
  }
}

body main .block4 .block4_content form {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 980px) {
  body main .block4 .block4_content form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-top: 20px;
  }
}

body main .block4 .block4_content form input {
  width: 100%;
  max-width: 240px;
  padding: 15px 28px;
  border: 1px solid #d0d0d2;
  padding: 15px 20px;
  font-size: 16.6px;
  color: #d0d0d2;
  line-height: 1.2;
  font-weight: 400;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
}

body main .block4 .block4_content form input:focus {
  border: 1px solid white;
}

@media only screen and (max-width: 980px) {
  body main .block4 .block4_content form input {
    max-width: inherit;
    margin-bottom: 10px;
    width: 100%;
  }
}

body main .block4 .block4_content form button {
  width: 100%;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #000;
  color: white;
  text-transform: uppercase;
  z-index: 20;
  position: relative;
  cursor: pointer;
  padding: 15px 28px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #000;
  text-transform: uppercase;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1920px) {
  body main .block4 .block4_content form button {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block4 .block4_content form button {
    font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
  }
}

body main .block4 .block4_content form button:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 600px) {
  body main .block4 .block4_content form button {
    padding: 18px 0px;
  }
}

body main .block4 .block4_content form button:after {
  content: '';
  display: block;
  width: 30px;
  height: 200px;
  opacity: 0.5;
  margin-left: 60px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0))) no-repeat -2px 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) no-repeat -2px 0;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3ffffff', endColorstr='#b3ffffff',GradientType=0 );
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media only screen and (max-width: 980px) {
  body main .block4 .block4_content form button {
    max-width: inherit;
    margin-bottom: 10px;
    width: 100%;
  }
}

body main .block5 {
  max-width: 1270px;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--c-bg);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
}
.block3 + .block5 {
  margin-top: 3rem;
}
.block5 a {
  color: inherit;
}

@media only screen and (max-width: 1300px) {
  body main .block5 {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 1000px) {
  body main .block5 {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 750px) {
  body main .block5 {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.64%;
    padding-right: 2.64%;
  }
}

@media only screen and (max-width: 670px) {
  body main .block5 {
    margin-top: 30px;
    padding-top: 0px;
    border: 0px;
  }
}

@media only screen and (max-width: 600px) {
  body main .block5 {
    max-width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

body main .block5 .block5_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 670px) {
  body main .block5 .block5_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding-top: 0px;
    border-top: 1px solid gray;
    padding-top: 40px;
    margin-bottom: 0;
  }
}

body main .block5 .block5_top .block5_top_left {
  width: 17%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
@media (min-width: 671px) {
  body main .block5 .block5_top .block5_top_left {
    padding-bottom: 1.875rem;
    gap: 4.75rem;
  }
}

body main .block5 .block5_top .block5_top_left a {
  display: flex;
}

body main .block5 .block5_top .block5_top_left img {
  max-width: 100%;
  height: 48px;
}
@media (min-width: 992px) {
  body main .block5 .block5_top .block5_top_left img {
    height: auto;
    margin-top: 0.275em;
  }
}

@media only screen and (max-width: 980px) {
  body main .block5 .block5_top .block5_top_left img {
    width: 155px;
    height: auto;
  }
}

@media only screen and (max-width: 980px) {
  body main .block5 .block5_top .block5_top_left {
    width: 19%;
    margin-left: auto;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 670px) {
  body main .block5 .block5_top .block5_top_left {
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 2rem;
    width: auto;
  }
}

body main .block5 .block5_top .block5_top_card {
  text-align: left;
}
body main .block5 .block5_top .block5_top_card:nth-child(3) .info p + p {
  margin-top: 4em;
}

@media only screen and (max-width: 980px) {
  body main .block5 .block5_top .block5_top_card {
    width: 28%;
    margin-left: auto;
    margin-right: auto;
  }
}

body main .block5 .block5_top .block5_top_card:nth-of-type(1) {
  width: 39%;
}

body main .block5 .block5_top .block5_top_card:nth-of-type(2) {
  padding: 0 1em 0 0;
}

.info__tel {
  margin-top: .5rem;
}

@media only screen and (max-width: 670px) {
  body main .block5 .block5_top .block5_top_card:nth-of-type(2) {
    width: 100%;
  }
}

body main .block5 .block5_top .block5_top_card .block5_top_tittle span {
  color: black;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

body main .block5 .block5_top .block5_top_card .block5_top_tittle br, body main .block5 .block5_top .block5_top_card .block5_top_tittle span {
  display: none;
}

@media only screen and (max-width: 800px) {
  body main .block5 .block5_top .block5_top_card .block5_top_tittle br, body main .block5 .block5_top .block5_top_card .block5_top_tittle span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 670px) {
  body main .block5 .block5_top .block5_top_card .block5_top_tittle br, body main .block5 .block5_top .block5_top_card .block5_top_tittle span {
    display: none;
  }

  body main .block5 .block5_top .block5_top_card .block5_top_tittle {
    magin-bottom: 30px;
  }
}

@media only screen and (max-width: 670px) {
  body main .block5 .block5_top .block5_top_card {
    width: 100%;
  }
}

body main .block5 .block5_top .block5_top_card .block5_top_tittle {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 2rem;
  font-weight: 700;
}

@media only screen and (min-width: 1920px) {
  body main .block5 .block5_top .block5_top_card .block5_top_tittle {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block5 .block5_top .block5_top_card .block5_top_tittle {
    font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
  }
}

body main .block5 .block5_top .block5_top_card .block5_top_card_item_tittle {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 1.5;
}

@media only screen and (min-width: 1920px) {
  body main .block5 .block5_top .block5_top_card .block5_top_card_item_tittle {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block5 .block5_top .block5_top_card .block5_top_card_item_tittle {
    font-size: calc(15px + 5 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (max-width: 670px) {
  body main .block5 .block5_top .block5_top_card .block5_top_card_item_tittle {
    margin-bottom: 10px;
    font-size: 17px;
  }
}

body main .block5 .block5_top .block5_top_card .info {
  margin-bottom: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

body main .block5 .block5_top .block5_top_card .info a[href^=tel] {
  font-size: 1.2em;
  font-weight: 600;
}

body main .block5 .block5_top .block5_top_card .info span {
  white-space: nowrap;
}

@media only screen and (max-width: 670px) {
  .block5_top_tittle.mobile-hidden {
    display: none !important;
  }
  .block5_top {
    margin-bottom: 20px;
  }
  body main .block5 .block5_top .block5_top_card .info {
    margin-bottom: 0;
    gap: 0;
  }
}
body main .block5 .block5_top .block5_top_card .info p {
  font-size: 18px;
  line-height: 24px;
}
body main .block5 .block5_top .block5_top_card .info + .info {
  margin-top: 1em;
}


@media only screen and (min-width: 1920px) {
  body main .block5 .block5_top .block5_top_card .info p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block5 .block5_top .block5_top_card .info p {
    font-size: calc(14px + 4 * ((100vw - 320px) / 1600));
  }
}

@media only screen and (max-width: 670px) {
  .block5_top_card + .block5_top_card {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

.footer {
  background: #0D171A;
}

body main .block5 .block5_top .block5_top_card .info .contactPop {
  color: #000;
  font-size: 18px;
  line-height: 24px;
}

@media only screen and (min-width: 1920px) {
  body main .block5 .block5_top .block5_top_card .info .contactPop {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1920px) {
  body main .block5 .block5_top .block5_top_card .info .contactPop {
    font-size: calc(14px + 4 * ((100vw - 320px) / 1600));
  }
}

body main .block5 .footer_content_card {
  text-align: left;
  padding-bottom: 40px;
  margin-top: 2rem;
}
@media (min-width: 671px) {
  body main .block5 .footer_content_card {
    margin-top: 0;
  }
}

body main .block5 .footer_content_card .active .footer_content_card_item_select svg {
  -webkit-transform: none;
          transform: none;
}

body main .block5 .footer_content_card .active .footer_content_card_item_info {
  display: none !important;
}

body main .block5 .footer_content_card .footer_content_card_item_select {
  border: 1px solid var(--c-bg);
}

@media only screen and (max-width: 600px) {
  body main .block5 .footer_content_card .footer_content_card_item_select p {
    margin-right: 25px;
  }
}

body main .block5 .footer_content_card .footer_content_card_item_select svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  fill: currentColor;
  flex-shrink: 0;
}

body main .block5 .footer_content_card .footer_content_card_item:not(:first-child) .footer_content_card_item_select {
  margin-top: 15px;
}

body main .block5 .footer_content_card .footer_content_card_item .footer_content_card_item_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
}

body main .block5 .footer_content_card .footer_content_card_item .footer_content_card_item_info {
  padding: 30px 20px;
}

body main .block5 .footer_content_card .footer_content_card_item .footer_content_card_item_info p {
  font-size: 14px;
  margin-top: 15px;
  font-weight: 400;
}

body main .block5 .footer_content_card .footer_content_card_item .footer_content_card_item_info p pan {
  font-weight: 700;
}

body main .block5 .footer_content_card .footer_content_card_item .footer_content_card_item_info p a {
  color: #478ac9 !important;
}

body main .block5 .footer_content_card .footer_content_card_item .footer_content_card_item_info .footer_content_card_item_info_title {
  font-weight: 700;
  margin-top: 0px;
}

body footer {
  color: white;
  background-color: black;
}

body footer .footer_content {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  position: relative;
  padding: 40px 0px;
}

@media only screen and (max-width: 750px) {
  body footer .footer_content {
    width: calc( 100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

body footer .footer_content img {
  width: 180px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 750px) {
  body footer .footer_content img {
    width: 120px;
  }
}

body footer .footer_content .footer_content_tittle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

@media only screen and (max-width: 750px) {
  body footer .footer_content .footer_content_tittle {
    font-size: 14px;
  }
}

body footer .footer_content .footer_info p {
  font-weight: 400;
  font-size: 14px;
}

@media only screen and (max-width: 750px) {
  body footer .footer_content .footer_info p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 500px) {
  body footer .footer_content .footer_info p {
    font-size: 12px;
  }
}

body footer .footer_content .footer_info p:not(:last-child) {
  margin-bottom: 20px;
}

@media only screen and (max-width: 500px) {
  body footer .footer_content .footer_info p:not(:last-child) {
    margin-bottom: 15px;
  }
}

.menu {
  display: none;
}
content {
  display: none;
}

@media only screen and (max-width: 1279px) {
  .menu {
    display: block;
    margin-left: 1.25rem;
  }
  content {
    display: block;
  }
}

html {
  font-family: 'TENET', sans-serif;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.msg {
  font-size: 8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FEFEFE;
  background-color: #1184F0;
}

.features {
  font-size: 1rem;
  text-transform: uppercase;
}

.features li {
  width: 100%;
  text-align: center;
  padding: 0.25em;
}

@media only screen and (max-width: 600px) {
  content {
    display: block;
  }
}

.drawer-list {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 500;
  height: 100vh;
  width: 100vw;
  -webkit-transform: translate(100vw, 0);
          transform: translate(100vw, 0);
  /* ie workaround */
  -ms-transform: translatex(-100vw);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  padding-top: 60px;
  -webkit-transition: width 475ms ease-out, border-radius 0.8s 0.1s ease, -webkit-transform 450ms ease;
  transition: width 475ms ease-out, border-radius 0.8s 0.1s ease, -webkit-transform 450ms ease;
  transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
  transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease, -webkit-transform 450ms ease;
  border-bottom-left-radius: 100vw;
  background-color: black;
}

@media (max-width: 980px) {
  .drawer-list {
    padding-top: 100px;
  }
}

@media (max-width: 600px) {
  .drawer-list {
    padding-top: 43px;
  }
}

@media (min-width: 768px) {
  .drawer-list {
    width: 40vw;
    min-width: 380px;
  }
}

.drawer-list ul {
  z-index: 500;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  pointer-events: auto;
}

.drawer-list li {
  list-style: none;
  text-transform: uppercase;
  pointer-events: auto;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translatex(100vw);
          transform: translatex(100vw);
  /* ie workaround */
  -ms-transform: translatex(-100vw);
}

.drawer-list li:last-child {
  margin-bottom: 2em;
}

.drawer-list li a {
  text-decoration: none;
  color: white;
  text-align: center;
  display: block;
  padding: 10px 0px;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .drawer-list li a {
    text-align: center;
    padding: 0.5rem;
  }
}

.drawer-list ul li a:focus ~ .drawer-list {
  -webkit-transform: translatex(0);
          transform: translatex(0);
  border-bottom-left-radius: 0;
}

.drawer-list ul li a:focus ~ .drawer-list li {
  -webkit-transform: translatex(0);
          transform: translatex(0);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(1) {
  -webkit-transition: -webkit-transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(2) {
  -webkit-transition: -webkit-transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(3) {
  -webkit-transition: -webkit-transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(4) {
  -webkit-transition: -webkit-transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(5) {
  -webkit-transition: -webkit-transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(6) {
  -webkit-transition: -webkit-transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(7) {
  -webkit-transition: -webkit-transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(8) {
  -webkit-transition: -webkit-transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(9) {
  -webkit-transition: -webkit-transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(10) {
  -webkit-transition: -webkit-transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(11) {
  -webkit-transition: -webkit-transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(12) {
  -webkit-transition: -webkit-transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(13) {
  -webkit-transition: -webkit-transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(14) {
  -webkit-transition: -webkit-transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(15) {
  -webkit-transition: -webkit-transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(16) {
  -webkit-transition: -webkit-transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(17) {
  -webkit-transition: -webkit-transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(18) {
  -webkit-transition: -webkit-transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(19) {
  -webkit-transition: -webkit-transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(20) {
  -webkit-transition: -webkit-transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(21) {
  -webkit-transition: -webkit-transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(22) {
  -webkit-transition: -webkit-transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(23) {
  -webkit-transition: -webkit-transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(24) {
  -webkit-transition: -webkit-transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(25) {
  -webkit-transition: -webkit-transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(26) {
  -webkit-transition: -webkit-transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(27) {
  -webkit-transition: -webkit-transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(28) {
  -webkit-transition: -webkit-transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(29) {
  -webkit-transition: -webkit-transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(30) {
  -webkit-transition: -webkit-transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(31) {
  -webkit-transition: -webkit-transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(32) {
  -webkit-transition: -webkit-transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(33) {
  -webkit-transition: -webkit-transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(34) {
  -webkit-transition: -webkit-transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(35) {
  -webkit-transition: -webkit-transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(36) {
  -webkit-transition: -webkit-transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(37) {
  -webkit-transition: -webkit-transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(38) {
  -webkit-transition: -webkit-transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(39) {
  -webkit-transition: -webkit-transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(40) {
  -webkit-transition: -webkit-transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(41) {
  -webkit-transition: -webkit-transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(42) {
  -webkit-transition: -webkit-transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(43) {
  -webkit-transition: -webkit-transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(44) {
  -webkit-transition: -webkit-transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(45) {
  -webkit-transition: -webkit-transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(46) {
  -webkit-transition: -webkit-transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(47) {
  -webkit-transition: -webkit-transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(48) {
  -webkit-transition: -webkit-transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(49) {
  -webkit-transition: -webkit-transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li:nth-child(50) {
  -webkit-transition: -webkit-transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

.drawer-list ul li a:focus ~ .drawer-list li a {
  padding-right: 15px;
}

input.hamburger {
  display: none;
}

input.hamburger:checked ~ .drawer-list {
  -webkit-transform: translatex(0);
          transform: translatex(0);
  border-bottom-left-radius: 0;
  background-color: var(--c-primary);
}

input.hamburger:checked ~ .drawer-list li {
  -webkit-transform: translatex(0);
          transform: translatex(0);
}

input.hamburger:checked ~ .drawer-list li:nth-child(1) {
  -webkit-transition: -webkit-transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(2) {
  -webkit-transition: -webkit-transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(3) {
  -webkit-transition: -webkit-transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(4) {
  -webkit-transition: -webkit-transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(5) {
  -webkit-transition: -webkit-transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(6) {
  -webkit-transition: -webkit-transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(7) {
  -webkit-transition: -webkit-transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(8) {
  -webkit-transition: -webkit-transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(9) {
  -webkit-transition: -webkit-transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(10) {
  -webkit-transition: -webkit-transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(11) {
  -webkit-transition: -webkit-transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(12) {
  -webkit-transition: -webkit-transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(13) {
  -webkit-transition: -webkit-transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(14) {
  -webkit-transition: -webkit-transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(15) {
  -webkit-transition: -webkit-transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(16) {
  -webkit-transition: -webkit-transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(17) {
  -webkit-transition: -webkit-transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(18) {
  -webkit-transition: -webkit-transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(19) {
  -webkit-transition: -webkit-transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(20) {
  -webkit-transition: -webkit-transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(21) {
  -webkit-transition: -webkit-transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(22) {
  -webkit-transition: -webkit-transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(23) {
  -webkit-transition: -webkit-transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(24) {
  -webkit-transition: -webkit-transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(25) {
  -webkit-transition: -webkit-transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(26) {
  -webkit-transition: -webkit-transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(27) {
  -webkit-transition: -webkit-transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(28) {
  -webkit-transition: -webkit-transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(29) {
  -webkit-transition: -webkit-transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(30) {
  -webkit-transition: -webkit-transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(31) {
  -webkit-transition: -webkit-transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(32) {
  -webkit-transition: -webkit-transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(33) {
  -webkit-transition: -webkit-transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(34) {
  -webkit-transition: -webkit-transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(35) {
  -webkit-transition: -webkit-transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(36) {
  -webkit-transition: -webkit-transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(37) {
  -webkit-transition: -webkit-transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(38) {
  -webkit-transition: -webkit-transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(39) {
  -webkit-transition: -webkit-transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(40) {
  -webkit-transition: -webkit-transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(41) {
  -webkit-transition: -webkit-transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(42) {
  -webkit-transition: -webkit-transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(43) {
  -webkit-transition: -webkit-transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(44) {
  -webkit-transition: -webkit-transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(45) {
  -webkit-transition: -webkit-transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(46) {
  -webkit-transition: -webkit-transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(47) {
  -webkit-transition: -webkit-transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(48) {
  -webkit-transition: -webkit-transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(49) {
  -webkit-transition: -webkit-transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(50) {
  -webkit-transition: -webkit-transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: -webkit-transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  transition: transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96), -webkit-transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li a {
  padding-right: 15px;
  width: fit-content;
  margin: 0 auto;
}

input.hamburger:checked ~ label > i {
  background-color: transparent;
}

input.hamburger:checked ~ label > i:before {
  transform: rotate(45deg);
}

input.hamburger:checked ~ label > i:after {
  transform: rotate(-45deg);
}

input.hamburger:checked ~ label close {
  color: #FEFEFE;
  width: 100%;
}

input.hamburger:checked ~ label open {
  color: rgba(0, 0, 0, 0);
  width: 0;
}

label.hamburger {
  z-index: 9999;
  position: relative;
  display: block;
  height: 20px;
  width: 20px;
}

label.hamburger:hover {
  cursor: pointer;
}

label.hamburger text close,
label.hamburger text open {
  text-transform: uppercase;
  font-size: 0.8em;
  align-text: center;
  position: absolute;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  text-align: center;
  overflow: hidden;
  -webkit-transition: width 0.25s 0.35s, color 0.45s 0.35s;
  transition: width 0.25s 0.35s, color 0.45s 0.35s;
}

label.hamburger text close {
  color: white;
  right: 0;
  width: 0;
}

label.hamburger text open {
  color: white;
  width: 100%;
}

label.hamburger > i {
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  background-color: var(--c-secondary);
  pointer-events: auto;
  transition: 0.15s;
  right: 0;
}

label.hamburger > i:after, label.hamburger > i:before {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  right: 0;
  background-color: var(--c-secondary);
  content: "";
  transition: .15s;
  transform-origin: 50% 50%;
}
input.hamburger:checked ~ label > i::before,
input.hamburger:checked ~ label > i::after {
  background-color: white;
}

label.hamburger > i:before {
  transform: translate(0, -10px);
}

label.hamburger > i:after {
  width: 20px;
  transform: translate(0, 10px);
}

@media only screen and (max-width: 1279px) {
  label.hamburger {
    display: block;
  }
}

.icon {
  display: inline-block;
  width: 5vw;
  height: 4vw;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

#form4 button[type='submit'] {
  margin-top: 1em;
}

.with-arrow {
  position: relative;
  padding-right: 45px!important;
}
.with-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50%);
  transform: translateY(-50%);
  right: 20px;
  width: 1.2em;
  height: 1.2em;
  background: center/contain url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M14.4299 5.93018L20.4999 12.0002L14.4299 18.0702M3.5 12H20.33" fill="none" stroke="%23F7F0EB" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
}
.with-arrow:hover::after {
  border-color: #fff;
}
.btn--secondary.with-arrow:not(:hover)::after {
  background: center/contain url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M14.4299 5.93018L20.4999 12.0002L14.4299 18.0702M3.5 12H20.33" fill="none" stroke="%233E3A39" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat
}
.btn:hover::before {
  content: '';
  opacity: 0.5;
  display: block;
  width: 30px;
  height: 200px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0))) no-repeat -2px 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) no-repeat -2px 0;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3ffffff', endColorstr='#b3ffffff',GradientType=0 );
  position: absolute;
  top: -40px;
  left: -30px;
  z-index: 1;
  transform: rotate(45deg);
  transition: all 0.1s;
  animation-name: slideme;
  animation-duration: 3s;
  animation-delay: 0.05s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Banner */
.main-block {
  margin-top: 2rem;
  margin-bottom: 70px;
}
.main-block__container {
  padding: 10px 0 0;
  position: relative;
}
.main-block__text {
  width: 50%;
  padding: 20px 20px 0;
  padding-left: calc((100vw - 1240px) / 2);
}
.main-block__slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
}
.main-block__title1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: .75em;
}
.main-block__title2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: .9em;
}
.main-block__title3 {
  font-size: 24px;
  margin-bottom: 1em;
}

.main-block__list {
  margin: 30px 0;
  padding-left: 20px;
}
.main-block__list li {
  position: relative;
  line-height: 1.5;
  margin-bottom: .75em;
}
.main-block__list li:before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: -25px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--c-primary);
}

.main-block__btns {
  margin-top: 40px;
}
.main-block__btns .btn {
  min-width: 280px;
  font-size: 16px;
}
.main-block__btns .btn:not(:last-child) {
  margin-right: 15px;
}

@media (min-width: 768px) {
  .main-block__title1,
  .main-block__title2,
  .main-block__title3,
  .main-block__list {
    margin-left: 1.2rem!important;
  }
  .main-block__list {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .main-block {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .main-block__btns .btn {
    width: 100%;
    margin-right: 0!important;
  }
}

.main-block-slider {
  position: absolute;
  top: 0;
  /* right: calc((100vw - 1920px) / 2); */
  right: calc((100vw - 1240px) / 2);
  bottom: 0;
  left: 0;
}
.main-block-slider .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-block-slider .slick-list,
.main-block-slider .slick-track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.main-block-slider__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.main-block-slider__slide img {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
}
.main-block-slider .slick-dots {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  opacity: .5;
}
.main-block-slider .slick-dots li {
  flex: 1 0 auto;
  padding: 0 8px;
}
.main-block-slider .slick-dots li button {
  height: 4px;
  width: 100%;
  border: none;
  border-radius: 0;
  appearance: none;
  background: var(--c-primary);
  font-size: 0;
  box-shadow: 1px 1px 3px #fff6;
  cursor: pointer;
  transition: .15s ease;
}
.main-block-slider .slick-dots li.slick-active button,
.main-block-slider .slick-dots li button:hover {
  background: white;
}
@media (min-width: 1101px) {
  .main-block-slider {
    overflow: hidden;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}

@media (max-width: 991px) {
  .main-block {
    margin-top: 0;
  }
}

@media (max-width: 1240px) {
  .main-block {
    margin-bottom: 50px;
  }
  .main-block__text {
    padding-left: 20px;
    width: 50%;
  }
  .main-block__slider {
    width: 50%;
    margin-bottom: 10px;
  }
  .main-block-slider {
    right: 0;
  }

  .main-block__title1 {
    font-size: calc(22px + 25 * ((100vw - 320px) / 1600));
    margin-bottom: .6em;
  }
  .main-block__title2 {
    font-size: calc(20px + 18 * ((100vw - 320px) / 1600));
    margin-bottom: .75em;
  }
  .main-block__title3 {
    font-size: calc(18px + 18 * ((100vw - 320px) / 1600));
    margin-bottom: .8em;
  }

  .main-block__list {
    font-size: 18px;
    margin: 20px 0;
  }

  .main-block__btns {
    margin-top: 0;
  }
  .main-block__btns .btn {
    margin-top: 15px;
    font-size: 16px;
    min-width: 260px;
  }
}

@media (max-width: 991px) {
  .main-block {
    margin-bottom: 0;
  }
  .main-block__container {
    padding-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .main-block__text,
  .main-block__slider {
    position: static;
    width: 100%;
  }
  .main-block__text {
    padding: 15px;
  }
  .main-block-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 620/471;
  }
  .main-block-slider .slick-dots {
    top: 5px;
  }

  .main-block__list li::before {
    top: 7px;
    left: -22px;
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 767px) {
  .main-block {
    margin-top: 0;
    margin-bottom: 0;
  }
  .main-block__title1 {
    font-size: clamp(16px, 5vw, 22px);
    margin-bottom: 1em;
  }
  .main-block__title2 {
    font-size: clamp(16px, 4.44vw, 22px);
    margin-bottom: 1.1em;
  }
  .main-block__title3 {
    font-size: 18px;
    margin-bottom: 1em;
  }

  .main-block__list {
    font-size: 16px;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .main-block__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


/* Change color */
.change_color {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2em;
  margin-bottom: 1em;
}
.change_color a {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0px 8px 1em;
  border-radius: 20px;
  flex: 0 0 auto;
  background-color: black;
  border: 1px solid gray;
}
.change_color a.active {
  border: 2px solid var(--c-primary);
}
@media (max-width: 767px) {
  .change_color {
    justify-content: start;
  }
}
@media (max-width: 400px) {
  .change_color {
    justify-content: center;
  }
  .change_color a {
    width: 30px;
    height: 30px;
    margin: 0 7px 1em;
  }
}

/* Numbers */
.numbers {
  display: flex;
  justify-content: space-between;
  margin: 2em auto;
  max-width: 580px;
}
.numbers__item {
  padding: 0 .5em;
  text-align: center;
}
.numbers__item:first-child {
  padding-left: 0;
}
.numbers__item:last-child {
  padding-right: 0;
}
.numbers__icon {
  color: var(--c-text);
  fill: currentColor;
  margin-bottom: .25em;
}
.numbers__text {
  margin: 0 auto 1em;
  font-size: 14px;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbers__num {
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 1240px) {
  .numbers {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .numbers__num {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .numbers {
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  .numbers__item {
    width: 100%;
    flex: 1 0 100%;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .numbers__text {
    margin: 0;
  }
  .numbers__icon {
    position: relative;
    top: .25em;
    margin-right: .25em;
  }
  .numbers__num {
    margin-left: auto;
  }
}

@media (min-width: 481px) {
  .numbers__item {
    max-width: 25%;
  }
  .numbers__item:first-child .numbers__text {
    max-width: 80px;
  }
}

@media (min-width: 768px) {
  .numbers {
    max-width: 100%;
  }
  .numbers__icon {
    margin-bottom: .5em;
  }
  .numbers__icon svg {
    width: 30px;
    height: 30px;
  }
}


/* Select Configuration */
.sel-conf .slick-initialized .slick-slide:not(.slick-active) {
  /* display: none; */
}
.sel-conf {
  max-width: 1240px;
  margin: 0 auto 4rem;
}
.sel-conf__title {
  margin-bottom: 20px;
  font-size: calc(24px + 11 * ((100vw - 320px) / 1600));
  text-align: center;
}

.sel-conf__nav {
  padding: 0;
  margin: 50px 0;
  list-style: none;
  display: flex;
}
.sel-conf__nav > li {
  flex: 1 1 auto;
  margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 50px;
  font-size: 18px;
  color: black;
  background: white;
  border: 2px solid #30363a;
  cursor: pointer;
  transition: .15s ease;
}
.sel-conf__nav > li:hover,
.sel-conf__nav > li.active {
  border-color: black;
  background: black;
  color: white;
}
.sel-conf__nav > li:last-child {
  margin-right: 0;
}
.sel-conf__conf-select {
  margin-bottom: 20px;
  width: 100%;
  padding: 15px 28px;
  border: none;
  background-color: #eee;
  font-size: 16.6px;
  color: black;
  line-height: 1.2;
}

@media only screen and (max-width: 1300px) {
  .sel-conf {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media (max-width: 991px) {
  .sel-conf__nav {
    margin: 50px 0 45px;
  }
  .sel-conf__nav > li {
    height: 40px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 750px) {
  .sel-conf {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.64%;
    padding-right: 2.64%;
  }
}

@media only screen and (max-width: 600px) {
  .sel-conf {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .sel-conf__nav {
    margin: 40px 0 0;
  }

  .sel-conf__nav > li {
    font-size: 14px;
    padding: 5px;
    margin-right: 8px;
  }
}

.sel-conf-item__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.sel-conf-item__info {
  max-width: 420px;
  padding-right: 40px;
  flex: 0 0 40%;
}
.sel-conf-item__title {
  margin-bottom: .5em;
  font-size: calc(40px + 11 * ((100vw - 320px) / 1600));
  font-weight: 500;
}
.sel-conf-item__price {
  margin-bottom: 1.25em;
  font-size: 28px;
}
.sel-conf-item__img {
  margin-bottom: 2rem;
}
.sel-conf-item__img img {
  max-width: 100%;
  width: 100%;
  margin-top: 50px;
}
.sel-conf-item__send-btn {
  margin-top: 1rem;
  width: 100%;
  text-transform: uppercase;
}
.sel-conf-item__nav {
  display: flex;
  padding: 0 1rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
}
.sel-conf-item__nav-btn {
  margin-bottom: -1px;
  font-size: 1.2rem;
  padding: 1rem;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: .15s ease;
  opacity: .6;
  text-transform: uppercase;
}
.sel-conf-item__nav-btn:not(:last-child) {
  margin-right: 1.5rem;
}
.sel-conf-item__nav-btn.active,
.sel-conf-item__nav-btn:hover {
  border-bottom-color: black;
  opacity: 1;
}

.sel-conf__subconfs-nav-btn {
  padding: 1rem 1.5rem;
  cursor: pointer;
}
.sel-conf__subconfs-nav-btn:not(:first-child) {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}
.sel-conf__subconfs-nav-btn.active,
.sel-conf__subconfs-nav-btn:hover {
  background-color: #f4f4f4;
}
.sel-conf__subconfs-nav-btn.active {
  cursor: default;
}

@media (max-width: 1240px) {
  .sel-conf-item__send-btn {
    font-size: 16px;
  }
  .sel-conf-item__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .sel-conf-item__content {
    grid-template-columns: 1fr;
  }

  .sel-conf-item__info,
  .sel-conf-item__img {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 15px;
  }

  .sel-conf-item__info {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .sel-conf-item__img {
    margin-top: 0px;
    margin-bottom: 15px;
  }

  .sel-conf-item__title {
    font-size: 22px;
    text-align: center;
  }

  .sel-conf-item__price {
    font-size: 18px;
    text-align: center;
  }

  .sel-conf-item__nav {
    margin-top: 20px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border: none;
  }
  .sel-conf-item__nav-btn {
    white-space: nowrap;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .sel-conf-item__send-btn {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .sel-conf-item__details:not(.slick-initialized) {
    display: none;
  }
}
.sel-conf-item__details-wrap > div > ul > li > div {
  position: relative;
  margin-top: -1px;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 3rem 1rem .5rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  text-transform: uppercase;
}
.sel-conf-item__details-wrap > div > ul > li > div::after {
  content: '';
  display: block;
  position: absolute;
  margin-top: -.2em;
  right: 1rem;
  width: .5rem;
  height: .5rem;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotateZ(135deg);
}
.sel-conf-item__details-wrap > div > ul > li ul {
  display: none;
  padding: 1rem;
  list-style: disc;
}
.sel-conf-item__details-wrap > div > ul > li ul li {
  margin-top: .5rem;
  margin-bottom: 1rem;
}
.sel-conf-item__details-wrap > div > ul > li ul li:last-child {
  margin-bottom: .5rem;
}

@media (max-width: 767px) {
  .sel-conf-item__details-wrap > div > ul > li > div {
    font-size: 14px;
  }

  .sel-conf-item__details-wrap > div > ul > li ul {
    padding-top: .5em;
    padding-bottom: .5em;
  }
  .sel-conf-item__details-wrap > div > ul > li ul li {
    font-size: 14px;
  }
}

/* Advantages */
.advantages {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}
.advantages.bg-gray {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.advantages__headers {
  max-width: 1300px;
  padding: 0;
  margin: 0 auto 20px;
}

.bg-gray .advantages__title {
  color: black;
}
.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__content {
  max-width: 1700px;
  margin: 0 auto;
}

.advantages__descr {
  max-width: 800px;
  text-align: center;
  margin: 0 auto 15px;
  line-height: 1.5;
  color: #666;
}

.advantages__nav {
  padding: 0;
  max-width: 1270px;
  margin: 0 auto 50px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  overflow: auto;
}
.advantages__nav > li {
  flex: 1 0 0;
  max-width: 320px;
  padding: 0 20px;
  height: 50px;
  font-size: 15px;
  transition: .15s ease;
  padding: 0;
  align-items: start;
  justify-content: start;
  border-bottom: 4px solid black;
  opacity: .5;
  transition: .15s ease;
  text-transform: none;
}
.advantages__nav > li:hover {
  opacity: 1;
}
.advantages__nav > li.active {
  border-color: var(--c-primary);
  opacity: 1;
}
.advantages__nav > li:last-child {
  margin-right: 0;
}

.advantages__items-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.advantages__item {
  flex: 0 0 33.3333%;
  width: 33.3333%;
  padding: 0 15px;
}
.advantages__item-title {
  font-size: calc(12px + 11 * ((100vw - 320px) / 1600));
  margin-bottom: 15px;
  font-weight: 500;
}
.advantages__item-text {
  color: #666;
}
.advantages__item-img {
  margin-bottom: 15px;
  aspect-ratio: 340/220;
  display: flex;
}
.advantages__item-img img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.advantages__action-btn {
  margin-top: 50px;
}

.advantages__action-btn .btn {
  width: 500px;
  max-width: 100%;
  height: 65px;
}

.advantages__content-item:not(.active) {
  display: none!important;
}

@media (max-width: 991px) {
  .advantages__nav {
    margin: 15px 0 45px;
    padding-bottom: 0.5rem;
  }
  .advantages__nav > li {
    height: 40px;
    font-size: 14px;
    margin-right: 16px;
    white-space: nowrap;
    flex: 1 0 auto;
  }

  .advantages__action-btn .btn {
    height: 61px;
  }

  .advantages__headers {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .advantages__descr {
    font-size: 14px;
  }
  .advantages__nav {
    margin: 0 -8px 40px;
    padding-bottom: 10px;
    justify-content: start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .advantages__nav > li{
    margin: 0 8px!important;
    font-size: 16px;
  }

  .advantages__item {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .advantages__item-title {
    font-size: 20px;
  }
  .advantages__item-text {
    font-size: 14px;
  }

  .advantages__action-btn {
    margin-top: 2rem;
  }

  .advantages__action-btn .btn {
    height: 58px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .advantages__nav > li {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* Advantages Slider */
.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;
  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__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%;
  }
}

/* Header contacts */
.header__contacts {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 13px;
  flex: 1 1 auto;
}
.header__contacts > .header-contact {
  margin-right: 25px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.header-contact a {
  color: inherit;
}
.header-contact__title {
  font-weight: 700;
}
.header-contact__tel,
.header-contact__address {
  margin-top: .25em;
  color: inherit;
  display: flex;
  align-items: center;
  font-size: 1.3em;
}
.header-contact__tel {
  font-weight: 700;
  white-space: nowrap;
}
.header-contact__tel svg,
.header-contact__address svg {
  margin-right: .5em;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: var(--c-secondary);
}
.header-contact__tel:hover {
  color: var(--c-primary-light);
}

.header-contact {
  display: flex;
  align-items: center;
}

.header-contact--mobile .header-contact__tel svg {
  display: none;
}

@media (max-width: 991px) {
  .header__contacts {
    display: none;
  }
}

@media (min-width: 1290px) {
  .advantages__items-list {
    margin: 0 -25px;
  }

  .advantages__item {
    padding: 0 25px;
  }
}

.sec-video {
  max-width: 1240px;
  padding: 3.5em 0 3rem;
  margin: 0 auto 3.5rem;
  background: #f8f8f8;
}
.sec-video__container {
  margin: 0 auto;
  max-width: 1240px;
}
.sec-video__heading {
  margin-bottom: 2.5rem;
  font-size: calc(24px + 11 * ((100vw - 320px) / 1600));
  text-align: center;
}
.sec-video__video {
  max-width: 992px;
  margin: 0 auto;
}
.sec-video__after {
  margin-top: 2.5rem;
  text-align: center;
}
:root {
  --plyr-color-main: #666;
  --plyr-video-control-color-hover: black;
  --plyr-video-control-background-hover: white;
}
.plyr__control[data-plyr="play"] {
  background-color: var(--c-primary);
  color: white;
}
.plyr__control[data-plyr="play"]:hover {
  background-color: black;
  color: white;
}
.plyr__poster {
  background-size: cover !important;
}

@media (max-width: 991px) {
  .sec-video {
    margin: 2.5rem auto 3rem;
  }
}

.bg-gray {
  background-color: #a2a2a2;
}

#video {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  #video {
    padding-bottom: 2.75rem;
  }
}

@media only screen and (max-width: 670px) {
  .mobile-hidden {
    display: none!important;
  }
}
@media only screen and (min-width: 671px) {
  .desktop-hidden {
    display: none!important;
  }
}


.header-tel-contact {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.header-tel-contact svg {
  fill: var(--c-secondary);
  width: 1.75rem;
  height: 1.75rem;
}
.header-tel-contact img {
  width: 1.375rem;
  height: 1.375rem;
  min-width: 1.375rem;
  animation: zoomPulse 1.5s infinite ease-in-out alternate;
}

@media (min-width: 992px) {
  .header-tel-contact {
    display: none!important;
  }
}

.mobile-price {
  display: none;
}
body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_info_car svg {
  display: none;
}
@media (max-width: 990px) {
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_content_card_left_tittle {
    margin-bottom: 8px;
  }
  .mobile-price {
    margin-top: 20px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .mobile-price__price1 {
    font-size: 20px;
  }
  .mobile-price__price2 {
    font-size: 28px;
  }
  .mobile-price__price2 > span:last-child {
    color: var(--c-primary);
  }
  .mobile-price__price3 {
    font-size: 20px;
  }
  .mobile-price__price3 > span:last-child {
  }


  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_info_car:not(.open) > div {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_info_car {
    line-height: 1.4;
    font-size: .875rem;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    transition: height .3s ease-in-out;
  }
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_info_car svg {
    display: block;
    flex: 1 0 auto;
    transform: scaleY(1.2);
    padding: 7px;
    box-sizing: content-box;
  }
  body main .block2 .block2_content .block2_content_card .block2_content_card_left .block2_info_car.open svg {
    transform: scaleY(-1);
  }
}


/* ------------------------------ Action panel ------------------------------ */
@media (min-width: 769px) {
  .action-panel {
    display: none!important;
  }
}
.action-panel {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  background: #363E40;
  padding: 10px 15px;
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
}
.action-panel__btn {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:8px 20px;
  text-align: center;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
}
.action-panel__btn svg {
  height: 15px;
  margin-right: .55em;
  margin-left: -.35em;
}
.action-panel__btn--call {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.action-panel__btn--form {
  background-color: var(--c-primary);
  color: white;
}
/* ---------------------------- END Action panel ---------------------------- */

del {
  text-decoration-color: var(--c-primary);
}

.spoiler-link {
  color: #888;
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  display: inline-block;
  padding: 0 .5em .5em 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.sec-title {
  font-size: 1.5em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-weight: 500;
  text-align: left;
}

.car-filter {
  padding-bottom: 40px;
  text-align: center;
}
.car-filter__title small {
  font-size: 0.675em;
}
.car-filter__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.car-filter__car {
  display: block;
  flex: 0 0 30%;
  cursor: pointer;
  transition: .15s ease-in-out;
}
.car-filter__car-title {
  margin-top: 0.75rem;
}
.car-filter__car img {
  width: 100%;
  height: auto;
  transition: .25s ease-in-out;
}
.car-filter__car:hover {
  opacity: 1!important;
}
.car-filter__car:hover img {
  transform: scale(1.05);
}
.car-filter.active .car-filter__car:not(.active) {
  opacity: .4;
  filter: grayscale(1);
}
.car-filter__all {
  margin-top: 2em;
}
.car-filter:not(.active) .car-filter__all {
  display: none;
}
@media (max-width: 1390px) {
  .car-filter__title {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .car-filter {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .car-filter {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .car-filter__car {
    flex: 0 0 calc(50% - 2rem);
    height: auto;
  }
}
@media (max-width: 767px) {
  .car-filter__all {
    margin-top: 2em;
    margin-bottom: 1em;
  }
}


.hidden {
  display: none !important;
}

.in-stock {
  margin-top: 2rem;
  text-align: center;
  color: #3c3;
  text-transform: uppercase;
  font-weight: 500;
}
.in-stock span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 1.25em;
  height: 1.25em;
  margin-right: .5em;
  background: #3c3;
  border-radius: 50%;
  font-size: 1.2em;
}
@media (min-width: 1101px) {
  .in-stock {
    margin-bottom: 2rem;
    font-size: 1em;
  }
}

.scroll-top {
  position: fixed;
  z-index: 100;
  bottom: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-light);
  box-shadow: 0 0 3px rgba(0,0,0, .15);
  border-radius: 50%;
  cursor: pointer;
}
.scroll-top:not(.active) {
  display: none !important;
}
.scroll-top svg {
  transform: scaleY(-1);
}
@media (min-width: 1920px) {
  .scroll-top {
    left: calc((100vw - 1480px)/2);
  }
}

.consent {
  margin-top: 1rem;
  font-size: .75em;
  color: #777;
  text-align: left;
}
.consent input {
  display: inline-block;
  vertical-align: bottom;
  appearance: none;
  margin-right: .25em;
  width: 1.5em;
  height: 1.5em;
  background: var(--c-bg);
  border: 1px solid var(--c-primary);
  border-radius: 4px;
}
.consent input:checked {
  background-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="%2337AEB3"><path d="M434.8 70.1c14.3 10.4 17.5 30.4 7.1 44.7l-256 352c-5.5 7.6-14 12.3-23.4 13.1s-18.5-2.7-25.1-9.3l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l101.5 101.5 234-321.7c10.4-14.3 30.4-17.5 44.7-7.1z"/></svg>');
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
}
.consent a {
  color: var(--c-text);
}
.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-text);
  color: var(--c-bg);
  border-radius: 1rem;
  box-shadow: 0 0 16px #0004;
  font-size: .875rem;
}
.cookie-consent__text a {
  color: #fff;
}
.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);
  font-family: TENET, sans-serif;
  font-weight: normal;
  font-size: 1rem;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  border-radius: 12px;
}

@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-secondary);
  padding: 1rem;
  overflow: auto;
  height: 100%;
}
.policy-consent__close {
  display: block;
  margin-bottom: 1rem;
  margin-left: auto;
  background: none;
  border: none;
  font-weight: 100;
  color: var(--c-primary-light);
  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);
  border-radius: 12px;
  color: var(--c-bg);
  font-weight: normal;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  transition: .15s ease-in-out;
}
.policy-consent__btn:hover {
  background: var(--c-primary-light-2);
  box-shadow: var(--c-primary-light) 0px 4px 14px;
}
@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;
  }
}


.section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.section__title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
@media (min-width: 1024px) {
    .section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
    .section__title {
        font-size: 4.5rem;
    }
}


.trade-in {
  overflow: hidden;
}
.trade-in__container {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1rem;
    border-radius: 20px;
    background-color: var(--c-secondary);
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.trade-in__info {
    margin-bottom: .5rem;
}
.trade-in__title {
    margin-bottom: 1em;
    position: relative;
    text-align: center;
    font-weight: 700;
}
.trade-in__title-main {
  font-size: 3.5rem;
}
.trade-in__title div:nth-child(1) {
    font-size: 1.48em;
    line-height: 1;
}
.trade-in__title::before {
  content: '';
  max-width: 111vw;
  position: absolute;
  inset: -1.15em;
  transform: translateY(-0.7em);
  background: url(../img/trade-in-title-wrap.svg) no-repeat center/contain;
}
.trade-in__text {
    text-align: center;
    font-size: 1.25em;
}
.trade-in__btn {
    display: block;
    margin: 1.675rem auto 0;
}
.trade-in__img-title {
    font-size: 15vw;
    font-weight: 900;
    color: #fff3;
    background: url(../img/trade-in-title.webp) center/cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    white-space: nowrap;
    text-align: center;
}
.trade-in__img img {
    position: relative;
    margin-top: -9%;
    max-width: 100%;
}
.trade-in__list {
    display: flex;
    gap: 1rem;
    margin: 0 -1rem;
    padding: 0 1rem;
    list-style-type: none;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-padding: 1rem;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
}
.trade-in__list::-webkit-scrollbar {
    display: none;
}
.trade-in__list li {
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 250px;
    flex: 1 0 80%;
    position: relative;
    padding: 1rem 4rem 1rem 1rem;
    font-size: .75em;
    background: var(--c-primary);
    border-radius: 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    color: var(--c-bg);
}
.trade-in__list li span {
    position: relative;
}
.trade-in__list li > span:first-child {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    line-height: 1em;
    font-size: 4rem;
    font-weight: 900;
    color: var(--c-primary);
    text-shadow: 2px 2px 0 var(--c-secondary),
                0px -2px 0 var(--c-secondary),
                2px -2px 0 var(--c-secondary),
                -2px -2px 0 var(--c-secondary),
                -2px 2px 0 var(--c-secondary),
                -2px 0px 0 var(--c-secondary),
                -0px 2px 0 var(--c-secondary);
    opacity: 1;
    user-select: none;
}
@media (min-width: 640px) {
    .trade-in__img-title {
        font-size: clamp(80px, 5vw, 100px);
    }
    .trade-in__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .trade-in__list li {
        width: auto;
        max-width: unset;
    }
}
@media (min-width: 1024px) {
    .trade-in {
        margin-top: 4rem;
    }
    .trade-in__container {
        display: grid;
        padding-left: 4rem;
        padding-right: 4rem;
        grid-template-columns: 5fr 7fr;
        align-items: center;
    }
    .trade-in__title {
        text-align: left;
        width: fit-content;
    }
    .trade-in__title-main {
      font-size: 4.5rem;
    }
    .trade-in__title div:nth-child(1) {
        font-size: 1.75em;
    }
    .trade-in__title::before {
        inset: -7.25em;
        transform: translateY(-1.5em);
    }
    .trade-in__text {
        text-align: left;
        font-size: 1.25em;
        margin-top: 1.5rem;
    }
    .trade-in__btn {
        width: 100%;
        max-width: 440px;
        margin-left: 0;
        margin-top: 2.5rem;
    }
    .trade-in__list {
        grid-column: span 2;
        grid-template-columns: repeat(5, 1fr);
    }
    .trade-in__list li  {
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        padding: 1rem 1.25rem 1.5rem;
        font-size: .875em;
    }
    .trade-in__list li > span {
        display: block;
    }
    .trade-in__list li > span:nth-child(1) {
        position: relative;
        top: -.1em;
        right: -.1em;
        transform: none;
        align-self: end;
        font-size: 7rem;
    }
    .trade-in__img {
        min-width: 400px;
    }
}
@media (min-width: 1440px) {
    .trade-in__list li {
        font-size: 1em;
    }
}

.test-drive {
  overflow: auto;
}
.test-drive__container {
    /*! max-width: 1440px; */
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.test-drive__img-1 {
    border-radius: 20px;
    width: 100%;
}
.test-drive__img-2 {
    display: none;
}
.test-drive__visual {
    display: flex;
    flex-direction: column-reverse;
}
.test-drive__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: .875em;
}
.test-drive__form input {
    background: none;
}
.test-drive__form-title {
    display: none;
}
.test-drive__form-text {
    font-size: 1.25em;
}
.test-drive__form .consent {
    margin-top: 0;
}
@media (min-width: 375px) {
    .test-drive__form {
        font-size: 1em;
    }
}
@media (min-width: 1024px) {
    .test-drive__container {
        display: grid;
        grid-template-columns: 1fr 525px;
        align-items: end;
        gap: 2rem;
        padding-left: 0;
        padding-right: 0;
    }
    .test-drive__visual {
        flex-direction: column;
        gap: 2rem;
    }
    .test-drive__title {
      margin-bottom: 0;
      line-height: 1;
      font-size: clamp(3rem, 4.4vw, 56px);
      white-space: nowrap;
      font-weight: 900;
      color: transparent;
      background: url(../img/sale.jpg) no-repeat center/cover;
      background-clip: text;
    }
    .test-drive__imgs {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 3rem;
    }
    .test-drive__img-1 {
        min-width: 0;
    }
    .test-drive__form {
        margin-left: auto;
        width: 525px;
        border: 1px solid var(--c-primary-light-2);
        border-top-right-radius: 30px;
        border-bottom-left-radius: 30px;
        padding: 4rem 2rem 5rem;
    }
    .test-drive__form-title {
        display: block;
        font-weight: 500;
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }
    .test-drive__form-text {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}
@media (min-width: 1366px) {
    .test-drive__img-2 {
        max-width: 200px;
        display: block;
        border-radius: 20px;
    }
    .test-drive__form {
        padding: 2rem 2.25rem 2.5rem;
    }
    .test-drive__form-title {
        font-size: 2.3rem;
    }
}
@media (min-width: 1536px) {
    .test-drive__title {
        font-size: 56px;
    }
}


.sale-container {
  padding-left: 1rem;
  padding-right: 1rem;
}
.sale {
  margin: 2rem 0 -2rem;
  font-size: 10.8vw;
  font-weight: 800;
  color: transparent;
  background-color: #000;
  background-image: url(/img/sale.jpg);
  background-position: 50% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: cover;
}
@media (min-width: 768px) {
    .sale {
        font-size: 60px;
    }
}
@media (min-width: 1024px) {
    .sale {
        margin: 4rem 0 0;
    }
}
@media (min-width: 1200px) {
  .sale-container {
    padding-left: 0;
    padding-right: 0;
  }
  .sale {
    font-size: 90px;
  }
}

.card__badge {
  width: 36vw;
  max-width: 220px;
  flex: 0 1 auto;
}


.corp {
  /*! display: none; */
  padding-bottom: 0;
  max-width: 600px;
  margin: 0 auto;
}
.corp__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.corp__header {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  text-transform: uppercase;
}
.corp__text p {
  margin-bottom: .75em;
}
.corp__img--desk {
  display: none;
}
.corp__img--mob {
  margin-bottom: 2.5rem;
}
.corp__img-descr {
  margin-top: .5rem;
  font-size: .875rem;
  opacity: .75;
  text-align: right;
  font-style: italic;
}
.corp__list {
  margin-top: 2rem;
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  grid-column: span 2;
}
.corp__text-btn {
  margin-bottom: 1rem;
}
.corp__list > div {
  display: flex;
  gap: .5rem;
  background: var(--c-bg);
  padding: .75rem;
  border-radius: .75rem;
  font-size: .875rem;
}
.corp__list > div::before {
  content: '';
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  border-radius: 8px;
  background: center/.75rem url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 448 512"><path d="M434.8 70.1c14.3 10.4 17.5 30.4 7.1 44.7l-256 352c-5.5 7.6-14 12.3-23.4 13.1s-18.5-2.7-25.1-9.3l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l101.5 101.5 234-321.7c10.4-14.3 30.4-17.5 44.7-7.1z"/></svg>') no-repeat, var(--c-primary);
}
@media (max-width: 999px) {
  .corp__text-btn {
    height: auto;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}
@media (min-width: 1000px) {
  .corp {
    max-width: 100%;
  }
  .corp__container {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2rem;
  }
  .corp__header {
    font-size: 2rem;
  }
  .corp__img--mob {
    display: none;
  }
  .corp__img--desk {
    display: block;
  }
  .corp__list {
    margin-bottom: 3rem;
    grid-template-columns: repeat(2, 1fr);
    grid-column: 1 / span 2;
  }
  .corp__list > div {
    font-size: 1rem;
    display: flex;
    gap: .5rem;
  }
  .corp__text-btn {
    margin-bottom: 0;
  }
}
@media (min-width: 1101px) {
  .corp__container {
    padding: 4.5rem;
    border-radius: 24px;
  }
}
