@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "League Spartan";
  src: url(../../fonts/LeagueSpartan-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #010225;
  --color-blue: #0C0D2E;
  --color-blue-alt: #010225;
  --color-accent: #159BE8;
  --color-light: #FFFFFF;
  --color-toggle: #212250;
  --color-pink: #F95B74;
  --color-violet: #7C44E2;
  --color-border-gray: #282b53;
  --border: 2px solid var(--color-light);
  --border-blue: 2px solid var(--color-accent);
  --border-gray: 2px solid var(var(--color-border-gray));
  --border-radius: 100px;
  --border-radius-small: 1px;
  --font-family-base: "League Spartan", sans-serif;
  --container-width: 1268px;
  --container-padding-x: 10px;
  --section-padding-y: 160px;
  --input-height: 48px;
  --button-height: 48px;
  --transition-duration: .2s;
}

.container {
  max-width: calc(var(--container-padding-x) * 2 + var(--container-width));
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}
.container--no-padding {
  padding-right: 0;
}

.content {
  position: relative;
  overflow-x: hidden;
}

.subtitle {
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.28;
  color: var(--color-light);
  background-color: var(--color-dark);
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-weight: 400;
}

h1 {
  font-size: clamp(44px, 64 / 1440 * 100vw, 64px);
}

h2 {
  font-size: clamp(30px, 40 / 1440 * 100vw, 40px);
}

h3 {
  font-size: clamp(18px, 20 / 1440 * 100vw, 20px);
}

.section {
  padding-block: var(--section-padding-y);
}
.section--hero {
  --sectionHeroPaddingTop: 110px;
  padding-bottom: var(--section-padding-y);
  padding-top: var(--sectionHeroPaddingTop);
}
@media (max-width: 767px) {
  .section--hero {
    --section-padding-y: 80px;
    --sectionHeroPaddingTop: 50px;
  }
}
.section--light-bg {
  background-color: var(--color-blue);
}
.section--hidden-x {
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .section {
    --section-padding-y: 80px;
  }
}

