/* Fonts */

@font-face {
  font-weight: 800;
  font-style: normal;
  font-family: 'SF Pro Display';
  src: url(/fonts/sf-pro-display-heavy-webfont.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-weight: 700;
  font-style: normal;
  font-family: 'SF Pro Display';
  src: url(/fonts/sf-pro-display-bold-webfont.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-weight: 600;
  font-style: normal;
  font-family: 'SF Pro Display';
  src: url(/fonts/sf-pro-display-semibold-webfont.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-weight: 500;
  font-style: normal;
  font-family: 'SF Pro Display';
  src: url(/fonts/sf-pro-display-medium-webfont.woff2) format('woff2');
  font-display: swap;
}

@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: 'SF Pro Display';
  src: url(/fonts/sf-pro-display-regular-webfont.woff2) format('woff2');
  font-display: swap;
}

/* Reset */

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

button:focus-visible:not(:disabled),
a:focus-visible:not(:disabled) {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  transition: outline 0s;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Root */

:root {
  /* colors */
  --color-accent: #16e;
  --color-bg-primary: #fff;
  --color-text-primary: #000;
  --gradient: linear-gradient(180deg, #023046 0%, #04293a 99.97%);

  /* text */
  --text-font-main: 'SF Pro Display', sans-serif;
  --text-font-accent: serif;
  --text-size-main: 16px;
  --text-lh-main: normal;

  /* other */
  --container-size-main: 375px;
  --container-padding: 16px;
}

/* visually-hidden */

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

/* no-scroll */

.no-scroll {
  overflow: hidden;
}

/* container */

.container {
  width: 100%;
  max-width: calc(var(--container-size-main) + var(--container-padding) * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

.container--sm {
  --container-padding: 28px;
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}

/* headings */

.entry-content > h1,
.entry-content > h2,
.entry-content > h3,
.entry-content > h4,
.entry-content > h5,
.entry-content > h6 {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.entry-content > h1 {
  font-size: 32px;
}

.entry-content > h2 {
  font-size: 28px;
}

.entry-content > h3 {
  font-size: 22px;
}

.entry-content > h4 {
  font-size: 18px;
}

/* links */

.entry-content a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: all .25s ease;
}

@media (hover: hover) {
  .entry-content a:hover {
    text-decoration: none;
  }
}

/* paragraphs */

.entry-content p + * {
  margin-top: 30px;
}

.entry-content p + p {
  margin-top: 15px;
}

/* blockquote */

.entry-content blockquote {
  position: relative;
  margin: 30px 0;
  padding: 0;
  padding-left: 30px;
  border-left: 2px solid var(--color-accent);
}

/* image */

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

/* lists */

.entry-content ul,
.entry-content ol {
  margin: 30px 0;
  padding-left: 15px;
}

.entry-content ul li::marker {
  color: var(--color-accent);
}

.entry-content li:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .entry-content li:not(:last-child) {
    margin-bottom: 12px;
  }
}

/* hr */

.entry-content hr {
  color: #dadada;
}

/* Page */

.page,
.page__body {
  height: 100%;
}

.page {
  scroll-behavior: smooth;
}

.page__body {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-size: var(--text-size-main);
  font-family: var(--text-font-main);
  line-height: normal;
  text-rendering: optimizespeed;
}

/* page-grid */

.page-grid {
  display: grid;
  gap: 50px;
  align-content: start;
  align-items: start;
}

.page-grid>* {
  min-width: 0;
  min-height: 0;
}

.mt-sm {
  margin-top: 36px;
}

.mt-xl {
  margin-top: 50px;
}

.mb-sm {
  margin-bottom: 38px;
}

.mb-xl {
  margin-bottom: 50px;
}

/* Wrapper */

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

/* logo */

.logo {
  display: inline-flex;
  align-items: center;
}

.logo__img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* button */

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  padding: 20px 22px;
  border: none;
  border-radius: 10px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  font-family: var(--text-font-main);
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  isolation: isolate;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.button:disabled {
  background: #d2d2d2;
  color: rgb(0 0 0 / 50%);
  box-shadow: none;
  cursor: default;
}

.button:focus-visible:not(:disabled) {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.button:focus:not(:focus-visible) {
  outline: none;
}

/* button--sm */

.button--sm {
  min-width: 126px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 16px;
}

/* button--shadow */

.button--shadow {
  box-shadow: 0 0 12px 0 rgba(9, 144, 212, 0.46);
}

@media (hover: hover) {
  .button--shadow:hover {
    box-shadow: none;
  }
}

/* button-ext */

.button-ext {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-ext__subtitle {
  color: #a8a8a8;
  font-size: 9px;
  line-height: 156%;
  text-align: center;
}

.button-ext__subtitle svg {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

/* icon-button */

.icon-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.icon-button__icon {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

@media (hover: hover) {
  .icon-button:hover {
    color: var(--color-accent);
  }
}

/* hamburger */

.hamburger {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 14px;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  opacity: 1;
  cursor: pointer;
  transition: all .25s ease;
}

.hamburger__center,
.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 15px;
  background-color: currentColor;
}

.hamburger__center {
  top: 50%;
  transition-delay: .3s;
  transform: translateY(-50%);
}

.hamburger::before {
  content: '';
  top: 0;
  transition: transform .3s ease, top .3s .3s ease;
}

.hamburger::after {
  content: '';
  bottom: 0;
  transition: transform .3s ease, bottom .3s .3s ease;
}

.hamburger:active,
.hamburger:focus {
  opacity: 1;
}

.hamburger.is-active .hamburger__center {
  opacity: 0;
}

.hamburger.is-active::before {
  top: 50%;
  margin-top: -2px;
  transition: top .3s ease, transform .3s .3s ease;
  transform: rotate(45deg);
}

.hamburger.is-active::after {
  bottom: 50%;
  transition: bottom .3s ease, transform .3s .3s ease;
  transform: rotate(-45deg);
}

/* progress */

.progress {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 3px;
  background-color: #ccc;
}

.progress__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  max-width: 100%;
  border-radius: inherit;
  background-color: var(--color-accent);
  transition: all .3s ease-in-out;
}

/* accordion */

.accordion__item {
  overflow: hidden;
}

.accordion__item.is-active .accordion__block {
  grid-template-rows: 1fr;
  height: auto;
  opacity: 1;
}

.accordion__block {
  display: grid;
  grid-template-rows: 0fr;
  height: 0;
  opacity: 0;
  transition: all .3s ease;
}

.accordion__block > * {
  min-height: 0;
}

/* faq */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  padding: 11px 12px;
  border-radius: 16px;
  background-color: #fff;
}

.faq-item__toggle {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
  width: 100%;
  padding: 0;
  padding: 9px 30px 9px 0;
  border: none;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: 88%;
  text-align: left;
  cursor: pointer;
}

.faq-item__toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-text-primary);
  transition: all .25s ease;
  transform: translateY(-50%);
  transform-origin: center;
  -webkit-mask-image: url(../images/plus-icon.svg);
  mask-image: url(../images/plus-icon.svg);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 20px;
  mask-size: 20px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.faq-item__toggle.is-active::before {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item__block .entry-content {
  font-size: 14px;
  opacity: 0.6;
}

/* achievement-badge */

.achievement-badge {
  position: relative;
  display: flex;
  align-items: center;
  width: 303px;
  min-height: 90px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 52px;
  padding-left: 52px;
}

.achievement-badge::before,
.achievement-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 90px;
  background: url(../images/branch.svg) no-repeat 0 0/contain;
  transform: translateY(-50%);
}

.achievement-badge::before {
  left: 0;
}

.achievement-badge::after {
  right: 0;
  transform: scaleX(-1) translateY(-50%);
}

.achievement-badge__title {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  text-align: center;
}

.achievement-badge__title-sec {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}

.achievement-badge__title-main {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}

/* feature-item */

.feature-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  color: var(--color-text-primary);
}

.feature-item__icon {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

.feature-item__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
}

.feature-item__descr {
  max-width: 270px;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.2;
}

/* feature-item--shadow */

.feature-item--shadow {
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
}

/* feature-item--inline */

.feature-item--inline .feature-item__title {
  font-size: 20px;
}

/* feature-item--dark */

.feature-item--dark {
  background-color: #1f283d;
  color: #fff;
}

.feature-item--dark .feature-item__descr {
  color: #6d768d
}

/* feature-item--big */

.feature-item--big {
  gap: 12px;
  align-items: flex-start;
  padding: 18px 16px;
}

/* header-menu */

.header-menu.is-active {
  background-color: rgb(0 0 0 / 90%);
}

.header-menu.is-active .header-menu__inner {
  transform: translateX(0) scaleX(1);
}

.header-menu.is-closed {
  display: none;
}

.header-menu {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
  background-color: transparent;
  transition: all .25s ease;
}

.header-menu__inner {
  overflow-y: auto;
  width: 272px;
  height: 100%;
  margin-left: auto;
  padding: 20px 28px;
  background-color: #eee;
  color: #000;
  transition: transform .4s ease;
  transform: translateX(100%) scaleX(.3);
}

.header-menu__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}

.header-menu__close svg {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

.header-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

.header-menu__list a {
  color: inherit;
  text-decoration: none;
  transition: all .25s ease
}

@media (hover: hover) {
  .header-menu__list a:hover {
    text-decoration: underline;
  }
}

/* header */

.header {
  padding: 28px 0 20px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.header__inner {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-right: 45px;
}

.header__hamburger {
  position: absolute;
  top: 50%;
  right: var(--container-padding);
  transform: translateY(-50%);
}

.header__button-ext .button-ext__subtitle {
  position: absolute;
  top: 100%;

  display: flex;
  gap: 5px;
  align-items: center;
}

.header__button-ext span > svg {
  margin-top: 2px;
}

/* header--bg */

.header--bg {
  background: #141925;
  color: #fff;
}

/* header-nav */

.header-nav {
  padding-top: 34px;
  padding-bottom: 8px;
}

/* footer */

.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 28px;
}

.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 12px;
}

.footer__menu-list a {
  color: #a8a8a8;
  text-decoration: underline;
  transition: all .25s ease;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none
}

@media (hover: hover) {
  .footer__menu-list a:hover {
    text-decoration: none;
  }
}

/* section */

.section {
  position: relative;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
  text-align: center;
}

.section__footer {
  margin-top: 24px;
}

.section__actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section__actions>* {
  width: 100%;
  max-width: 323px;
  margin-inline: auto;
}

/* section--bg */

.section--bg--accent {
  padding-top: 30px;
  padding-bottom: 60px;
  background: #4383ea;
  color: #fff;
}

.section--bg--accent .smalltext {
  color: #fff;
  opacity: .8;
}

.section--bg--grey {
  padding-top: 30px;
  padding-bottom: 42px;
  background: #ececec;
}

.section--bg--dark {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #141925;
  color: #fff;
}

.section--bg--pb {
  padding-bottom: 70px;
}

/* section-title */

.section-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 113%;
  text-wrap: balance;
}

.section-title--sm {
  font-size: 28px;
  line-height: 1.18;
}

/* section-descr */

.section-descr {
  line-height: 131%;
  opacity: .5;
}

/* hero */

.hero {
  overflow: hidden;
}

.hero__main-wrapper {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.hero__main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(var(--container-size-main) + var(--container-padding) *2);
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  text-align: center;
  isolation: isolate;
}

.hero__img-wrapper {
  position: relative;
  margin-top: 20px;
}

.hero__img-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 50.96%, #fff 100%);
  opacity: 0.9;
}

.hero__img {
  position: relative;
  z-index: -2;
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

.hero__title {
  max-width: 348px;
  font-weight: 600;
  font-size: 32px;
  line-height: 113%;
}

.hero__descr {
  max-width: 332px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.3;
  opacity: .5;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #fff 0%, #ececec 43.34%, #ececec 100%);
}

.hero__actions>* {
  flex-grow: 1;
  width: 100%;
  max-width: 303px;
}

.hero__actions .hero__smalltext {
  text-align: center;
}

.hero__smalltext {
  color: #a8a8a8;
  font-size: 12px;
  line-height: 117%;
}

.hero__features {
  margin-top: 14px;
}

@media (max-width: 576px) {
  .hero__main {
    max-width: 100%;
  }
}

/* panel-wrapper */

.panel-wrapper .smalltext {
  margin-top: 12px;
  text-align: center;
}

/* panel */

.panel {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  color: var(--color-text-primary);
}

/* smalltext */

.smalltext {
  color: #a8a8a8;
  font-size: 12px;
  line-height: 117%;
}

/* cards-list-2 */

.cards-list-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* cards-list-1 */

.cards-list-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

/* service-card */

.service-card {
  min-height: 87px;
  border-radius: 12px;
  background: #f5f5f5;
  color: var(--color-text-primary);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}

.service-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  overflow: hidden;
  height: 100%;
  padding: 12px 10px;
  border-radius: inherit
}

.service-card__header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.service-card__title {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}

.service-card__icon-wrapper {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 36px;
  height: 36px;
  isolation: isolate;
}

.service-card__icon {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

.service-card__descr {
  font-size: 14px;
  line-height: 1.2;
}

/* service-card */

.service-card--wide {
  grid-column: 1/-1;
}

/* features-list */

.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* features-list--striped */

.features-list--striped .feature-item {
  background: rgba(43, 77, 130, 0.2);
}

.features-list--striped .feature-item:nth-child(2n) {
  background: rgba(13, 124, 79, 0.2);
}

/* notification-example */

.notification-example {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--container-size-main);
  height: calc(100lvh + 130px);
  max-height: 900px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.notification-example::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #000;
  opacity: .4;
}

@media (max-width: 576px) {
  .notification-example {
    max-width: 100%;
  }
}

/*  notification*/

.notification {
  width: 270px;
  padding-top: 18px;
  border: 0.35px solid #999;
  border-radius: 12px;
  background-color: #fff;
  color: #000;
}

.notification__content {
  padding-inline: 6px;
  text-align: center;
}

.notification__title {
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 15px;
}

.notification__text {
  font-size: 14px;
}

.notification__text span {
  display: block;
  margin-top: 5px;
}

.notification__actions {
  margin-top: 30px;
}

.notification__button {
  display: block;
  padding: 9px 12px;
  border: none;
  border-top: 1.04px solid #C4C4C4;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.notification__button--primary {
  color: #007aff;
  font-weight: 700;
}

.notification__button--secondary {
  color: #999;
}

/* slider */

.slider__nav {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* slider-pagination */

.slider-pagination.swiper-pagination {
  position: static;
  display: flex;
  gap: 5px;
  width: auto;
  padding: 4px 6px;
  border-radius: 12px;
  background-color: #35353e;
}

.slider-pagination.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  background-color: rgba(190, 214, 255, 0.56);
  outline-offset: 2px;
  opacity: 1;
}

.slider-pagination.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
}

