:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1280px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}
body {
  zoom: 0.9; /* Уменьшает масштаб до 50% */
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: red solid 2px;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/MontserratLight.woff2) format("woff2");
  font-weight: 3400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/MontserratRegular.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/MontserratMedium.woff2) format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/MontserratSemiBold.woff2) format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/MontserratBold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
  background-color: #0d1317;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

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

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.grid {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 33px 0;
  width: 100%;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__nav {
  margin-right: 20px;
  margin-left: 20px;
}

@media (max-width: 1023.98px) {
  .container {
    max-width: 375px;
  }

  .grid {
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
  }

  .header__logo {
    width: 120px;
  }

  .header__nav {
    margin: 0;
  }

  .header__btn {
    display: none !important;
  }

  .header {
    padding: 16px 0;
    min-width: 360px;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1023.98px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.nav__item {
  position: relative;
}

.nav__link {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.nav__link:focus {
  outline: 0;
}

.nav__link:focus-visible {
  outline: #fff dashed 1px;
  outline-offset: 3px;
}

.nav__btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  gap: 8px;
}

.nav__btn svg {
  fill: currentColor;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}

.nav__btn--active svg {
  rotate: 180deg;
}

.nav__btn:focus {
  outline: 0;
}

.nav__btn:focus-visible {
  outline: #fff dashed 1px;
  outline-offset: 3px;
}

.nav__mobile-btn {
  display: none !important;
  margin-top: 20px;
}

@media (max-width: 1023.98px) {
  .nav__mobile-btn {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    padding: 20px;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(163, 216, 255, 0.05);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    translate: -100% 0;
    backdrop-filter: blur(12px);
  }

  .nav--active {
    opacity: 1;
    visibility: visible;
    translate: 0;
  }
}

.nav-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  padding: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: rgba(163, 216, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(12px);
  gap: 8px;
}

.nav-dropdown__link {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.nav-dropdown__link:focus {
  outline: 0;
}

.nav-dropdown__link:focus-visible {
  outline: #fff dashed 1px;
  outline-offset: 3px;
}

.nav-dropdown--open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023.98px) {
  .nav-dropdown {
    position: static;
    display: none;
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
    gap: 12px;
  }

  .nav-dropdown--open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.title {
  margin: 0 auto;
  font-weight: 600;
  font-size: 56px;
  text-align: center;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .title {
    font-size: 44px;
  }
}

@media (max-width: 1023.98px) {
  .title {
    font-size: 32px;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #ef1f49;
  border-radius: 8px;
  padding: 19px 30px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
  gap: 12px;
}

.btn svg {
  fill: currentColor;
}

.btn:focus {
  outline: 0;
}

.btn:focus-visible {
  outline: #ef1f49 dashed 1px;
  outline-offset: 3px;
}

.btn--outline {
  color: #ef1f49;
}

.btn--solid {
  color: #fff;
  background: #ef1f49;
}

@media (any-hover: hover) {
  .nav-dropdown__link:hover,
  .nav__btn:hover,
  .nav__link:hover {
    color: #ef1f49;
  }

  .btn--outline:hover {
    color: #fff;
    background-color: #ef1f49;
  }

  .btn--solid:hover {
    color: #fff;
    background-color: transparent;
  }
}

.btn--big {
  padding-top: 27px;
  padding-bottom: 27px;
  min-width: 308px;
}

@media (max-width: 1199.98px) {
  .btn--big {
    padding-top: 18px;
    padding-bottom: 18px;
    min-width: 280px;
  }
}

.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  background-color: transparent;
  cursor: pointer;
  --burger-height: 20px;
  display: none;
  color: #fff;
}

.burger::after,
.burger::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  top: calc(100% - var(--burger-line-height));
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (max-width: 1023.98px) {
  .btn {
    font-size: 12px;
    gap: 8px;
  }

  .burger {
    display: block;
  }
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 32px;
  padding: 48px;
  min-height: 531px;
  background: linear-gradient(
      0deg,
      rgba(163, 216, 255, 0.02),
      rgba(163, 216, 255, 0.02)
    ),
    linear-gradient(
      138.05deg,
      rgba(239, 31, 73, 0) 4.79%,
      rgba(239, 31, 73, 0.2) 100%
    );
  backdrop-filter: blur(16px);
  gap: 25px;
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.form__label {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.form__input {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0 16px;
  height: 72px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.form__input::placehoder {
  color: rgba(255, 255, 255, 0.3);
}

.form__input::focus {
  outline: rgba(255, 255, 255, 0.3) dashed 1px;
  outline-offset: 3px;
}

.form__btn {
  padding: 27px;
  width: 100%;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.tabs__menu {
  width: calc(50% - 8px);
}

@media (max-width: 1023.98px) {
  .form {
    padding: 24px 20px;
    min-height: auto;
  }

  .tabs__menu {
    width: 100%;
  }
}

.tabs__content {
  width: calc(50% - 8px);
}

.tabs__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  width: 100%;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  color: #fff;
  -webkit-transition: border-radius 0.3s, border-color 0.3s, background 0.3s;
  transition: border-radius 0.3s, border-color 0.3s, background 0.3s;
  backdrop-filter: blur(12px);
  gap: 16px;
}

.tabs__btn--active {
  border-color: transparent;
  border-radius: 16px;
  background: rgba(163, 216, 255, 0.02);
}

.tabs__btn--active .tabs__icon {
  border-color: rgba(255, 255, 255, 0.12);
  background-color: transparent;
}

.tabs__btn--active .tabs__icon::after {
  opacity: 0;
}

.tabs__btn--active .tabs__icon::before {
  background-color: #fff;
}

.tabs__btn:focus {
  outline: 0;
}

.tabs__btn:focus-visible {
  outline: #ef1f49 dashed 1px;
  outline-offset: 3px;
}

@media (any-hover: hover) {
  .tabs__btn:hover .tabs__icon {
    border-color: #ef1f49;
    background: #ef1f49;
  }

  .tabs__btn:hover .tabs__icon::after,
  .tabs__btn:hover .tabs__icon::before {
    background: #fff;
  }

  .testimonials__btn:hover svg {
    fill: #ef1f49;
  }
}

@media (max-width: 1199.98px) {
  .tabs__btn {
    font-size: 16px;
  }
}

.tabs__item:last-child .tabs__btn {
  border: none;
}

.tabs__ic {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1023.98px) {
  .tabs__content {
    width: 100%;
  }

  .tabs__btn {
    padding: 20px 16px;
    font-size: 12px;
  }

  .tabs__ic {
    width: 32px;
    height: 32px;
  }
}

.tabs__icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
  border: 1px solid #f6f6f6;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  background: #f6f6f6;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}

.tabs__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 10px;
  width: 10px;
  height: 2px;
  background-color: #ef1f49;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
  translate: -50% -50%;
}

.tabs__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 10px;
  width: 2px;
  height: 10px;
  background-color: #ef1f49;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
  translate: -50% -50%;
}

.tabs__solution {
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .tabs__solution {
    font-size: 10px;
  }
}

.tabs__block {
  display: none;
  border-radius: 16px;
  padding: 88px;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  background: rgba(163, 216, 255, 0.02);
}

.tabs__block h3 {
  margin: 0 0 32px;
}

.tabs__block--active {
  display: block;
}

@media (max-width: 1199.98px) {
  .tabs__block {
    padding: 40px;
  }
}

@media (max-width: 1023.98px) {
  .tabs__block h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .tabs__block {
    padding: 20px;
    font-size: 16px;
  }

  .tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.hero {
  position: relative;
  padding-top: var(--header-height);
  padding-bottom: 146px;
}

.hero__glow {
  position: absolute;
  left: 0;
  top: 0;
  width: 1384px;
  max-width: none;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 113px;
}

@media (max-width: 1199.98px) {
  .hero__content {
    padding-top: 40px;
  }
}

.hero__text {
  -ms-grid-column-span: 7;
  grid-column: 7 span;
  padding-top: 80px;
}

@media (max-width: 1199.98px) {
  .hero__text {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}

@media (max-width: 1023.98px) {
  .hero__text {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
    padding: 0;
  }
}

.hero__image {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
}

@media (max-width: 1199.98px) {
  .hero__image {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}

.hero__pic {
  margin-left: 20px;
  width: 531px;
  max-width: none;
}

@media (max-width: 1023.98px) {
  .hero__image {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }

  .hero__pic {
    margin-top: 32px;
    margin-left: 0;
    width: 100%;
  }
}

.hero__title {
  margin: 0 0 32px;
  max-width: 716px;
  font-weight: 600;
  font-size: 50px;
  line-height: 120%;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .hero__title {
    font-size: 36px;
  }
}

@media (max-width: 1023.98px) {
  .hero__title {
    margin-bottom: 20px;
    font-size: 28px;
  }
}

.hero__descr {
  margin: 0 0 56px;
  max-width: 716px;
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 985px;
  background-image: url(../img/pattern.png);
  background-position: center;
  background-size: 2216px auto;
  background-repeat: no-repeat;
  translate: -50% 0;
}

@media (max-width: 1199.98px) {
  .hero__descr {
    font-size: 20px;
  }

  .hero {
    padding-bottom: 70px;
  }
}

.benefits {
  position: relative;
  z-index: 2;
  padding-bottom: 158px;
}

.benefits__content {
  --gap: 49px;
  --elems: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 16px;
  padding: 24px;
  background: rgba(163, 216, 255, 0.02);
  backdrop-filter: blur(12px);
  gap: var(--gap);
}

@media (max-width: 1023.98px) {
  .hero__descr {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .benefits__content {
    --gap: 32px;
    --elems: 2;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .benefits__item:not(:last-child)::after {
    display: none;
  }
}

.benefits__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc((100% - (var(--elems) - 1) * var(--gap)) / (var(--elems)));
}

.benefits__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  width: 1px;
  height: 81px;
  background-image: url(../img/separator.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  translate: 0 -50%;
}

.benefits__icon {
  margin-bottom: 24px;
}

@media (max-width: 1023.98px) {
  .benefits__icon {
    margin-bottom: 16px;
  }
}

.benefits__subtitle {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .benefits__content {
    padding: 16px;
  }

  .benefits__subtitle {
    font-size: 16px;
  }

  .benefits {
    padding-bottom: 100px;
  }
}

@media (max-width: 1023.98px) {
  .benefits {
    padding-bottom: 80px;
  }
}

.how {
  position: relative;
  padding-bottom: 136px;
}

.how__glow {
  position: absolute;
  right: 0;
  bottom: 100px;
  width: 1258px;
  max-width: none;
  pointer-events: none;
}

.how__title {
  margin-bottom: 178px;
}

.how__content {
  counter-reset: section;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1023.98px) {
  .how__title {
    margin-bottom: 140px;
  }

  .how__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    gap: 140px;
  }
}

.how__col {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1px;
}

.how__col::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid transparent;
  border-radius: 32px;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(206, 234, 254, 0.6)),
      to(rgba(229, 228, 252, 0))
    )
    border-box;
  background: linear-gradient(
      180deg,
      rgba(206, 234, 254, 0.6),
      rgba(229, 228, 252, 0)
    )
    border-box;
  -webkit-mask: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #fff)
      )
      padding-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.how__col:not(:first-child)::after {
  content: "";
  position: absolute;
  left: -88px;
  top: 46%;
  width: 62px;
  height: 46px;
  background-image: url(../img/arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation: 2s linear infinite moveLeftRight;
  animation: 2s linear infinite moveLeftRight;
  translate: 0 -50%;
}

.how__col:first-child,
.how__col:last-child {
  width: 308px;
}

@media (max-width: 1199.98px) {
  .how__col:first-child,
  .how__col:last-child {
    width: 250px;
  }
}

.how__col:nth-child(2) {
  margin-left: 8px;
  width: 100%;
  max-width: 422px;
}

.how__col:nth-child(2) .how__block {
  padding-right: 27px;
  padding-left: 27px;
}

.how__circle {
  position: absolute;
  left: 50%;
  top: -92px;
  border-radius: 100%;
  padding: 32px 20px 0;
  width: 200px;
  height: 200px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #fff;
  translate: -50% 0;
}

.how__circle--1 {
  padding-top: 32px;
  background: linear-gradient(211deg, #9547e4 0, #ef1f49 100%);
}

.how__circle--2 {
  top: -109px;
  padding-top: 24px;
  background: linear-gradient(33deg, #9547e4 0, #c596f4 100%);
}

.how__circle--3 {
  padding-top: 38px;
  background: linear-gradient(211deg, #9547e4 0, #ef1f49 100%);
}

.how__block {
  position: relative;
  border-radius: 32px;
  padding: 104px 40px 40px;
  width: 100%;
  min-height: 300px;
  background: rgba(163, 216, 255, 0.05);
  backdrop-filter: blur(30px);
}

.how__block::before {
  counter-increment: section;
  content: "0" counter(section);
  position: absolute;
  left: 50%;
  top: 40px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #fff;
  translate: -50% 0;
}

@media (max-width: 1199.98px) {
  .how__block {
    padding: 104px 20px 20px;
  }
}

@media (max-width: 1023.98px) {
  .how__col::before {
    border-radius: 20px;
  }

  .how__col:first-child,
  .how__col:last-child {
    width: 100%;
  }

  .how__col:nth-child(2) {
    margin-left: 0;
  }

  .how__block {
    border-radius: 20px;
  }
}

.how__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.how__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  padding: 17px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  gap: 10px;
}

.how__item--big {
  min-height: 134px;
}

.how__icon--scale {
  -webkit-animation: 2s linear infinite scale;
  animation: 2s linear infinite scale;
}

.how__icon--moving-1 {
  -webkit-animation: 8s ease-in-out infinite brownian-1;
  animation: 8s ease-in-out infinite brownian-1;
}

.how__icon--moving-2 {
  -webkit-animation: 7s ease-in-out infinite brownian-2;
  animation: 7s ease-in-out infinite brownian-2;
}

.how__icon--moving-3 {
  -webkit-animation: 9s ease-in-out infinite brownian-3;
  animation: 9s ease-in-out infinite brownian-3;
}

.how__icon--moving-4 {
  -webkit-animation: 6s ease-in-out infinite brownian-4;
  animation: 6s ease-in-out infinite brownian-4;
}

.how__icon--moving-5 {
  -webkit-animation: 10s ease-in-out infinite brownian-5;
  animation: 10s ease-in-out infinite brownian-5;
}

.how__tabs {
  position: relative;
  z-index: 2;
  margin-top: 136px;
  margin-bottom: 136px;
}

@media (max-width: 1023.98px) {
  .how__item--big {
    min-height: auto;
  }

  .how__tabs {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.how__text {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 72px;
}

.how__text-btn {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: 30px;
}

.how__text-btn--hidden {
  display: none;
}

.how__subtitle {
  margin: 0 0 32px;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .how__text {
    padding: 20px;
  }

  .how__subtitle {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .how__list {
    padding-left: 20px;
  }
}

.how__descr {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}

.how__descr:not(:last-of-type) {
  margin-bottom: 16px;
}

.how__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
  gap: 12px;
}

.how__hidden {
  display: none;
}

@media (max-width: 1023.98px) {
  .how {
    padding-bottom: 80px;
  }
}

@-webkit-keyframes moveLeftRight {
  0%,
  100% {
    translate: -3px;
  }

  50% {
    translate: 3px;
  }
}

@keyframes moveLeftRight {
  0%,
  100% {
    translate: -3px;
  }

  50% {
    translate: 3px;
  }
}

@-webkit-keyframes scale {
  0%,
  100% {
    scale: 0.9;
  }

  50% {
    scale: 1.1;
  }
}

@keyframes scale {
  0%,
  100% {
    scale: 0.9;
  }

  50% {
    scale: 1.1;
  }
}

@-webkit-keyframes brownian-1 {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  25% {
    -webkit-transform: translate(1px, -1px) rotate(0.5deg);
    transform: translate(1px, -1px) rotate(0.5deg);
  }

  50% {
    -webkit-transform: translate(-1px, 1px) rotate(-0.5deg);
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }

  75% {
    -webkit-transform: translate(1px, 1px) rotate(0.3deg);
    transform: translate(1px, 1px) rotate(0.3deg);
  }
}

@keyframes brownian-1 {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  25% {
    -webkit-transform: translate(1px, -1px) rotate(0.5deg);
    transform: translate(1px, -1px) rotate(0.5deg);
  }

  50% {
    -webkit-transform: translate(-1px, 1px) rotate(-0.5deg);
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }

  75% {
    -webkit-transform: translate(1px, 1px) rotate(0.3deg);
    transform: translate(1px, 1px) rotate(0.3deg);
  }
}

@-webkit-keyframes brownian-2 {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  33% {
    -webkit-transform: translate(-1px, -1px) rotate(-0.3deg);
    transform: translate(-1px, -1px) rotate(-0.3deg);
  }

  66% {
    -webkit-transform: translate(1px, 1px) rotate(0.7deg);
    transform: translate(1px, 1px) rotate(0.7deg);
  }
}

@keyframes brownian-2 {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  33% {
    -webkit-transform: translate(-1px, -1px) rotate(-0.3deg);
    transform: translate(-1px, -1px) rotate(-0.3deg);
  }

  66% {
    -webkit-transform: translate(1px, 1px) rotate(0.7deg);
    transform: translate(1px, 1px) rotate(0.7deg);
  }
}

@-webkit-keyframes brownian-3 {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  20% {
    -webkit-transform: translate(2px, -1px);
    transform: translate(2px, -1px);
  }

  40% {
    -webkit-transform: translate(-1px, 1px);
    transform: translate(-1px, 1px);
  }

  60% {
    -webkit-transform: translate(1px, 0);
    transform: translate(1px, 0);
  }

  80% {
    -webkit-transform: translate(-1px, -1px);
    transform: translate(-1px, -1px);
  }
}

@keyframes brownian-3 {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  20% {
    -webkit-transform: translate(2px, -1px);
    transform: translate(2px, -1px);
  }

  40% {
    -webkit-transform: translate(-1px, 1px);
    transform: translate(-1px, 1px);
  }

  60% {
    -webkit-transform: translate(1px, 0);
    transform: translate(1px, 0);
  }

  80% {
    -webkit-transform: translate(-1px, -1px);
    transform: translate(-1px, -1px);
  }
}

@-webkit-keyframes brownian-4 {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  25% {
    -webkit-transform: translate(0, -1px) rotate(0.2deg);
    transform: translate(0, -1px) rotate(0.2deg);
  }

  50% {
    -webkit-transform: translate(-1px, 0) rotate(-0.3deg);
    transform: translate(-1px, 0) rotate(-0.3deg);
  }

  75% {
    -webkit-transform: translate(1px, 1px) rotate(0.1deg);
    transform: translate(1px, 1px) rotate(0.1deg);
  }
}

@keyframes brownian-4 {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  25% {
    -webkit-transform: translate(0, -1px) rotate(0.2deg);
    transform: translate(0, -1px) rotate(0.2deg);
  }

  50% {
    -webkit-transform: translate(-1px, 0) rotate(-0.3deg);
    transform: translate(-1px, 0) rotate(-0.3deg);
  }

  75% {
    -webkit-transform: translate(1px, 1px) rotate(0.1deg);
    transform: translate(1px, 1px) rotate(0.1deg);
  }
}

@-webkit-keyframes brownian-5 {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  30% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }

  60% {
    -webkit-transform: translate(-1px, 2px);
    transform: translate(-1px, 2px);
  }
}

@keyframes brownian-5 {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  30% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }

  60% {
    -webkit-transform: translate(-1px, 2px);
    transform: translate(-1px, 2px);
  }
}

.features {
  position: relative;
  z-index: 2;
  padding-bottom: 136px;
}

.features__title {
  margin-bottom: 50px;
}

.features__content {
  row-gap: 16px;
}

.features__item {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  border-radius: 16px;
  padding: 24px;
  min-height: 228px;
  background: rgba(163, 216, 255, 0.02);
  backdrop-filter: blur(12px);
}

.features__icon {
  margin-bottom: 28px;
}

.features__subtitle {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

.features__descr {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials {
  padding-bottom: 132px;
}

.testimonials__title {
  margin-bottom: 52px;
}

.testimonials__content {
  position: relative;
  padding-bottom: 40px;
}

.testimonials__btn {
  position: absolute;
  top: 43%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  translate: 0 -50%;
}

.testimonials__btn svg {
  fill: #fff;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.testimonials__btn--prev {
  left: -56px;
}

.testimonials__btn--next {
  right: -56px;
}

@media (max-width: 1439.98px) {
  .how__col:not(:first-child)::after {
    display: none;
  }

  .testimonials__content {
    padding: 0 40px 40px;
  }

  .testimonials__btn--prev {
    left: -8px;
  }

  .testimonials__btn--next {
    right: -8px;
  }
}

.testimonials__slider .swiper-slide-active .testimonials-card::before {
  opacity: 1;
}

.testimonials__slider .swiper-slide-active .testimonials-card::after {
  opacity: 0;
}

.testimonials__pag {
  bottom: 0 !important;
}

.testimonials__pag .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.testimonials__pag .swiper-pagination-bullet-active {
  background-color: #fff;
}

@media (max-width: 1023.98px) {
  .testimonials__content {
    padding: 0 20px 24px;
  }

  .testimonials {
    padding-bottom: 80px;
  }
}

.testimonials-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 16px;
  padding: 36px 28px 32px 32px;
  min-height: 372px;
  backdrop-filter: blur(12px);
}

.testimonials-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
      0deg,
      rgba(163, 216, 255, 0.08),
      rgba(163, 216, 255, 0.08)
    ),
    linear-gradient(
      109.83deg,
      rgba(203, 139, 255, 0) 4.59%,
      rgba(203, 139, 255, 0.2) 108.63%
    );
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.testimonials-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(163, 216, 255, 0.02);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.testimonials-card__title {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  padding-left: 48px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  background-image: url(../img/quotes.svg);
  background-position: left center;
  background-size: 32px 32px;
  background-repeat: no-repeat;
}

@media (max-width: 1023.98px) {
  .testimonials-card__title {
    font-size: 18px;
  }
}

.testimonials-card__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-card__text:not(:last-of-type) {
  margin-bottom: 16px;
}

.testimonials-card__bottom {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
  padding-right: 4px;
  width: 100%;
}

@media (max-width: 1023.98px) {
  .testimonials-card__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 20px;
    gap: 12px;
  }
}

.testimonials-card__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.testimonials-card__avatar {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 2px solid #fff;
  border-radius: 100%;
  width: 64px;
  aspect-ratio: 1/1;
}

.testimonials-card__name {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .testimonials-card__name {
    font-size: 12px;
  }
}

.testimonials-card__post {
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1023.98px) {
  .testimonials-card__post {
    font-size: 12px;
  }

  .testimonials-card {
    padding: 24px 20px;
  }
}

.testimonials-card__date {
  font-weight: 400;
  font-size: 16px;
  text-align: right;
  color: rgba(255, 255, 255, 0.3);
}

.connectors {
  position: relative;
  background: rgba(163, 216, 255, 0.02);
  backdrop-filter: blur(24px);
}

.connectors__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 358px;
}

.connectors__title {
  margin: 0;
  max-width: 250px;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
}

.connectors__glow {
  position: absolute;
  left: 0;
  top: -400px;
  width: 1384px;
  max-width: none;
  pointer-events: none;
}

@media (max-width: 1439.98px) {
  .connectors__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 0;
    min-height: auto;
  }

  .connectors__title {
    text-align: center;
  }

  .connectors__glow {
    left: -400px;
  }
}

.connectors__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1199.98px) {
  .connectors__logos {
    --gap: 16px;
    --elems: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: var(--gap);
  }

  .connectors__logo {
    width: calc((100% - (var(--elems) - 1) * var(--gap)) / (var(--elems)));
  }
}

.ready {
  padding-top: 136px;
  padding-bottom: 136px;
}

.ready__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ready__text {
  width: calc(100% - 524px);
}

@media (max-width: 1023.98px) {
  .connectors__title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 32px;
  }

  .connectors__logos {
    --elems: 2;
  }

  .ready__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ready__text {
    margin-bottom: 32px;
    width: 100%;
  }
}

.ready__form {
  width: 524px;
}

.ready__title {
  margin: 0 0 32px;
  max-width: 550px;
  text-align: left;
}

.ready__descr {
  margin: 0;
  max-width: 632px;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .ready__form {
    width: 100%;
  }

  .ready__descr {
    font-size: 18px;
  }

  .ready {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer__logo {
    width: 120px;
  }
}

.faq {
  padding-bottom: 136px;
}

.faq__title {
  margin-bottom: 42px;
}

.footer {
  background: rgba(163, 216, 255, 0.02);
}

.footer__top {
  padding-top: 56px;
  padding-bottom: 46px;
}

.footer__content {
  --gap: 16px;
  --elems: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: var(--gap);
}

.footer__bottom {
  padding: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(163, 216, 255, 0.05);
}

.footer__col {
  width: calc((100% - (var(--elems) - 1) * var(--gap)) / (var(--elems)));
}

.footer__descr {
  margin: 36px 0 0;
  max-width: 250px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1023.98px) {
  .footer__content {
    --elems: 2;
    --gap: 20px;
  }

  .footer__col:nth-child(1),
  .footer__col:nth-child(2) {
    width: 100%;
  }

  .footer__descr {
    margin-top: 20px;
    line-height: 140%;
  }
}

.footer__subtitle {
  margin: 0 0 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.footer__list-item {
  line-height: 0;
}

.footer__list-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  gap: 8px;
}

.footer__list-link:focus {
  outline: 0;
}

.footer__list-link:focus-visible {
  outline: #fff dashed 1px;
  outline-offset: 3px;
}

.footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-style: normal;
  gap: 40px;
}

.footer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  gap: 16px;
}

.footer__link:focus {
  outline: 0;
}

.footer__link:focus-visible {
  outline: #fff dashed 1px;
  outline-offset: 3px;
}
.terms-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  max-width: 400px;
  margin: 10px auto;
}

.terms-checkbox {
  /* Hides the default checkbox */
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #5a1e8e;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

.terms-checkbox:checked {
  background-color: #5a1e8e;
  border-color: #5a1e8e;
}

/* The checkmark symbol */
.terms-checkbox:checked::after {
  content: '✓';
  color: white;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.terms-label {
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

.terms-link {
  color: #5a1e8e;
  text-decoration: none;
  font-weight: bold;
}

.terms-link:hover {
  text-decoration: underline;
}

.empty-section {
  margin-bottom: 45px;
}


@media (any-hover: hover) {
  .footer__link:hover,
  .footer__list-link:hover {
    color: #ef1f49;
  }
}

@media (max-width: 1023.98px) {
  .footer__link {
    font-size: 16px;
  }
}

.footer__text {
  max-width: 240px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}

