@charset "UTF-8";
:root {
  --white: #fff;
  --white-trans: rgba(255, 255, 255, 0.5);
  --dark: #1a1c28;
  --light: #9396b5;
  --blue: #599cff;
  --green: #b2ee51;
  --bg-light: #f2f2f2;
  --negative: #e90482;
  --font-family: "Wix Madefor Display", sans-serif;
  --font-size-body: 15px;
  --br-xs: 6px;
  --br-s: 10px;
  --br-m: 24px;
  --br-l: 32px;
  --container-width: 1272px;
  --container-padding: 48px;
  --section-padding: 48px;
  --section-offset: 96px;
  --controls-margin: 40px;
}
@media screen and (max-height: 740px) and (max-width: 1600px) {
  :root {
    --controls-margin: 16px;
    --section-offset: 80px;
  }
}
@media (max-width: 1440px) {
  :root {
    --container-width: 1184px;
    --section-offset: 64px;
    --controls-margin: 16px;
  }
}
@media screen and (min-height: 1000px) and (max-width: 1440px) {
  :root {
    --controls-margin: 24px;
    --section-offset: 104px;
  }
}
@media (max-width: 1290px) {
  :root {
    --section-offset: 48px;
  }
}
@media (max-width: 1050px) {
  :root {
    --container-padding: 24px;
    --container-width: calc(100% - (2 * var(--container-padding)));
  }
}
@media (max-width: 850px) {
  :root {
    --container-padding: 16px;
    --section-padding: 24px;
    --br-l: 24px;
  }
}
@media (max-width: 610px) {
  :root {
    --section-offset: 32px;
  }
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 0;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.page {
  background-color: var(--bg-light);
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  font-weight: 500;
  color: var(--dark);
  min-width: 320px;
  margin: 0 auto;
  position: relative;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding) * 2);
  width: 100%;
  padding-inline: var(--container-padding);
  margin-inline: auto;
  position: relative;
}
@media (max-width: 1050px) {
  .container {
    max-width: var(--container-width);
  }
}

.container-mini {
  max-width: var(--container-width);
  width: 100%;
  margin-inline: auto;
  position: relative;
}

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: hidden;
  height: 100vh;
}
@media (max-width: 1050px) {
  .section {
    height: 100dvh;
  }
}
.section--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
}
@media (max-width: 1050px) {
  .section--fixed {
    height: 100dvh;
  }
}

.for-mobile-wrapper {
  height: auto;
}
.for-mobile-wrapper::-webkit-scrollbar {
  width: 0;
}
.for-mobile-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.for-mobile-wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}
.for-mobile-wrapper.fixed-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}
.for-mobile-wrapper .section-last-wrapper {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1050px) {
  .for-mobile-wrapper {
    height: 100dvh;
    overflow: hidden;
  }
}

#section-3::-webkit-scrollbar,
#section-4::-webkit-scrollbar {
  width: 0;
}
#section-3::-webkit-scrollbar-track,
#section-4::-webkit-scrollbar-track {
  background: transparent;
}
#section-3::-webkit-scrollbar-thumb,
#section-4::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}
@media (max-width: 1050px) {
  #section-3,
  #section-4 {
    height: auto;
  }
}

.section-last-wrapper {
  overflow-y: auto;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.section-last-wrapper::-webkit-scrollbar {
  width: 0;
}
.section-last-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.section-last-wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

@media (max-width: 1050px) {
  #section-3 {
    overflow-y: hidden;
  }
}

@media (max-width: 1050px) {
  #section-4 .section-last-wrapper {
    overflow-y: hidden;
  }
}

