@charset "UTF-8";
/* reset */
/* main variables */
:root {
  --yellow: #FFB012;
  --blue: #43ACC1;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Gilroy", sans-serif;
  background-color: #FFF;
  height: 100%;
  line-height: 1;
  position: relative;
  font-size: 13px !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pob, .pob * {
  font-family: "Pobeda", sans-serif;
  color: #242D39;
}

.dis, .dis * {
  font-family: "Disruptors Script";
}

.fe, .fe * {
  font-family: "FE Hero";
}

/*MAIN*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

body, html {
  font-size: 0.694vw;
  height: initial;
}

@media (max-width: 767px) {
  body, html {
    font-size: 2.778vw;
  }
}
table {
  border-collapse: collapse;
  border-width: 0px;
  padding: 0px;
  margin: 0px;
}

html {
  height: 100%;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

input,
textarea {
  color: #333;
  font-family: "Montserrat", sans-serif;
  outline: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}

input[type=button],
input[type=submit],
button {
  cursor: pointer;
}

td {
  margin: 0px;
  padding: 0px;
}

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

form {
  padding: 0px;
  margin: 0px;
}

a {
  color: #100da9;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
span,
div,
button {
  outline: none !important;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
  outline: none;
}

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

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.delay {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.delay2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay6 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay8 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay10 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@media (max-width: 768px) {
  .delay,
  .delay10,
  .delay2,
  .delay4,
  .delay6,
  .delay8 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
}
.animate_fade_in,
.animate_fade_left,
.animate_fade_right {
  opacity: 0;
}

@-webkit-keyframes slide-up-in {
  0% {
    -webkit-transform: translate(0, 30px) rotate(1deg);
            transform: translate(0, 30px) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-up-in {
  0% {
    -webkit-transform: translate(0, 30px) rotate(1deg);
            transform: translate(0, 30px) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_in {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-up-in;
  animation-name: slide-up-in;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translate(50px, 0) rotate(1deg);
            transform: translate(50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translate(50px, 0) rotate(1deg);
            transform: translate(50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_left {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-left;
  animation-name: slide-left;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translate(-50px, 0) rotate(1deg);
            transform: translate(-50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translate(-50px, 0) rotate(1deg);
            transform: translate(-50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_right {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-right;
  animation-name: slide-right;
}

.btn {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: #654f11;
  padding: 3rem 4.4rem;
  -webkit-box-shadow: 0 3px 0 0 #d1ae67, 0 23px 59px 0 rgba(249, 182, 48, 0.35);
          box-shadow: 0 3px 0 0 #d1ae67, 0 23px 59px 0 rgba(249, 182, 48, 0.35);
  background: linear-gradient(178deg, #ffe0a3 0%, #f5bb48 100%);
  border: 0;
  border-radius: 2rem;
}

.grad {
  background: linear-gradient(271deg, rgba(67, 69, 73, 0.5) 0%, #434549 25.33%, #434549 53.83%, #434549 75.83%, rgba(67, 69, 73, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradw {
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.3)), color-stop(25.33%, #fff), color-stop(53.83%, #fff), color-stop(75.83%, #fff), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.3) 0%, #fff 25.33%, #fff 53.83%, #fff 75.83%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(54, 164, 186);
    box-shadow: 0 0 0 0 rgb(54, 164, 186);
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.042vw rgba(54, 164, 186, 0);
    box-shadow: 0 0 0 1.042vw rgba(54, 164, 186, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(54, 164, 186);
    box-shadow: 0 0 0 0 rgb(54, 164, 186);
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.042vw rgba(54, 164, 186, 0);
    box-shadow: 0 0 0 1.042vw rgba(54, 164, 186, 0);
  }
}
@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(54, 164, 186);
    box-shadow: 0 0 0 0 rgb(54, 164, 186);
  }
  100% {
    -webkit-box-shadow: 0 0 0 2.083vw rgba(54, 164, 186, 0);
    box-shadow: 0 0 0 2.083vw rgba(54, 164, 186, 0);
  }
}
@keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(54, 164, 186);
    box-shadow: 0 0 0 0 rgb(54, 164, 186);
  }
  100% {
    -webkit-box-shadow: 0 0 0 2.083vw rgba(54, 164, 186, 0);
    box-shadow: 0 0 0 2.083vw rgba(54, 164, 186, 0);
  }
}
@-webkit-keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(249, 206, 120);
    box-shadow: 0 0 0 0 rgb(249, 206, 120);
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.042vw rgba(249, 206, 120, 0);
    box-shadow: 0 0 0 1.042vw rgba(249, 206, 120, 0);
  }
}
@keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(249, 206, 120);
    box-shadow: 0 0 0 0 rgb(249, 206, 120);
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.042vw rgba(249, 206, 120, 0);
    box-shadow: 0 0 0 1.042vw rgba(249, 206, 120, 0);
  }
}
@-webkit-keyframes pulse4 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(249, 206, 120);
    box-shadow: 0 0 0 0 rgb(249, 206, 120);
  }
  100% {
    -webkit-box-shadow: 0 0 0 2.083vw rgba(249, 206, 120, 0);
    box-shadow: 0 0 0 2.083vw rgba(249, 206, 120, 0);
  }
}
@keyframes pulse4 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(249, 206, 120);
    box-shadow: 0 0 0 0 rgb(249, 206, 120);
  }
  100% {
    -webkit-box-shadow: 0 0 0 2.083vw rgba(249, 206, 120, 0);
    box-shadow: 0 0 0 2.083vw rgba(249, 206, 120, 0);
  }
}
@media (max-width: 768px) {
  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(54, 164, 186);
      box-shadow: 0 0 0 0 rgb(54, 164, 186);
    }
    100% {
      -webkit-box-shadow: 0 0 0 6.042vw rgba(54, 164, 186, 0);
      box-shadow: 0 0 0 6.042vw rgba(54, 164, 186, 0);
    }
  }
  @keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(54, 164, 186);
      box-shadow: 0 0 0 0 rgb(54, 164, 186);
    }
    100% {
      -webkit-box-shadow: 0 0 0 6.042vw rgba(54, 164, 186, 0);
      box-shadow: 0 0 0 6.042vw rgba(54, 164, 186, 0);
    }
  }
  @-webkit-keyframes pulse2 {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(54, 164, 186);
      box-shadow: 0 0 0 0 rgb(54, 164, 186);
    }
    100% {
      -webkit-box-shadow: 0 0 0 12.083vw rgba(54, 164, 186, 0);
      box-shadow: 0 0 0 12.083vw rgba(54, 164, 186, 0);
    }
  }
  @keyframes pulse2 {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(54, 164, 186);
      box-shadow: 0 0 0 0 rgb(54, 164, 186);
    }
    100% {
      -webkit-box-shadow: 0 0 0 12.083vw rgba(54, 164, 186, 0);
      box-shadow: 0 0 0 12.083vw rgba(54, 164, 186, 0);
    }
  }
  @-webkit-keyframes pulse3 {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(249, 206, 120);
      box-shadow: 0 0 0 0 rgb(249, 206, 120);
    }
    100% {
      -webkit-box-shadow: 0 0 0 8.042vw rgba(249, 206, 120, 0);
      box-shadow: 0 0 0 8.042vw rgba(249, 206, 120, 0);
    }
  }
  @keyframes pulse3 {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(249, 206, 120);
      box-shadow: 0 0 0 0 rgb(249, 206, 120);
    }
    100% {
      -webkit-box-shadow: 0 0 0 8.042vw rgba(249, 206, 120, 0);
      box-shadow: 0 0 0 8.042vw rgba(249, 206, 120, 0);
    }
  }
  @-webkit-keyframes pulse4 {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(249, 206, 120);
      box-shadow: 0 0 0 0 rgb(249, 206, 120);
    }
    100% {
      -webkit-box-shadow: 0 0 0 12.083vw rgba(249, 206, 120, 0);
      box-shadow: 0 0 0 12.083vw rgba(249, 206, 120, 0);
    }
  }
  @keyframes pulse4 {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(249, 206, 120);
      box-shadow: 0 0 0 0 rgb(249, 206, 120);
    }
    100% {
      -webkit-box-shadow: 0 0 0 12.083vw rgba(249, 206, 120, 0);
      box-shadow: 0 0 0 12.083vw rgba(249, 206, 120, 0);
    }
  }
}
.privacy {
  width: 76.389vw;
  margin: 0 auto;
  max-width: 90%;
  padding: 3.472vw 0;
}

.oferta {
  width: 76.389vw;
  margin: 0 auto;
  max-width: 90%;
  padding: 3.472vw 0;
  /*font-size: 1.042vw;*/
}

.privacy__title {
  font-size: 2.5vw;
  font-weight: 700;
  margin-bottom: 2.778vw;
}

.privacy__text p {
  font-size: 1.042vw;
  line-height: 1.4;
  margin-bottom: 1.042vw;
}

.privacy__text h2 {
  font-size: 1.389vw;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.736vw;
  margin-top: 1.736vw;
}

.privacy__text a {
  color: #3C71F4;
}

.popup-wrap {
  width: 29.167vw;
  max-width: 95%;
  /*display: none;*/
  position: fixed;
  z-index: 999;
  opacity: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(0);
  -ms-transform: translateY(-50%) translateX(-50%) scale(0);
  transform: translateY(-50%) translateX(-50%) scale(0);
  /*transition: all 0.3s linear;*/
  padding: 0 !important;
  background: none !important;
  border-radius: 0.694vw;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  pointer-events: none;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.82);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.overlay.active {
  opacity: 1;
  z-index: 998;
  pointer-events: auto;
}

.popup-wrap.active {
  opacity: 1;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  -ms-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
  pointer-events: auto;
}

.popup-wrap * {
  color: #fff;
}

.iti * {
  color: #000;
}

.iti {
  margin-bottom: 1.389vw;
  width: 100%;
}

.popup-form {
  border-radius: 1.389vw;
  padding: 3.125vw;
  border-radius: 0.694vw;
  background: linear-gradient(105deg, #3090FF 14.44%, #107CFA 66.59%);
  background: var(--blue);
}

.popup-form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -1.597vw;
}

.popup-label {
  font-size: 0.972vw;
  margin-bottom: 0.694vw;
}

.popup-remark {
  margin-top: -0.903vw;
  margin-bottom: 1.25vw;
  font-size: 0.764vw;
  opacity: 0.8;
}

.popup-form-top__img {
  width: 37%;
  margin-right: 3%;
}

.popup-form-top__img img {
  display: block;
  width: 100%;
}

