* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  background: #130d14;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 1200px) {
  body {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 60px;
  }
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media (min-width: 1200px) {
  main {
    gap: 60px;
  }
}

ul,
ol {
  padding-left: 20px;
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 0;
}

a, button {
  cursor: pointer;
  font-family: inherit;
  display: block;
  text-decoration: none;
  color: inherit;
  border: none;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: 430px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 90px;
  }
}

.t1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: -0.03em;
}

@media (min-width: 1200px) {
  .t1 {
    font-size: 40px;
  }
}

.t2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: -0.03em;
}

@media (min-width: 1200px) {
  .t2 {
    font-size: 32px;
  }
}

.t3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.03em;
}

.link {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.link:hover, .link:focus {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  color: #a831cf;
}

.link:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  color: #ffb300;
}

.btn {
  font-family: inherit;
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 10px;
  padding: 15px 40px;
  -webkit-box-shadow: 0 0 14px 0 #b316fc;
          box-shadow: 0 0 14px 0 #b316fc;
  background: #a831cf;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.btn:hover, .btn:focus {
  background: #ffb300;
}

.btn:active {
  color: #130d14;
}

@media (min-width: 1200px) {
  .btn {
    max-width: 150px;
  }
}

.logo {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: center;
}

.header__list {
  padding-left: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 6px;
}

@media (min-width: 1200px) {
  .header__list {
    margin-top: 20px;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

.header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 6px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-align: left;
}

.cards__content {
  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;
}

.cards__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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  border-radius: 20px;
  padding: 24px;
  background: #42005c;
}

@media (min-width: 1200px) {
  .cards__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.cards__logo {
  width: 100%;
  max-width: 180px;
  height: 105px;
  padding: 20px;
  background: #34014c;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cards__logo-img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.cards__bns {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
}

@media (min-width: 1200px) {
  .cards__bns {
    text-align: left;
  }
}

.cards__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cards__stars img {
  width: 100%;
  max-width: 14px;
}

@media (min-width: 768px) {
  .cards__stars img {
    max-width: 21px;
  }
}

.cards__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media (min-width: 1200px) {
  .cards__wrapper {
    max-width: 260px;
  }
}

.cards__pmnt-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 100%;
}

.cards__pmnt-img {
  width: 100%;
  max-width: 44px;
  min-height: 26px;
  max-height: 26px;
  border-radius: 10px;
  padding: 4px;
  background: #fff;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: visible;
}

@media (min-width: 1200px) {
  .cards__pmnt-img {
    padding: 8px;
    max-height: 30px;
    max-width: 50px;
  }
}

.cards__rating {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 90px;
}

.cards__rating-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
}

.cards__rating-subtitle {
  font-weight: 400;
}

.why-us__content {
  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;
  gap: 20px;
}

@media (min-width: 1200px) {
  .why-us__content {
    gap: 30px;
  }
}

.why-us__list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media (min-width: 1200px) {
  .why-us__list {
    gap: 32px;
  }
}

.why-us__item {
  border: 1px solid #c2fbff;
  border-radius: 20px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.popular__content {
  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;
  gap: 20px;
}

@media (min-width: 1200px) {
  .popular__content {
    gap: 30px;
  }
}

.popular__list {
  list-style: none;
  padding-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 1200px) {
  .popular__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.popular__item {
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 20px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #42005c;
}

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

@media (min-width: 1200px) {
  .faq__content {
    gap: 30px;
  }
}

.faq__list {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media (min-width: 1200px) {
  .faq__list {
    gap: 32px;
  }
}

.faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.faq__item:hover .t3 {
  color: #a831cf;
}

.faq__item .t3 {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.faq__item-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq__item-text {
  display: none;
}

.faq__item.open img {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.faq__item.open .faq__item-text {
  display: block;
}

.contacts__content {
  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;
  gap: 20px;
}

@media (min-width: 1200px) {
  .contacts__content {
    gap: 30px;
  }
}

.contacts__wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1200px) {
  .contacts__wrapper {
    -ms-grid-columns: 410px 1fr;
        grid-template-columns: 410px 1fr;
  }
}

.contacts img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom 0 center;
     object-position: bottom 0 center;
  max-height: 200px;
  border-radius: 20px;
}

@media (min-width: 1200px) {
  .contacts img {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}

.contacts .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
  border-radius: 20px;
  padding: 20px;
  background: #42005c;
}

@media (min-width: 1200px) {
  .contacts .form {
    gap: 16px;
  }
}

.contacts .form__input {
  border-radius: 10px;
  padding: 14px 24px;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.7), inset 0 0 1px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.7), inset 0 0 1px 0 rgba(0, 0, 0, 0.16);
  background: #34014c;
  border: none;
  color: #fff;
}

.contacts .form__input::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.6;
}

.contacts .form__input:-ms-input-placeholder {
  color: #fff;
  opacity: 0.6;
}

.contacts .form__input::-ms-input-placeholder {
  color: #fff;
  opacity: 0.6;
}

.contacts .form__input::placeholder {
  color: #fff;
  opacity: 0.6;
}

.contacts .form__input.textarea {
  min-height: 100px;
  resize: none;
}

.contacts .form .btn {
  max-width: 100%;
}

.disclaimer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 20px;
  padding: 20px;
  background: rgba(34, 0, 92, 0.3);
}

.external-links {
  background: #130d14;
  padding-top: 40px;
  padding-bottom: 40px;
}

.external-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

@media (min-width: 1200px) {
  .external-links__list {
    gap: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.external-links__list img {
  max-height: 50px;
}

@media (min-width: 768px) {
  .external-links__list img {
    max-height: 60px;
  }
}

.footer {
  padding-top: 40px;
}

.footer__content {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  text-align: center;
}

.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: 24px;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 550px;
}

@media (min-width: 768px) {
  .footer__list {
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1200px) {
  .footer__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 124px;
        grid-template-columns: 1fr 124px;
  }
}

.footer__copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.section-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.cookie_wrapper {
  width: 100%;
  max-width: 500px;
  position: fixed;
  z-index: 9;
  bottom: 0;
  left: 0;
  margin-bottom: 12px;
  display: none;
}

.cookie_wrapper.active {
  display: block;
}

.cookie_wrapper__content {
  position: relative;
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 20px;
  padding: 20px;
  background: rgba(34, 0, 92, 0.9);
  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;
  gap: 10px;
}

.cookie_wrapper__title {
  font-weight: 700;
  font-size: 20px;
}
/*# sourceMappingURL=styles.css.map */