.base-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border-radius: var(--br-s);
  border: none;
  -webkit-box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--blue)), to(#1263da));
  background-image: linear-gradient(180deg, var(--blue) 0%, #1263da 100%);
  font-size: clamp(0.8125rem, 0.7836538462rem + 0.1282051282vw, 0.9375rem);
  font-weight: 700;
  line-height: 133%;
  letter-spacing: -0.03em;
  color: var(--white);
  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;
  gap: 12px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (hover: hover) {
  .base-btn:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1263da), to(#599cff));
    background-image: linear-gradient(180deg, #1263da 0%, #599cff 100%);
    -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
  }
}
@media (hover: none) {
  .base-btn:active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1263da), to(#599cff));
    background-image: linear-gradient(180deg, #1263da 0%, #599cff 100%);
    -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 850px) {
  .base-btn {
    gap: 8px;
  }
}
@media (max-width: 380px) {
  .base-btn {
    padding-block: 6px;
  }
}
.base-btn p {
  margin: 0;
}

.second-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: clamp(0.8125rem, 0.7836538462rem + 0.1282051282vw, 0.9375rem);
  font-weight: 500;
  line-height: 133%;
  letter-spacing: -0.03em;
  color: var(--dark);
  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;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.second-btn p {
  margin: 0;
}
.second-btn span {
  width: 22px;
  height: 16px;
}
.second-btn span svg {
  width: 22px;
  height: 16px;
}
@media (hover: hover) {
  .second-btn:hover {
    color: var(--blue);
  }
}
@media (hover: none) {
  .second-btn:active {
    color: var(--blue);
  }
}
@media (max-width: 850px) {
  .second-btn {
    gap: 8px;
  }
}

.title-l {
  font-size: clamp(1.5rem, 1.1538461538rem + 1.5384615385vw, 3rem);
  margin: 0;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--dark);
}

.title-s {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
@media screen and (max-height: 740px) and (max-width: 1600px) {
  .title-s.hero__info-text {
    font-size: 15px;
    font-weight: 700;
  }
}

.text-light {
  font-size: clamp(0.75rem, 0.7355769231rem + 0.0641025641vw, 0.8125rem);
  line-height: 138%;
  letter-spacing: -0.03em;
  color: var(--light);
}

.controls {
  position: fixed;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 101;
}
.controls--right {
  right: 0;
}
.controls--left {
  left: 0;
}
.controls__logo {
  margin: var(--controls-margin);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-height: 740px) and (max-width: 1600px) {
  .controls__logo {
    margin-right: 0;
  }
}
@media (max-width: 850px) {
  .controls__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 610px) {
  .controls__logo {
    gap: 20px;
  }
}
@media screen and (max-width: 380px) and (max-height: 700px) {
  .controls__logo {
    gap: 12px;
  }
}
.controls__tg {
  margin: var(--controls-margin);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 1290px) {
  .controls__tg {
    margin-top: auto;
  }
}
@media (max-width: 1050px) {
  .controls__tg .tg__text {
    display: none;
  }
}
.controls__tg .base-btn {
  padding: 0;
  width: 64px;
  height: 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eaeaea));
  background-image: linear-gradient(180deg, #fff 0%, #eaeaea 100%);
  -webkit-box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4);
}
.controls__tg .base-btn span {
  width: 20px;
  height: 16px;
}
@media (hover: hover) {
  .controls__tg .base-btn:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#fff));
    background-image: linear-gradient(180deg, #eaeaea 0%, #fff 100%);
    -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (hover: none) {
  .controls__tg .base-btn:active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#fff));
    background-image: linear-gradient(180deg, #eaeaea 0%, #fff 100%);
    -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 850px) {
  .controls__tg .base-btn {
    display: none;
  }
}
.controls__tg span {
  font-size: 13px;
  line-height: 138%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.controls__btn-reg {
  margin: var(--controls-margin);
}
@media (max-width: 610px) {
  .controls__btn-reg {
    margin-left: 0;
  }
}
.controls__btn-reg a {
  margin-left: auto;
  width: 64px;
  height: 40px;
  padding: 0;
  -webkit-box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4);
}
@media (max-width: 610px) {
  .controls__btn-reg a {
    width: 48px;
    height: 32px;
  }
}
.controls__btn-reg svg {
  width: 22px;
  height: 16px;
}
.controls__btn-scroll {
  margin: var(--controls-margin);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.controls__btn-scroll span {
  font-size: 13px;
  line-height: 138%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--white);
}
.controls__btn-scroll .base-btn {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c3ff63), to(#80be1c));
  background-image: linear-gradient(180deg, #c3ff63 0%, #80be1c 100%);
  -webkit-box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4);
  width: 64px;
  height: 40px;
  padding: 0;
}
@media (hover: hover) {
  .controls__btn-scroll .base-btn:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#80be1c), to(#c3ff63));
    background-image: linear-gradient(180deg, #80be1c 0%, #c3ff63 100%);
    -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (hover: none) {
  .controls__btn-scroll .base-btn:active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#80be1c), to(#c3ff63));
    background-image: linear-gradient(180deg, #80be1c 0%, #c3ff63 100%);
    -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 850px) {
  .controls__btn-scroll .base-btn {
    display: none;
  }
}
.controls__btn-scroll .icon-down svg {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  display: block;
}
.controls__btn-scroll .icon-down svg.rotate {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 1050px) {
  .controls__btn-scroll .btn-scroll-text {
    display: none;
  }
}

.logo-main__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.logo-main__icon {
  width: 26px;
  height: 16px;
  -webkit-transition: none;
  transition: none;
}
.logo-main__split {
  width: 16px;
  height: 36px;
}
@media (max-width: 850px) {
  .logo-main__split {
    display: none;
  }
}
.logo-main__text {
  margin: 0;
  font-size: 11px;
  line-height: 109%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.menu {
  position: fixed;
  z-index: 100;
  top: calc(100vh - var(--controls-margin) - 48px);
  left: 0;
  right: 0;
  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;
}
@media (max-width: 610px) {
  .menu {
    z-index: 110;
    top: calc(100dvh - var(--controls-margin) - 36px);
  }
}
.menu__wrapper {
  border-radius: var(--br-s);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), color-stop(rgba(255, 255, 255, 0.15)), color-stop(rgba(255, 255, 255, 0.02)), to(rgba(255, 255, 255, 0.01)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  -webkit-box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 var(--white-trans);
          box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 var(--white-trans);
  position: relative;
}
.menu__wrapper.white {
  -webkit-box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 0 var(--white-trans);
          box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 0 var(--white-trans);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(10%, rgba(255, 255, 255, 0.9)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.4)));
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 100%);
}
.menu__wrapper.white .menu__link {
  color: var(--dark);
}
.menu__wrapper.white .menu__link.active {
  color: var(--white);
}
@media (hover: hover) {
  .menu__wrapper.white .menu__link:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eaeaea));
    background-image: linear-gradient(180deg, #fff 0%, #eaeaea 100%);
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--dark);
  }
}
@media (hover: none) {
  .menu__wrapper.white .menu__link:active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eaeaea));
    background-image: linear-gradient(180deg, #fff 0%, #eaeaea 100%);
    -webkit-box-shadow: none;
            box-shadow: none;
    color: var(--dark);
  }
}
.menu__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 596px;
  padding: 1px;
  border-radius: var(--br-s);
  border: 4px solid transparent;
  -o-border-image: url("../img/boarder.svg");
     border-image: url("../img/boarder.svg");
  border-image-slice: 4;
  border-image-repeat: stretch;
  border-image-outset: 0;
  overflow: hidden;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 610px) {
  .menu__nav {
    width: calc(100vw - 16px);
  }
}
.menu__link {
  padding-block: 10px;
  border-radius: var(--br-xs);
  font-weight: 700;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.menu__link.active {
  -webkit-box-shadow: inset 0 1px 0 0 var(--white-trans);
          box-shadow: inset 0 1px 0 0 var(--white-trans);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5a5d70), to(#1a1c28));
  background-image: linear-gradient(180deg, #5a5d70 0%, #1a1c28 100%);
}
@media (hover: hover) {
  .menu__link:hover {
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    -webkit-box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 var(--white-trans);
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 var(--white-trans);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), color-stop(20.67%, rgba(255, 255, 255, 0.15)), color-stop(58.17%, rgba(255, 255, 255, 0.02)), to(rgba(255, 255, 255, 0.01)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 20.67%, rgba(255, 255, 255, 0.02) 58.17%, rgba(255, 255, 255, 0.01) 100%);
  }
}
@media (hover: none) {
  .menu__link:active {
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    -webkit-box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 var(--white-trans);
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 var(--white-trans);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), color-stop(20.67%, rgba(255, 255, 255, 0.15)), color-stop(58.17%, rgba(255, 255, 255, 0.02)), to(rgba(255, 255, 255, 0.01)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 20.67%, rgba(255, 255, 255, 0.02) 58.17%, rgba(255, 255, 255, 0.01) 100%);
  }
}
@media (max-width: 610px) {
  .menu__link {
    padding-block: 6px;
    font-size: 13px;
    font-weight: 500;
  }
}

