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

body {
  overflow-x: hidden;
  background: url("../img/bg.webp");
  background-position: top 0 center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.1;
  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;
  padding-top: 12px;
  padding-bottom: 40px;
}

@media (min-width: 1200px) {
  body {
    padding-top: 40px;
    font-size: 14px;
    gap: 50px;
  }
}

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

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

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

.heading1 {
  font-weight: 800;
  font-size: 20px;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #EE00C3;
}

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

.heading2 {
  font-weight: 800;
  font-size: 20px;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #EE00C3;
}

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

.heading3 {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #EE00C3;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

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

.color-wrapper {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1200px) {
  .color-wrapper {
    padding: 20px;
  }
}

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

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

.link:active {
  -webkit-transform: scale(0.84);
          transform: scale(0.84);
  color: #930070;
}

.btn {
  font-family: inherit;
  width: 100%;
  max-width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 80px;
  padding: 14px 20px;
  -webkit-box-shadow: 0 0 24px 0 rgba(238, 0, 195, 0.6);
          box-shadow: 0 0 24px 0 rgba(238, 0, 195, 0.6);
  background: -webkit-gradient(linear, left top, left bottom, from(#ee00c3), to(#930070));
  background: linear-gradient(180deg, #ee00c3 0%, #930070 100%);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.btn:hover, .btn:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.btn:active {
  color: #131313;
}

@media (min-width: 1200px) {
  .btn {
    padding: 20px 30px;
  }
}

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

@media (min-width: 1200px) {
  .header__content {
    gap: 14px;
  }
}

.header__list {
  padding-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2px;
  justify-items: center;
}

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

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

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

.header__line {
  width: 100%;
  max-width: 150px;
  height: 4px;
  background: #ee00c3;
  border: none;
  border-radius: 20px;
}

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

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

@media (min-width: 1200px) {
  .platforms__item {
    gap: 30px;
    -ms-grid-columns: 3fr 1.7fr 0.7fr;
        grid-template-columns: 3fr 1.7fr 0.7fr;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.platforms__wrapper {
  width: 100%;
  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;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  width: 100%;
  max-width: 64px;
  padding: 8px;
  border-radius: 100%;
  background: #ee00c3;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.platforms__logo {
  width: 100%;
  max-width: 135px;
  border-radius: 8px;
}

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

.platforms__logo-img {
  width: 100%;
}

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

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

.platforms__pmnt-img {
  width: 100%;
  max-width: 44px;
  max-height: 26px;
  border: 1px solid #ee00c3;
  border-radius: 20px;
  padding: 3px 6px;
  background: #fff;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: visible;
}

@media (min-width: 1200px) {
  .platforms__pmnt-img {
    padding: 10px;
    max-height: 50px;
    max-width: 90px;
  }
}

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

@media (min-width: 1200px) {
  .disclaimer__content, .section-info__content {
    gap: 24px;
  }
}

.disclaimer__line, .section-info__line {
  width: 100%;
  max-width: 150px;
  height: 4px;
  background: #ee00c3;
  border: none;
  border-radius: 20px;
}

.section-links {
  background: rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  padding-left: 0;
  list-style: none;
}

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

.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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

.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: 30px;
  list-style: none;
  padding: 0;
}

.footer__copy {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

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

.cookie.show {
  display: block;
}

.cookie__content {
  position: relative;
  border-radius: 12px;
  padding: 15px;
  background: #fff;
  color: #131313;
  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;
}

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

.cookie__title {
  font-size: 24px;
  margin-bottom: 10px;
}

.cookie__btn {
  max-width: 140px;
}

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

.contacts__line {
  width: 100%;
  max-width: 150px;
  height: 4px;
  background: #ee00c3;
  border: none;
  border-radius: 20px;
}

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

.contacts__form__input {
  border-radius: 80px;
  padding: 20px 15px;
  background: #fff;
  text-align: left;
  border: none;
}

.contacts__form .btn {
  max-width: 140px;
}
/*# sourceMappingURL=styles.css.map */