@font-face {
  font-family: T2 Rooftop;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/t2-Rooftop-Regular.woff2) format("woff2");
}

@font-face {
  font-family: T2 Rooftop;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/t2-Rooftop-Medium.woff2) format("woff2");
}

@font-face {
  font-family: T2 Halvar Breit;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/HalvarBreitt2-XBd.woff2) format("woff2");
}

:root {
  --indexSize: 1vh + 1vw;
  --black: #1f2229;
  --accent: #714bf1;
  --zIndexHeader: 1000;
  --zIndexModal: 9999;
}

html {
  font-size: 10px;
  scroll-behavior: auto;
}

body,
html {
  height: 100%;
  min-width: 320px;
  scrollbar-gutter: stable;
}

body {
  background: #000;
  color: #000;
  font-size: 15px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea {
  font-family:
    T2 Rooftop,
    sans-serif;
}

button,
input,
textarea {
  font-size: inherit;
  line-height: inherit;
}

body.lock {
  overflow: hidden;
  padding-right: 17px;
}

.touch body.lock {
  padding-right: 0;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  padding-top: 71px;
}

.wrapper > main,
main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background-color: #000;
  color: #fff;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: #d31543;
}

input:required:valid,
textarea:required:valid {
  border-color: #bc9e7b;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
}

button:focus,
input,
textarea {
  outline: none;
}

[data-fullscreen] {
  min-height: 100vh;
}