.hero {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1050px) {
  .hero {
    height: 100dvh;
  }
}
.hero__fix-wrapper {
  position: fixed;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100vh;
  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;
}
@media (max-width: 1050px) {
  .hero__fix-wrapper {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (max-width: 850px) {
  .hero__fix-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero__content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 600px;
  width: 100%;
  margin-left: var(--controls-margin);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-height: 680px) and (max-width: 1600px) {
  .hero__content {
    gap: 8px;
  }
}
@media (max-width: 1050px) {
  .hero__content {
    margin-bottom: 12vh;
  }
}
@media (max-width: 850px) {
  .hero__content {
    margin-bottom: 0;
    max-width: 340px;
  }
}
@media (max-width: 610px) {
  .hero__content {
    gap: 24px;
  }
}
.hero__title {
  margin: 0;
  font-weight: 800;
  font-size: 116px;
  line-height: 80%;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}
@media (max-width: 850px) {
  .hero__title {
    font-size: 96px;
    margin-left: -4px;
    text-orientation: mixed;
    -webkit-writing-mode: sideways-lr;
        -ms-writing-mode: sideways-lr;
            writing-mode: sideways-lr;
  }
}
@media screen and (max-width: 780px) {
  .hero__title {
    font-size: 86px;
    margin-top: 36px;
  }
}
@media screen and (max-width: 700px) {
  .hero__title {
    font-size: 76px;
  }
}
@media screen and (max-width: 450px) and (max-height: 950px) {
  .hero__title {
    font-size: 60px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 450px) and (max-height: 900px) {
  .hero__title {
    font-size: 54px;
    margin-top: 60px;
  }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: 46px;
  }
}
@media screen and (max-width: 380px) and (max-height: 700px) {
  .hero__title {
    font-size: 36px;
    margin-top: 60px;
  }
}
.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 22px;
}
.hero__info p:last-of-type {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
}
@media screen and (max-height: 680px) and (max-width: 1600px) {
  .hero__info p:first-child {
    display: none;
  }
  .hero__info span:nth-of-type(1) {
    display: none;
  }
}
@media (max-width: 850px) {
  .hero__info {
    max-width: 200px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2px;
  }
  .hero__info p:first-child {
    display: none;
  }
  .hero__info span {
    display: none;
  }
}
.hero__info-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__info-text-wrapper img {
  display: none;
  width: 51px;
  height: 32px;
}
@media (max-width: 850px) {
  .hero__info-text-wrapper img {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.hero__info-text {
  margin: 0;
  color: var(--white);
}
@media (max-width: 850px) {
  .hero__info-text {
    font-size: 16px;
    text-align: left !important;
  }
}
.hero__benf {
  display: grid;
  grid-template-columns: 168px 1fr;
  grid-template-rows: 106px;
  gap: 24px;
}
@media (max-width: 850px) {
  .hero__benf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero__benf-card {
  width: 100%;
}
@media (max-width: 850px) {
  .hero__benf-card {
    display: none;
  }
}
.hero__benf-card img {
  width: 168px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__benf-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero__benf-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1.5px solid var(--white);
  border-radius: var(--br-s);
  padding: 7px 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.hero__benf-item p {
  margin: 0;
  line-height: 133%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 850px) {
  .hero__benf-item p {
    font-size: 13px;
  }
}
.hero__benf-item span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  background-color: var(--white);
  border-radius: var(--br-xs);
  font-weight: 700;
  line-height: 133%;
  letter-spacing: -0.03em;
  color: var(--dark);
}
.hero__benf-item.empty {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 850px) {
  .hero__benf-item.empty {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: 32px;
  }
}
.hero__benf-item.empty.min {
  width: 40px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding: 0;
}
@media (max-width: 850px) {
  .hero__benf-item.empty.min {
    width: 32px;
  }
  .hero__benf-item.empty.min.order-6 {
    -webkit-box-ordinal-group: -5;
        -ms-flex-order: -6;
            order: -6;
  }
}
.hero__benf-item.with-block {
  padding: 2px 4px;
  padding-right: 12px;
}
@media (max-width: 850px) {
  .hero__benf-item.order-5 {
    -webkit-box-ordinal-group: -4;
        -ms-flex-order: -5;
            order: -5;
  }
}
@media (max-width: 850px) {
  .hero__benf-item.order-4 {
    -webkit-box-ordinal-group: -3;
        -ms-flex-order: -4;
            order: -4;
  }
}
@media (max-width: 850px) {
  .hero__benf-item.order-3 {
    -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
            order: -3;
  }
}
@media (max-width: 850px) {
  .hero__benf-item.order-2 {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
}
@media (max-width: 850px) {
  .hero__benf-item.order-1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media (max-width: 850px) {
  .hero__benf-item.order-0 {
    display: none;
  }
}
.hero__benf-item:last-of-type {
  background-color: var(--white);
  padding: 2px 4px;
  padding-left: 12px;
}
.hero__benf-item:last-of-type p {
  color: var(--dark);
}
.hero__benf-item:last-of-type span {
  padding: 6px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#599cff), to(#1263da));
  background-image: linear-gradient(180deg, #599cff 0%, #1263da 100%);
  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;
}
.hero__blur {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: transparent;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.first-wrapper {
  position: relative;
  z-index: 8;
}
.first-wrapper__img {
  height: calc(100% + 80px);
  width: calc(100% + 80px);
  position: fixed;
  top: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #000;
  top: -40px;
  left: -40px;
}
.first-wrapper__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  will-change: transform;
}
@media screen and (max-height: 740px) and (max-width: 1600px) {
  .first-wrapper__img img {
    -o-object-position: center 40%;
       object-position: center 40%;
  }
}

.img-gradient,
.img-paralax {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.img-paralax {
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.img-paralax--l1 {
  -webkit-animation: particles-opacity 10s ease infinite;
          animation: particles-opacity 10s ease infinite;
}
.img-paralax--l2 {
  -webkit-animation: particles-opacity 16s ease infinite;
          animation: particles-opacity 16s ease infinite;
}
.img-paralax--l3 {
  -webkit-animation: particles-opacity 22s ease infinite;
          animation: particles-opacity 22s ease infinite;
}
.img-paralax--l4-d {
  opacity: 1;
}
.img-paralax--l4-light-center {
  opacity: 0;
}
.img-paralax--l4-light-right {
  opacity: 0;
}

@-webkit-keyframes particles-opacity {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes particles-opacity {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.comets-wrapper {
  position: absolute;
  top: -25%;
  right: 15%;
  width: 35vw;
  height: 100vw;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}
.comets-wrapper .img-comet {
  position: absolute;
  top: -5%;
  left: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation-name: comet-fall;
          animation-name: comet-fall;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.comets-wrapper .img-comet--1 {
  width: 300px;
  height: 220px;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
  left: 53%;
}
@media (max-width: 610px) {
  .comets-wrapper .img-comet--1 {
    left: 180%;
  }
}
.comets-wrapper .img-comet--2 {
  width: 76px;
  height: 78px;
  left: 20%;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}
.comets-wrapper .img-comet--3 {
  width: 87px;
  height: 88px;
  left: 58%;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
@media (max-width: 610px) {
  .comets-wrapper .img-comet--3 {
    left: 100%;
  }
}
.comets-wrapper .img-comet--4 {
  width: 63px;
  height: 67px;
  left: 35%;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}
.comets-wrapper .img-comet--5 {
  width: 50px;
  height: 54px;
  left: -2%;
  -webkit-animation-duration: 26s;
          animation-duration: 26s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes comet-fall {
  0% {
    -webkit-transform: translateY(-5%) rotate(-45deg);
            transform: translateY(-5%) rotate(-45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(180vh) rotate(-45deg);
            transform: translateY(180vh) rotate(-45deg);
    opacity: 0;
  }
}

@keyframes comet-fall {
  0% {
    -webkit-transform: translateY(-5%) rotate(-45deg);
            transform: translateY(-5%) rotate(-45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(180vh) rotate(-45deg);
            transform: translateY(180vh) rotate(-45deg);
    opacity: 0;
  }
}
.img-lightening {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.lightening-center,
.lightening-right {
  opacity: 0;
}

/* CENTER */
.lightning-center-active .lightening-center {
  opacity: 1;
}

.lightning-center-active .img-paralax--l4-light-center {
  opacity: 1;
}

.lightning-center-active .img-paralax--l4-d {
  opacity: 0;
}

/* RIGHT */
.lightning-right-active .lightening-right {
  opacity: 1;
}

.lightning-right-active .img-paralax--l4-light-right {
  opacity: 1;
}

.lightning-right-active .img-paralax--l4-d {
  opacity: 0;
}

.first-wrapper.no-comets-animation .img-comet {
  -webkit-animation: none;
          animation: none;
}

.numbers {
  height: 100vh;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
@media (max-width: 610px) {
  .numbers {
    height: 100dvh;
  }
}
.numbers__overlay {
  max-width: 100vw;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  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;
  gap: 62px;
  opacity: 1;
  background: transparent;
  will-change: scroll-position;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 610px) {
  .numbers__overlay {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 24px;
  }
}
@media screen and (max-width: 380px) and (max-height: 760px) {
  .numbers__overlay {
    gap: 12px;
  }
}
.numbers__overlay.section-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}
.numbers__overlay.opacity {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.numbers__back {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/hero.png") top center/cover no-repeat;
  width: 100%;
  height: 100%;
}
.numbers__items {
  margin: 0 auto;
  min-width: 85%;
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 1.15fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  position: relative;
}
@media (max-width: 1440px) {
  .numbers__items {
    gap: 48px;
  }
}
@media (max-width: 1050px) {
  .numbers__items {
    max-width: var(--container-width);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 610px) {
  .numbers__items {
    gap: 32px;
  }
}
@media screen and (max-width: 380px) and (max-height: 760px) {
  .numbers__items {
    gap: 16px;
  }
}
.numbers__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (max-height: 680px) and (max-width: 1600px) {
  .numbers__item {
    gap: 8px;
  }
}
@media (max-width: 1050px) {
  .numbers__item {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
  }
  .numbers__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .numbers__item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .numbers__item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 850px) {
  .numbers__item {
    gap: 0px;
  }
}
.numbers__big-number {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 32px;
  font-weight: 800;
  font-size: clamp(6rem, 4.2115384615rem + 7.9487179487vw, 13.75rem);
  line-height: 75%;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  background: url("../img/hero.png") top center/cover no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@supports (-webkit-touch-callout: none) {
  .numbers__big-number {
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    background-attachment: unset;
    mix-blend-mode: luminosity;
    color: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 1050px) {
  .numbers__big-number {
    font-size: 200px;
    padding-right: 16px;
    background-position: center 40%;
  }
}
@media (max-width: 850px) {
  .numbers__big-number {
    font-size: 144px;
  }
}
@media (max-width: 610px) {
  .numbers__big-number {
    text-align: right;
    font-size: clamp(6rem, 4.5rem + 6.6666666667vw, 12.5rem);
    padding-right: 8px;
    margin-right: -12px;
  }
}
.numbers__label {
  text-align: center;
  color: var(--white);
}
@media (max-width: 1050px) {
  .numbers__label {
    width: 210px;
    text-align: left;
  }
}
@media (max-width: 610px) {
  .numbers__label {
    font-size: 16px;
  }
}
.numbers .base-btn {
  padding-inline: 16px;
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}
@media (max-width: 610px) {
  .numbers .base-btn {
    margin-bottom: clamp(80px, 18vh, 170px);
  }
}
@media screen and (max-width: 380px) and (max-height: 760px) {
  .numbers .base-btn {
    margin-bottom: 100px;
  }
}

.service {
  max-width: var(--container-width);
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  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;
}
@media screen and (min-height: 1000px) and (max-width: 1440px) {
  .service {
    margin: 0 auto;
  }
}
@media screen and (max-height: 1000px) and (max-width: 1440px) {
  .service {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1440px) {
  .service {
    padding-top: var(--section-offset);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 1050px) {
  .service {
    height: 100%;
    max-width: 100vw;
  }
}
.service__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (max-width: 1050px) {
  .service__title.title-l {
    max-width: 85%;
    font-size: 48px;
  }
}
.service__content {
  max-height: clamp(340px, 57vh, 480px);
  height: 100%;
  width: 100%;
}
@media (max-width: 1050px) {
  .service__content {
    max-height: 100%;
  }
}

.service-swiper {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--br-l);
}
@media (max-width: 1050px) {
  .service-swiper {
    display: none;
  }
}
.service-swiper__wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-swiper__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
.service-swiper__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
}
@media screen and (max-height: 760px) {
  .service-swiper__pagination {
    bottom: -8px;
  }
}
@media (max-width: 1050px) {
  .service-swiper__pagination {
    display: none;
  }
}
.service-swiper__pagination-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0.2;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-swiper__pagination-dot.active {
  opacity: 1;
}

.slide {
  max-width: var(--container-width);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(588px, 632px));
  grid-template-rows: clamp(355px, 55vh, 480px);
  gap: 8px;
  border-radius: var(--br-l);
}
@media (max-width: 1050px) {
  .slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.slide__img {
  max-width: 632px;
  width: 100%;
  -webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
  background-color: var(--white);
  border-radius: var(--br-l);
  position: relative;
}
.slide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--br-l);
}
.slide__content {
  padding: 64px;
  -webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
  background-color: var(--white);
  border-radius: var(--br-l);
  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;
}
.slide__body {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  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;
  gap: 24px;
}
.slide__title {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 345px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
}
.slide__title span {
  width: 100%;
}
.slide__title span:nth-child(2) {
  text-align: right;
}
@media (max-width: 1440px) {
  .slide__title span:nth-child(2) {
    text-align: left;
  }
}
.slide__text {
  margin: 0;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: -0.03em;
}
.slide__btn {
  width: 100%;
}
.slide__btn .base-btn {
  width: 189px;
}
.slide__btn .base-btn span {
  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;
}
.slide__btn .base-btn p {
  margin: 0;
}

.slider-img.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-mob {
  width: 100%;
  display: none;
}
@media (max-width: 1050px) {
  .swiper-mob {
    display: block;
  }
  .swiper-mob__wrapper {
    max-height: clamp(550px, 82vh, 800px);
    max-width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 1050px) and (max-width: 610px) {
  .swiper-mob {
    gap: 4px;
  }
}
.swiper-mob__slider {
  max-width: calc(100vw - 32px);
}

.slider-main {
  height: 50%;
  width: 100%;
}
.slider-main__wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider-main__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 60%;
  padding: 48px;
  -webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
  background-color: var(--white);
  border-radius: var(--br-l);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 850px) {
  .slider-main__slide {
    padding: 32px;
  }
}
@media (max-width: 610px) {
  .slider-main__slide {
    padding: 24px;
    width: 66.6%;
  }
}
.slider-main__body {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  height: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 24px;
}
@media (max-width: 1050px) {
  .slider-main__body {
    width: 100%;
  }
}
.slider-main__body .slide__btn {
  margin-top: auto;
  opacity: 0;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.slider-main__body .slide__btn span {
  height: 16px;
}
.slider-main__title {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 610px) {
  .slider-main__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    white-space: nowrap;
  }
  .slider-main__title span {
    width: 100%;
  }
}
.slider-main__text {
  margin: 0;
  max-width: 100%;
  font-size: clamp(0.8125rem, 0.5384615385rem + 1.2179487179vw, 2rem);
  line-height: 133%;
  letter-spacing: -0.03em;
}

.slider-img {
  max-width: calc(100vw - 32px);
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.slider-img__wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider-img__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-height: calc(clamp(550px, 80vh, 800px) / 2 - 8px);
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
  background-color: var(--white);
  border-radius: var(--br-l);
  position: relative;
}
.slider-img__img img {
  max-height: calc(clamp(550px, 80vh, 800px) / 2 - 8px);
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--br-l);
}
.number-slide {
  padding: 14px 16px;
  position: absolute;
  left: 8px;
  top: 8px;
  background-color: var(--dark);
  border-radius: var(--br-m);
  color: var(--white);
}

.together {
  max-width: var(--container-width);
  padding-top: var(--section-offset);
  margin: 0 auto var(--section-offset);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 332px;
  gap: 8px;
  position: relative;
}
@media (max-width: 850px) {
  .together {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}
.together__item {
  background-color: var(--white);
  border-radius: var(--br-l);
  -webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
}
.together__img {
  width: 100%;
  max-height: 100%;
  height: 100%;
  border-radius: var(--br-l);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.together__content {
  height: 100%;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "title ." ". subtitle" "btn .";
  overflow: hidden;
}
@media (max-width: 1050px) {
  .together__content {
    padding: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 610px) {
  .together__content {
    padding: 24px;
  }
}
.together__content-title {
  grid-area: title;
  margin: 0;
}
.together__content-subtitle {
  margin: 0;
  grid-area: subtitle;
  line-height: 133%;
  letter-spacing: -0.03em;
}
@media (max-width: 850px) {
  .together__content-subtitle {
    max-width: 80%;
  }
}
@media (max-width: 610px) {
  .together__content-subtitle {
    max-width: 100%;
  }
}
.together__content-btn {
  grid-area: btn;
  margin-top: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.together__content-btn .base-btn {
  width: 100%;
}
.together__content-btn .base-btn span:first-child {
  width: 20px;
  height: 16px;
}
@media (max-width: 1050px) {
  .together__content-btn .base-btn {
    max-width: 208px;
  }
}
.together__card {
  position: absolute;
  bottom: -4px;
  right: 28px;
  max-width: 280px;
  max-height: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1050px) {
  .together__card {
    display: none;
  }
}
.together__card img {
  width: 280px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  position: relative;
  bottom: 0;
}

.faq {
  margin: 0 auto var(--section-offset);
  max-width: var(--container-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "title qa" "btn qa";
  gap: 48px 16px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .faq {
    gap: 16px;
  }
}
@media (max-width: 850px) {
  .faq {
    max-width: 100%;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "title" "qa" "btn";
    justify-items: center;
    margin: 0 auto;
  }
}
.faq__title {
  grid-area: title;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faq__title span {
  width: 100%;
}
.faq__title span:last-child {
  text-align: right;
}
@media (max-width: 850px) {
  .faq__title {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .faq__title span {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.faq__else-ask {
  grid-area: btn;
}
.faq__else-ask p {
  margin-block: 0 24px;
}
.faq__else-ask .base-btn {
  width: 180px;
}
@media (max-width: 850px) {
  .faq__else-ask {
    margin-right: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
  .faq__else-ask p {
    margin-block: 0;
    font-size: 16px;
  }
  .faq__else-ask .base-btn {
    width: 156px;
  }
}
@media (max-width: 610px) {
  .faq__else-ask {
    gap: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.faq__questions {
  grid-area: qa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 850px) {
  .faq__questions {
    width: 100%;
  }
}
.faq__item {
  width: 100%;
  padding: 32px 28px;
  -webkit-box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.02);
  background-color: var(--white);
  border-radius: var(--br-l);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.faq__item.a1 {
  max-width: 345px;
}
.faq__item.a2 {
  max-width: 525px;
}
.faq__item.a3 {
  max-width: 345px;
}
.faq__item.open {
  -webkit-transition: max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item.open.a1, .faq__item.open.a2, .faq__item.open.a3 {
  max-width: 100%;
}
.faq__item.open .faq__item-body {
  max-width: 92%;
}
@media (hover: hover) {
  .faq__item:hover {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  }
}
@media (hover: none) {
  .faq__item:active {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1050px) {
  .faq__item {
    padding: 24px 16px;
  }
}
@media (max-width: 850px) {
  .faq__item {
    width: calc(100% - 32px);
    padding: 16px;
  }
  .faq__item.a1, .faq__item.a2, .faq__item.a3 {
    max-width: 100%;
  }
}
@media (max-width: 610px) {
  .faq__item {
    width: 100%;
  }
}
.faq__item-head {
  background-color: var(--white);
  border-radius: var(--br-l);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.faq__item-head p {
  font-size: clamp(0.8125rem, 0.7836538462rem + 0.1282051282vw, 0.9375rem);
  margin: 0;
  font-weight: 700;
  line-height: 133%;
  letter-spacing: -0.03em;
}
.faq__item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15px;
  height: 15px;
  position: relative;
}
@media (max-width: 1050px) {
  .faq__item-icon {
    width: 13px;
    height: 13px;
  }
}
.faq__item-icon span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 15px;
  height: 2.1px;
  border-radius: var(--br-l);
  background-color: var(--blue);
}
@media (max-width: 1050px) {
  .faq__item-icon span {
    width: 13px;
    height: 2px;
  }
}
.faq__item-icon span:last-child {
  left: 0.2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.faq__item-body {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  margin-left: 32px;
  margin-top: 0;
  padding-right: 28px;
  opacity: 0;
  -webkit-transition: margin-top 0.7s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), grid-template-rows 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: margin-top 0.7s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), grid-template-rows 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: margin-top 0.7s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), grid-template-rows 0.7s cubic-bezier(0.4, 0, 0.2, 1), -ms-grid-rows 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item-body p {
  width: 100%;
  font-size: clamp(0.8125rem, 0.7836538462rem + 0.1282051282vw, 0.9375rem);
  margin: 0;
  line-height: 133%;
  letter-spacing: -0.03em;
}
@media (max-width: 1050px) {
  .faq__item-body {
    padding-right: 0;
  }
}
@media (max-width: 850px) {
  .faq__item-body {
    width: 100%;
  }
}
.faq__wrapper-body {
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.faq__item.open .faq__item-icon span:last-child {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0;
}
.faq__item.open .faq__item-body {
  grid-template-rows: 1fr;
  margin-top: 32px;
  opacity: 1;
}
@media (max-width: 850px) {
  .faq__item.open .faq__item-body {
    max-width: 94%;
    width: auto;
    margin-top: 16px;
  }
}

.faq__title,
.faq__else-ask,
.faq__item,
.together__item {
  opacity: 1;
  /* ИЗНАЧАЛЬНО видим */
}

.footer {
  margin: 0 auto;
  max-width: var(--container-width);
  width: 100%;
  padding-block: var(--section-padding);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 8px;
  position: relative;
}
@media (max-width: 1050px) {
  .footer {
    grid-template-columns: 0.8fr 1fr 1fr 1fr;
  }
}
@media (max-width: 850px) {
  .footer {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "cl1 cl2" "lg cl3";
    gap: 32px 16px;
    margin: 0;
  }
}
@media (max-width: 610px) {
  .footer {
    grid-template-columns: 1fr 1.3fr;
  }
}
.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.footer__column:not(:nth-child(1)) {
  justify-self: center;
}
@media (max-width: 850px) {
  .footer__column:not(:nth-child(1)) {
    justify-self: start;
    gap: 16px;
  }
}
@media (max-width: 850px) {
  .footer__column:nth-child(1) {
    grid-area: lg;
  }
}
@media (max-width: 850px) {
  .footer__column:nth-child(2) {
    grid-area: cl3;
  }
}
@media (max-width: 850px) {
  .footer__column:nth-child(3) {
    grid-area: cl2;
  }
}
.footer__column:nth-child(4) {
  margin-left: -30%;
}
@media (max-width: 850px) {
  .footer__column:nth-child(4) {
    margin-left: 0;
    grid-area: cl1;
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}
.footer__logo img {
  width: 110px;
  height: 59px;
}
@media (max-width: 850px) {
  .footer__logo img {
    width: 76px;
    height: 40px;
  }
}
.footer__logo span {
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .footer__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 16px;
  }
}
.footer__btns {
  margin-top: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1200px) {
  .footer__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 850px) {
  .footer__btns {
    gap: 12px;
  }
}
@media (max-width: 610px) {
  .footer__btns {
    gap: 8px;
  }
}
.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.footer__links-item {
  font-size: clamp(0.8125rem, 0.7836538462rem + 0.1282051282vw, 0.9375rem);
  cursor: pointer;
}
.footer__links-item a {
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.03em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .footer__links-item a:hover {
    color: var(--blue);
  }
}
@media (hover: none) {
  .footer__links-item a:active {
    color: var(--blue);
  }
}