/* review-card */

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 134px;
  border: 1px solid #3a4147;
  border-radius: 25px;
  background: linear-gradient(180deg, #20272f 0%, #141414 100%);
  box-shadow: 1px 2px 4px 0 rgba(19, 19, 19, 0.25);
}

.review-card__inner {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  overflow: hidden;
  height: 100%;
  padding: 20px 16px;
  border-radius: inherit;
  isolation: isolate;
}

.review-card__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 264px;
  height: 174px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

.review-card__header {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.review-card__header-main {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2px 6px;
  align-items: center;
}

.review-card__img {
  flex-shrink: 0;
  grid-row: span 2;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

.review-card__name {
  font-size: 12px;
  line-height: 133%;
}

.review-card__date {
  font-size: 12px;
  line-height: 133%;
  opacity: .5;
}

.review-card__stars {
  display: block;
  max-width: 100%;
  height: auto;
}

.review-card__content {
  margin-top: 15px;
  font-size: 14px;
  line-height: 121%;
}

/* review-card--grey */

.review-card--grey .review-card__inner::before {
  right: 0;
  left: unset;
  width: 265px;
  height: 106px;
  background-image: url(../images/r-bg-grey-1.svg);
  transform: none;
}

/* review-card--pink */

.review-card--pink .review-card__inner::before {
  right: 0;
  left: unset;
  width: 265px;
  height: 106px;
  background-image: url(../images/r-bg-pink-1.svg);
  transform: none;
}

/* review-card--blue */

.review-card--blue .review-card__inner::before {
  right: 0;
  left: unset;
  width: 265px;
  height: 106px;
  background-image: url(../images/r-bg-blue-1.svg);
  transform: none;
}

/* review-card--green */

.review-card--green .review-card__inner::before {
  right: 0;
  left: unset;
  width: 265px;
  height: 106px;
  background-image: url(../images/r-bg-green-1.svg);
  transform: none;
}

/* review-card--orange */

.review-card--orange .review-card__inner::before {
  right: 0;
  left: unset;
  width: 265px;
  height: 106px;
  background-image: url(../images/r-bg-orange-1.svg);
  transform: none;
}

/* reviews-slider */

.reviews-slider-wrapper {
  max-width: var(--container-size-main);
  margin-right: auto;
  margin-left: auto;
}

.reviews-slider .swiper-slide {
  width: 295px !important;
}

@media (max-width: 576px) {
  .reviews-slider-wrapper {
    max-width: 100%;
  }
}

/* steps */

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps__item {
  position: relative;
}

.steps__item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 22px;
  z-index: -1;
  width: 2px;
  height: calc(100% + 24px);
  border-left: 1px solid #4383EA;
  opacity: .5;
  transform: translateX(-50%);
}

/* steps-item */

.steps-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.steps-item__num {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: radial-gradient(57.54% 57.54% at 52.38% 47.62%, #69a0f9 0%, #4689f4 100%);
  color: #fff;
  font-size: 20px;
}

.steps-item__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
}

.steps-item__descr {
  font-size: 12px;
  line-height: 133%;
  opacity: .5;
}

/* appstore-rate */

.appstore-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 35px;
  border-radius: 16px;
  background: linear-gradient(137deg, rgba(103, 176, 255, 0.8) 0%, rgba(0, 122, 255, 0.8) 100%);
  color: #fff;
  box-shadow: 0 1px 30px 0 rgba(69, 42, 124, 0.1);
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
}

