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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  background: #0a0d06;
  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: 30px;
}

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

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

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

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

.title1 {
  font-weight: 800;
  font-size: 24px;
  line-height: 90%;
}

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

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

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

.title3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

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

.logo {
  font-weight: 800;
  font-size: 24px;
  line-height: 80%;
  letter-spacing: -0.03em;
}

.link {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
}

.link:hover, .link:focus {
  color: #82db14;
}

.link:active {
  color: #1b2410;
}

.btn {
  font-family: inherit;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 10px;
  padding: 20px 25px;
  background: #82db14;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn:hover, .btn:focus {
  background: #1b2410;
}

.btn:active {
  color: #09080f;
}

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

.btn__second {
  background: #fff;
  color: #09080f;
}

.header {
  padding-top: 12px;
}

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

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 16px;
  border-radius: 60px;
  padding: 12px 30px;
  background: #1b2410;
}

@media (min-width: 1200px) {
  .header__content {
    padding: 24px 40px;
    gap: 24px;
    -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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: left;
  }
}

.header__left {
  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: 16px;
  width: 100%;
}

.header__left.page {
  -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) {
  .header__left {
    gap: 24px;
  }
}

.header__img {
  display: none;
}

@media (min-width: 1200px) {
  .header__img {
    display: block;
    width: 100%;
  }
}

.header__list {
  padding-left: 0;
  list-style: none;
  display: none;
}

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

.header__item {
  border-radius: 10px;
  padding: 10px;
  border: 1px dashed #fff;
}

.platforms__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;
  max-width: 740px;
  margin: auto;
}

.platforms__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: 16px;
  border: 4px solid #82db14;
  border-radius: 24px;
  padding: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(130, 219, 20, 0)), to(#82db14));
  background: linear-gradient(180deg, rgba(130, 219, 20, 0) 0%, #82db14 100%);
  position: relative;
  overflow: hidden;
}

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

.platforms__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 20px 0;
  padding: 8px 12px;
  background: #82db14;
  font-weight: 700;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
}

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

.platforms__upper {
  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;
  text-align: center;
  gap: 10px;
}

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

.platforms__logo {
  width: 100%;
  max-width: 208px;
  max-height: 100px;
  border: 1px solid rgba(130, 219, 20, 0.24);
  border-radius: 10px;
  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;
  background: rgba(130, 219, 20, 0.1);
  padding: 28px 20px;
}

.platforms__logo-img {
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

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

@media (min-width: 1200px) {
  .platforms__bonus-block {
    max-width: 300px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
  }
}

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

.platforms__bonus-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.platforms__bonus-title {
  font-weight: 800;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.03em;
}

.platforms__bonus-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.platforms__rating-block {
  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: 6px;
}

.platforms__rating-title {
  font-weight: 800;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.03em;
}

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

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

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

.platforms__descr {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.03em;
  text-align: center;
}

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

.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: 16px;
  border-radius: 40px;
  padding: 12px 30px;
  background: #1b2410;
}

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

.section__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 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.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;
  gap: 24px;
  border-radius: 40px;
  padding: 12px 30px;
  background: #1b2410;
}

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

.footer__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;
  gap: 22px;
  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: 40px;
  }
}

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

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

.footer__copy {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.cookies {
  width: 100%;
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
  display: none;
}

.cookies.show {
  display: block;
}

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

.cookies__content {
  position: relative;
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 40px;
  padding: 24px 20px;
  -webkit-box-shadow: 0 0 32px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 32px 24px rgba(0, 0, 0, 0.15);
  background: #1b2410;
  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: 10px;
}

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

.cookies__title {
  font-weight: 800;
  font-size: 34px;
  line-height: 120%;
}

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

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

.cookies__wrapper .btn {
  max-width: 100%;
}

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

.age-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000000b9;
}

.age-popup.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.age-popup__content {
  margin: auto;
  width: 100%;
  max-width: 650px;
  position: relative;
  position: relative;
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 40px;
  padding: 24px 20px;
  -webkit-box-shadow: 0 0 32px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 32px 24px rgba(0, 0, 0, 0.15);
  background: #1b2410;
  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;
  gap: 14px;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
}

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

.age-popup__title {
  font-weight: 900;
  font-size: 34px;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.age-popup__wrapper .btn {
  max-width: 100%;
}

@media (min-width: 768px) {
  .age-popup__wrapper {
    -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;
}

.contacts .form {
  border: 1px solid #465a75;
  border-radius: 12px;
  padding: 24px;
  background: #0d121c;
  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;
}

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

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

.contacts .form__input {
  border-radius: 6px;
  padding: 12px;
  background: #09080f;
  border: none;
  color: #fff;
}
/*# sourceMappingURL=styles.css.map */