@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  overflow-x: hidden;
  font-family: "Rubik", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  background: #121114;
}

@media (min-width: 1200px) {
  body {
    font-size: 14px;
    gap: 24px;
  }
}

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: 24px;
}

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

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

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

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

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

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

.heading-1 {
  font-weight: 800;
  font-size: 18px;
  line-height: 110%;
}

@media (min-width: 1200px) {
  .heading-1 {
    font-size: 38px;
  }
}

.heading-2 {
  font-weight: 800;
  font-size: 26px;
  line-height: 110%;
}

@media (min-width: 1200px) {
  .heading-2 {
    font-size: 30px;
  }
}

.heading-3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
}

@media (min-width: 1200px) {
  .heading-3 {
    font-size: 24px;
  }
}

.link {
  display: inline-block;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
}

.link:hover, .link:focus {
  color: #9d6aed;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.link:active {
  color: #781ba7;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

.button {
  font-family: inherit;
  width: 100%;
  border-radius: 12px;
  padding: 12px 18px;
  border: none;
  -webkit-box-shadow: 0 4px 36px 0 #9d6aed;
          box-shadow: 0 4px 36px 0 #9d6aed;
  background: #9d6aed;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.button:hover, .button:focus {
  background: #781ba7;
}

.button:active {
  color: #9d6aed;
}

.button.w-full {
  max-width: 100%;
}

.button__second {
  background: transparent;
  border: 1px solid #9d6aed;
  color: #fff;
}

@media (min-width: 1200px) {
  .button {
    padding: 14px 24px;
    font-size: 18px;
  }
}

.header {
  padding-top: 12px;
  padding-bottom: 0;
}

@media (min-width: 1200px) {
  .header {
    padding-top: 72px;
  }
}

.header__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 12px;
  border: 0.5px solid #9d6aed;
  border-radius: 12px;
  padding: 12px;
  background: #000;
}

@media (min-width: 1200px) {
  .header__content {
    padding: 24px;
    gap: 24px;
    -ms-grid-columns: 1fr 320px;
        grid-template-columns: 1fr 320px;
  }
}

.header__title-block, .header__descr-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

@media (min-width: 1200px) {
  .header__title-block, .header__descr-block {
    gap: 10px;
  }
}

.header__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: 0px;
}

.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}

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

.header__item img {
  max-width: 18px;
}

@media (min-width: 1200px) {
  .header__item img {
    max-width: 30px;
  }
}

.header__descr {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
}

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

.services__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .services__content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.services__item {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  border: 1px solid #9d6aed;
  border-radius: 12px;
  padding: 12px;
  background: #121114;
  position: relative;
}

@media (min-width: 1200px) {
  .services__item {
    padding: 24px;
  }
}

.services__label {
  position: absolute;
  top: -29px;
  left: -12px;
  z-index: 1;
  max-width: 180px;
}

.services__label span {
  display: none;
}

@media (min-width: 1200px) {
  .services__label {
    max-width: 100%;
    top: -33px;
    left: -37px;
  }
}

.services__left-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px;
  width: 100%;
}

@media (min-width: 768px) {
  .services__left-block {
    gap: 24px;
  }
}

.services__logo {
  width: 100%;
  max-width: 130px;
}

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

@media (min-width: 1200px) {
  .services__logo {
    max-width: 220px;
  }
}

.services__logo-img {
  width: 100%;
}

.services__bonus {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
}

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

.services__descr-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services__rating-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.services__rating-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.services__rating__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 1200px) {
  .services__rating__title-block {
    -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;
  }
}

.services__rating-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
}

@media (min-width: 768px) {
  .services__rating-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
  }
}

.services__rating-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;
}

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

@media (min-width: 768px) {
  .services__rating-stars img {
    max-width: 20px;
  }
}

.services__right-block {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.services__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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 100%;
}

@media (min-width: 1200px) {
  .services__pmnt-block {
    gap: 10px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.services__pmnt-block img {
  width: 100%;
  max-width: 65px;
  max-height: 29px;
}

@media (min-width: 1200px) {
  .services__pmnt-block img {
    max-width: 80px;
    max-height: 40px;
  }
}

.services__pmnt-block img.mc {
  max-width: 40px;
}

@media (min-width: 1200px) {
  .services__pmnt-block img.mc {
    max-width: 50px;
  }
}

.services__item-border {
  border: 1px solid #9d6aed;
  border-radius: 6px;
  padding: 8px;
  background: #302a41;
}

@media (min-width: 1200px) {
  .services__item-border {
    border-radius: 8px;
    padding: 12px;
  }
}

.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: 12px;
  border: 0.5px solid #9d6aed;
  border-radius: 12px;
  padding: 12px;
  background: #000;
}

@media (min-width: 1200px) {
  .disclaimer__content {
    padding: 24px;
  }
}

.about__content, .privacys__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: 12px;
}

.footer {
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000;
}

.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: 24px;
}

.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: 12px;
  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;
}

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

.footer__links {
  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;
  gap: 12px;
  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;
}

@media (min-width: 1200px) {
  .footer__links {
    gap: 24px;
  }
}

.footer .line {
  width: 100%;
  border: 1px solid #626164;
}

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

.cookie {
  width: 100%;
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
  margin-bottom: 10px;
  display: none;
}

.cookie.visible {
  display: block;
}

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

.cookie__content {
  position: relative;
  border: 1px solid #9d6aed;
  border-radius: 12px;
  padding: 24px;
  background: #000;
  color: #fff;
  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: 14px;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
}

@media (min-width: 1200px) {
  .cookie__content {
    padding: 40px;
  }
}

.cookie__title {
  font-weight: 800;
  font-size: 24px;
  line-height: 110%;
}

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

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

.cookie__btns .button {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .cookie__btns .button {
    max-width: 200px;
  }
}

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

.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;
  gap: 24px;
}

.form {
  border: 0.5px solid #9d6aed;
  border-radius: 12px;
  padding: 24px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.form__inputs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .form__inputs {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.form__input {
  border: 1px solid #9d6aed;
  border-radius: 6px;
  padding: 12px 14px;
  background: #302a41;
  border: none;
  color: #fff;
}
/*# sourceMappingURL=styles.css.map */