.header {
  padding-block: 14px;
  background-color: var(--color-dark);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
.header__list {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.header__list-item {
  transition-duration: var(--transition-duration);
}
@media (hover: hover) {
  .header__list-item:hover {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .header__list-item:active {
    color: var(--color-accent);
  }
}

.menu-btn {
  display: none;
  padding: 0;
  background-color: transparent;
  border: none;
}

@media (max-width: 1023px) {
  .menu-btn {
    display: flex;
    height: 40px;
    width: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
  }
  .btn-line {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--color-light);
    height: 2px;
    transition: all 0.3s;
    z-index: 50;
  }
  .logo {
    position: relative;
    z-index: 50;
  }
  .btn-line:nth-child(1) {
    top: 0;
  }
  .btn-line:nth-child(2) {
    top: 20px;
  }
  .btn-line:nth-child(3) {
    top: 20px;
  }
  .btn-line:nth-child(4) {
    top: 40px;
  }
  .menu-open .btn-line:nth-child(1) {
    transform: scaleX(0);
  }
  .menu-open .btn-line:nth-child(2) {
    transform: rotate(45deg);
    background-color: var(--color-accent);
  }
  .menu-open .btn-line:nth-child(3) {
    transform: rotate(-45deg);
    background-color: var(--color-accent);
  }
  .menu-open .btn-line:nth-child(4) {
    transform: scaleX(0);
  }
  .menu-open .header__list {
    transform: translateX(0);
  }
  .header__list {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 24px;
    transform: translateX(-100%);
    transition-duration: var(--transition-duration);
    font-size: 18px;
    z-index: 10;
  }
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: transparent;
  border: none;
  font-size: 16px;
  border: var(--border);
  border-radius: var(--border-radius);
  height: var(--button-height);
  padding-inline: 32px;
  color: var(--color-light);
}
@media (hover: hover) {
  .btn:hover {
    border: var(--border-blue);
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .btn:active {
    border: var(--border-blue);
    color: var(--color-accent);
  }
}
.btn-accent {
  background-color: var(--color-accent);
  border: var(--border-blue);
}
@media (hover: hover) {
  .btn-accent:hover {
    background-color: var(--color-light);
    border: var(--border-blue);
  }
}
@media (hover: none) {
  .btn-accent:active {
    background-color: var(--color-light);
    border: var(--border-blue);
  }
}
.btn-accent-dots {
  position: relative;
}
.btn-accent-dots:after {
  content: "";
  position: absolute;
  background-image: url("../../images/dot-frame.png");
  width: 70px;
  height: 70px;
  right: -50px;
  top: -6px;
}

.hero__body {
  display: flex;
  justify-content: flex-start;
  overflow-x: visible;
}
.hero__main {
  max-width: 617px;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .hero__main {
    max-width: 500px;
  }
}
.hero__title {
  max-width: 500px;
  line-height: 76px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .hero__title {
    line-height: 56px;
  }
}
.hero__descr {
  font-size: 12px;
  line-height: 30px;
  margin-bottom: 14px;
}
.hero__list {
  display: flex;
}
.hero__image {
  position: absolute;
  top: -130px;
  right: -200px;
  z-index: 2;
  background-repeat: no-repeat;
}
@media (max-width: 1280px) {
  .hero__image {
    transform: scale(0.7);
    top: -200px;
  }
}
@media (max-width: 1023px) {
  .hero__image {
    transform: scale(0.5);
    opacity: 0.3;
  }
}

.benefits__top {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 40px;
}
.benefits__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
  flex-wrap: wrap;
}

.benefits__list-item {
  max-width: 360px;
  padding-inline: 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.benefits__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1;
  margin-inline: auto;
  background-color: var(--color-dark);
  flex-shrink: 0;
}
.benefits__item-title {
  font-size: 20px;
  line-height: 20px;
}
.benefits__item-descr {
  font-size: 11px;
  line-height: 24px;
}
.benefits__link {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  justify-content: center;
}
.benefits__link a {
  color: var(--color-accent);
}

.launch__top {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 40px;
}
.launch__descr {
  font-size: 12px;
  line-height: 30px;
}
.launch__image {
  max-width: 345px;
  height: auto;
  order: 2;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .launch__image {
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .launch__image {
    display: none;
  }
}

.launch__body {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.launch__list {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
  max-width: 330px;
}
@media (max-width: 1023px) {
  .launch__list {
    row-gap: 60px;
  }
}
@media (max-width: 767px) {
  .launch__list {
    row-gap: 30px;
  }
}
.launch__list-title {
  margin-bottom: 10px;
}
.launch__list-descr {
  font-size: 16px;
  line-height: 24px;
}
.launch__list-left {
  order: 1;
  text-align: right;
}
.launch__list-right {
  order: 3;
}
.launch__list-left-item, .launch__list-right-item {
  position: relative;
  padding-top: 32px;
}
.launch__list-left-item::after, .launch__list-right-item::after {
  position: absolute;
  content: "";
  background-color: var(--color-border-gray);
  width: 20px;
  height: 20px;
}
.launch__list-right-item::after {
  top: 0;
  left: 0;
}
.launch__list-left-item::before, .launch__list-right-item::before {
  position: absolute;
  content: "";
  background-color: var(--color-accent);
  width: 8px;
  height: 8px;
  z-index: 2;
  transform: translate(6px, 6px);
}
.launch__list-right-item::before {
  top: 0;
  left: 0;
}
.launch__list-left-item::before, .launch__list-left-item::after {
  top: 0;
  right: 0;
}
.launch__list-left-item::before {
  right: 12px;
}

.mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.mobile__top {
  width: 620px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .mobile__top {
    width: 320px;
  }
}
@media (max-width: 480px) {
  .mobile__top {
    flex-shrink: 1;
  }
}
.mobile__title {
  margin-bottom: 8px;
  max-width: 450px;
}
.mobile__descr {
  font-size: 12px;
  max-width: 620px;
  margin-bottom: 34px;
}

.mobile__list {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 60px;
}
.mobile__list-item {
  max-width: 310px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.mobile-item__descr {
  max-width: 270px;
  font-size: 11px;
}

.mobile__content {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .mobile__content {
    transform: scale(0.7);
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .mobile__content {
    display: none;
  }
}

.mobile__image {
  max-width: 360px;
  height: auto;
}

.partners {
  display: flex;
  flex-direction: column;
}
.partners__top {
  text-align: center;
  max-width: 630px;
  margin-inline: auto;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .partners__top {
    margin-bottom: 24px;
  }
}

.partners-company__list {
  display: flex;
  -moz-column-gap: 53px;
       column-gap: 53px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .partners-company__list {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .company__list-item {
    transform: scale(0.5);
  }
}

.partners__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 40px;
}
@media (max-width: 1023px) {
  .partners__list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (max-width: 767px) {
  .partners__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.partners__list-item {
  max-width: 300px;
}
.partners__list-stars {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  align-items: center;
  margin-bottom: 26px;
}
.partners__list-person {
  position: relative;
  margin-top: 14px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.partners__list-person-info {
  position: absolute;
  left: 60px;
  top: 14px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 22px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #159BE8;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 20px;
  left: 3px;
  bottom: 2px;
  background-color: var(--color-light);
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--color-toggle);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-toggle);
}

input:checked + .slider:before {
  transform: translateX(21px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 20px;
}

.switch {
  margin-bottom: 44px;
}
.switch-container {
  margin-inline: auto;
  max-width: 320px;
}
.switch__inner {
  display: flex;
}

.switch__text-sale, .switch__right, .switch__text-left {
  position: relative;
}

.switch-text-up {
  position: absolute;
  top: -1px;
  left: 1px;
}

.switch__text-left {
  width: 120px;
  margin-right: 24px;
}

.switch__right {
  margin-left: 16px;
}

.switch__text-right {
  width: 120px;
}

.switch__text-sale {
  color: var(--color-accent);
}

.pricing__top {
  max-width: 630px;
  margin-inline: auto;
  text-align: center;
}
.pricing__title {
  margin-bottom: 8px;
}
.pricing__descr {
  margin-bottom: 44px;
}

.pricing__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1023px) {
  .pricing__list {
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 40px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.pricing__list-item {
  max-width: 390px;
  padding: 60px 24px 40px;
  background-color: var(--color-blue);
  text-align: center;
}
@media (max-width: 1023px) {
  .pricing__list-item {
    max-width: 300px;
    padding: 40px 20px 30px;
  }
}
.pricing__list-item:nth-child(1) {
  border-top: 3px solid var(--color-accent);
}
.pricing__list-item:nth-child(2) {
  border-top: 3px solid var(--color-pink);
}
.pricing__list-item:nth-child(3) {
  border-top: 3px solid var(--color-violet);
}
.pricing__list-title {
  font-size: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .pricing__list-title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .pricing__list-title {
    margin-bottom: 30px;
  }
}
.pricing__list-price {
  font-size: 40px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .pricing__list-price {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .pricing__list-price {
    margin-bottom: 24px;
  }
}
.pricing__list-descr {
  margin-bottom: 32px;
}

.view {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.view__title {
  margin-bottom: 16px;
}
.view__descr {
  margin-bottom: 44px;
}
.view__buttons {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 767px) {
  .view__buttons {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .view::before, .view::after {
    display: none;
  }
}
.view::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 385px;
  border-bottom: 180px solid var(--color-toggle);
  border-right: 180px solid var(--color-toggle, 0.5);
  opacity: 0.4;
  left: -294px;
  top: -160px;
}
.view::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 300px;
  border-top: 180px solid var(--color-toggle);
  border-left: 180px solid var(--color-toggle, 0.5);
  opacity: 0.4;
  right: -294px;
  bottom: -159px;
}

.footer {
  overflow-x: visible;
  padding-block: 60px 45px;
  margin-top: 80px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  margin-bottom: 45px;
}
.footer__soc1al-title {
  font-size: clamp(22px, 30 / 1440 * 100vw, 30px);
}
.footer__soc1al-list {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.footer__copy-list {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__copy-list {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
@media (max-width: 480px) {
  .footer__copy-list {
    flex-direction: column;
  }
}
@media (hover: hover) {
  .footer__copy-item:hover {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .footer__copy-item:active {
    color: var(--color-accent);
  }
}
.footer__copy-item:not(:last-child) {
  padding-right: 10px;
  border-right: 2px solid var(--color-light);
}
@media (max-width: 480px) {
  .footer__copy-item:not(:last-child) {
    padding-right: 0;
    border-right: none;
  }
}

.form {
  padding-top: 15px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
.form__title {
  font-size: 24px;
  margin-bottom: 10px;
}
.form__field {
  margin-bottom: 52px;
}

.field__input {
  border-radius: 1px;
  background-color: var(--color-blue-alt);
  border: none;
  border: 2px solid var(--color-border-gray);
  width: 100%;
  height: 48px;
  padding-inline: 10px;
  color: var(--color-light);
}
.field__input:focus {
  border-color: var(--color-accent);
  outline: none;
}/*# sourceMappingURL=styles.css.map */