@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;
  }
}
:root {
  --color-primary: #031838;
  --color-primary-light: #11366b;
  --color-primary-dark: #031329;
  --text: #fff;
  --orange-gradient: linear-gradient(0deg,#e73d00,#ffbf00);
  --font: "Inter", sans-serif;
}

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

.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 (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

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

.full-vw-line {
  position: relative;
}
.full-vw-line::before, .full-vw-line::after {
  position: absolute;
  width: calc((var(--100vw) - var(--container-width)) / 2);
  height: 0.0625rem;
  background-color: var(--color-dark-15);
}
.full-vw-line--top::before {
  content: "";
  bottom: 100%;
}
.full-vw-line--bottom::after {
  content: "";
  top: 100%;
}
.full-vw-line--left::before, .full-vw-line--left::after {
  right: 100%;
}
.full-vw-line--right::before, .full-vw-line--right::after {
  left: 100%;
}

.circle-icon {
  --circleSize: 3.25rem;
  --circleMarginLeft: 1.25rem;
  position: relative;
  min-height: var(--circleSize);
  padding-right: calc(var(--circleSize) + var(--circleMarginLeft));
}
@media (width <= 90.06125rem) {
  .circle-icon {
    --circleSize: 2.75rem;
    --circleMarginLeft: 0.875rem;
  }
}
@media (width <= 47.99875rem) {
  .circle-icon {
    --circleSize: 2.5rem;
  }
}
.circle-icon::after {
  width: var(--circleSize);
  height: var(--circleSize);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  right: 0;
  background: url("../../icons/arrow-top-right_black.svg") center no-repeat var(--color-accent);
  border-radius: 50%;
}

body {
  background: var(--color-primary);
  color: var(--text);
  font-family: var(--font);
  line-height: normal;
  font-size: 1rem;
}
@media (width <= 63.99875rem) {
  body {
    font-size: 0.875rem;
  }
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 2.5rem;
}
@media (width <= 90.06125rem) {
  h1 {
    font-size: 1.875rem;
  }
}
@media (width <= 63.99875rem) {
  h1 {
    font-size: 1.5625rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (width <= 63.99875rem) {
  h2 {
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 1rem;
}
@media (width <= 63.99875rem) {
  h3 {
    font-size: 1rem;
  }
}

p {
  -webkit-hyphens: auto;
          hyphens: auto;
}

ul, ol {
  margin: 0;
  padding: 0 0 0 20px;
  margin-bottom: 1.25rem;
}

a {
  color: var(--text);
}
a:visited {
  color: inherit;
}

.container {
  max-width: 90rem;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (width <= 90.06125rem) {
  .container {
    max-width: 80%;
  }
}
@media (width <= 47.99875rem) {
  .container {
    max-width: 90%;
  }
}

.btn {
  color: #FFF;
  text-decoration: none;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--color-primary-light);
  border-radius: 0.3125rem;
  font-size: 0.875rem;
}
.btn.login {
  background: var(--orange-gradient);
}
.btn.login:hover {
  background: var(--orange-gradient);
  filter: saturate(0.6);
  transition: 0.2s ease;
}
.btn:hover {
  background: var(--color-primary-dark);
  transition: 0.5s ease;
}

section {
  padding: 3.125rem 0;
}
@media (width <= 63.99875rem) {
  section {
    padding: 1.875rem 0;
  }
}
@media (width <= 47.99875rem) {
  section {
    padding: 1.25rem 0;
  }
}

.header__top {
  background: #11366b;
}
.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  max-width: 90%;
}
.header__top .logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 700;
}
@media (width <= 30.06125rem) {
  .header__top .logo {
    font-size: 16px;
  }
}
@media (width <= 30.06125rem) {
  .header__top .logo img {
    width: 70px;
  }
}
.header__top .logo .line {
  display: table;
  width: 1px;
  height: 40px;
  background: #FFF;
}
@media (width <= 30.06125rem) {
  .header__top .logo .line {
    height: 20px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__nav .singUp {
  background: #031838;
}
.header__nav .singUp:hover {
  background: rgba(3, 24, 56, 0.5176470588);
  filter: saturate(0.6);
  transition: 0.2s ease;
}
.header__bottom {
  min-height: calc(100svh - 77px - env(safe-area-inset-bottom));
  display: flex;
  width: 100%;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .header__bottom {
    min-height: 100vh;
    height: auto;
  }
}
.header__bottom .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (width <= 63.99875rem) {
  .header__bottom .box {
    grid-template-columns: 1fr;
    justify-content: center;
    position: relative;
  }
}
.header__bottom .box-btn {
  display: flex;
  gap: 25px;
}
@media (width <= 63.99875rem) {
  .header__bottom .box-btn {
    justify-content: center;
  }
}
@media (width <= 47.99875rem) {
  .header__bottom .box-btn {
    flex-direction: column;
    align-items: center;
  }
}
.header__bottom .box .or {
  display: table;
  margin-left: 14vw;
  font-weight: 700;
  font-size: 21px;
}
@media (width <= 63.99875rem) {
  .header__bottom .box .or {
    margin-left: unset;
    margin: 0 auto;
  }
  .header__bottom .box .or p {
    text-align: left !important;
  }
}
.header__bottom .box .qr {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header__bottom .box .qr .title {
  font-size: clamp(1.125rem, 0.9436983471rem + 0.7438016529vw, 1.6875rem);
  font-weight: 700;
  margin-bottom: 15px;
  display: table;
}
.header__bottom .box .qr img {
  border-radius: 15px;
}
@media (width <= 63.99875rem) {
  .header__bottom .box .qr img {
    width: 100px;
  }
}
.header__bottom .box-item h1 {
  font-size: clamp(1.6875rem, 1.2443181818rem + 1.8181818182vw, 3.0625rem);
  margin: 0;
}
@media (width <= 63.99875rem) {
  .header__bottom .box-item h1 + p {
    text-align: center;
  }
}
@media (width <= 63.99875rem) {
  .header__bottom .box-item h1 {
    text-align: center;
  }
}
.header__bottom .box-item p {
  margin: 0;
  font-size: clamp(0.875rem, 0.8347107438rem + 0.1652892562vw, 1rem);
}
.header__bottom .box-item .btn {
  padding: 16px 40px;
  background: var(--orange-gradient);
}
@media (width <= 47.99875rem) {
  .header__bottom .box-item .btn {
    padding: 16px 0;
    width: 320px;
    display: flex;
    justify-content: center;
  }
}
.header__bottom .box-item .btn:hover {
  opacity: 0.7;
  transition: 0.5s ease;
}
.header__bottom .box-item .btn:nth-child(2) {
  background: #11366b;
}
.header__bottom .box-item:nth-child(1) {
  display: grid;
  gap: 25px;
}
@media (width <= 63.99875rem) {
  .header__bottom .box-item:nth-child(1) {
    justify-items: center;
    position: relative;
    z-index: 2;
    gap: 5vh;
  }
}
.header__bottom .box-item:nth-child(2) img {
  max-width: unset;
  width: 30vw;
  margin: 0 auto;
  filter: drop-shadow(22px 24px 66px rgba(255, 255, 255, 0.3411764706));
  rotate: 8deg;
  animation: shadowPulse 3s ease-in-out infinite;
}
@media (width <= 63.99875rem) {
  .header__bottom .box-item:nth-child(2) img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: unset;
    height: 70vh;
    z-index: 1;
  }
}

.app-benefits h2 {
  text-align: center;
  margin-bottom: 100px;
}
@media (width <= 63.99875rem) {
  .app-benefits h2 {
    margin-bottom: 50px;
  }
}
.app-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (width <= 80rem) {
  .app-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 63.99875rem) {
  .app-benefits__grid {
    grid-template-columns: 1fr;
  }
}
.app-benefits__item {
  display: grid;
  background: #11366b;
  padding: 20px;
  border-radius: 10px;
  justify-items: start;
}
@media (width <= 80rem) {
  .app-benefits__item:last-child {
    grid-column: 1/-1;
  }
}
@media (width <= 63.99875rem) {
  .app-benefits__item:last-child {
    display: block;
    aspect-ratio: 16/9;
    width: 100%;
  }
}
.app-benefits__item h3 {
  margin-bottom: 15px;
}
.app-benefits__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.1568627451);
  padding: 5px;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 10px;
}
.app-benefits__icon img {
  width: 70%;
}

.app-steps h2 {
  text-align: center;
  margin-bottom: 100px;
}
@media (width <= 63.99875rem) {
  .app-steps h2 {
    margin-bottom: 50px;
  }
}
.app-steps ol {
  display: grid;
  gap: 25px;
  position: relative;
  margin: 0 auto;
  width: 500px;
  padding: 0;
}
@media (width <= 47.99875rem) {
  .app-steps ol {
    width: 100%;
  }
}
.app-steps ol::before {
  content: "";
  width: 2px;
  height: 100%;
  border-left: 2px dotted rgba(255, 255, 255, 0.4862745098);
  display: table;
  position: absolute;
  left: 75px;
  top: 0;
}
.app-steps ol li {
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
  gap: 15px;
  font-size: clamp(0.875rem, 0.7944214876rem + 0.3305785124vw, 1.125rem);
}
.app-steps ol li strong {
  display: table;
  font-size: clamp(1.3125rem, 1.1916322314rem + 0.4958677686vw, 1.6875rem);
  color: #f79800;
  display: table;
  margin-bottom: 5px;
  background: #11366b;
  border-radius: 5px;
  padding: 5px 10px;
  flex-shrink: 0;
}

.app-security h2 {
  text-align: center;
  margin-bottom: 100px;
}
@media (width <= 63.99875rem) {
  .app-security h2 {
    margin-bottom: 50px;
  }
}
.app-security__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (width <= 63.99875rem) {
  .app-security__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 15px;
  }
}
@media (width <= 47.99875rem) {
  .app-security__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
.app-security__item {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}
.app-security__icon img {
  width: 64px;
  filter: drop-shadow(2px 4px 56px rgba(255, 255, 255, 0.5803921569));
}
.app-security__subtitle {
  color: #f79800;
}

.banner {
  text-decoration: none;
  padding: 50px 0;
}
.banner h2 {
  margin-bottom: 2.5rem;
}
@media (width <= 47.99875rem) {
  .banner h2 {
    text-align: center;
  }
}
.banner__card {
  background: linear-gradient(85deg, #240071 0%, #2D34C4 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 1rem;
  min-height: 400px;
}
@media (width <= 63.99875rem) {
  .banner__card {
    display: flex;
    flex-direction: column-reverse;
    padding: 2.5rem 1.25rem;
    gap: 2.5rem;
  }
}
.banner__card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner__card-item ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 50px;
  padding: 0;
}
@media (width <= 47.99875rem) {
  .banner__card-item ul {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.banner__card-item ul li {
  list-style: none;
  background: #FFF;
  padding: 15px 10px;
  border-radius: 5px;
  text-align: left;
  font-weight: 700;
  color: #11366b;
  font-size: clamp(0.875rem, 0.8347107438rem + 0.1652892562vw, 1rem);
}
.banner__card-item img {
  display: block;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 60%;
  max-width: unset;
  height: unset;
  filter: drop-shadow(22px 24px 66px rgba(255, 255, 255, 0.3411764706));
  rotate: 8deg;
}
@media (width <= 63.99875rem) {
  .banner__card-item img {
    max-width: 415px;
  }
}
.banner__card-item:not(:has(a)) .title {
  color: #FFF;
}
.banner__card-item .subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.625rem;
  text-align: center;
}
.banner__card-item .title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  display: table;
  margin: 0.625rem 0 1.875rem;
}
@media (width <= 47.99875rem) {
  .banner__card-item .title {
    font-size: 1.75rem;
    margin: 0.3125rem 0 1.875rem;
  }
}
.banner__card-item .btn {
  background: #e81c63;
  padding: 1.25rem 4.375rem;
  font-size: 1.25rem;
}
.banner__card-item .btn:hover {
  background: #c91653;
}
@media (width <= 90.06125rem) {
  .banner__card-item .btn {
    padding: 1.25rem 3.125rem;
  }
}
@media (width <= 47.99875rem) {
  .banner__card-item .btn {
    padding: 1.25rem 0rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.card h2,
.banners h2 {
  margin-bottom: 2.5rem;
}
@media (width <= 47.99875rem) {
  .card .container,
  .banners .container {
    max-width: 100%;
    padding-left: 1.25rem;
  }
}
.card__slider-item,
.banners__slider-item {
  position: relative;
  aspect-ratio: 9/14;
  overflow: hidden;
  border-radius: 0.5rem;
  width: 100%;
  background: red;
}
.card__slider-item img,
.banners__slider-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: 2;
}
.card__slider-item:hover .overlay,
.banners__slider-item:hover .overlay {
  opacity: 1;
  transition: 0.5s ease;
}
.card__slider-item .overlay,
.banners__slider-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
  color: #fff;
  opacity: 0;
}
.card__slider-item .overlay .play,
.banners__slider-item .overlay .play {
  background: #1d7ef0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.125rem;
  aspect-ratio: 1;
  width: 50%;
  background: #1d7ef0 url(../../img/play.svg) no-repeat center/contain;
  background-size: 24px 24px;
}
.card__slider-item .overlay .play svg,
.banners__slider-item .overlay .play svg {
  width: 1.5625rem;
  height: 1.5625rem;
  display: none;
}
.card__slider-item .overlay .play svg use,
.banners__slider-item .overlay .play svg use {
  width: 100%;
}
.card__slider-item .overlay .title,
.banners__slider-item .overlay .title {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
}

@media (width <= 47.99875rem) {
  .banners .container {
    padding: 0;
  }
  .banners .container h2 {
    padding-left: 1.25rem;
  }
}

.button-area h2 {
  text-align: center;
  margin-bottom: 50px;
}
.button-area .btn {
  width: 50%;
  margin: 0 auto;
  font-size: 1.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0;
}
@media (width <= 47.99875rem) {
  .button-area .btn {
    width: 90%;
  }
}

.payment h2 {
  margin-bottom: 50px;
  text-align: center;
}
.payment .swiper-slide {
  display: flex;
  align-items: center;
}
.payment .swiper-slide img {
  aspect-ratio: 16/9;
  width: 80%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  filter: grayscale(1);
}

.faq .faq-area .accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
  padding-bottom: 20px;
}
.faq .faq-area .accordion__content-body {
  overflow: hidden;
}
.faq .faq-area .accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
  padding: 25px 0;
  padding-top: 12.5px;
  padding-bottom: 20px;
}
.faq .faq-area .accordion {
  border-bottom: 1px solid #FFF;
}
.faq .faq-area .accordion__details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  padding-bottom: 12.5px;
}
.faq .faq-area .accordion__details summary .accordion__title {
  font-weight: 700;
  font-size: 1.125rem;
}
.faq .faq-area .accordion__details summary::marker {
  font-size: 0;
  display: none;
}
.faq .faq-area .accordion__details summary::after {
  content: "+";
  color: #FFF;
  font-size: 1.875rem;
}
.faq .faq-area .accordion__content {
  padding-top: 0;
}