.appstore-rate__title {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.appstore-rate__title-icon {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

.appstore-rate__subtitle {
  margin-top: 16px;
  font-weight: 500;
  opacity: .5;
}

.appstore-rate__rating {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
}

.appstore-rate__rating-stars {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

/* scan */

.scan {
  padding-top: 32px;
  padding-bottom: 72px;
}

.scan__media {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.scan__video {
  max-width: 100%;
  height: auto;
}

.scan__img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

.scan__content {
  margin-top: 20px;
}

.scan__title {
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

/* scan-list */

.scan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}

.scan-list__item {
  display: flex;
  gap: 8px;
  align-items: center
}

.scan-list__item::before {
  content: '';
  width: 28px;
  height: 28px;
  background-image: url(../images/checkbox-o.svg);
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.scan-list__item.is-checked::before {
  background-image: url(../images/checkbox-i.svg);
}

.scan__progress {
  max-width: 303px;
  margin: 50px auto 0;
}

/* modal  */

.modal {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

.hystmodal::before {
  background-color: rgb(0 0 0 / 90%);
}

.hystmodal--active::before {
  opacity: 1;
}

/* modal__body */

.modal__body {
  flex-grow: 0;
  flex-shrink: 0;
  width: 313px;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  padding: 20px 12px;
  border-radius: 16px;
  background: linear-gradient(123deg, rgba(207, 207, 207, 0.35) 0%, rgba(171, 170, 170, 0.35) 100%);
  box-shadow: 0 1px 30px 0 rgba(69, 42, 124, 0.1);
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
}

.modal__header {
  text-align: center;
}

.modal__header--left {
  text-align: left;
}

.modal__header+* {
  margin-top: 22px;
}

.modal__title {
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 25px;
}

.modal__actions>* {
  width: 100%;
  max-width: 272px;
}

/* modal--success */

.modal--success .modal__body {
  padding-top: 102px;
  padding-bottom: 40px;
}

.modal--success .modal__body::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 68px;
  height: 68px;
  background: url(../images/success.svg) no-repeat 0 0/contain;
  transform: translateX(-50%);
}

.modal__content {
  text-align: center;
}

/* modal--complete */

.modal--complete .modal__body {
  padding-top: 102px;
}

.modal--complete .modal__body::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 68px;
  height: 68px;
  background: url(../images/complete.svg) no-repeat 0 0/contain;
  transform: translateX(-50%);
}

.attr-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.attr-list__row {
  display: grid;
  grid-template-areas: "term separator val";
  grid-template-columns: auto 1fr auto;
  gap: 4px;
  align-items: flex-end;
}

.attr-list__term {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: term;
  font-weight: 500;
}

.attr-list__sep {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: separator;
  height: 5px;
  margin-right: 2px;
  background-image: url(../images/dotted.svg);
  background-position: 0 0;
  background-size: 76px;
  background-repeat: repeat-x;
  opacity: .5;
}

.attr-list__val {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: val;
  line-height: 1.25;
}

.attr-list__val span {
  color: #388ef1;
}

.attr-list__val--hide {
  filter: blur(10px);
}

/* form */

.form-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* form-row */

.form-row {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.form-row>* {
  flex-grow: 1;
}

@media (max-width: 998px) {
  .form-row {
    flex-direction: column;
  }
}

/* form-input-wrapper */

.form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* form-label */

.form-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

/* form-field */

.form-field {
  width: 100%;
  padding: 17.5px 12px;
  border: 1px solid rgba(160, 184, 174, 0.5);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  font-family: inherit;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: all .25s ease;
}

.form-field:focus {
  border-color: rgba(160, 184, 174, 0.5);
}

.form-field.is-error,
.form-field.form-field:user-invalid {
  border-color: #e3333f;
}

.form-field::-moz-placeholder {
  color: rgb(255 255 255 / 50%);
}

.form-field::placeholder {
  color: rgb(255 255 255 / 50%);
}

/* form-textarea */

.form-textarea {
  width: 100%;
  height: 108px;
  resize: none;
}

/* form-actions */

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.form-actions>.button {
  width: 100%;
}

/* form-error */

.form-error {
  display: none;
  color: #e3333f;
  font-size: 10px;
  opacity: .5;
}

.has-error .form-error.is-active {
  display: block;
}

/* form-variants */

.form-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-variants__item {
  padding: 12px 14px;
  border: 1px solid rgba(160, 184, 174, 0.5);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  outline: none;
  font-weight: 400;
  font-size: 12px;
  font-family: inherit;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: all .25s ease;
}

.form-variants__item:disabled {
  color: rgb(255 255 255 / 50%);
}

/* form-link */

.form-link {
  color: inherit;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

@media (hover: hover) {
  .form-link:hover {
    text-decoration: none;
  }
}

/* form-radio--box */

/* form-radio */

.form-radio--box {
  position: relative;
  display: block;
  padding: 18px 16px;
  border: 2px solid #d9d9d9;
  border-radius: 14px;
  transition: all .25s ease;
}

.form-radio--box .form-radio__input {
  position: absolute;
  top: 30px;
  left: 11px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0 none;
  white-space: nowrap;
  clip-path: inset(100%);
}

.form-radio--box>span {
  display: inline-block;
  padding-left: 32px;
}

.form-radio--box>span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 20px;
  border: 1.25px solid #d9d9d9;
  border-radius: 50%;
  background-position: center calc(50% + 1px);
  background-size: 12px;
  background-repeat: no-repeat;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.form-radio--box .form-radio__input:checked+span::before {
  border-color: var(--color-accent);
  background-image: url(../images/checkbox-icon.svg);
}

.form-radio--box .form-radio__input:focus-visible:not(:disabled)+span::before {
  outline: 2px solid var(--color-box);
  outline-offset: 2px;
}

.form-radio--box:has(.form-radio__input:checked) {
  border-color: var(--color-accent);
}

/* order */

.order__bn {
  gap: 6px;
  justify-content: center;
  margin-bottom: 24px;
  padding: 16px 16px;
  border-radius: 16px;
  background: linear-gradient(123deg, #565458 0%, #2d2c31 100%);
  box-shadow: 0 1px 30px 0 rgba(69, 42, 124, 0.1);
  font-weight: 400;
  text-align: center;
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
}

.order__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.14;
  text-wrap: balance;
}

.order__descr {
  opacity: .5;
}

.order__form-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 295px;
  margin-inline: auto;
  margin-bottom: 12px;
  text-align: center;
}

.order__form-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order__form-features .feature-item {
  gap: 6px;
  padding: 12px 8px;
  font-size: 12px;
  letter-spacing: -0.02em;
}

/* check-list */

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.check-list li {
  position: relative;
  display: flex;
  gap: 6px;
  line-height: 1.2;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url(../images/check-sq.svg) no-repeat 0 0/contain;
}

/* icon-list */

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.icon-list__item {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  text-wrap: pretty;
}

/* icon-list--xl */

.icon-list--xl {
  font-size: 20px;
}

/* icon-list--check */

.icon-list--check .icon-list__item::before {
  content: '';
  width: 42px;
  height: 42px;
  background: url(../images/check-sq.svg) no-repeat 0 0/contain;
}

/* more-links */

.more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.more-links a {
  color: #000;
  font-size: 16px;
  line-height: 88%;
  text-decoration: underline;
  opacity: 0.5;
  transition: all .25s ease;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none
}

@media (hover: hover) {
  .more-links a:hover {
    text-decoration: none;
  }
}

/* more-links--light */

.more-links--light a {
  font-size: 12px;
  line-height: 117%;
  text-decoration: none;
}

@media (hover: hover) {
  .more-links--light a {
    text-decoration: underline;
  }
}

/* color-box */

.color-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 16px;
  border-radius: 16px;
  background-color: #383f5a;
  box-shadow: inset 0 0 1.5px #c8d4dd;
}

.color-box--center {
  text-align: center;
}

/* control-block */

.control-block {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
}

.control-block img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}

.control-block__status {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 10px;
  background: rgba(17, 184, 64, 0.12);
  color: #11b840;
  font-weight: 600;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: -0.03em;
}

/* risk-card */

.risk-card {
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
  color: #000;
}

.risk-card__title {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 13px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}

.risk-card__title::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/error-icon.svg) no-repeat 0 0/contain;
}

.risk-card__title::after {
  content: '';
  position: absolute;
  top: 30%;
  left: -20px;
  width: 38px;
  height: 47px;
  background: url(../images/arrow.svg) no-repeat 0 0/contain;
}

.risk-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 245px;
  font-size: 14px;
}