.touch [data-fullscreen] {
  min-height: calc(var(--vh, 1vh) * 100);
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

@keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

@-webkit-keyframes moveUpDownReverse {
  0% {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
}

@keyframes moveUpDownReverse {
  0% {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.input,
.textarea {
  background: transparent;
  border: 0.06rem solid #1f2229;
  border-radius: 0.4rem;
  color: #1f2229;
  font-family:
    T2 Rooftop,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 2.3rem;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #616161;
  opacity: 1;
  -moz-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::placeholder,
.textarea::placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.textarea {
  padding: 1.6rem 2.3rem;
  resize: none;
}

.h1 {
  font-size: 38px;
  letter-spacing: -0.01em;
  line-height: 0.89474;
}

.h1,
.h2 {
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.h2 {
  font-size: 24px;
  line-height: 1.16667;
}

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

a {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a,
a:hover {
  color: #000;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  max-width: 1216px;
  padding-left: 4rem;
  padding-right: 4rem;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-shadow: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #000;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  letter-spacing: 0;
  padding: 16px 24px;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover {
  background-color: #333;
  color: #f2f2f2;
}

.btn--yellow {
  background: #a7fc00;
  color: #000;
}

.btn--yellow:hover {
  background: #74c800;
  color: #000;
}

svg {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.svg-hidden {
  display: none;
}

@-webkit-keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDownMini {
  -webkit-animation-name: fadeInDownMini;
  animation-name: fadeInDownMini;
}

@-webkit-keyframes fadeInDown20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown20 {
  -webkit-animation-name: fadeInDown20;
  animation-name: fadeInDown20;
}

@-webkit-keyframes fadeInDown10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown10 {
  -webkit-animation-name: fadeInDown10;
  animation-name: fadeInDown10;
}

@-webkit-keyframes fadeInUp20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp20 {
  -webkit-animation-name: fadeInUp20;
  animation-name: fadeInUp20;
}

@-webkit-keyframes fadeInUp10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp10 {
  -webkit-animation-name: fadeInUp10;
  animation-name: fadeInUp10;
}

@-webkit-keyframes fadeInUp5 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp5 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp5 {
  -webkit-animation-name: fadeInUp5;
  animation-name: fadeInUp5;
}

@-webkit-keyframes fadeInLeft10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft10 {
  -webkit-animation-name: fadeInLeft10;
  animation-name: fadeInLeft10;
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.86);
    transform: scale(0.86);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.86);
    transform: scale(0.86);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.scaleUp {
  -webkit-animation-name: scaleUp;
  animation-name: scaleUp;
}

@-webkit-keyframes fadeInRight10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRight10 {
  -webkit-animation-name: fadeInRight10;
  animation-name: fadeInRight10;
}

@-webkit-keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

.clip {
  -webkit-animation-name: clip;
  animation-name: clip;
}

@-webkit-keyframes clipInLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@-webkit-keyframes clipInRight {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInRight {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

.clipInRight {
  -webkit-animation-name: clipInRight;
  animation-name: clipInRight;
}

.clipInLeft {
  -webkit-animation-name: clclipInLeftip;
  animation-name: clipInLeft;
}

@-webkit-keyframes clipInUp {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInUp {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

.clipInUp {
  -webkit-animation-name: clipInUp;
  animation-name: clipInUp;
}

[class*="-ibg"] {
  position: relative;
}

[class*="-ibg"] img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.scroll-area {
  scrollbar-color: #d6d6d7 transparent;
  scrollbar-width: thin;
}

.scroll-area::-webkit-scrollbar {
  width: 7px;
}

.scroll-area::-webkit-scrollbar-track {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.scroll-area::-webkit-scrollbar-thumb {
  background-color: #d6d6d7;
  outline: none;
}

.header {
  background: #000;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.header__area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  height: 71px;
  justify-content: space-between;
}

.header__area,
.header__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logos {
  gap: 20px;
}

.header__x {
  background: url(../img/x.svg) 50% / contain no-repeat;
  height: 16px;
  width: 16px;
}

.header__auth {
  background: #fff;
  color: #1f2229;
  font-size: 12px;
  line-height: 16px;
  padding: 8px 12px;
}

.header__auth:hover {
  background-color: #e6e6e6;
  color: #1a1a1a;
}

.footer {
  background: #23272f;
  color: #808693;
  height: 152px;
  padding: 96px 0 40px;
  position: relative;
}

.footer:after {
  background: #000;
  border-radius: 24px;
  content: "";
  height: 152px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -88px;
  width: 100%;
}

.footer__area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 40px;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 46px;
  padding-right: 23px;
}

.footer__area,
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__links {
  gap: 23px;
}

.footer__links a {
  color: #808693;
  font-size: 10px;
  line-height: 2.2;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__links a:hover {
  text-decoration: none;
}

.footer__copy a,
.footer__copy span {
  color: #808693;
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.hero {
  background: #23272f;
  margin-bottom: -28px;
  padding: 35px 0 58px;
  position: relative;
}

.hero:after {
  background: #000;
  border-radius: 24px;
  content: "";
  height: 186px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 24px);
  width: 100%;
}

.hero__area {
  background: url(../img/hero-bg.jpg) 50% / cover no-repeat;
  border-radius: 18px;
  overflow: hidden;
  padding: 24px;
}

.hero__content {
  background: #000;
  border-radius: 18px;
  color: #fff;
  max-width: 510px;
  padding: 26px 23px;
  width: 100%;
}

.hero__content .h1 {
  margin-bottom: 8px;
}

.hero__content p {
  color: #fff;
  font-size: 15px;
  line-height: 1.46667;
  max-width: 375px;
}

.hero__content p:last-of-type {
  margin-bottom: 0;
}

.hero__btn {
  margin-top: 91px;
  max-width: 455px;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hero__btn span:nth-of-type(2) {
  text-transform: none;
}

.how-works {
  padding: 32px 0;
  position: relative;
  z-index: 2;
}

.how-works .h2 {
  color: #fff;
  margin-bottom: 10px;
}

.how-works__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.how-works__item {
  border-radius: 32px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  padding: 24px 24px 21px;
}

.how-works__item:first-of-type {
  background: #fff;
}

.how-works__item:first-of-type .how-works__item-num {
  background: #f2f3f5;
}

.how-works__item:nth-of-type(2) {
  background: #a7fc00;
}

.how-works__item:nth-of-type(2) .how-works__item-num {
  background: #9ded00;
}

.how-works__item:nth-of-type(3) {
  background: #00bfff;
  color: #fff;
}

.how-works__item:nth-of-type(3) .how-works__item-num {
  background: #70dbff;
}

.how-works__item:nth-of-type(4) {
  background: #fff;
}

.how-works__item:nth-of-type(4) .how-works__item-num {
  background: #f2f3f5;
}

.how-works__item-num {
  border-radius: 16px;
  color: rgba(1, 1, 1, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 32px;
  font-weight: 800;
  height: 48px;
  width: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 16px;
}

.how-works__item-title {
  display: block;
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.how-works__item-text {
  font-size: 15px;
}

.vantages .h2 {
  margin-bottom: 0;
}

.vantages ol {
  margin: 13px -19px;
  max-width: 497px;
}

.vantages ol li {
  font-size: 15px;
  line-height: 1.6;
}

.vantages__area {
  background: url(../img/vantages-bg.jpg) 50% / cover no-repeat;
  border-radius: 32px;
  padding: 29px 42px;
}

.vantages__btn {
  margin-top: 60px;
  max-width: 398px;
  width: 100%;
}

.why-we {
  padding: 26px 0 0;
}

.why-we .h2 {
  color: #fff;
  margin-bottom: 0;
}

.why-we__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}

.why-we__item {
  background: #fff;
  border-radius: 32px;
  -webkit-box-shadow:
    0 2px 15px 0 rgba(0, 0, 0, 0.06),
    0 -10px 22px 0 rgba(0, 0, 0, 0.03);
  box-shadow:
    0 2px 15px 0 rgba(0, 0, 0, 0.06),
    0 -10px 22px 0 rgba(0, 0, 0, 0.03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 24px 21px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.why-we__item-icon {
  margin-bottom: 62px;
}

.why-we__item-text {
  display: block;
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-top: auto;
  text-transform: uppercase;
}

.connect-form {
  padding: 32px 0 0;
}

.connect-form__area {
  background: #f2f3f5;
  border-radius: 24px;
  padding: 18px 21px;
}

.connect-form__area .h2 {
  color: #000;
  margin-bottom: 0;
}

.connect-form__area .input {
  background: #fff;
  border: none;
  border-radius: 12px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  margin: 23px 0;
  max-width: 697px;
  padding: 0 27px;
  width: 100%;
}

.connect-form__area .input::-webkit-input-placeholder {
  color: #8f9399;
  font-weight: 400;
  opacity: 1;
}

.connect-form__area .input::-moz-placeholder {
  color: #8f9399;
  font-weight: 400;
  opacity: 1;
}

.connect-form__area .input:-ms-input-placeholder {
  color: #8f9399;
  font-weight: 400;
  opacity: 1;
}

.connect-form__area .input::-ms-input-placeholder {
  color: #8f9399;
  font-weight: 400;
  opacity: 1;
}

.connect-form__area .input::placeholder {
  color: #8f9399;
  font-weight: 400;
  opacity: 1;
}

.connect-form__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 29px;
}

.connect-form__button-wrap span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.46667;
}

.connect-form__footer {
  margin-top: 24px;
  max-width: 748px;
}

.connect-form__footer p {
  color: #808693;
  font-size: 12px;
  font-weight: 400;
}

.connect-form__footer p:last-of-type {
  margin-bottom: 0;
}

.connect-form__footer a {
  color: #808693;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.connect-form__footer a:hover {
  text-decoration: none;
}

.connect-form__btn {
  border: none;
  max-width: 398px;
  outline: none;
  width: 100%;
}

.how-cancel {
  padding-top: 32px;
}

.how-cancel__area {
  background: #f2f3f5;
  border-radius: 24px;
  padding: 15px 21px;
}

.how-cancel__area .h2 {
  margin-bottom: 20px;
}

.how-cancel__area p {
  font-size: 15px;
  margin-bottom: 0;
}

.faq {
  padding: 29px 0 0;
  position: relative;
  z-index: 2;
}

.faq__header {
  max-width: 728px;
}

.faq__header .h2 {
  color: #fff;
  margin-bottom: 6px;
}

.faq__header p {
  font-size: 15px;
  line-height: 1.46667;
  margin-bottom: 0;
}

.faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.faq__body .accordion-container {
  width: 100%;
}

.faq__body .accordion-container:first-of-type .ac:first-of-type .ac-text {
  max-width: 412px;
}

.faq__body .accordion-container:first-of-type .ac:nth-of-type(2) .ac-text {
  max-width: 443px;
}

.faq__body .accordion-container:first-of-type .ac:nth-of-type(3) .ac-text {
  max-width: 429px;
}

.faq__body .accordion-container:nth-of-type(2) .ac:first-of-type .ac-text {
  max-width: 443px;
}

.faq__body .accordion-container:nth-of-type(2) .ac:nth-of-type(2) .ac-text {
  max-width: 432px;
}

.faq__body .accordion-container:nth-of-type(2) .ac:nth-of-type(3) .ac-text {
  max-width: 441px;
}

.faq__body .accordion-container .ac {
  background: #23272f;
  border: none;
  border-radius: 18px;
  margin-top: 8px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.faq__body .accordion-container .ac.is-active {
  background: #23272f;
}

.faq__body .accordion-container .ac-trigger {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    T2 Rooftop,
    sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.46667;
  padding-left: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding-right: 95px;
}

.faq__body .accordion-container .ac-trigger:focus {
  color: #fff;
}

.faq__body .accordion-container .ac-trigger:after {
  background: url(../img/icons/faq-plus.svg) 50% / contain no-repeat;
  content: "";
  height: 32px;
  right: 23px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 32px;
}

.faq__body .accordion-container .ac.is-active > .ac-header .ac-trigger:after {
  background: url(../img/icons/faq-minus.svg) 50% / contain no-repeat;
  content: "";
}

.faq__body .accordion-container .ac-panel .ac-text {
  color: #fff;
  font-family:
    T2 Rooftop,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57143;
  margin: 0 0 35px 24px;
  max-width: 500px;
  padding: 0;
}

.faq__body .accordion-container .ac-panel .ac-text a {
  color: #fff;
}

.tele-modal {
  background: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.tele-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tele__modal-content {
  background: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0 0 61.2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 61.2px 0 rgba(0, 0, 0, 0.2);
  max-width: 952px;
  padding: 99px 114px 93px 75px;
  position: relative;
}

.tele__modal-close {
  cursor: pointer;
  position: absolute;
  right: 23px;
  top: 26px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.tele__modal-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal-title {
  margin-bottom: 34px;
}

.modal-title .h2 {
  font-size: 28px;
  margin-bottom: 0;
}

.modal-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.modal-inputs .input {
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  color: #8f9399;
  color: #000;
  font-size: 18px;
  height: 60px;
  max-width: 397px;
  padding: 0 23px;
  width: 100%;
}

.modal-inputs .input::-webkit-input-placeholder {
  color: #8f9399;
  opacity: 1;
}

.modal-inputs .input::-moz-placeholder {
  color: #8f9399;
  opacity: 1;
}

.modal-inputs .input:-ms-input-placeholder {
  color: #8f9399;
  opacity: 1;
}

.modal-inputs .input::-ms-input-placeholder {
  color: #8f9399;
  opacity: 1;
}

.modal-inputs .input::placeholder {
  color: #8f9399;
  opacity: 1;
}

.modal-inputs .btn {
  border: none;
  height: 60px;
  width: 100%;
}

.modal-description {
  color: #8c9296;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-description a {
  color: #8c9296;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.modal-description a:hover {
  text-decoration: none;
}

.modal-offer {
  font-size: 14px;
}

.modal-offer a {
  color: #8c9296;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.modal-offer a:hover {
  text-decoration: none;
}

@media (max-width: 1100px) {
  body.lock {
    padding-right: 0;
  }
}

@media (max-width: 940px) {
  .wrapper > main {
    padding-top: 64px;
  }

  .header__area {
    height: 64px;
  }

  .header__logos {
    gap: 12px;
  }

  .header__x {
    height: 8px;
    width: 8px;
  }

  .header__logo:first-of-type {
    max-width: 34px;
  }

  .header__logo:nth-of-type(2) {
    max-width: 50px;
  }

  .footer {
    height: auto;
    padding-bottom: 8px;
    padding-top: 48px;
  }

  .footer:after {
    top: -113px;
  }

  .footer__area {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }

  .footer__area,
  .footer__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 22px;
    padding: 0 25px;
  }

  .footer__links a {
    line-height: 1.8;
  }

  .hero {
    margin-bottom: -22px;
    padding: 12px 0 36px;
  }

  .hero__content p {
    font-size: 12px;
    line-height: 1.16667;
    max-width: 80%;
    padding-left: 3px;
  }

  .how-works {
    padding: 16px 0;
  }

  .how-works__item {
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 146px;
    padding: 8px 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .how-works__item-num {
    margin-bottom: auto;
    position: relative;
    top: 4px;
  }

  .how-works__item-title {
    margin-bottom: 4px;
  }

  .how-works__item-text {
    display: block;
    font-size: 12px;
    line-height: 1.3;
  }

  .vantages {
    padding-top: 8px;
  }

  .vantages ol {
    margin: 12px -25px;
    max-width: 310px;
  }

  .vantages ol li {
    font-size: 12px;
    line-height: 1.66667;
    margin-bottom: 10px;
  }

  .vantages__btn {
    margin-top: 10px;
  }

  .why-we {
    padding: 17px 0 0;
  }

  .why-we__grid {
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3px;
  }

  .why-we__item {
    border-radius: 16px;
    min-height: 110px;
    padding: 14px 12px;
  }

  .why-we__item-icon {
    margin-bottom: 5px;
  }

  .why-we__item-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: unset;
    max-width: 90%;
    min-height: 26px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .why-we__item-text br {
    display: none;
  }

  .connect-form {
    padding: 22px 0 0;
  }

  .connect-form__area {
    border-radius: 12px;
    padding: 14px 12px;
  }

  .connect-form__area .h2 {
    font-size: 16px;
  }

  .connect-form__area .input {
    font-size: 16px;
    height: 52px;
    margin: 14px 0 8px;
    padding: 0 12px;
  }

  .connect-form__area .input::-webkit-input-placeholder {
    font-size: 12px;
  }

  .connect-form__area .input::-moz-placeholder {
    font-size: 12px;
  }

  .connect-form__area .input:-ms-input-placeholder {
    font-size: 12px;
  }

  .connect-form__area .input::-ms-input-placeholder {
    font-size: 12px;
  }

  .connect-form__area .input::placeholder {
    font-size: 12px;
  }

  .connect-form__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .connect-form__footer {
    margin-top: 39px;
    max-width: 89%;
  }

  .connect-form__footer p {
    font-size: 12px;
  }

  .how-cancel {
    padding-top: 24px;
  }

  .how-cancel__area {
    border-radius: 12px;
    padding: 8px 12px;
  }

  .how-cancel__area .h2 {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .how-cancel__area p {
    font-size: 12px;
    max-width: 95%;
  }

  .faq {
    padding: 20px 0 0;
  }

  .faq__header .h2 {
    margin-bottom: 0;
  }

  .faq__header p {
    font-size: 12px;
    line-height: 1.33333;
  }

  .faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }

  .faq__body .accordion-container .ac {
    border-radius: 16px;
  }

  .faq__body .accordion-container .ac-trigger {
    font-size: 12px;
    font-weight: 400;
    height: 76px;
    line-height: 1.33333;
    padding-left: 12px;
    padding-right: 85px;
  }

  .faq__body .accordion-container .ac-trigger:after {
    right: 21px;
  }

  .faq__body .accordion-container .ac-panel .ac-text {
    font-size: 12px;
    line-height: 1.33333;
    margin: 0 12px 12px;
    max-width: 300px !important;
  }

  .tele__modal-content {
    padding: 62px 24px 48px;
  }

  .tele__modal-close {
    right: 24px;
    top: 24px;
  }

  .modal-title {
    margin-bottom: 25px;
  }

  .modal-title .h2 {
    font-size: 22px;
  }

  .modal-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .modal-inputs .input {
    font-size: 16px;
    height: 52px;
    max-width: 100%;
    padding: 0 12px;
  }

  .modal-inputs .input::-webkit-input-placeholder {
    font-size: 12px;
  }

  .modal-inputs .input::-moz-placeholder {
    font-size: 12px;
  }

  .modal-inputs .input:-ms-input-placeholder {
    font-size: 12px;
  }

  .modal-inputs .input::-ms-input-placeholder {
    font-size: 12px;
  }

  .modal-inputs .input::placeholder {
    font-size: 12px;
  }

  .modal-inputs .btn {
    height: 52px;
  }

  .modal-description {
    margin-bottom: 10px;
  }

  .modal-description,
  .modal-offer {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
  }

  .touch [data-fullscreen] {
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
  }

  .input,
  .textarea {
    font-size: 15px;
    padding: 0 13px;
    text-align: left;
  }

  .textarea {
    padding: 13px;
  }

  .h2 {
    font-size: 22px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .btn {
    border-radius: 10px;
  }

  .how-works__grid {
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
  }

  .connect-form__btn {
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .h1 {
    font-size: 22px;
    line-height: 1.17042;
  }

  .hero__area {
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 361px;
    padding: 12px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background: url(../img/hero-bg-mobile.jpg) 50% / cover no-repeat;
  }

  .hero__content {
    border-radius: 12px;
    max-width: 100%;
    padding: 8px 12px;
  }

  .hero__content .h1 {
    margin-bottom: 0;
    max-width: 70%;
    padding-left: 3px;
  }

  .hero__btn {
    margin-top: 7px;
    padding: 16px;
  }

  .vantages__area {
    background: url(../img/vantages-bg-mobile.jpg) 50% / cover no-repeat;
    border-radius: 16px;
    padding: 14px 12px 263px;
  }

  .vantages__btn {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .hero__content .h1 {
    max-width: 90%;
  }

  .hero__content p {
    max-width: 290px;
  }
}

@media (max-width: 375px) {
  .hero__content .h1 {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .h2 {
    font-size: 20px;
  }

  .btn {
    font-size: 14px;
  }

  .header__logos {
    gap: 10px;
  }

  .faq__body .accordion-container .ac-trigger {
    padding-right: 90px;
  }
}

@media (max-width: 340px) {
  .btn {
    font-size: 13px;
  }

  .vantages ol {
    max-width: 100%;
  }

  .vantages__area {
    padding: 14px 12px 280px;
  }

  .why-we__item-text {
    font-size: 14px;
  }

  .connect-form__footer p,
  .modal-description,
  .modal-offer {
    font-size: 9px;
  }
}
