@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] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@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: "Inter 24pt";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 24pt";
  src: url("../fonts/Inter-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter 24pt";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #ffffff;
  --color-pink: #ff6bc4;
  --color-grey: #c0ced7;
  --color-purple: #080157;
  --color-black: #000000;
  --gradient: linear-gradient(177deg, #ff6bc4 2.54%, #fede33 97.96%);
  --gradient-reverse: linear-gradient(177deg, #fede33 2.54%, #ff6bc4 97.96%);
  --font-family-base: "Inter", sans-serif;
  --border: 1px solid rgba(192, 206, 215, 0.3);
  --border-radius: 2.5rem;
  --container-width: 64rem;
  --container-padding-x: 2rem;
  --section-padding-y: 1.5rem;
  --section-margin-y: 1.4375rem;
  --transition-duration: 0.2s;
}
@media (width <= 500px) {
  :root {
    --container-padding-x: 1rem;
    --section-padding-y: 1rem;
    --section-margin-y: 0.625rem;
  }
}

.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}
.container--no-padding {
  padding-inline: 0;
}

.section {
  border: var(--border);
  border-radius: var(--border-radius);
  padding-block: var(--section-padding-y);
  margin-bottom: var(--section-margin-y);
  overflow: hidden;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
.section--flower-bg {
  background-image: url("../images/hero/flower_bg.png");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: contain;
}
@media (width <= 900px) {
  .section--flower-bg {
    background-size: 50%;
    background-position: 50% 85%;
  }
}
@media (width <= 650px) {
  .section--flower-bg {
    background-position: 50% 90%;
  }
}
@media (width <= 500px) {
  .section--flower-bg {
    background-size: 300px 253px;
    background-position: 50% 105%;
  }
}
.section--no-border {
  border: none;
  padding-block: 0;
  border-radius: 0;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

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

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.pink {
  color: var(--color-pink);
}

.white {
  color: var(--color-light);
}

body {
  font-family: var(--font-family-base);
  font-weight: 700;
  background-color: var(--color-black);
  color: var(--color-light);
  padding-inline: 0.625rem;
  position: relative;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding-top: 7.8125rem;
}
@media (width <= 500px) {
  body {
    padding-top: 5.625rem;
  }
}

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

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

details > summary::marker {
  display: none;
  content: "";
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
  [open]::details-content {
    height: auto;
  }
  ::details-content {
    transition: height 0.5s ease, content-visibility 0.5s ease allow-discrete;
    height: 0;
    overflow: clip;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.button {
  background: var(--gradient);
  border: none;
  border-radius: var(--border-radius);
  height: 5rem;
  padding: 1.9375rem 1rem;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: var(--color-purple);
  font-weight: 700;
  font-family: var(--font-family-base);
  font-size: clamp(0.875rem, 0.7908496732rem + 0.3267973856vw, 1rem);
  text-align: center;
}
@media (any-hover: hover) {
  .button:hover {
    background: var(--gradient-reverse);
  }
}
@media (any-hover: none) {
  .button:active {
    background: var(--gradient-reverse);
  }
}
@media (width <= 500px) {
  .button {
    max-height: 3.75rem;
  }
}

.header {
  width: calc(100% - 1.25rem);
  height: 100%;
  max-height: 5rem;
  max-width: 64rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  gap: 16px;
  position: fixed;
  left: 50%;
  translate: -50%;
  top: 1.4375rem;
  z-index: 10;
}
@media (width <= 500px) {
  .header {
    top: 0.625rem;
  }
}
.header__button {
  max-width: 11.75rem;
}
@media (width <= 720px) {
  .header__button {
    display: none;
  }
}
.header__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding-right: 1.5rem;
  background: transparent;
  height: 5rem;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
@media (width <= 840px) {
  .header__container {
    padding-inline: 1.5rem;
  }
}
@media (width <= 500px) {
  .header__container {
    max-height: 70px;
  }
}
.header__container-image {
  background-clip: border-box;
}
@media (width <= 840px) {
  .header__container-image {
    display: none;
  }
}
.header__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto;
}
@media (width <= 500px) {
  .header__banner {
    max-height: 1.875rem;
    gap: 0.25rem;
  }
  .header__banner img {
    max-height: 1.875rem;
  }
}
@media (width <= 500px) {
  .header__banner-title img {
    max-height: 0.5rem;
  }
}
.header__banner-subtitle {
  font-weight: 900;
}
@media (width <= 500px) {
  .header__banner-subtitle {
    font-size: 0.625rem;
    line-height: 0.75rem;
  }
}

.slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.slider::-webkit-scrollbar {
  display: none;
}
.slider, .slider * {
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.slider img {
  -webkit-user-drag: none;
  user-drag: none;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  row-gap: 16px;
}
.hero__title, .hero__subtitle {
  font-size: clamp(1.25rem, 0.7450980392rem + 1.9607843137vw, 2rem);
  line-height: 1;
}
.hero__title {
  max-width: 19.25rem;
}
@media (width <= 650px) {
  .hero__title {
    max-width: 14.375rem;
  }
}
@media (width <= 500px) {
  .hero__title {
    max-width: 11.875rem;
  }
}
.hero__subtitle {
  max-width: 17rem;
  position: relative;
}
@media (width <= 650px) {
  .hero__subtitle {
    max-width: 14.375rem;
  }
}
.hero__subtitle::after {
  content: "";
  width: 6.3125rem;
  height: 7.25rem;
  background-image: url(../images/hero/coins.svg);
  position: absolute;
  right: -35%;
  top: -45%;
  animation: bounce 1s ease-in-out infinite;
}
@media (width <= 900px) {
  .hero__subtitle::after {
    right: -31%;
    top: -50%;
  }
}
@media (width <= 650px) {
  .hero__subtitle::after {
    right: -40%;
    top: -98%;
  }
}
@media (width <= 500px) {
  .hero__subtitle::after {
    right: -36%;
    top: -131%;
  }
}
@media (width <= 400px) {
  .hero__subtitle::after {
    right: -32%;
    top: -90%;
  }
}
.hero__reminder {
  color: var(--color-grey);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6658496732rem + 0.3267973856vw, 0.875rem);
}
@media (width <= 650px) {
  .hero__reminder {
    max-width: 22.5rem;
  }
}
.hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  width: 100%;
}
@media (width <= 900px) {
  .hero__container {
    flex-direction: column;
    row-gap: 16px;
  }
}
.hero__promo {
  max-width: 24.375rem;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (width <= 900px) {
  .hero__promo {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.hero__button {
  max-width: 13.6875rem;
}
@media (width <= 400px) {
  .hero__button {
    max-width: 12.1875rem;
  }
}
.hero__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: clamp(0.75rem, 0.6658496732rem + 0.3267973856vw, 0.875rem);
  letter-spacing: 0;
  max-width: 33.75rem;
}
.hero__cards-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  flex-wrap: wrap;
  row-gap: 1rem;
}
@media (width <= 650px) {
  .hero__cards-container {
    flex-wrap: nowrap;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    justify-content: flex-start;
    width: calc(100% + 16px);
    margin-right: -16px;
  }
}
.hero__card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  border: var(--border);
  border-radius: 1.875rem;
  border-color: var(--color-pink);
  max-width: 10.25rem;
  width: 100%;
}
@media (width <= 650px) {
  .hero__card {
    width: 8.75rem !important;
    height: 8.75rem !important;
    flex-shrink: 0;
  }
}
.hero__card-subtitle {
  font-weight: 400;
  color: var(--color-grey);
  max-width: 7.8125rem;
}
.hero__card--wide {
  width: 50%;
  max-width: 16.125rem;
}
.hero__warning {
  margin-right: auto;
  font-size: 0.75rem;
  color: var(--color-grey);
  font-weight: 400;
}
@media (width <= 900px) {
  .hero__warning {
    margin: 0 auto;
  }
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
}
.steps__title {
  font-size: clamp(1rem, 0.6633986928rem + 1.3071895425vw, 1.5rem);
}
.steps__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media (width <= 750px) {
  .steps__container {
    flex-direction: column;
  }
}
.steps__item {
  border: var(--border);
  border-radius: 1.875rem;
  border-color: var(--color-pink);
  padding: 1rem;
  font-size: clamp(0.75rem, 0.6658496732rem + 0.3267973856vw, 0.875rem);
  line-height: 1.21;
  width: 100%;
  max-width: 14.25rem;
}
@media (width <= 750px) {
  .steps__item {
    max-width: 100%;
    max-height: 5.0625rem;
  }
}
.steps__item-title {
  font-size: clamp(0.75rem, 0.6658496732rem + 0.3267973856vw, 0.875rem);
  margin-bottom: 0.75rem;
}
@media (width <= 750px) {
  .steps__item-title {
    margin-bottom: 0.25rem;
  }
}
.steps__item-subtitle {
  color: var(--color-grey);
  font-weight: 400;
}
.steps__button {
  max-width: 10.625rem;
}
@media (width <= 400px) {
  .steps__button {
    max-width: 10rem;
  }
}

.advantages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (width <= 750px) {
  .advantages {
    flex-direction: column;
  }
}
.advantages__image {
  margin-bottom: 0.625rem;
}
.advantages__item {
  border: var(--border);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
  font-size: clamp(0.75rem, 0.6658496732rem + 0.3267973856vw, 0.875rem);
  line-height: 1.21;
  width: 100%;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
@media (width <= 750px) {
  .advantages__item {
    max-height: 8.4375rem;
    padding: 1rem;
  }
}
.advantages__item-title {
  font-size: clamp(0.75rem, 0.6658496732rem + 0.3267973856vw, 0.875rem);
}
.advantages__item-subtitle {
  color: var(--color-grey);
  font-weight: 400;
  max-width: 12.25rem;
}
@media (width <= 750px) {
  .advantages__item-subtitle {
    max-width: 100%;
  }
}

.faq {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
}
.faq__title {
  font-size: clamp(1rem, 0.6633986928rem + 1.3071895425vw, 1.5rem);
}
.faq__container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
}
.faq__accordion {
  width: 100%;
  border: var(--border);
  border-radius: 1.875rem;
  border-color: var(--color-pink);
  align-items: center;
  line-height: 1.0625rem;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (width <= 500px) {
  .faq__accordion {
    padding: 1rem;
  }
}
.faq__accordion[open] .faq__accordion-title {
  color: var(--color-light);
}
.faq__accordion[open] .faq__accordion-indicator {
  background-image: url("../images/accordion/close.svg");
}
.faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.5rem;
  padding-inline: 1rem;
  cursor: pointer;
}
.faq__accordion-title {
  font-size: 0.875rem;
  color: var(--color-grey);
  line-height: 1.0625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq__accordion-body p {
  font-weight: 400;
  color: var(--color-grey);
  line-height: normal;
  padding: 0 1rem 1rem 1rem;
}
.faq__accordion-body:nth-child(2), .faq__accordion-body:nth-child(3) {
  line-height: 21px;
}
.faq__accordion-indicator {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/accordion/open.svg");
}

.footer {
  padding-bottom: var(--section-padding-y);
}
.footer__text {
  font-size: clamp(0.625rem, 0.5408496732rem + 0.3267973856vw, 0.75rem);
  color: var(--color-grey);
  max-width: 485px;
  margin: 0 auto;
  font-weight: 400;
  text-align: center;
}/*# sourceMappingURL=main.css.map */