.popup-title {
  width: 100%;
  font-size: 3.361vw;
  margin-bottom: 2.083vw;
  margin-top: 1.389vw;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, color-stop(-6.53%, rgba(255, 255, 255, 0)), color-stop(20.53%, #FFFFFF), color-stop(52.2%, #FFFFFF), color-stop(82.9%, #FFFFFF), color-stop(103.47%, rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) -6.53%, #FFFFFF 20.53%, #FFFFFF 52.2%, #FFFFFF 82.9%, rgba(255, 255, 255, 0) 103.47%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 400;
  padding-top: 0.8rem;
}

.popup-input {
  height: 4.028vw;
  padding: 0.347vw 1.042vw;
  border-radius: 0.486vw;
  border: 0;
  background-color: #fff;
  -ms-flex-item-align: center;
  align-self: center;
  width: 100%;
  position: relative;
  font-size: 1.042vw;
  margin-bottom: 1.389vw;
  color: #000 !important;
}

.popup-input.textarea {
  height: 10vw;
  padding: 1.047vw 1.042vw;
}

.popup-btn {
  width: 100%;
}

.popup-btn b {
  color: #654F11;
}

.popup-check {
  cursor: pointer;
  display: block;
  margin-top: 1.389vw;
}

.popup-check-input {
  display: none;
}

.popup-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.popup-check-label {
  width: 1.181vw;
  height: 1.181vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.486vw;
  -webkit-box-shadow: inset 0 0 0.694vw rgba(140, 140, 140, 0.04);
  box-shadow: inset 0 0 0.694vw rgba(140, 140, 140, 0.04);
  border-radius: 0.139vw;
  border: 1px solid #d1d1d1;
  background-color: #fff;
  margin-top: -0.208vw;
  overflow: hidden;
  border: 0;
}

.popup-check-text {
  font-size: 0.972vw;
}

.popup-check-input:checked ~ span .popup-label-act {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup-label-act {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  border-radius: 0.139vw;
  background-color: #04c5ff;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.208vw;
  width: 100%;
  height: 100%;
}

.popup-label-act img {
  width: 100%;
  display: block;
  margin-top: 0.208vw;
}

.iti__country-list {
  min-width: 270px;
}

input {
  font-family: "Gilroy", sans-serif;
}

.thanks {
  background: url(../img/thanks.jpg) center center/cover no-repeat;
}

.thanks__box {
  min-height: 100vh;
  text-align: center;
  padding-top: 5vw;
}

.thanks__title {
  color: #4d432c;
  text-align: center;
  font-weight: 400;
  font-size: 4.861vw;
  margin-bottom: 2vw;
}

.thanks__subtitle {
  color: #4d432c;
  text-align: center;
  font-weight: 400;
  font-size: 3.472vw;
  margin-bottom: 2vw;
}

.thanks__btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .thanks__box {
    padding-top: 15vw;
  }
  .thanks__title {
    font-size: 14vw;
    margin-bottom: 7vw;
  }
  .thanks__subtitle {
    font-size: 8vw;
    margin-bottom: 7vw;
  }
  .thanks__subtitle br {
    display: none;
  }
  .thanks__btn {
    letter-spacing: 1.667vw;
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }
  .popup-wrap {
    width: 89.167vw;
  }
  .popup-form {
    padding: 9.125vw;
    border-radius: 3.694vw;
  }
  .popup-title {
    font-size: 10.361vw;
    padding-top: 1vw;
    margin-bottom: 6.083vw;
  }
  .popup-label {
    font-size: 3.972vw;
    margin-bottom: 1.694vw;
  }
  .popup-input {
    height: 13.028vw;
    padding: 2.347vw 5.042vw;
    font-size: 3.742vw;
    margin-bottom: 6.389vw;
  }
  .popup-remark {
    margin-bottom: 3.25vw;
    font-size: 2.764vw;
    text-align: center;
  }
  .popup-btn {
    padding-left: 0;
    padding-right: 0;
  }
  .iti {
    margin-bottom: 5.389vw;
  }
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.eot");
  src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.eot");
  src: url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.eot");
  src: url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.eot");
  src: url("../fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-SemiBold.woff") format("woff"), url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.eot");
  src: url("../fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.eot");
  src: url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff") format("woff"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Disruptors Script";
  src: local("Disruptors Script Regular"), local("Disruptors-Script-Regular"), url("../fonts/DisruptorsScript-Regular.woff2") format("woff2"), url("../fonts/DisruptorsScript-Regular.woff") format("woff"), url("../fonts/DisruptorsScript-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FE Hero";
  src: url("../fonts/FEHero-Regular.eot");
  src: url("../fonts/FEHero-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/FEHero-Regular.woff") format("woff"), url("../fonts/FEHero-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Pobeda";
  src: local("Pobeda Bold"), local("Pobeda-Bold"), url("../fonts/Pobeda-Bold.woff2") format("woff2"), url("../fonts/Pobeda-Bold.woff") format("woff"), url("../fonts/Pobeda-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/*@import "components/_fancybox";
@import "components/_slick";
@import "components/_mCustomScrollbar";*/
/*
================================================================================
|                                     HEADER                                   |
================================================================================
*/
header {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-order: 1;
}

/*
================================================================================
|                                     FOOTER                                   |
================================================================================
*/
footer {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-order: 3;
}

.main-wrapper {
  padding: 0 0 0 0;
  min-width: 290px;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.wrapper {
  min-width: 290px;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}

/* titles */
/*p{	
	@include font($base-font-size,$base-line-height,$text-color);
	font-weight: 400;	
}
h1{	
	@include font($font-size-h1,$line-height-h1,$title-color);
	font-family: $title-font-family;
	font-weight: 400;	
}
h2{
	@include font($font-size-h2,$line-height-h2,$title-color);
	font-family: $title-font-family;
	font-weight: 400;	
}
h3{
	@include font($font-size-h3,$line-height-h3,$title-color);
	font-family: $title-font-family;
	font-weight: 400;
}*/
/* text position */
.text-left {
  text-align: left !important;
}

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

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

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

/* loader */
/*.loaded .main-wrapper{visibility:hidden;}
.icon-load{background:url(../img/loader.gif) no-repeat left top;width:40px;height:40px;position:fixed;left:50%;top:50%;margin-left:-20px;margin-left:-20px;display:none;}
.loaded .icon-load{display:block;}*/
/*
================================================================================
|                                     CONTENT                                 |
================================================================================
*/
.content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-order: 2;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.banner {
  position: relative;
  overflow: hidden;
}
.banner__leaves {
  width: 82rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
  pointer-events: none;
}
.banner__leaves img{
  display: block;
  width: 100%;
}
.banner__mobbtn {
  display: none;
}
.banner__main {
  padding: 51rem 3.5rem 5rem;
  position: absolute;
  top: 0;
  right: 26rem;
  width: 37.3rem;
  text-align: center;
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  background: linear-gradient(163deg, rgba(67, 182, 205, 0.6) 0%, rgba(49, 153, 174, 0.6) 100%);
  border-radius: 0 0 2.4rem 2.4rem;
}
.banner__upper {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 5rem;
  width: 100%;
}
.banner__subtitle {
  font-weight: 400;
  font-size: 12.8rem;
  text-transform: uppercase;
  color: #434549;
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
}
.banner__title {
  font-weight: 400;
  font-size: 12rem;
  color: #ffb521;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  top: 14.1rem;
}
.banner__pro {
  font-weight: 400;
  font-size: 39.5rem;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  top: 12.5rem;
}
.banner__descr {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}
.banner__info {
  width: 18.6rem;
  position: absolute;
  right: 6rem;
  top: 5rem;
  text-align: center;
}
.banner__date {
  padding: 2rem 3rem 4rem;
  border-radius: 1.1rem;
  -webkit-backdrop-filter: blur(36px);
          backdrop-filter: blur(36px);
  background: linear-gradient(156deg, #ecd9a7 0%, #c7ac65 100%);
}
.banner__numbertext {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 117%;
  text-transform: uppercase;
  text-align: center;
  color: #4a412a;
  position: relative;
  top: -2rem;
}
.banner__number {
  position: relative;
  width: 100%;
}
.banner__number img {
  position: absolute;
  top: 2rem;
  width: 2.5rem;
}
.banner__number img:first-child {
  left: 0;
}
.banner__number img:last-child {
  right: 0;
}
.banner__number span {
  font-weight: 700;
  font-size: 9.2rem;
  line-height: 117%;
  text-transform: uppercase;
  text-align: center;
  color: #4a412a;
}
.banner__more {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: rgba(48, 59, 6, 0.41);
  position: relative;
  z-index: 2;
  border-radius: 0.8rem;
  top: -2rem;
  padding: 2.4rem 0 5rem;
}
.banner__ninfo {
  margin-bottom: 1.5rem;
}
.banner__ninfo span {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 131%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 0.8rem;
}
.banner__ninfo b {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 9.2rem;
  line-height: 117%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding-left: 0.5rem;
}
.banner__ninfo b.yellow {
  color: var(--yellow);
}
.banner__ninfo p {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 117%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  position: relative;
  top: -1.2rem;
}
.banner__logo {
  width: 6.6rem;
  margin-left: auto;
  margin-right: auto;
}
.banner__man {
  display: none;
}

.shadow {
  width: 100%;
  position: absolute;
  left: 0;
  top: 53rem;
  z-index: 4;
  pointer-events: none;
}

.timerbl {
  position: relative;
  z-index: 5;
  margin-top: 3rem;
}
.timerbl__bg {
  display: block;
  width: 100%;
}
.timerbl__bush {
  width: 37rem;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 45rem;
}
.timerbl__wrap {
  position: absolute;
  padding-top: 20rem;
  width: 108rem;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.timerbl__wrap.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.timerbl__title {
  width: 40.3rem;
  margin-right: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.timerbl__title span:nth-child(1) {
  font-weight: 700;
  font-size: 7.1rem;
  text-transform: uppercase;
  color: #636053;
}
.timerbl__title span:nth-child(2) {
  font-weight: 700;
  font-size: 17rem;
  text-transform: uppercase;
  color: #43acc1;
}
.timerbl__title span:nth-child(3) {
  font-weight: 700;
  font-size: 9.1rem;
  text-transform: uppercase;
  color: #636053;
  position: relative;
  top: -2rem;
}
.timerbl__title p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 140%;
  text-align: center;
  color: #3a382d;
  font-family: "Gilroy", sans-serif;
  padding-right: 1rem;
}
.timerbl__title p b {
  font-family: "Gilroy", sans-serif;
}

.countdown ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.countdown ul li {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 103%;
  text-align: center;
  color: #636053;
  width: 14.4rem;
  position: relative;
  margin-right: 1.2rem;
}
.countdown ul li:last-child {
  margin-right: 0;
}
.countdown ul li span {
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(33.3%, #fff), color-stop(44.84%, #dce3ed), color-stop(51.15%, #dce3ed), color-stop(66.1%, #fff), to(#fff));
  background: linear-gradient(180deg, #fff 0%, #fff 33.3%, #dce3ed 44.84%, #dce3ed 51.15%, #fff 66.1%, #fff 100%);
  border-radius: 1.7rem;
  text-align: center;
  margin-top: 2rem;
  font-weight: 700;
  font-size: 14.1rem;
  line-height: 105%;
  text-transform: uppercase;
  text-align: center;
  color: #3c4042;
  padding-top: 4rem;
  padding-bottom: 1.7rem;
  padding-left: 1rem;
}

.lline {
  height: 0.3rem;
  width: 100%;
  background: #d4ceb1;
  position: absolute;
  left: 0;
  top: 14.5rem;
}
.lline:before {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  left: 0;
  top: -0.3rem;
  background: #d4ceb1;
}
.lline:after {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  right: 0;
  top: -0.3rem;
  background: #d4ceb1;
}

.course {
  padding: 8rem 0 10rem;
  position: relative;
}
.course__bush {
  width: 20rem;
  position: absolute;
  right: 0;
  top: 83rem;
  z-index: 3;
}
.course__title {
  text-align: center;
}
.course__title span {
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  padding-top: 0.8rem;
}
.course__subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 12.8rem;
  color: var(--blue);
  position: relative;
  top: -3.5rem;
}
.course__box.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.course__item {
  width: 65rem;
}
.course__item.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.course__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.course__info.right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.course__head {
  margin-bottom: 1.5rem;
}
.course__head.right {
  padding-left: 3rem;
}
.course__icon {
  width: 7rem;
  height: 12.7rem;
  border-radius: 1.6rem;
  font-size: 5.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--blue);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3rem;
  margin-right: 2.4rem;
}
.course__icon.yellow {
  background: linear-gradient(154deg, #ffb622 0%, #e49e10 100%);
}
.course__icon.grey {
  background: linear-gradient(154deg, #eaecf0 0%, #e0e2e7 100%);
}
.course__icon.dark {
  background: linear-gradient(312deg, #2a2d30 0%, #414447 100%);
}
.course__name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  padding-top: 2rem;
  min-height: 14.2rem;
}
.course__name.small {
  font-size: 5.2rem;
}
.course__label {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  color: #2a2c2d;
  padding-left: 2.8rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.course__label.right {
  margin-left: 3rem;
}
.course__label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #434649;
  height: 100%;
  width: 0.8rem;
}
.course__image {
  width: 26.5rem;
  position: relative;
}
.course__img {
  width: 100%;
  border-radius: 1.6rem;
  position: relative;
  overflow: hidden;
  height: 53.4rem;
}
.course__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.course__top {
  height: 18rem;
  background: linear-gradient(161deg, #eef1f5 0%, #dfe2e7 100%);
  border-radius: 1.6rem 0 0 1.6rem;
  padding: 1.6rem 2.4rem;
}
.course__top span {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  color: #2a2c2d;
  display: block;
  margin-bottom: 1rem;
}
.course__top p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 150%;
  color: #2a2c2d;
}
.course__top.right {
  border-radius: 0 1.6rem 1.6rem 0;
}
.course__bott {
  width: 120%;
  height: 17rem;
  background: linear-gradient(161deg, #52bacf 0%, #3199ae 100%);
  border-radius: 1.6rem 0 0 1.6rem;
  position: relative;
  top: -3rem;
  padding-left: 10.4rem;
  padding-top: 2.4rem;
  padding-right: 12rem;
}
.course__bott span {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}
.course__bott p {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 150%;
  color: #fff;
}
.course__bott img {
  position: absolute;
  width: 6.6rem;
  left: 2.4rem;
  top: 3rem;
}
.course__bott.right {
  border-radius: 0 1.6rem 1.6rem 0;
  margin-left: -20%;
  padding-left: 18.4rem;
  padding-right: 3rem;
}
.course__bott.right img {
  left: 10.4rem;
}
.course__user {
  padding: 1.6rem 5rem;
  border-radius: 1.6rem;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: linear-gradient(169deg, #434649 0%, #292c2f 100%);
}
.course__user span {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
}
.course__user p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  color: #fff;
}
.course__usericon {
  width: 7rem;
  height: 7rem;
  position: absolute;
  left: -3.1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.course__usericon:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.course__usericon.right {
  left: auto;
  right: -3.1rem;
}
.course__userinside {
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.course__userinside img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  z-index: 2;
}

.mainres {
  padding-top: 7rem;
  padding-bottom: 13rem;
  position: relative;
}
.mainres__bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.mainres__wrap {
  position: relative;
  z-index: 2;
}
.mainres__title {
  text-align: center;
}
.mainres__title span {
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  padding-top: 0.8rem;
}
.mainres__subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 12.8rem;
  color: var(--blue);
  position: relative;
  top: -3.5rem;
  padding-left: 2rem;
}
.mainres__box.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.mainres__item {
  position: relative;
  width: 65rem;
}
.mainres__item.small {
  width: 42.5rem;
}
.mainres__item.mt {
  margin-top: 2rem;
}
.mainres__image {
  display: block;
  width: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
}
.mainres__info {
  position: absolute;
  left: 4.4rem;
  top: 3.2rem;
  z-index: 2;
}
.mainres__info span {
  display: inline-block;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.mainres__info_3 span{
  font-size: 5.3rem;
}
.mainres__info p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #2a2c2d;
  margin-top: 1.2rem;
}
.mainres__info.white p {
  color: #fff;
}
.mainres__info_2 {
  width: 19rem;
}
.mainres__info_5 {
  width: 31rem;
}
.mainres__info_6 {
  width: 21.1rem;
}

.results {
  padding: 0;
  padding-top: 13rem;
  padding-bottom: 7rem;
  position: relative;
}
.results__bush {
  display: none;
}
.results__bg {
  position: absolute;
  width: 100%;
  top: -7.3611111111vw;
  right: 0;
}
.results__bg picture, .results__bg img {
  width: 100%;
}
.results__wrap {
  position: relative;
  z-index: 3;
  padding-left: 4.4444444444vw;
  padding-right: 4.4444444444vw;
}
.results__head {
  margin-bottom: 12.5vw;
  position: relative;
}
.results__head.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.results__head span {
  margin-right: 1.3888888889vw;
  padding-top: 1.3888888889vw;
  font-size: 8.8888888889vw;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: -webkit-gradient(linear, right top, left top, from(rgba(67, 69, 73, 0.6)), color-stop(25.33%, #434549), color-stop(53.83%, #434549), color-stop(75.83%, #434549), to(rgba(67, 69, 73, 0.6)));
  background: linear-gradient(270deg, rgba(67, 69, 73, 0.6) 0%, #434549 25.33%, #434549 53.83%, #434549 75.83%, rgba(67, 69, 73, 0.6) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.results__head p {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 164%;
  letter-spacing: 0.04em;
  color: #434649;
}
.results__head i {
  font-family: "Disruptors Script";
  font-weight: 400;
  font-size: 10.2777777778vw;
  color: #2893a9;
  position: absolute;
  left: 47.2222222222vw;
  top: 3.4722222222vw;
}
.results__box {
  margin-top: 5.556vw;
}
.results__box.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.results__item {
  width: 16.667vw;
  position: relative;
  margin-bottom: 6vw;
  display: none;
  border-radius: 1.3888888889vw;
  background: linear-gradient(138deg, #40bed7 0%, #38aac1 100%);
}
.results__item:nth-child(1), .results__item:nth-child(2), .results__item:nth-child(3), .results__item:nth-child(4), .results__item:nth-child(5), .results__item:nth-child(6), .results__item:nth-child(7), .results__item:nth-child(8), .results__item:nth-child(9), .results__item:nth-child(10) {
  display: block;
}
.results__item:nth-child(2n) {
  background: linear-gradient(138deg, #e2d5b7 0%, #d5c8ab 100%);
}
.results__item:nth-child(2n) .results__insta {
  background: #B5A88D;
}
.results__item:nth-child(2n) .results__insta span {
  color: #fff;
}
.results__item:nth-child(2n) .results__name {
  color: #484235;
}
.results__item:nth-child(2n) .results__inform {
  color: #B5A88D;
}
.results__item:nth-child(2n) .results__before {
  background: #B5A88D;
}
.results__item:nth-child(2n) .results__before span {
  color: #fff;
}
.results__item:nth-child(2n) .results__after {
  background: linear-gradient(138deg, #40bed7 0%, #38aac1 100%);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.results__item:nth-child(2n) .results__after span, .results__item:nth-child(2n) .results__after p {
  color: #fff;
}
.results__back {
  position: absolute;
  z-index: 1;
  background: #121721;
  border-radius: 0.486vw;
  width: 90%;
  height: 104%;
  top: -2%;
  left: 5%;
}
.results__main {
  position: relative;
  z-index: 2;
  background-size: 100% 100%;
  border-radius: 1.3888888889vw;
  text-align: center;
  padding: 5.903vw 1.389vw 1.883vw;
}
.results__image {
  width: 7.644vw;
  height: 7.644vw;
  border-radius: 1.3888888889vw;
  position: absolute;
  left: 50%;
  top: -3.7vw;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: 100% 100%;
  background-size: cover;
}
.results__name {
  font-weight: 700;
  font-size: 1.53vw;
  line-height: 130%;
  text-align: center;
  color: #fff;
  margin-bottom: 0.347vw;
  min-height: 4.167vw;
}
.results__inform {
  font-weight: 500;
  font-size: 0.972vw;
  line-height: 164%;
  letter-spacing: 0.04em;
  color: #194B55;
  margin-bottom: 1.25vw;
  display: none;
}
.results__insta {
  text-align: center;
  margin-top: 0.5vw;
  margin-bottom: 0.9vw;
  background: #1D7485;
  border-radius: 2.7777777778vw;
  padding: 0.5vw 0.8vw 0.5vw;
}
.results__insta span {
  display: inline-block;
  font-weight: 400;
  font-size: 0.911vw;
  line-height: 150%;
  color: #D8DEEA;
  position: relative;
  padding-left: 1.736vw;
}
.results__insta span:before {
  content: "";
  width: 1.389vw;
  height: 1.389vw;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/4-s/insta.svg);
  background-size: 100% 100%;
}
.results__before {
  background: #1D7485;
  border-radius: 1.3888888889vw;
  margin-bottom: 0.586vw;
  padding: 0.8vw 0.8vw 0.6vw;
}
.results__before span {
  font-weight: 700;
  font-size: 0.972vw;
  line-height: 164%;
  letter-spacing: 0.04em;
  color: #718487;
}
.results__before span b {
  font-weight: 400;
}
.results__before p {
  font-weight: 400;
  font-size: 3.256vw;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  margin-top: 0.486vw;
  font-family: "Pobeda", sans-serif;
}
.results__after {
  border-radius: 1.3888888889vw;
  background: linear-gradient(184deg, #ffe0a3 0%, #f5bb48 100%);
  -webkit-box-shadow: 0 0.2083333333vw 0 0 #d1ae67;
          box-shadow: 0 0.2083333333vw 0 0 #d1ae67;
  margin-bottom: 1.736vw;
  padding: 0.8vw 0.8vw 0.6vw;
}
.results__after span {
  font-weight: 500;
  font-size: 0.972vw;
  line-height: 164%;
  letter-spacing: 0.04em;
  color: #7A5B1C;
}
.results__after p {
  font-weight: 400;
  font-size: 3.256vw;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #7A5B1C;
  margin-top: 0.486vw;
  font-family: "Pobeda", sans-serif;
}
.results__feedback {
  -webkit-box-shadow: 0 0.2083333333vw 0 0 #124c60;
          box-shadow: 0 0.2083333333vw 0 0 #124c60;
  background: linear-gradient(173deg, #fff 0%, #dfe5ed 100%);
  border-radius: 1.3888888889vw;
  width: 100%;
  border: 0;
  height: 5.278vw;
}
.results__feedback.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.results__feedback img {
  width: 1.011vw;
  -webkit-filter: grayscale(1) brightness(0);
          filter: grayscale(1) brightness(0);
}
.results__feedback span {
  font-weight: 700;
  font-size: 0.833vw;
  line-height: 1.2;
  letter-spacing: 0.515em;
  text-transform: uppercase;
  color: #434649;
  margin-left: 0.903vw;
}
.results__more {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.results__more.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.results__more span {
  font-weight: 500;
  font-size: 1.111vw;
  line-height: 164%;
  text-align: center;
  letter-spacing: 0.04em;
  color: #38AAC1;
  margin-right: 1.042vw;
}
.results__more img {
  width: 1.319vw;
}
.results__more:hover {
  -webkit-transform: translateY(-20%);
      -ms-transform: translateY(-20%);
          transform: translateY(-20%);
}
.results__box.flex {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.results__box.active .results__item {
  display: block;
}

.how {
  padding-top: 10rem;
  position: relative;
}
.how .how__title {
  padding-right: 17rem;
}
.how__title {
  text-align: center;
}
.how__title span {
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  padding-top: 0.8rem;
}
.how__bush {
  position: absolute;
  left: 0;
  top: 73rem;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}
.how__subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 12.8rem;
  color: var(--blue);
  position: relative;
  top: -3.5rem;
  padding-left: 17rem;
}
.how__box.flex {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.how__item {
  width: 65rem;
  border-radius: 1.6rem;
  overflow: hidden;
  position: relative;
}
.how__name br {
  display: none;
}
.how__info {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 3.5rem 4.5rem;
}
.how__name {
  display: inline-block;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.how__descr {
  width: 47.3rem;
  margin-bottom: 3rem;
}
.how__descr p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
}
.how__descr p:nth-child(2) {
  margin-top: 1.6rem;
}
.how__descr.dark p {
  color: #000;
}
.how__descr.big {
  width: 53.3rem;
}
.how__left {
  padding-top: 1.5rem;
  border-radius: 1.6rem;
  background: #34383c;
}
.how__left_1 {
  width: 18rem;
}
.how__left_2 {
  width: 38rem;
}
.how__left_3 {
  width: 42rem;
}
.how__left_4 {
  width: 42rem;
  background: var(--blue);
}
.how__left p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.how__left b {
  font-weight: 700;
  font-size: 9.3rem;
  line-height: 110%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-top: 0.7rem;
  padding-left: 0.5rem;
}
.how__left span {
  font-weight: 400;
  font-size: 4.1rem;
  line-height: 110%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.3rem;
}
.how__number.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.how__right {
  padding-top: 1.5rem;
  border-radius: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.how__right p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.how__right b {
  font-weight: 700;
  font-size: 9.3rem;
  line-height: 110%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-top: 0.7rem;
  padding-left: 0.5rem;
}
.how__right_3 b, .how__right_3 span, .how__right_3 p, .how__right_4 b, .how__right_4 span, .how__right_4 p {
  color: #434549;
}
.how__results {
  border-radius: 1.6rem;
}
.how__results.blue {
  background: linear-gradient(198deg, #43bed6 0%, #38aac1 100%);
}
.how__results.grey {
  background: linear-gradient(198deg, #fff 0%, #c3c3c3 100%);
}
.how__numbericon {
  font-weight: 700;
  font-size: 26.4rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: linear-gradient(269deg, rgba(255, 255, 255, 0.5) 0%, #fff 25.33%, #fff 53.83%, #fff 75.83%, rgba(255, 255, 255, 0.6) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 4rem;
  bottom: -4.5rem;
  padding-top: 1rem;
}

.program {
  position: relative;
  padding-top: 22.9166666667vw;
  min-height: 118.0555555556vw;
}
.program.small {
  min-height: initial;
  padding-bottom: 13.8888888889vw;
}
.program__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.program__plane {
  position: absolute;
  right: 0;
  top: 6.25vw;
  width: 22.9861111111vw;
  z-index: 1;
  pointer-events: none;
}
.program__yaht {
  position: absolute;
  left: 0;
  top: 70.1388888889vw;
  width: 38.8888888889vw;
  z-index: 1;
  pointer-events: none;
}
.program__wrap {
  position: relative;
  z-index: 2;
  padding-left: 4.4444444444vw;
  padding-right: 4.4444444444vw;
}
.program__wrap.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.program__heading {
  padding-top: 9.0277777778vw;
}
.program__heading span {
  font-family: "Disruptors Script";
  font-weight: 400;
  font-size: 10.2777777778vw;
  color: #16a5c2;
  position: relative;
  top: 3.4722222222vw;
}
.program__heading p {
  font-size: 8.8888888889vw;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: -webkit-gradient(linear, right top, left top, from(rgba(67, 69, 73, 0.5)), color-stop(25.33%, #434549), color-stop(53.83%, #434549), color-stop(75.83%, #434549), to(rgba(67, 69, 73, 0.5)));
  background: linear-gradient(270deg, rgba(67, 69, 73, 0.5) 0%, #434549 25.33%, #434549 53.83%, #434549 75.83%, rgba(67, 69, 73, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0.6944444444vw;
}
.program__box {
  width: 52.4305555556vw;
  margin-right: 0;
  margin-left: auto;
}
.program__tabs {
  margin-bottom: 0.2777777778vw;
}
.program__tabs.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.program__tab {
  padding: 1.1111111111vw 0.5555555556vw;
  font-weight: 500;
  font-size: 1.1111111111vw;
  line-height: 140%;
  text-align: center;
  color: #434649;
  background: #fff;
  border-radius: 2.7777777778vw;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 1.1111111111vw;
  width: 15.5%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.program__tab.mr {
  width: 32%;
}
.program__tab.active {
  border-radius: 2.7777777778vw;
  background: #38aac1;
  color: #fff;
}
.program__item {
  border-radius: 1.3888888889vw;
  padding: 2.7777777778vw 1.3888888889vw 0 1.3888888889vw;
  background: linear-gradient(166deg, #fff 0%, #ecf0f2 100%);
  display: none;
}
.program__item.active {
  display: block;
}
.program__inside {
  position: relative;
  padding-bottom: 12.8472222222vw;
}
.program__inside.spec {
  padding-bottom: 1.3888888889vw;
}
.program__name {
  margin-bottom: 2.7777777778vw;
  padding-left: 0.6944444444vw;
}
.program__name span {
  font-size: 4.4444444444vw;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: -webkit-gradient(linear, right top, left top, from(rgba(67, 69, 73, 0.5)), color-stop(25.33%, #434549), color-stop(53.83%, #434549), color-stop(75.83%, #434549), to(rgba(67, 69, 73, 0.5)));
  background: linear-gradient(270deg, rgba(67, 69, 73, 0.5) 0%, #434549 25.33%, #434549 53.83%, #434549 75.83%, rgba(67, 69, 73, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0.8rem;
}
.program__row.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.program__col {
  width: 48%;
  padding-left: 5.5555555556vw;
  position: relative;
}
.program__col.full {
  width: 100%;
}
.program__icon {
  position: absolute;
  width: 4.4444444444vw;
  height: 4.4444444444vw;
  left: 0;
  top: 0;
  border-radius: 1.3888888889vw;
}
.program__icon.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.program__icon:after {
  content: "";
  border-radius: 1.3888888889vw;
  width: 100%;
  height: 100%;
  background: linear-gradient(166deg, #44c1d9 0%, #38aac1 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.2;
}
.program__icon:before {
  content: "";
  width: 3.8888888889vw;
  height: 3.8888888889vw;
  border-radius: 1.3888888889vw;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  background: linear-gradient(166deg, #44c1d9 0%, #38aac1 100%);
}
.program__icon.yellow:after {
  background: linear-gradient(301deg, #f7c154 0%, #fdd78b 100%);
}
.program__icon.yellow:before {
  background: linear-gradient(301deg, #f7c154 0%, #fdd78b 100%);
}
.program__icon span {
  font-size: 1.7361111111vw;
  position: relative;
  z-index: 3;
}
.program__label {
  font-weight: 700;
  font-size: 1.6666666667vw;
  line-height: 156%;
  color: #38aac1;
  margin-bottom: 1.7361111111vw;
}
.program__label.yellow {
  color: #FFB521;
}
.program__list {
  padding-left: 1.0416666667vw;
}
.program__list li {
  font-weight: 500;
  font-size: 0.9722222222vw;
  line-height: 138%;
  color: #434649;
  margin-bottom: 1.3888888889vw;
}
.program__result {
  position: absolute;
  overflow: hidden;
  padding-top: 2.0833333333vw;
  padding-bottom: 2.0833333333vw;
  padding-right: 1.0416666667vw;
  left: 0;
  bottom: 0;
  border-radius: 1.3888888889vw;
  min-height: 18.0555555556vw;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  padding-left: 18.4027777778vw;
  background: linear-gradient(195deg, #49c3db 0%, #38aac1 100%);
}
.program__resultimage {
  width: 17.3611111111vw;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.program__resultinfo span {
  font-size: 4.4444444444vw;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.5)), color-stop(25.33%, #fff), color-stop(53.83%, #fff), color-stop(75.83%, #fff), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.5) 0%, #fff 25.33%, #fff 53.83%, #fff 75.83%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.program__resultinfo p {
  font-weight: 500;
  font-size: 0.9111111111vw;
  line-height: 165%;
  color: #fff;
  margin-top: 1.0416666667vw;
}
.program__controls {
  margin-top: 10.4166666667vw;
  margin-left: 1.3888888889vw;
}
.program__controls.spec {
  margin-top: 3.4722222222vw;
  margin-left: 0;
}

.tarifs {
  padding-bottom: 15vw;
  padding-top: 5.556vw;
  position: relative;
  z-index: 3;
}
.tarifs:before {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  top: 2vw;
  height: 500rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#dedbcc), color-stop(80.39%, #cae9ff), to(#aae5ff));
  background: linear-gradient(180deg, #dedbcc 0%, #cae9ff 80.39%, #aae5ff 100%);
}
.tarifs.small:before {
  top: 0;
  height: 520rem;
}
.tarifs .wrapper {
  z-index: 2;
}
.tarifs__title {
  text-align: center;
}
.tarifs__title span {
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  padding-top: 0.8rem;
}
.tarifs__blur_1 {
  position: absolute;
  left: 0;
  width: 34.722vw;
  top: 57.639vw;
  z-index: 1;
}
.tarifs__blur_2 {
  position: absolute;
  right: 0;
  width: 34.722vw;
  top: 138.889vw;
  z-index: 1;
}
.tarifs .wrapper {
  z-index: 2;
}
.tarifs__box {
  margin-top: 23.806vw;
  margin-top: 34.81vw;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  position: relative;
  z-index: 3;
}
.tarifs__box.small {
  padding-left: 2.25vw;
  padding-right: 2.25vw;
}
.tarifs__box.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.tarifs__item {
  width: 32%;
  position: relative;
}
.tarifs__item.small {
  width: 24%;
}
.tarifs__image {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -34.889vw;
  width: 100%;
  z-index: 3;
  max-width: initial;
  pointer-events: none;
}
.tarifs__module {
  padding-top: 17.2vw;
  padding-left: 1.875vw;
  padding-right: 1.875vw;
  padding-bottom: 9vw;
  position: relative;
  z-index: 2;
}
.tarifs__module.small{
  padding-top: 10vw;
}
.tarifs__module:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.833vw 0.833vw 0.833vw 0.833vw;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dbe0e3));
  background: linear-gradient(180deg, #fff 0%, #dbe0e3 100%);
}
.tarifs__module.second:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#43bed7), to(#38aac1));
  background: linear-gradient(180deg, #43bed7 0%, #38aac1 100%);
}
.tarifs__module.third:before {
  background: linear-gradient(166deg, #d5c8ab 0%, #d1be94 100%);
}
.tarifs__module.fourth:before {
  background: linear-gradient(166deg, #ffcb62 0%, #f7c052 100%);
}
.tarifs__moduleinside {
  position: relative;
  z-index: 2;
}
.tarifs__moduletitle {
  font-weight: 700;
  font-size: 1.25vw;
  line-height: 156%;
  color: #434649;
  padding-bottom: 1.458vw;
  margin-bottom: 2.292vw;
  display: block;
  border-bottom: 1px solid rgba(67, 70, 73, 0.4);
}
.tarifs__modulelist {
  list-style: none;
  padding: 0;
}
.tarifs__modulelist li {
  padding-left: 1.944vw;
  position: relative;
  font-weight: 400;
  font-size: 1.028vw;
  line-height: 150%;
  color: #434649;
  display: block;
  margin-bottom: 1.389vw;
}
.tarifs__modulelist li:before {
  content: "";
  width: 1.667vw;
  height: 1.667vw;
  position: absolute;
  left: 0;
  top: -0.139vw;
  background-image: url(../img/7-s/check.svg);
  background-size: 100% 100%;
}
.tarifs__modulelist li.inactive {
  color: rgba(67, 70, 73, 0.35);
}
.tarifs__modulelist li.inactive:before {
  background-image: url(../img/7-s/close.svg);
}
.tarifs__modulelist li.blue:before {
  background-image: url(../img/7-s/blue.svg);
}
.tarifs__modulelist li.yellow:before {
  background-image: url(../img/7-s/yellow.svg);
}
.tarifs__tariflist li.nocheck:before {
  background: none;
}
.tarifs__tarif {
  border-radius: 0.486vw;
  position: relative;
  top: -5.778vw;
  padding: 2.083vw 1.875vw;
  z-index: 4;
  background: linear-gradient(161deg, #fff 0%, #dbe0e3 100%);
  border-radius: 3.2rem;
  padding-bottom: 40.167vw;
  padding-bottom: 33vw;
}
.tarifs__tarif.mainpage{
  padding-bottom: 10vw;
}
.tarifs__tariftitle {
  font-weight: 700;
  font-size: 1.25vw;
  line-height: 156%;
  color: #FFFFFF;
  padding-bottom: 1.458vw;
  margin-bottom: 2.292vw;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.tarifs__tariftitle.dark {
  color: #2D250F;
  border-bottom: 1px solid rgba(45, 37, 15, 0.29);
}
.tarifs__tariflist li {
  padding-left: 1.944vw;
  position: relative;
  font-weight: 400;
  font-size: 1.028vw;
  line-height: 150%;
  color: #434649;
  display: block;
  margin-bottom: 1.389vw;
}
.tarifs__tariflist li:before {
  content: "";
  width: 1.667vw;
  height: 1.667vw;
  position: absolute;
  left: 0;
  top: -0.139vw;
  background-image: url(../img/7-s/check.svg);
  background-size: 100% 100%;
}
.tarifs__tariflist li.inactive {
  color: rgba(67, 70, 73, 0.35);
}
.tarifs__tariflist li.inactive:before {
  background-image: url(../img/7-s/close.svg);
}
.tarifs__tariflist li.inactive.white:before {
  background-image: url(../img/7-s/white.svg);
}
.tarifs__tariflist li.blue:before {
  background-image: url(../img/7-s/blue.svg);
}
.tarifs__tariflist li.yellow:before {
  background-image: url(../img/7-s/yellow.svg);
}
.tarifs__tariflist li.dark {
  color: #2D250F;
}
.tarifs__tariflist li.dark:before {
  background-image: url(../img/7-s/black.svg);
}
.tarifs__main {
  padding: 4.5rem 1.5rem 3.5rem;
  border-radius: 3.2rem;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -11vw;
  width: 100%;
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(161deg, #3e4246 0%, #2b2e32 100%);
  z-index: 2;
}
.tarifs__main.second {
  background: linear-gradient(161deg, #3eb6cf 0%, #38aac1 100%);
}
.tarifs__main.third {
  background: linear-gradient(161deg, #e3d0a6 0%, #d1be94 100%);
}
.tarifs__main.mainpage{
  bottom: -2vw;
}
.tarifs__old {
  font-size: 3.472vw;
  font-weight: 700;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.3);
}
.tarifs__old b {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}
.tarifs__old.white span {
  color: #fff;
}
.tarifs__old.black span {
  color: #4F4734;
}
.tarifs__old.black b {
  color: rgba(79, 71, 52, 0.3);
}
.tarifs__amount {
  border-radius: 0.833vw;
  background: #25282A;
  padding: 1.25vw 0;
  width: 16.944vw;
  width: 100%;
  margin-bottom: 1.389vw;
}
.tarifs__amount img {
  width: 1.667vw;
  margin-right: 0.417vw;
}
.tarifs__amount span {
  font-size: 1.111vw;
  font-weight: 400;
  line-height: 150%;
  color: #fff;
}
.tarifs__amount.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tarifs__amount.blue {
  background: #1E5965;
}
.tarifs__amount.yellow {
  background: #7C7157;
}
.tarifs__amount.black {
  background: #6D5930;
}
.tarifs__new {
  font-size: 6.389vw;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
}
.tarifs__new b {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}
.tarifs__new.white span {
  color: #fff;
}
.tarifs__new.black span {
  color: #4F4734;
}
.tarifs__new.black b {
  color: rgba(79, 71, 52, 0.3);
}
.tarifs__btn {
  padding: 2.4rem 0;
  width: 100%;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  border-radius: 1.2rem;
  cursor: pointer;
}
.tarifs__btn:last-child {
  margin-bottom: 0;
}
.tarifs__btn.white {
  background: linear-gradient(162deg, #FFF 12.18%, #E3E3E3 88.51%);
  -webkit-box-shadow: 0 0.33rem 0 0 #5A5F67, 0 2.3rem 5.9rem 0 rgba(232, 232, 232, 0.24);
          box-shadow: 0 0.33rem 0 0 #5A5F67, 0 2.3rem 5.9rem 0 rgba(232, 232, 232, 0.24);
}
.tarifs__btn.white2 {
  background: none;
  border: 1.5px solid #fff;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.tarifs__btn.blue {
  -webkit-box-shadow: 0 3px 0 0 #d1ae67, 0 2.3rem 5.9rem 0 rgba(249, 182, 48, 0.35);
          box-shadow: 0 3px 0 0 #d1ae67, 0 2.3rem 5.9rem 0 rgba(249, 182, 48, 0.35);
  background: linear-gradient(178deg, #52cee5 0%, #3cacc1 100%);
  color: #fff;
}
.tarifs__btn.yellow {
  -webkit-box-shadow: 0 3px 0 0 #d1ae67, 0 2.3rem 5.9rem 0 rgba(249, 182, 48, 0.35);
          box-shadow: 0 3px 0 0 #d1ae67, 0 2.3rem 5.9rem 0 rgba(249, 182, 48, 0.35);
  background: linear-gradient(178deg, #ffe0a3 0%, #f5bb48 100%);
}
.tarifs__btn.yellow2 {
  border: 1.5px solid #F7BE4E;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #FFD580;
  background: none;
}
.tarifs__btn.blue2 {
  background: none;
  border: 1.5px solid #49C0D6;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #466C73;
}
.tarifs__btn.brown {
  -webkit-box-shadow: 0 3px 0 0 #d1ae67, 0 2.3rem 5.9rem 0 rgba(249, 182, 48, 0.35);
          box-shadow: 0 3px 0 0 #d1ae67, 0 2.3rem 5.9rem 0 rgba(249, 182, 48, 0.35);
  background: linear-gradient(178deg, #816b3d 0%, #554420 100%);
  color: #fff;
}
.tarifs__btn.brown2 {
  background: none;
  border: 1.5px solid rgba(118, 97, 54, 0.67);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #2a2a2a;
}

.parts {
  position: relative;
  z-index: 3;
  padding-bottom: 40rem;
}
.parts.small {
  padding-bottom: 20rem;
}
.parts__box {
  width: 107rem;
  background: linear-gradient(177deg, #fff 0%, #d0dee3 100%);
  border-radius: 3.1rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.parts__box.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.parts__cards {
  position: absolute;
  width: 100%;
  left: 0;
  top: -20rem;
  z-index: 1;
  pointer-events: none;
  display: block;
}
.parts__cards.mobile {
  display: none;
}
.parts__sand {
  position: absolute;
  left: 0;
  width: 100%;
  top: -27rem;
  z-index: 3;
  pointer-events: none;
  display: block;
}
.parts__sand.mobile {
  display: none;
}
.parts__sand2 {
  position: absolute;
  left: 0;
  width: 100%;
  top: -27rem;
  z-index: 3;
  pointer-events: none;
  display: block;
}
.parts__left {
  border-radius: 3.1rem;
  width: 50%;
  padding: 5rem;
  padding-bottom: 20rem;
  position: relative;
  background: linear-gradient(133deg, #fff 0%, #d0dee3 100%);
}
.parts__left p {
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.parts__left span {
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #e3be71;
  position: absolute;
  left: 13rem;
  top: 5rem;
}
.parts__right {
  width: 50%;
  padding: 5rem;
  position: relative;
}
.parts__right.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.parts__right span {
  font-weight: 700;
  font-size: 20rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #2893a9;
}
.parts__right span:nth-child(2) {
  margin: 8rem 1.5rem 0;
}
.parts__right p {
  position: absolute;
  left: 50%;
  top: 0rem;
  -webkit-transform: rotate(-8deg) translateX(-50%);
      -ms-transform: rotate(-8deg) translateX(-50%);
          transform: rotate(-8deg) translateX(-50%);
  font-weight: 400;
  font-size: 15rem;
  color: #434649;
}
.parts__pay {
  position: absolute;
  left: 18rem;
  top: 6rem;
}
.parts__pay.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.parts__pay img {
  height: 4rem;
  margin: 0 1rem;
}
.parts__guar {
  position: relative;
  z-index: 5;
  width: 66.5rem;
  margin-left: 58rem;
  margin-top: 9.5rem;
}
.parts__guarimage {
  width: 80rem;
  position: absolute;
  left: -57rem;
  top: -20rem;
}
.parts__guarinfo {
  -webkit-transform: rotate(-3deg);
      -ms-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
.parts__guartitle {
  font-weight: 700;
  font-size: 6rem;
  line-height: 94%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.parts__guarbtn {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  font-size: 1.6rem;
  padding: 2.5rem 4rem;
}
.parts__guartext {
  font-weight: 400;
  font-size: 11rem;
  color: #fff;
  position: relative;
  top: -1rem;
}

.advasbox {
  position: relative;
  z-index: 3;
  padding-bottom: 7rem;
}
.advasbox__bg {
  position: absolute;
  left: 0;
  width: 100%;
  top: 25rem;
}
.advasbox__wrap {
  position: relative;
  z-index: 2;
}
.advasbox__box {
  margin-top: 5rem;
  width: 130rem;
  margin-left: auto;
  margin-right: auto;
}
.advasbox__item {
  padding: 1.8rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: linear-gradient(148deg, rgba(228, 231, 237, 0.8) 0%, rgba(219, 222, 229, 0.8) 100%);
  border-radius: 3.2rem;
  margin-bottom: 2rem;
}
.advasbox__item:last-child {
  margin-bottom: 0;
}
.advasbox__image {
  width: 31rem;
  height: 19rem;
  border-radius: 3.2rem;
  position: relative;
  overflow: hidden;
}
.advasbox__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.advasbox__title {
  width: 34rem;
  font-weight: 700;
  font-size: 6rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-left: 3rem;
  margin-right: 6rem;
  padding-top: 0.8rem;
}
.advasbox__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 2rem;
}
.advasbox__text p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #434549;
}
.advasbox__btnbox {
  margin-top: 5.5rem;
}
.advasbox__btnbox.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advasbox__logo {
  width: 22.6rem;
  margin-right: 3rem;
}

.rynok {
  border-radius: 6.4rem;
  overflow: hidden;
  position: relative;
}
.rynok__bg {
  width: 100%;
}
.rynok__flag {
  position: absolute;
  width: 52rem;
  right: 0;
  top: 0;
}
.rynok__wrap {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10rem 10rem;
}
.rynok__title.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rynok__title p {
  text-align: left;
}
.rynok__title p span {
  display: block;
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #fff;
}
.rynok__subtitle {
  font-weight: 400;
  font-size: 12.8rem;
  color: #ffb41d;
  position: absolute;
  left: 70rem;
  top: 17rem;
}
.rynok__item {
  padding: 1.4rem;
  background: linear-gradient(173deg, #f6f7f8 0%, #ced5dc 100%);
  border-radius: 3.2rem;
  width: 69rem;
  -webkit-transform: rotate(-2.3deg);
      -ms-transform: rotate(-2.3deg);
          transform: rotate(-2.3deg);
  margin-top: 5rem;
}
.rynok__item.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.rynok__carl {
  width: 14rem;
  height: 18rem;
  position: relative;
  overflow: hidden;
  border-radius: 3.2rem;
}
.rynok__carl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.rynok__carltitle {
  font-weight: 700;
  font-size: 10.2rem;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #2da2c9;
  margin-left: 1.2rem;
  margin-right: 1.2rem;
  padding-top: 1rem;
}
.rynok__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 1rem;
}
.rynok__info span {
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #3c4042;
}
.rynok__info p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #1a1b1d;
  margin-top: 0.8rem;
}
.rynok__table {
  position: relative;
  top: -20rem;
}

.speaker {
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}
.speaker__bg {
  position: absolute;
  width: 100%;
  top: -20rem;
  left: 0;
  z-index: 1;
}
.speaker__wrap {
  padding-left: 4.4444444444vw;
  padding-right: 4.4444444444vw;
  position: relative;
  z-index: 2;
}
.speaker__box {
  position: relative;
  border-radius: 4.4444444444vw;
  background: url(../img/11-s/bg.jpg) center center/cover no-repeat;
}
.speaker__top {
  padding: 4.1666666667vw 29.8611111111vw 3.125vw 4.5138888889vw;
}
.speaker__title {
  margin-right: 1.7361111111vw;
}
.speaker__title span {
  display: inline-block;
  padding-top: 1.3888888889vw;
  font-size: 8.8888888889vw;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: -webkit-gradient(linear, right top, left top, from(rgba(67, 69, 73, 0.6)), color-stop(25.33%, #434549), color-stop(53.83%, #434549), color-stop(75.83%, #434549), to(rgba(67, 69, 73, 0.6)));
  background: linear-gradient(270deg, rgba(67, 69, 73, 0.6) 0%, #434549 25.33%, #434549 53.83%, #434549 75.83%, rgba(67, 69, 73, 0.6) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.speaker__micro {
  width: 8.6805555556vw;
  border-radius: 1.3888888889vw;
  background: linear-gradient(138deg, #e2d5b7 0%, #d5c8ab 100%);
  padding-top: 1.1111111111vw;
  text-align: center;
}
.speaker__micro span {
  font-weight: 500;
  font-size: 1.1111111111vw;
  line-height: 120%;
  text-align: center;
  color: #434649;
  margin-bottom: 0.6944444444vw;
  display: block;
}
.speaker__microimg {
  width: 5.7638888889vw;
  margin-left: auto;
  margin-right: auto;
}
.speaker__item {
  width: 20.8333333333vw;
  margin-top: 2.0833333333vw;
}
.speaker__item span {
  font-weight: 500;
  font-size: 1.1111111111vw;
  line-height: 140%;
  color: #434649;
  margin-left: 1.5972222222vw;
}
.speaker__icon {
  width: 5.9027777778vw;
  height: 2.9166666667vw;
  background: linear-gradient(311deg, #979b9e 0%, rgba(76, 80, 84, 0.2) 100%);
  border-radius: 5vw;
  padding-right: 1 0.3472222222vw;
}
.speaker__icon.flex {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.speaker__round {
  width: 2.7083333333vw;
  height: 2.7083333333vw;
  background: #39ABC1;
  border-radius: 50%;
}
.speaker__round.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.speaker__round img {
  width: 1.6666666667vw;
}
.speaker__bott {
  padding: 2.5vw;
  border-radius: 4.4444444444vw;
  background: linear-gradient(175deg, #fcfcfc 0%, #dfe3e6 100%);
}
.speaker__row:first-child {
  margin-bottom: 1.3888888889vw;
}
.speaker__graph {
  width: 20.8333333333vw;
}
.speaker__info {
  margin-left: -1.0416666667vw;
}
.speaker__number {
  margin-right: 1.3888888889vw;
}
.speaker__number span {
  font-size: 8.8888888889vw;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: -webkit-gradient(linear, right top, left top, from(rgba(67, 69, 73, 0.6)), color-stop(25.33%, #434549), color-stop(53.83%, #434549), color-stop(75.83%, #434549), to(rgba(67, 69, 73, 0.6)));
  background: linear-gradient(270deg, rgba(67, 69, 73, 0.6) 0%, #434549 25.33%, #434549 53.83%, #434549 75.83%, rgba(67, 69, 73, 0.6) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0.6944444444vw;
}
.speaker__number b {
  font-size: 2.7777777778vw;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #39abc1;
}
.speaker__number b.yellow {
  color: #FFB723;
  font-size: 4.4444444444vw;
  margin-right: 1.0416666667vw;
}
.speaker__text {
  font-weight: 500;
  font-size: 1.1111111111vw;
  line-height: 150%;
  color: #434649;
}
.speaker__man {
  position: absolute;
  right: -2.0833333333vw;
  bottom: 0;
  width: 45.4861111111vw;
}
.speaker__instagram {
  background: linear-gradient(47deg, #f9cc74 0%, #d96551 39.67%, #cc2b8f 66.81%, #6463d8 90.06%);
  border-radius: 0.625vw;
  position: absolute;
  right: 14.5833333333vw;
  bottom: 5.2083333333vw;
  padding-top: 0.5555555556vw;
  padding-bottom: 0.5555555556vw;
  padding-left: 1.3888888889vw;
  padding-right: 1.3888888889vw;
}
.speaker__instagram span {
  font-size: 3.3333333333vw;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.5)), color-stop(25.33%, #fff), color-stop(53.83%, #fff), color-stop(75.83%, #fff), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.5) 0%, #fff 25.33%, #fff 53.83%, #fff 75.83%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0.5555555556vw;
}
.speaker__instagram img {
  width: 2.5vw;
  margin-right: 0.5555555556vw;
  margin-left: 0.8333333333vw;
}
.speaker__instagram p {
  font-weight: 500;
  font-size: 1.1111111111vw;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
}

.faq {
  padding-top: 11rem;
  padding-bottom: 16rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(189, 213, 223, 0)), color-stop(33.5%, #2f7c88), color-stop(50.73%, #184f58), color-stop(79.15%, #184f58), color-stop(85.67%, rgba(24, 79, 88, 0.94)), color-stop(95.01%, rgba(24, 79, 88, 0.52)), to(rgba(24, 79, 88, 0)));
  background: linear-gradient(360deg, rgba(189, 213, 223, 0) 0%, #2f7c88 33.5%, #184f58 50.73%, #184f58 79.15%, rgba(24, 79, 88, 0.94) 85.67%, rgba(24, 79, 88, 0.52) 95.01%, rgba(24, 79, 88, 0) 100%);
  position: relative;
  z-index: 4;
  top: 9rem;
}
.faq__box {
  margin-top: 4rem;
  width: 108rem;
  margin-left: auto;
  margin-right: auto;
}
.faq__item {
  padding-top: 1rem;
  border-radius: 3.2rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.faq__item.active {
  background: linear-gradient(157deg, #30add7 0%, #1c85a8 100%);
}
.faq__item.active .faq__more {
  background: #d7c9ad;
}
.faq__item.active .faq__more span {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #605644;
}
.faq__header {
  background: #f6f7f8;
  border-radius: 3.2rem;
  padding: 1.4rem 4rem;
}
.faq__header p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 157%;
  color: #242425;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-left: 3.5rem;
}
.faq__header p:before {
  content: "•";
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 157%;
  letter-spacing: 0.04em;
  color: #1e86a9;
  position: absolute;
  left: 0;
  top: 0;
}
.faq__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 7.2rem;
  height: 7.2rem;
  background: #1e86a9;
  border-radius: 1.6rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq__more span {
  font-weight: 700;
  font-size: 3rem;
  line-height: 157%;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq__info {
  display: none;
}
.faq__inside {
  padding: 4rem;
}
.faq__inside.flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq__user {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.54);
  margin-right: 1.6rem;
}
.faq__user img {
  border-radius: 50%;
}
.faq__userinfo span {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 170%;
  color: #fff;
}
.faq__userinfo p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 170%;
  color: #fff;
}
.faq__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 2.4rem;
}
.faq__text p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 170%;
  color: #fff;
}

.support {
  position: relative;
  height: 118rem;
}
.support__bg {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0rem;
  z-index: 1;
}
.support__wrap {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0 6.4rem;
  padding-top: 15rem;
  z-index: 2;
}
.support__box {
  width: 47rem;
  border-radius: 3.2rem;
  position: relative;
  padding: 4rem 4rem 48rem 4rem;
  -webkit-backdrop-filter: blur(28.3999996185px);
          backdrop-filter: blur(28.3999996185px);
  background: linear-gradient(191deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.support__box span {
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 126%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  display: inline-block;
  padding-top: 0.8rem;
}
.support__box p {
  font-weight: 400;
  font-size: 12.8rem;
  color: #2893a9;
  position: absolute;
  left: 4rem;
  top: 9.5rem;
}
.support__phone {
  width: 30rem;
  position: absolute;
  top: 28rem;
  left: 2rem;
}
.support__tg {
  width: 94rem;
  -webkit-backdrop-filter: blur(28.3999996185px);
          backdrop-filter: blur(28.3999996185px);
  background: linear-gradient(155deg, #35a3b9 0%, rgba(49, 153, 174, 0.59) 100%);
  border-radius: 3.2rem;
  padding: 4.3rem 6rem 4.3rem 2.4rem;
  position: absolute;
  left: 10rem;
  top: 72rem;
}
.support__tgicon {
  width: 14rem;
  margin-right: 1.6rem;
}
.support__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 3.6rem;
  width: 31.5rem;
}
.support__info span {
  display: block;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 150%;
  color: #fff;
}
.support__info p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
  margin-top: 1rem;
}
.support__btn {
  padding: 3rem;
  font-size: 1.2rem;
}
.support__cases {
  position: absolute;
  width: 91rem;
  left: 29rem;
  top: 21rem;
}

.interview {
  padding-top: 16rem;
  position: relative;
  padding-bottom: 78rem;
  overflow: hidden;
}
.interview__box {
  width: 120%;
  padding-left: 4rem;
}
.interview__box .slick-list {
  margin: 0 -1rem;
}
.interview__box .slick-slide {
  margin: 0 1rem;
}
.interview__title {
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  padding-right: 8rem;
}
.interview__subtitle {
  font-weight: 400;
  font-size: 12.8rem;
  color: #2893a9;
  text-align: center;
  padding-left: 8rem;
  position: relative;
  top: -3rem;
}
.interview__item {
  width: 31.2rem;
}
.interview__item.blue .interview__image:before {
  background: #38aac1;
  opacity: 0.4;
}
.interview__item.blue .interview__name {
  background: #d3c197;
  color: #33270e;
}
.interview__item.blue .interview__play {
  background: linear-gradient(18deg, #f9b630 0%, #ffc95c 100%);
}
.interview__item.blue .interview__play img {
  -webkit-filter: none;
          filter: none;
}
.interview__item.blue .interview__play:before {
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: pulse4 1.3s infinite;
          animation: pulse4 1.3s infinite;
  background: linear-gradient(43deg, #f9ce78 0%, #ffe1a1 100%);
}
.interview__item.blue .interview__play:after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: pulse3 1.3s infinite;
          animation: pulse3 1.3s infinite;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  background: rgba(249, 206, 120, 0.15);
}
.interview__info {
  padding: 2.5rem 2rem 4rem;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: linear-gradient(168deg, rgba(207, 214, 221, 0.3) 0%, #cfd6dd 100%);
  border-radius: 1.2rem;
  min-height: 20rem;
}
.interview__info p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 155%;
  color: #434649;
}
.interview__video {
  position: relative;
  top: -2rem;
  z-index: 2;
}
.interview__image {
  height: 55.4rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
}
.interview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.interview__image:before {
  content: "";
  background: #ffd788;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.interview__age {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 150%;
  color: #fff;
  padding: 1.2rem 1.7rem;
  background: #434649;
  border-radius: 0.7rem;
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  z-index: 2;
  display: none;
}
.interview__logo {
  width: 3.7rem;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  z-index: 2;
}
.interview__name {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 150%;
  color: #fff;
  padding: 1.2rem 1.4rem;
  background: #38aac1;
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  border-radius: 0.7rem;
}
.interview__play {
  width: 8rem;
  height: 8rem;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background: linear-gradient(18deg, #3195a9 0%, #38aac1 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview__play img {
  -webkit-filter: brightness(0) grayscale(0) invert(1);
          filter: brightness(0) grayscale(0) invert(1);
}
.interview__play:before {
  content: "";
  width: 7.153vw;
  height: 7.153vw;
  width: 100%;
  height: 100%;
  background: linear-gradient(18deg, #38aac1 0%, #38aac1 100%);
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: pulse2 1.3s infinite;
          animation: pulse2 1.3s infinite;
}
.interview__play:after {
  content: "";
  width: 8.472vw;
  height: 8.472vw;
  width: 100%;
  height: 100%;
  background: rgba(54, 164, 186, 0.25);
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: pulse 1.3s infinite;
          animation: pulse 1.3s infinite;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.interview__wrap {
  position: relative;
  z-index: 3;
}
.interview__number {
  z-index: 1;
  position: absolute;
  left: 7rem;
  bottom: 15rem;
  font-weight: 700;
  font-size: 60rem;
  line-height: 100%;
  text-transform: uppercase;
  background: linear-gradient(183deg, rgba(58, 172, 194, 0.4) 0%, #3aacc2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.interview__plus {
  left: 90rem;
  bottom: 47rem;
  font-weight: 250;
  font-size: 32rem;
  line-height: 100%;
  text-transform: uppercase;
  color: #434549;
  position: absolute;
  z-index: 4;
}
.interview__bg {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.interview__bg img {
  display: block;
  width: 100%;
}
.interview__modal {
  width: 50rem;
  position: absolute;
  right: 10rem;
  bottom: 42rem;
  z-index: 6;
  padding: 2.4rem;
  border-radius: 3.2rem;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: linear-gradient(174deg, rgba(255, 255, 255, 0.8) 0%, rgba(216, 223, 228, 0.8) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview__logo2 {
  width: 22rem;
  margin-right: 2.4rem;
}
.interview__modaltext {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 157%;
  letter-spacing: 0.04em;
  color: #434649;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.interview__btn {
  margin-top: 2rem;
}
.interview__more {
  display: none;
}

.footer {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: rgba(48, 99, 97, 0.41);
  padding: 2.8rem 6.4rem 3.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 4;
  border-radius: 1rem 1rem 0 0;
}
.footer__wrap.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__logo {
  width: 22.6rem;
}
.footer__col p {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 150%;
  color: #fff;
}
.footer__col a {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 150%;
  color: #fff;
  text-decoration: underline;
}
.footer__brand {
  width: 15rem;
}

@media screen and (max-width: 767px) {
  .banner__man {
    position: absolute;
    left: 0;
    width: 100%;
    top: 2rem;
    z-index: 2;
    display: block;
  }
  .banner__main {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 30.8rem;
    padding: 40rem 0rem 4.5rem;
  }
  .banner__upper {
    font-size: 1.2rem;
    letter-spacing: 0.33em;
    top: 3rem;
  }
  .banner__subtitle {
    font-size: 10rem;
    top: 4rem;
  }
  .banner__title {
    font-size: 8rem;
    top: 11.1rem;
  }
  .banner__pro {
    font-size: 32rem;
    top: 8.7rem;
  }
  .banner__descr {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .banner__info {
    position: static;
  }
  .banner__mobbtn {
    display: block;
    border-radius: 2rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.95)), to(rgba(228, 234, 236, 0.95)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(228, 234, 236, 0.95) 100%);
    position: absolute;
    left: 0;
    top: 90rem;
    z-index: 2;
    padding: 2.2rem 3.2rem;
    width: 100%;
    text-align: center;
    -webkit-backdrop-filter: blur(13.8000001907px);
            backdrop-filter: blur(13.8000001907px);
  }
  .banner__mobbtn button {
    width: 100%;
  }
  .banner__info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0.5rem;
  }
  .banner__date {
    width: 16rem;
    padding: 1.8rem 1rem 0;
  }
  .banner__more {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    background: none;
    padding: 0;
    margin-left: 1.2rem;
    padding-top: 0.7rem;
  }
  .banner__logo {
    display: none;
  }
  .banner__ninfo {
    margin-bottom: 0;
  }
  .banner__ninfo span, .banner__ninfo p {
    color: #2a2c2d;
  }
  .banner__ninfo b {
    color: #2a2c2d;
  }
  .banner__ninfo b.yellow {
    color: #38aac1;
  }
  .banner__leaves {
    display: none;
  }
  .shadow {
    display: none;
  }
  .timerbl {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .timerbl__wrap {
    width: 100%;
    padding-top: 12rem;
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
  .timerbl__title {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
  .timerbl__title span:nth-child(1) {
    font-size: 5.2rem;
  }
  .timerbl__title span:nth-child(2) {
    font-size: 12rem;
    padding-left: 1rem;
    margin-top: 0.7rem;
  }
  .timerbl__title span:nth-child(3) {
    font-size: 6.8rem;
    top: -1rem;
  }
  .timerbl__title p {
    margin-top: 18rem;
  }
  .timerbl__right {
    position: absolute;
    top: 38rem;
    width: 100%;
    left: 0;
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
  .timerbl__timer {
    width: 100%;
  }
  .timerbl__bush {
    width: 18rem;
    top: 86rem;
    opacity: 0.9;
  }
  .lline {
    top: 7.5rem;
    height: 0.15rem;
  }
  .lline:before {
    width: 0.7rem;
    height: 0.7rem;
  }
  .lline:after {
    width: 0.7rem;
    height: 0.7rem;
  }
  .countdown ul li span {
    border-radius: 0.8rem;
    font-size: 6.4rem;
    padding-bottom: 0.9rem;
    padding-top: 2rem;
    padding-left: 0.5rem;
    margin-top: 0.5rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(33.3%, #fff), color-stop(44.84%, #dce3ed), color-stop(51.15%, #dce3ed), color-stop(66.1%, #fff), to(#fff));
    background: linear-gradient(180deg, #fff 0%, #fff 33.3%, #dce3ed 44.84%, #dce3ed 51.15%, #fff 66.1%, #fff 100%);
  }
  .course {
    padding-top: 15rem;
  }
  .course__bush {
    width: 100%;
    top: 151rem;
  }
  .course__title {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .course__title span {
    font-size: 8rem;
  }
  .course__subtitle {
    font-size: 10.8rem;
  }
  .course__box {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .course__item {
    position: relative;
  }
  .course__icon {
    margin-right: 1.6rem;
  }
  .course__name {
    font-size: 6.4rem;
    padding-top: 2.7rem;
  }
  .course__name.small {
    font-size: 4.8rem;
  }
  .course__label {
    margin-bottom: 59rem;
  }
  .course__label.right {
    margin-left: 0;
  }
  .course__image {
    position: absolute;
    top: 22rem;
    width: 100%;
  }
  .course__user {
    left: auto;
    bottom: -2rem;
    right: 0;
    width: 92%;
  }
  .course__top {
    padding-left: 9.4rem;
    padding-top: 2.4rem;
    padding-right: 2rem;
    padding-bottom: 5.5rem;
    position: relative;
    border-radius: 1.6rem 1.6rem 0 0;
    height: auto;
  }
  .course__top:before {
    content: "";
    width: 5rem;
    height: 5rem;
    position: absolute;
    left: 2.4rem;
    top: 2.2rem;
    background: url(../img/3-s/close.svg);
    background-size: 100% 100%;
  }
  .course__bott {
    width: 100%;
    padding-left: 9.4rem;
    padding-top: 1.4rem;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
    height: auto;
    border-radius: 1.6rem;
  }
  .course__bott img {
    width: 5rem;
  }
  .course__bott.right {
    padding-left: 9.4rem;
    padding-top: 1.4rem;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
    margin-left: 0;
    border-radius: 1.6rem;
  }
  .course__bott.right img {
    left: 2.4rem;
  }
  .course__head.right {
    padding-left: 0;
  }
  .course__usericon.right {
    left: -3rem;
    right: auto;
  }
  .mainres {
    padding-bottom: 5rem;
  }
  .mainres__bg {
    top: 23.8rem;
  }
  .mainres__title span {
    font-size: 8rem;
  }
  .mainres__subtitle {
    font-size: 10.8rem;
  }
  .mainres__wrap {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .mainres__item.small {
    width: 100%;
  }
  .mainres__info {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    width: 32rem;
  }
  .mainres__info_2 {
    width: 24rem;
  }
  .mainres__info_3 p {
    width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }
  .mainres__info_3 p br {
    display: none;
  }
  .mainres__info_4 {
    width: 25rem;
  }
  .mainres__info_6 {
    width: 21.5rem;
  }
  .results {
    padding-top: 19.4444444444vw;
    position: relative;
    z-index: 2;
  }
  .results__bush {
    position: absolute;
    right: 0;
    top: -52rem;
    width: 74%;
    display: block;
  }
  .results__bg {
    width: 100%;
    top: -141.6666666667vw;
    top: 258.33vw;
    right: 0;
  }
  .results__head {
    margin-bottom: 25vw;
    text-align: left;
  }
  .results__head.flex {
    display: block;
  }
  .results__head span {
    font-size: 22.2222222222vw;
    padding-top: 5.5555555556vw;
  }
  .results__head p {
    font-size: 4.4444444444vw;
    line-height: 164%;
    letter-spacing: 0.04em;
    margin-top: 23.6111111111vw;
  }
  .results__head i {
    font-size: 30vw;
    left: -0.8333333333vw;
    top: 6.9444444444vw;
  }
  .results__wrap {
    padding-left: 4.4444444444vw;
    padding-right: 4.4444444444vw;
  }
  .results__item {
    width: 43.267vw;
    margin-bottom: 20vw;
    border-radius: 5.5555555556vw;
  }
  .results__image {
    width: 22.833vw;
    height: 22.833vw;
    top: -11.9vw;
  }
  .results__name {
    font-size: 5.45vw;
    margin-bottom: 1.347vw;
  }
  .results__inform {
    font-size: 3.272vw;
  }
  .results__before {
    border-radius: 3.384vw;
    margin-bottom: 1.556vw;
    padding: 1.972vw 0.972vw;
  }
  .results__before span {
    font-size: 2.972vw;
  }
  .results__before p {
    font-size: 10.894vw;
  }
  .results__after {
    border-radius: 3.384vw;
    margin-bottom: 2.956vw;
    padding: 1.972vw 0.972vw;
  }
  .results__after span {
    font-size: 2.972vw;
    opacity: 0.7;
  }
  .results__after p {
    font-size: 8.894vw;
  }
  .results__feedback {
    border-radius: 3.384vw;
    height: 15.278vw;
  }
  .results__feedback span {
    font-size: 2.833vw;
    margin-left: 2.903vw;
  }
  .results__feedback img {
    width: 3.011vw;
  }
  .results__main {
    padding: 14.903vw 2.189vw 4.283vw;
  }
  .results__insta {
    border-radius: 6.222vw;
    margin-bottom: 1.9vw;
  }
  .results__insta span {
    font-size: 3.472vw;
    padding: 0.6vw 0 0.6vw;
    padding-left: 5.4vw;
    margin-top: 1.072vw;
    margin-bottom: 1.356vw;
  }
  .results__insta span:before {
    width: 4.389vw;
    height: 4.389vw;
  }
  .results__more {
    position: relative;
    top: -6vw;
  }
  .results__more span {
    font-size: 4.111vw;
    margin-right: 3.042vw;
  }
  .results__more img {
    width: 3.319vw;
  }
  .how {
    padding-bottom: 5rem;
  }
  .how .how__title {
    padding-right: 0;
  }
  .how__box {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .how__info {
    padding-top: 4rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    text-align: center;
  }
  .how__descr {
    width: 100%;
  }
  .how__descr.big {
    width: 100%;
  }
  .how__left {
    margin-right: 0.6rem;
  }
  .how__left_1 {
    width: 10.6rem;
  }
  .how__left_2 b {
    font-size: 7.2rem;
  }
  .how__left_3 b {
    font-size: 6.2rem;
  }
  .how__left_4 b {
    font-size: 6.2rem;
  }
  .how__results {
    background: none !important;
  }
  .how__results.blue .how__right {
    background: linear-gradient(198deg, #43bed6 0%, #38aac1 100%);
  }
  .how__numbericon {
    display: none;
  }
  .how__right_2 {
    margin-top: 1rem;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 15rem;
  }
  .how__right_3 {
    margin-top: 1rem;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 15rem;
    background: linear-gradient(162deg, #fff 0%, #c3c3c3 100%);
  }
  .how__right_4 {
    margin-top: 1rem;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 15rem;
    background: linear-gradient(162deg, #fff 0%, #c3c3c3 100%);
  }
  .program {
    padding-top: 16.6666666667vw;
    padding-bottom: 47.2222222222vw;
  }
  .program__plane {
    right: -16.6666666667vw;
    top: 5.5555555556vw;
    width: 64.1666666667vw;
  }
  .program__bg {
    bottom: 0;
    top: auto;
  }
  .program__wrap {
    padding-left: 4.4444444444vw;
    padding-right: 4.4444444444vw;
  }
  .program__wrap.flex {
    display: block;
  }
  .program__tab {
    width: 32%;
    padding: 4.4444444444vw 2.2222222222vw;
    font-size: 4.4444444444vw;
    border-radius: 11.1111111111vw;
    margin-bottom: 4.4444444444vw;
    background: #DCE1E6;
  }
  .program__tab.active {
    background: #38AAC1;
    border-radius: 11.1111111111vw;
  }
  .program__tab.mr {
    width: 100%;
  }
  .program__heading {
    text-align: center;
    margin-bottom: 5.5555555556vw;
    padding-top: 0;
  }
  .program__heading span {
    font-size: 30vw;
  }
  .program__heading p {
    font-size: 30vw;
    letter-spacing: -0.05em;
    padding-top: 4.1666666667vw;
  }
  .program__box {
    width: 100%;
  }
  .program__yaht {
    display: none;
  }
  .program__item {
    border-radius: 5.5555555556vw;
    padding: 11.1111111111vw 5.5555555556vw 0 5.5555555556vw;
    background: linear-gradient(166deg, #f9f9f9 0%, #ecf0f2 100%);
  }
  .program__col {
    padding-left: 0;
    width: 100%;
  }
  .program__name {
    text-align: center;
    margin-bottom: 8.3333333333vw;
  }
  .program__name span {
    font-size: 15.78vw;
    letter-spacing: -0.05em;
  }
  .program__icon {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.7777777778vw;
    width: 17.7777777778vw;
    height: 17.7777777778vw;
    border-radius: 5.5555555556vw;
  }
  .program__icon:before {
    width: 15.5555555556vw;
    height: 15.5555555556vw;
    border-radius: 5.5555555556vw;
  }
  .program__icon:after {
    border-radius: 5.5555555556vw;
  }
  .program__icon span {
    font-size: 6.9444444444vw;
  }
  .program__label {
    text-align: center;
    font-size: 6.6666666667vw;
    margin-bottom: 5.5555555556vw;
  }
  .program__list {
    padding-left: 4.1666666667vw;
  }
  .program__list li {
    font-size: 3.8888888889vw;
    margin-bottom: 5vw;
  }
  .program__result {
    position: relative;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    width: calc(100% + 11.1111111111vw);
    margin-left: -5.5555555556vw;
    padding: 8.3333333333vw 5.5555555556vw 50vw;
    text-align: center;
    margin-top: 4.1666666667vw;
  }
  .program__resultimage {
    width: 83.3333333333vw;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: 100%;
    top: auto;
    bottom: -11rem;
    left: 0vw;
  }
  .program__resultinfo span {
    font-size: 17.7777777778vw;
    letter-spacing: -0.05em;
  }
  .program__resultinfo p {
    font-size: 4.4444444444vw;
    margin-top: 4.1666666667vw;
  }
  .program__inside {
    padding-bottom: 0;
  }
  .program__controls {
    text-align: center;
    margin-top: 8.3333333333vw;
    margin-left: 0;
  }
  .tarifs {
    padding: 15.25vw 0 0;
    border-radius: 11.278vw;
  }
  .tarifs:before {
    top: 0;
    height: 1260rem;
  }
  .tarifs.small:before {
    height: 1420rem;
  }
  .tarifs__blur_1 {
    width: 88.889vw;
    top: 1283.333vw;
  }
  .tarifs__blur_2 {
    width: 88.889vw;
    top: 627.778vw;
  }
  .tarifs__box {
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 0;
  }
  .tarifs__box.small {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .tarifs__item {
    width: 100%;
    margin-top: 105vw;
    top: 0;
  }
  .tarifs__item.small {
    width: 100%;
  }
  .tarifs__module {
    padding: 6.4vw;
    padding-bottom: 20vw;
    padding-top: 60vw;
  }
  .tarifs__module:before {
    border-radius: 3.333vw 11.111vw 3.333vw 3.333vw;
  }
  .tarifs__moduletitle {
    font-size: 4.733vw;
    padding-bottom: 3.458vw;
    margin-bottom: 6.292vw;
  }
  .tarifs__modulelist li {
    font-size: 3.261vw;
    padding-left: 5.944vw;
    margin-bottom: 5.389vw;
  }
  .tarifs__modulelist li:before {
    width: 4.667vw;
    height: 4.667vw;
  }
  .tarifs__tarif {
    padding: 9.4vw 6.4vw;
    padding-bottom: 145vw;
    top: -14.778vw;
    border-radius: 3.333vw 11.111vw 3.333vw 3.333vw;
  }
  .tarifs__tarif.mainpage{
    padding-bottom: 30vw;
  }
  .tarifs__tariftitle {
    font-size: 3.733vw;
    padding-bottom: 3.458vw;
    margin-bottom: 6.292vw;
  }
  .tarifs__tariflist li {
    font-size: 3.261vw;
    padding-left: 5.944vw;
    margin-bottom: 5.389vw;
  }
  .tarifs__tariflist li:before {
    width: 4.667vw;
    height: 4.667vw;
  }
  .tarifs__image {
    top: -106.89vw;
    left: 50%;
    width: 100%;
  }
  .tarifs__image_1 {
    left: 50%;
  }
  .tarifs__main {
    padding: 7.569vw 0 7.472vw;
    border-radius: 3.333vw 3.333vw 3.333vw 3.333vw;
  }
  /*.tarifs__main.mainpage{
    bottom: ;
  }*/
  .tarifs__old {
    font-size: 17.472vw;
  }
  .tarifs__new {
    font-size: 22.944vw;
  }
  .tarifs__btn {
    width: 80%;
    padding: 6.153vw 3.056vw;
  }
  .tarifs__amount {
    border-radius: 1.833vw;
    background: #3B484B;
    padding: 3.25vw 6.778vw;
    margin-bottom: 4.389vw;
    width: 67.944vw;
  }
  .tarifs__amount img {
    width: 5.667vw;
    margin-right: 2.417vw;
  }
  .tarifs__amount span {
    font-size: 4.444vw;
  }
  .speaker {
    padding-bottom: 125vw;
    padding-bottom: 0;
    padding-top: 3rem;
  }
  .speaker__bg {
    bottom: -45rem;
    top: auto;
  }
  .speaker__wrap {
    padding-left: 4.4444444444vw;
    padding-right: 4.4444444444vw;
  }
  .speaker__top {
    padding-left: 6.9444444444vw;
    padding-right: 6.9444444444vw;
    padding-top: 13.8888888889vw;
    padding-bottom: 105.5555555556vw;
    border-radius: 17.7777777778vw 17.7777777778vw 0 0;
    background: url(../img/5-s/bg-mob.jpg) center center/cover no-repeat;
  }
  .speaker__box {
    border-radius: 17.7777777778vw;
    background: none;
  }
  .speaker__title {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .speaker__title span {
    font-size: 26.6666666667vw;
    letter-spacing: -0.05em;
    padding-top: 4.1666666667vw;
  }
  .speaker__micro {
    width: 66.6666666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    border-radius: 5.5555555556vw;
    padding-top: 2.5vw;
    margin-top: 2.2222222222vw;
  }
  .speaker__micro span {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 5vw;
    margin-left: 9.7222222222vw;
    text-align: left;
    width: 22.7777777778vw;
  }
  .speaker__microimg {
    width: 18.6111111111vw;
    margin-left: 0;
    margin-right: 0;
  }
  .speaker__bott {
    border-radius: 8.8888888889vw;
    padding: 6.9444444444vw;
    position: relative;
    z-index: 3;
  }
  .speaker__icon {
    width: 22.2222222222vw;
    height: 11.6666666667vw;
    border-radius: 20vw;
  }
  .speaker__round {
    width: 10.8333333333vw;
    height: 10.8333333333vw;
  }
  .speaker__round img {
    width: 6.6666666667vw;
  }
  .speaker__item {
    width: 83.3333333333vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 5.5555555556vw;
  }
  .speaker__item span {
    margin-left: 4.4444444444vw;
    font-size: 4.4444444444vw;
  }
  .speaker__man {
    right: -4.4444444444vw;
    width: calc(100% + 4.4444444444vw);
    bottom: auto;
    top: 83.3333333333vw;
  }
  .speaker__graph {
    width: calc(100% + 5.5555555556vw);
    margin-right: -5.5555555556vw;
  }
  .speaker__info {
    margin-left: 0;
  }
  .speaker__info.flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .speaker__number {
    margin-right: 0;
  }
  .speaker__number span {
    font-size: 35.5555555556vw;
  }
  .speaker__number b {
    font-size: 11.1111111111vw;
    margin-right: 0;
  }
  .speaker__number b.yellow {
    margin-right: 0;
  }
  .speaker__text {
    font-size: 4.4444444444vw;
  }
  .speaker__row {
    margin-top: 8.3333333333vw;
  }
  .speaker__instagram {
    right: 1.3888888889vw;
    bottom: auto;
    top: 185.2777777778vw;
    padding-top: 2.2222222222vw;
    padding-bottom: 2.2222222222vw;
    padding-left: 5.5555555556vw;
    padding-right: 5.5555555556vw;
    border-radius: 2.5vw;
  }
  .speaker__instagram span {
    font-size: 10vw;
    padding-top: 2.2222222222vw;
  }
  .speaker__instagram img {
    width: 6.6666666667vw;
  }
  .speaker__instagram p {
    font-size: 4.4444444444vw;
  }
  .faq {
    padding-top: 2rem;
    background: none;
    position: relative;
    padding-bottom: 0;
    top: 0;
    padding-top: 9rem;
  }
  .faq:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 240rem;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(189, 213, 223, 0)), color-stop(33.5%, #2f7c88), color-stop(50.73%, #184f58), color-stop(79.15%, #184f58), color-stop(85.67%, rgba(24, 79, 88, 0.94)), color-stop(95.01%, rgba(24, 79, 88, 0.52)), to(rgba(24, 79, 88, 0)));
    background: linear-gradient(360deg, rgba(189, 213, 223, 0) 0%, #2f7c88 33.5%, #184f58 50.73%, #184f58 79.15%, rgba(24, 79, 88, 0.94) 85.67%, rgba(24, 79, 88, 0.52) 95.01%, rgba(24, 79, 88, 0) 100%);
  }
  .faq__wrap {
    position: relative;
    z-index: 2;
  }
  .faq__box {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 2rem;
  }
  .faq__header {
    padding: 1.2rem 1.2rem;
  }
  .faq__header p {
    padding-left: 2rem;
    font-size: 1.4rem;
    line-height: 146%;
    padding-right: 1rem;
  }
  .faq__header p:before {
    left: 0.2rem;
  }
  .faq__more {
    width: 5.5rem;
    height: 5.5rem;
  }
  .faq__more span {
    font-size: 2.5rem;
  }
  .faq__inside {
    padding: 2rem;
  }
  .faq__text {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    margin-left: 0;
    width: 100%;
  }
  .faq__text p {
    font-size: 1.4rem;
    line-height: 150%;
  }
  .faq__userbox {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.5rem;
  }
  .how__title span {
    font-size: 8rem;
    line-height: 85%;
    letter-spacing: -0.05em;
  }
  .how__subtitle {
    padding: 0;
    font-size: 10.8rem;
  }
  .parts {
    margin-top: 12rem;
    padding-bottom: 17rem;
  }
  .parts.small {
    padding-bottom: 60rem;
  }
  .parts__wrap {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .parts .how__title {
    padding: 0 2rem;
  }
  .parts .how__title span {
    font-size: 8rem;
    line-height: 85%;
    letter-spacing: -0.05em;
  }
  .parts .how__subtitle {
    padding: 0;
    font-size: 10.8rem;
  }
  .parts__cards {
    display: none;
    right: 0;
    left: auto;
    top: 1rem;
    width: 28rem;
    z-index: 4;
  }
  .parts__cards.mobile {
    display: block;
  }
  .parts__sand {
    display: none;
    bottom: 0;
    top: auto;
  }
  .parts__sand.mobile {
    display: block;
  }
  .parts__sand2 {
    top: 21rem;
  }
  .parts__box {
    width: 100%;
    position: relative;
    top: -3.5rem;
  }
  .parts__left {
    width: 100%;
    padding: 4.2rem 2.2rem 30rem 2.2rem;
  }
  .parts__left span {
    font-size: 6.4rem;
    left: 10rem;
    top: 4.2rem;
  }
  .parts__left p {
    font-size: 6.4rem;
  }
  .parts__right {
    width: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 30rem;
    z-index: 5;
  }
  .parts__pay {
    left: 15rem;
    top: 5.6rem;
  }
  .parts__pay img {
    height: 3.2rem;
    height: 3rem;
    margin: 0 0.7rem;
  }
  .parts__right {
    padding: 3rem 2rem 4rem;
    padding-bottom: 20rem;
    border-radius: 3rem;
    background: linear-gradient(209deg, #fff 0%, #d0dee3 100%);
  }
  .parts__right.flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .parts__right span {
    font-size: 13.5rem;
  }
  .parts__right span:nth-child(2) {
    margin: 8rem 0.5rem 0;
  }
  .parts__right p {
    font-size: 10.8rem;
  }
  .parts__btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0.5rem;
    letter-spacing: 0.32em;
  }
  .parts__guarimage {
    width: 67rem;
    left: -6.5rem;
    top: 14rem;
  }
  .parts__guar {
    width: 100%;
    margin-left: 0;
    margin-top: 41.5rem;
  }
  .parts__guarinfo {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 0 1.6rem;
    text-align: center;
  }
  .parts__guartitle {
    font-size: 4.8rem;
  }
  .parts__guartext {
    font-size: 6rem;
  }
  .parts__guarbtn {
    margin-top: 30rem;
    position: relative;
    z-index: 2;
    width: 80%;
    padding: 2.2rem 2rem;
  }
  .advasbox__box {
    width: 100%;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .advasbox__item {
    text-align: center;
    padding-bottom: 3.2rem;
  }
  .advasbox__item.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advasbox__title {
    margin: 0;
    font-size: 5.2rem;
    width: 100%;
    margin-top: 3.2rem;
    margin-bottom: 1.8rem;
  }
  .advasbox__text {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    font-size: 1.4rem;
  }
  .advasbox__btnbox {
    margin-top: 3.5rem;
  }
  .advasbox__logo {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .rynok__wrap {
    padding: 5rem 0;
  }
  .rynok__title {
    text-align: center;
  }
  .rynok__title p {
    text-align: center;
  }
  .rynok__title p span {
    font-size: 6rem;
    display: inline;
  }
  .rynok__flag {
    width: 10rem;
  }
  .rynok__subtitle {
    position: static;
    font-size: 10.8rem;
    text-align: center;
  }
  .rynok__swipe {
    width: 5.6rem;
    height: 6.7rem;
    position: absolute;
    top: 14rem;
    left: 14rem;
    background: url(../img/10-s/swipe.svg);
    background-size: 100% 100%;
  }
  .rynok__table {
    position: relative;
    padding: 0 1.2rem;
    overflow-x: auto;
    top: 0;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    margin-top: 4rem;
  }
  .rynok__table::-webkit-scrollbar {
    display: none;
  }
  .rynok__table img {
    width: 119rem;
    max-width: initial;
  }
  .rynok__item {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
  .rynok__info {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 1rem;
    padding-bottom: 2rem;
  }
  .rynok__info p {
    padding-right: 2rem;
  }
  .interview {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    padding-top: 12rem;
    padding-bottom: 50rem;
  }
  .interview__title {
    padding: 0;
    text-align: left;
  }
  .interview__subtitle {
    padding: 0;
    text-align: right;
  }
  .interview__box {
    padding-left: 0;
    width: 100%;
  }
  .interview__item {
    width: 100%;
    margin: 0 0 1.6rem;
  }
  .interview__item.hidmob {
    display: none;
  }
  .interview__info {
    min-height: initial;
  }
  .interview__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .interview__more img {
    width: 4rem;
  }
  .interview__logo2 {
    margin-left: auto;
    margin-right: auto;
  }
  .interview__modal {
    width: calc(100% - 4rem);
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    bottom: 0;
  }
  .interview__modaltext {
    margin-top: 2.4rem;
  }
  .interview__number {
    font-size: 24rem;
    left: 0;
    width: 100%;
    text-align: center;
    padding-left: 0;
    bottom: 22rem;
  }
  .interview__plus {
    left: 28rem;
    bottom: 29rem;
    font-size: 15rem;
  }
  .interview__bg {
    bottom: 11rem;
  }
  .support {
    position: relative;
    z-index: 4;
    margin-top: 7rem;
    height: 180rem;
  }
  .support__wrap {
    padding: 0 1.6rem;
  }
  .support__bg {
    bottom: 0;
    top: auto;
  }
  .support__box {
    width: 100%;
    text-align: center;
    -webkit-backdrop-filter: blur(28.3999996185px);
            backdrop-filter: blur(28.3999996185px);
    background: linear-gradient(183deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
  }
  .support__box span {
    font-size: 7.2rem;
  }
  .support__box p {
    font-size: 10.8rem;
    left: 2rem;
    top: 7.5rem;
  }
  .support__phone {
    top: 21rem;
    left: 1.5rem;
  }
  .support__tg {
    left: 1.6rem;
    top: 50rem;
    width: calc(100% - 3.2rem);
    text-align: center;
    padding-top: 3.2rem;
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    padding-bottom: 14rem;
    overflow: hidden;
  }
  .support__tgicon {
    width: 29rem;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -13.7rem;
  }
  .support__info {
    margin-right: 0;
    width: 100%;
  }
  .support__btn {
    position: absolute;
    left: 1.6rem;
    top: 50rem;
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 3.2rem);
    top: 87rem;
    text-align: center;
  }
  .support__cases{
    display: none;
  }
  .footer {
    border-radius: 6.4rem 6.4rem 0 0;
    padding: 3rem 0 5rem;
  }
  .footer__logo {
    margin-bottom: 3rem;
  }
  .footer__col {
    margin-bottom: 4rem;
  }
  .footer__wrap {
    text-align: center;
  }
  .footer__wrap.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}