@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  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: "Open Sans", sans-serif;
  background: #14101D;
}

.lock {
  overflow: hidden;
}

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

.main {
  flex: 1 1 auto;
}

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

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

[class*=__text] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.h2 {
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
}

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

.m-40-80 {
  margin: 40px 0 80px;
}

.p-40 {
  padding: 40px 20px;
}

.black {
  color: #000 !important;
}

.header {
  background: url(../img/bg.webp) no-repeat top/cover;
  width: 100%;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 20px;
  background: rgba(14, 0, 150, 0.1);
  padding: 80px 20px;
}
@media (max-width: 991px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
  }
}
.header__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  width: 100%;
}
.header__title {
  color: #FFF;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 600;
  line-height: 110%;
}
.header__subcolumn {
  max-width: 400px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header__title-sub {
  color: #FFF;
  font-size: 22px;
  font-weight: 600;
  line-height: 110%;
}
.header__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.header__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__num {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  border-radius: 12px;
  border: 0.6px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(92deg, #0065EA 0%, #0E0096 100%);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #0E0096;
  background: #140C42;
  box-shadow: -4px -4px 4px 0 rgba(14, 0, 150, 0.25), 4px 4px 4px 0 rgba(14, 0, 150, 0.25);
  padding: 24px;
}
@media (max-width: 991px) {
  .hero__card {
    flex-direction: column;
    padding: 20px;
  }
}
.hero__card-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(232, 232, 237, 0.2);
  background: linear-gradient(180deg, rgba(145, 1, 255, 0) 0%, rgba(145, 1, 255, 0.25) 100%);
  width: 120px;
  height: 92px;
  padding: 0 10px;
  flex-shrink: 0;
}
.hero__card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.42px;
}
.hero__card-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 360px;
  width: 100%;
}
.hero__card-txt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.hero__card-name {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}
.hero__card-subtxt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 400;
  line-height: 100%;
  max-width: 360px;
  width: 100%;
}
.hero__link {
  max-width: 360px;
  width: 100%;
  flex-shrink: 0;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  border-radius: 6px;
  background: #9101FF;
  box-shadow: -1px 1px 6px 0 rgba(145, 1, 255, 0.55), -1px -1px 6px 0 rgba(145, 1, 255, 0.55);
  padding: 15px 20px;
}

.info_m-60 {
  margin: 60px 0;
}
.info__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__item {
  border-radius: 20px;
  background: rgba(14, 0, 150, 0.1);
}
.info__item_faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .info__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__card {
  border-radius: 20px;
  border: 1px solid #0E0096;
  background: #140C42;
  box-shadow: -4px -4px 4px 0 rgba(14, 0, 150, 0.25), 4px 4px 4px 0 rgba(14, 0, 150, 0.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__card h3 {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}
.info__card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.info .contact__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.faq {
  background: url(../img/bg-1.webp) no-repeat center/cover;
  padding: 60px 0;
}
.faq_notbg {
  background: none;
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__content_faq {
  border-radius: 20px;
  background: rgba(206, 120, 255, 0.1);
  padding: 40px 20px;
}
.faq__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.faq__row {
  display: flex;
  align-items: center;
  gap: 21px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: opacity 0.3s ease;
  width: 100%;
}
.faq__row:hover {
  opacity: 0.8;
}
.faq__icon {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__card.active .faq__icon {
  transform: rotate(45deg);
}
.faq__name {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}
.faq__item {
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, margin-bottom 0.3s ease;
}
.faq__card.active .faq__item {
  max-height: 500px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .faq__item {
    padding: 0 10px;
  }
}
.faq__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.contact {
  margin: 60px 0;
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .contact__img img:nth-child(1) {
    display: none;
  }
}
.contact__img img:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .contact__img img:nth-child(2) {
    display: block;
  }
}
.contact__form {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
}
.contact__inp {
  border-radius: 10px;
  background: #140C42;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.16) inset, 0 0 2px 0 rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 14px 24px;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.9px;
}
.contact__inp::-moz-placeholder {
  color: #FFF;
}
.contact__inp::placeholder {
  color: #FFF;
}
.contact__btn {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  border-radius: 6px;
  background: #9101FF;
  box-shadow: -1px 1px 6px 0 rgba(145, 1, 255, 0.55), -1px -1px 6px 0 rgba(145, 1, 255, 0.55);
  padding: 10px 64px;
}

.footer {
  padding: 40px 0;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.32);
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__content {
    gap: 20px;
  }
}
.footer__menu {
  max-width: 595px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__menu a {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer__menu {
    gap: 10px;
  }
}
.footer__row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__row {
    gap: 10px;
  }
}
.footer__text {
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 14px;
  line-height: 130%;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  border-radius: 20px;
  border-radius: 20px;
  background: #0E0096;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn {
  border-radius: 6px;
  background: #000;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  padding: 15px 60px;
}
@media (max-width: 575px) {
  .cookies__btn {
    width: 100%;
  }
}