* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Helvetica", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #FFF;
}

[class*=__container] {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 100px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  background: #0D071E;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1.12px;
}
.header__link {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 12px 24px;
  text-decoration: none;
  position: relative;
  background: #7c55e6;
  z-index: 1;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .header__link {
    display: none;
  }
}
.header__link::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  z-index: -1;
  border-radius: 8px;
  padding: 4px;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #7c55e6, #00ffff, #ff00ff);
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  animation: runningBorder 4s linear infinite;
}
.header__link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2), 0 6px 25px rgba(124, 85, 230, 0.5);
}
@keyframes runningBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}

@media (max-width: 991px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
    box-shadow: 0 0 10px 0 #1E90FF;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 991px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #0C0227;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 991px) {
  .menu__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.menu__item_mob {
  display: none;
}
@media (max-width: 991px) {
  .menu__item_mob {
    display: block;
  }
}
.menu__link {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
}

.footer {
  background: #0D071E;
  padding: 64px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footer__row {
  display: flex;
  align-items: center;
  gap: 206px;
}
@media (max-width: 991px) {
  .footer__row {
    gap: 0;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .footer__row {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.footer__title {
  color: #FFF;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  border-bottom: 2px solid #FFF;
  padding-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-size: 14.883px;
  font-weight: 400;
  line-height: 22.5px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__menu a {
  display: flex;
  gap: 8px;
  color: #FFF;
  font-size: 16.867px;
  font-weight: 400;
  line-height: 25.5px;
  text-decoration: underline;
}
.footer__text {
  color: #F7F8F9;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 575px) {
  .footer__text {
    text-align: left;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 48px;
  max-width: 470px;
  width: 100%;
  border-radius: 5px;
  background: #6855E6;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookies__title {
  color: #FFF;
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 1.92px;
}
.cookies__text {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.cookies__btns {
  margin: 32px 0 0;
}
.cookies__btn {
  color: #0C0227;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 5px;
  background: #FFF;
  padding: 20px 48px;
  width: -moz-fit-content;
  width: fit-content;
}

.hero {
  margin: 73px 0 0;
  background: #0C0227;
  padding: 90px 0;
}
@media (max-width: 991px) {
  .hero {
    padding: 12px 0 80px;
    margin: 63px 0 0;
  }
}
.hero__content {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero__content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__title {
  color: #FFF;
  font-size: clamp(56px, 5vw, 68px);
  font-weight: 700;
  line-height: 100%;
}
.hero__title span {
  color: #7C55E6;
}
.hero__text {
  color: #FFF;
  font-size: 16.867px;
  font-weight: 400;
  line-height: 25.5px;
}
@media (max-width: 767px) {
  .hero__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about {
  padding: 62px 0;
}
.about__content {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column;
    gap: 40px;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__title {
  color: #0C0227;
  font-size: 34.863px;
  font-weight: 700;
  line-height: 42px;
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__label {
  border-radius: 5px;
  background: #32187B;
  padding: 16px 32px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 19.5px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
.about__text {
  color: #0C0227;
  font-family: Helvetica;
  font-size: 16.867px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px;
  /* 151.181% */
}
@media (max-width: 991px) {
  .about__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.profitability {
  background: #F7F8F9;
  padding: 62px 0;
}
.profitability__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profitability__title {
  color: #0C0227;
  text-align: center;
  font-size: 34.727px;
  font-weight: 700;
  line-height: 42px;
}
.profitability__text {
  color: #0C0227;
  text-align: center;
  font-size: 16.867px;
  font-weight: 400;
  line-height: 25.5px;
}
.profitability__column {
  background: #0C0227;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profitability__subtitle {
  color: #FFF;
  text-align: center;
  font-size: 24.805px;
  font-weight: 700;
  line-height: 37.5px;
}
.profitability__txt {
  color: #FFF;
  text-align: center;
  font-size: 16.867px;
  font-weight: 400;
  line-height: 25.5px;
}

.fees {
  background: #0C0227;
  padding: 62px 0;
}
.fees__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .fees__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.fees__title {
  color: #FFF;
  font-size: 34.863px;
  font-weight: 400;
  line-height: 42px;
}
.fees__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 24px;
  max-width: 540px;
  width: 100%;
}
.fees__card {
  display: flex;
  align-items: center;
  gap: 15px;
}
.fees__icon {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}
.fees__text {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}

.technology__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.technology__row {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .technology__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.technology__img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.technology__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.technology__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.technology__text {
  color: #0C0227;
  font-size: 16.867px;
  font-weight: 400;
  line-height: 25.5px;
  max-width: 400px;
}
.technology__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .technology__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.technology__card {
  border-radius: 5px;
  background: #FFF;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.technology__name {
  color: #32187B;
  text-align: center;
  font-size: 28.887px;
  font-weight: 400;
  line-height: 34.8px;
}
.technology__txt {
  color: #0C0227;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 25.5px;
}

.info {
  margin: 60px 0;
}
.info__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info__title {
  color: #0C0227;
  font-size: 34.863px;
  font-weight: 400;
  line-height: 42px;
}
.info__row {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .info__row {
    flex-direction: column;
  }
}
.info__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__name {
  color: #32187B;
  font-size: 28.887px;
  font-weight: 400;
  line-height: 34.8px;
}
.info__text {
  color: #0C0227;
  font-size: 16.867px;
  font-weight: 400;
  line-height: 25.5px;
}
.info__label {
  border-radius: 5px;
  background: #7C55E6;
  padding: 30px 80px;
  display: flex;
  align-items: center;
  gap: 72px;
}
@media (max-width: 991px) {
  .info__label {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .info__label {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
.info__subtitle {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
}
.info__txt {
  color: #FFF;
  font-size: 16.867px;
  font-weight: 400;
  line-height: 25.5px;
}
.info__link {
  color: #0c0227;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 5px;
  background: #ffeb34;
  padding: 20px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 235, 52, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.info__link::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  z-index: -1;
  border-radius: 11px;
  padding: 6px;
  background: linear-gradient(90deg, #ffeb34, #ff9800, #ff5722, #ff9800, #ffeb34);
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  animation: runningBorder 3s linear infinite;
}
.info__link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 15px rgba(255, 235, 52, 0.7), 0 6px 20px rgba(0, 0, 0, 0.15);
}
@keyframes runningBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}

.contact {
  margin-bottom: 60px;
}
.contact__content {
  max-width: 561px;
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  background: #0C0227;
}
@media (max-width: 767px) {
  .contact__content {
    padding: 24px;
  }
}
.contact__title {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.contact__inp {
  color: #757575;
  font-size: 17px;
  font-weight: 400;
  border-radius: 5px;
  border: 1px solid #818A91;
  background: #FFF;
  box-shadow: 0 0 12px -3px rgba(0, 0, 0, 0.25);
  width: 100%;
  padding: 17px;
}
.contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0C0227;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 5px;
  background: #FFEB34;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 235, 52, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact__btn::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  z-index: -1;
  border-radius: 11px;
  padding: 6px;
  background: linear-gradient(90deg, #ffeb34, #ff9800, #ff5722, #ff9800, #ffeb34);
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  animation: runningBorder 3s linear infinite;
}
.contact__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 15px rgba(255, 235, 52, 0.7), 0 6px 20px rgba(0, 0, 0, 0.15);
}
@keyframes runningBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}

.privacy {
  margin: 73px 0 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .privacy {
    padding: 60px 0;
    margin: 63px 0 0;
  }
}
.privacy__title {
  color: #0C0227;
  text-align: center;
  font-size: clamp(36px, 5vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 1.92px;
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .privacy__title {
    margin-bottom: 24px;
  }
}
.privacy__text {
  color: #0C0227;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}