.review h2 {
  text-align: center;
  font-size: clamp(2rem, 1.7582644628rem + 0.9917355372vw, 2.75rem);
  color: #ffbf00;
  margin-bottom: 50px;
}
.review__box {
  display: grid;
  gap: 1.25rem;
  max-width: 60vw;
  margin: 0 auto;
}
@media (width <= 63.99875rem) {
  .review__box {
    max-width: 100vw;
  }
}
.review__box-item {
  background: #11366b;
  border-radius: 10px;
  padding: 20px;
}
.review__box-item .author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.review__box-item .author .icon {
  display: flex;
  width: 45px;
  aspect-ratio: 1;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  background: var(--orange-gradient);
}
.review__box-item .stars svg path {
  fill: #ffbf00;
}
.review__box-item .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review__box-item .bottom .content {
  margin: 25px 0;
}
.review__box-item .bottom .navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.review__box-item .bottom .navigation svg {
  width: 16px;
  height: 16px;
}
.review__box-item .bottom .navigation .like {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffbf00;
}
.review__box-item .bottom .navigation .like svg {
  rotate: 180deg;
}
.review__box-item .bottom .navigation .like svg path {
  fill: #ffbf00;
}
.review__box-item .bottom .navigation .dislike {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.6;
}

.statistic h2 {
  text-align: center;
  font-size: clamp(2rem, 1.7582644628rem + 0.9917355372vw, 2.75rem);
  color: #ffbf00;
  margin-bottom: 50px;
}
.statistic .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (width <= 47.99875rem) {
  .statistic .box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.statistic .box-item {
  background: #11366b;
  border-radius: 10px;
  padding: 25px;
  display: grid;
  gap: 25px;
  justify-items: center;
  text-align: center;
}
.statistic .box-item .title {
  font-size: clamp(1.375rem, 1.2742768595rem + 0.4132231405vw, 1.6875rem);
  color: #ffbf00;
}
.statistic .box-item:nth-child(3) svg path,
.statistic .box-item:nth-child(3) svg circle,
.statistic .box-item:nth-child(3) svg line {
  fill: transparent !important;
  stroke: #ffbf00;
}
.statistic .box-item svg path {
  fill: #ffbf00;
  stroke: #ffbf00;
}

.stepbystep h2 {
  margin-bottom: 50px;
}
.stepbystep .box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
}
.stepbystep .box-item {
  overflow: hidden;
  border-left: 1px solid #11366b;
}
.stepbystep .box-item p {
  padding-left: 30px;
  padding: 15px;
  padding-bottom: 15px;
  opacity: 0.8;
}
.stepbystep .box .number {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
  background: #11366b;
  aspect-ratio: 1;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 20px 20px 0px;
  position: relative;
  color: #ffbf00;
}

@keyframes shadowPulse {
  0%, 100% {
    filter: drop-shadow(22px 24px 66px rgba(255, 255, 255, 0.3411764706));
  }
  50% {
    filter: drop-shadow(22px 24px 80px rgba(255, 255, 255, 0.6666666667));
  }
}
footer {
  padding: 3.125rem 0;
  opacity: 0.5;
}/*# sourceMappingURL=main.css.map */