@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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: "Poppins", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  background: #242625;
}

@media (min-width: 1200px) {
  body {
    font-size: 15px;
    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;
  }
}

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

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

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

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

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

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

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

.btn {
  font-family: inherit;
  width: 100%;
  border-radius: 32px;
  padding: 12px 18px;
  border: none;
  background: #22ed89;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #026023;
  cursor: pointer;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

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

.btn:active {
  color: #22ed89;
}

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

.btn__second {
  background: transparent;
  border: 1px solid #22ed89;
  color: #fff;
}

@media (min-width: 1200px) {
  .btn {
    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;
  grid: 1fr;
  gap: 12px;
  border: 0.50px solid #626164;
  border-radius: 32px;
  padding: 24px;
  background: #2f3231;
}

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

.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 {
  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;
  list-style: disc;
}

.header__descr {
  font-weight: 700;
  font-size: 13px;
  line-height: 120%;
}

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

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

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

.games__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: 0.50px solid #626164;
  border-radius: 32px;
  padding: 12px;
  background: #2f3231;
  position: relative;
}

.games__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 180px;
}

.games__label span {
  display: none;
}

@media (min-width: 768px) {
  .games__label {
    max-width: 100%;
  }
}

.games__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%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) {
  .games__left-block {
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.games__logo {
  width: 100%;
  max-width: 200px;
}

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

.games__logo-img {
  width: 100%;
}

.games__bonus {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}

@media (min-width: 1200px) {
  .games__bonus {
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
  }
}

.games__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;
  width: 100%;
  max-width: 350px;
}

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

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

@media (min-width: 1200px) {
  .games__rating-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

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

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

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

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

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

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

.games__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%;
}

.games__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: 10px;
  width: 100%;
}

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

.games__pmnt-block img {
  width: 100%;
  max-width: 60px;
  max-height: 40px;
}

@media (min-width: 1200px) {
  .games__pmnt-block img {
    max-width: 100px;
  }
}

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

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

.games__item-border {
  border: 0.50px solid #626164;
  border-radius: 6px;
  padding: 8px;
  background: transparent;
}

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

.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 {
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #323939;
}

.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__disclaimer {
  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__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.show {
  display: block;
}

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

.cookie__content {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  background: #242625;
  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 .btn {
  max-width: 100%;
}

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

@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.50px solid #626164;
  border-radius: 32px;
  padding: 24px;
  background: #2f3231;
  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__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 #626164;
  border-radius: 12px;
  padding: 12px;
  background: #242625;
  border: none;
  color: #fff;
}
/*# sourceMappingURL=styles.css.map */