.risk-card__content b {
  font-weight: 600;
}

/* recommendation-card */

.recommendation-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
}

.recommendation-card__icon {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

.recommendation-card__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
}

.recommendation-card__descr {
  max-width: 270px;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.2;
}

/* quiz-announce */

.quiz-announce__main {
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: var(--color-accent);
  color: #fff;
}

.quiz-announce__main-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quiz-announce__title {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.quiz-announce__features {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  color: var(--color-text-primary);
}

.quiz-announce__img-wrapper {
  position: relative;
  margin-inline: auto;
  isolation: isolate;
}

.quiz-announce__img-wrapper::before {
  content: '';
  position: absolute;
  top: 32%;
  left: -91px;
  z-index: -1;
  width: 190px;
  height: 190px;

  background: url(../images/arrow-white.svg) no-repeat 0 0/contain;
}

.quiz-announce__img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.quiz-announce__footer {
  gap: 20px;
  margin-top: 35px;
  text-align: center;
}

/* quiz */

.quiz {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  min-height: 100dvh;
  isolation: isolate;
}

.quiz::before,
.quiz::after {
  content: '';
  position: absolute;
  z-index: -1;
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.quiz__nav {
  padding-top: 32px;
  padding-bottom: 12px;
}

.quiz__main {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding-bottom: 30px;
}

.quiz__header-nav {
  margin-top: 44px;
}

.quiz__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
}

.quiz__result {
  display: none;
}

.quiz.is-loading .quiz-loader {
  display: grid;
}

.quiz.is-done .quiz__result {
  display: block;
}

.quiz.is-done .quiz__nav {
  display: none;
}

.quiz.is-done .quiz__main {
  display: none;
}

/* @media (min-width: 998px) {
  .quiz {
    height: auto;
    min-height: 776px;
  }
}

@media (min-height: 850px) {
  .quiz {
    min-height: 850px;
  }
} */

/* quiz-nav */

.quiz-nav {
  position: relative;
  padding-bottom: 16px;
}

.quiz-nav__title {
  font-size: 16px;
  opacity: .5;
}

.quiz-nav__position {
  margin-top: 18px;
  color: #808080;
}

.quiz-nav__position-title {
  color: var(--color-text-primary);
  font-weight: 500;
}

.quiz-nav__progress {
  position: absolute;
  bottom: 0;
  left: calc(var(--container-padding) * -1);
  width: calc(100% + var(--container-padding) * 2);
}

/* quiz__form */

.quiz__form {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}

/* quiz__step */

.quiz__step {
  display: none;
  flex-grow: 1;
  flex-direction: column;
  height: 100%;
  padding-top: 40px;
}

.quiz__step.is-active {
  display: flex;
}

/* .quiz.is-loading */

.quiz-loader {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: none;
  place-content: center;
  background: rgba(35, 35, 35, 0.9);
  color: #fff;
}

.quiz-loader__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 153px;
  padding: 10px 20px 20px;
  border-radius: 20px;
  background: #252525;
  text-align: center;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.quiz-loader__loader {
  width: 74px;
}

/* quiz-step */

.quiz-step {
  border: 0;
}

.quiz-step__inner {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}

.quiz-step__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 150px;
  text-align: center;
}

.quiz-step__content {
  flex-grow: 1;
}

.quiz-step__footer {
  margin-top: auto;
}

.quiz-step__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.quiz-step__actions>* {
  flex-grow: 1;
  max-width: 323px;
}

.quiz-step__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 315px;
  margin-inline: auto;
}

/* quiz-result */

.quiz-result {
  padding-bottom: 30px;
}

.quiz-result__header {
  margin-bottom: 17px;
  padding-top: 40px;
  text-align: center;
}

.quiz-result__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 113%;
}

.quiz-result__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quiz-result__item-header {
  margin-bottom: 12px;
}

.quiz-result__item-title {
  font-weight: 500;
  font-size: 20px;
}

.quiz-result__item-descr {
  margin-top: 8px;
  opacity: .5;
}

.quiz-result__item--bg {
  padding-top: 16px;
  padding-bottom: 20px;
  background-color: var(--color-accent);
  color: #fff;
}

.quiz-result__score {
  display: inline-block;
  padding: 14px;
  border-radius: 16px;
  background-color: #fff;
  color: var(--color-text-primary);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  font-size: 20px;
}

.quiz-result__score span {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 24px;
}

.quiz-result__footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 27px;
  text-align: center;
}

.quiz-result__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.quiz-result__actions .button {
  width: 100%;
}

.quiz-result__rmd {
  display: none;
}

.quiz-result__rmd.is-active {
  display: flex;
}

.quiz-result__rmd.feature-item {
  align-items: flex-start;
}

