html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body main {
  flex-grow: 1;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

input,
button {
  outline: none;
  border: none;
}

html {
  font-family: "K2D";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #000;
}

.container {
  padding-inline: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container {
    padding-inline: 40px;
  }
}

.policy {
  padding-block: 40px;
}
@media (min-width: 1200px) {
  .policy {
    padding-block: 60px;
  }
}
.policy__title {
  font-family: "K2D";
  font-weight: 700;
  font-size: 42px;
  line-height: 54.6px;
  text-transform: uppercase;
  word-break: break-all;
  margin-bottom: 32px;
}
.policy__text {
  font-family: K2D;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.policy__text ul {
  padding-left: 20px;
  margin-bottom: 10px;
  list-style: disc;
}
.policy__text h2 {
  margin-block: 10px;
  font-size: 20px;
  font-weight: 400;
}
.policy__text p {
  margin-bottom: 10px;
}

.cookies {
  padding: 40px;
  position: fixed;
  width: 90%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  color: #fff;
  background-color: #000;
  border-radius: 8px;
  z-index: 10;
}
.cookies--show {
  display: block;
}
.cookies__title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 24px;
  line-height: 26.4px;
  letter-spacing: 4%;
  text-align: center;
}
@media (min-width: 1200px) {
  .cookies__title {
    font-size: 32px;
    line-height: 35.2px;
  }
}
.cookies__text {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0%;
  text-align: center;
}
.cookies__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cookies__reject, .cookies__accept {
  width: 295px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0px;
  text-align: center;
  cursor: pointer;
}
.cookies__accept {
  width: 295px;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
}
.cookies__reject {
  color: #fff;
  background-color: transparent;
}

.game {
  padding-top: 10px;
  width: 100%;
  height: 300px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  background-color: #fff;
  z-index: 100;
}
@media (min-width: 768px) {
  .game {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .game {
    width: 800px;
    height: 600px;
  }
}
.game--active {
  display: block;
}
.game__iframe {
  padding-bottom: 10px;
}
.game__top {
  display: flex;
  justify-content: end;
  align-items: center;
}
.game__close {
  display: block;
}
.game__close-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.no-scroll {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 10;
}

.header {
  padding-block: 24px;
  background-color: #fff;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (min-width: 1200px) {
  .header__content {
    justify-content: space-between;
  }
}
.header--mob .header__content {
  justify-content: end;
}
.header__burger-menu {
  width: 24px;
  height: 24px;
  background-image: url(../img/icons/burger-menu.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  .header__burger-menu {
    display: none;
  }
}
.header__btn {
  display: none;
}
@media (min-width: 1200px) {
  .header__btn {
    display: block;
  }
}

.nav {
  display: none;
}
@media (min-width: 1200px) {
  .nav {
    display: block;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__link {
  font-weight: 700;
  font-size: 18px;
  line-height: 25.2px;
  text-align: center;
  color: #000;
}

.play {
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  transition: background-color 0.3s;
}
.play:hover {
  background-color: #353535;
}
.play--light {
  border: 2px solid #000000;
  background-color: #fff;
  color: #000;
}
.play--light:hover {
  background-color: #fff;
  color: #414141;
}

.menu {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: auto;
  background-color: #fff;
  z-index: 200;
}
.menu__close {
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../img/icons/burger-menu.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.menu__container {
  background-image: url(../img/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.menu__blur {
  padding-inline: 24px;
  background: rgba(0, 0, 0, 0.6);
}

.page__menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: transform 0.3s;
  transform: translateY(-100%);
}
.page__menu:target {
  transform: translateY(0);
}
.page:has(.page__menu:target) {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

.nav-mob {
  padding-block: 40px;
  flex-grow: 1;
  color: #fff;
}
@media (min-width: 1200px) {
  .nav-mob {
    display: none;
  }
}
.nav-mob__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.nav-mob__link {
  font-family: "Lato";
  font-weight: 700;
  font-size: 32px;
  line-height: 44.8px;
  letter-spacing: 0%;
  text-align: center;
  word-break: break-all;
  color: #fff;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  background-image: url(../img/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 20%;
}
.hero__content {
  padding-block: 160px 40px;
}
@media (min-width: 1200px) {
  .hero__content {
    padding-block: 418px 60px;
  }
}
.hero__container {
  background: rgba(0, 0, 0, 0.1);
}
.hero__title {
  margin-bottom: 32px;
  font-family: "K2D";
  font-weight: 700;
  font-size: 32px;
  line-height: 41.6px;
  letter-spacing: 0%;
}

.about {
  padding-block: 40px;
}
@media (min-width: 1200px) {
  .about {
    padding-block: 60px;
  }
}
.about__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1200px) {
  .about__content {
    flex-direction: row;
    gap: 80px;
    justify-content: center;
  }
}
.about__photo {
  width: 342px;
  height: 402px;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .about__photo {
    width: 456px;
    height: 448px;
  }
}
.about__title {
  font-family: "K2D";
  font-weight: 700;
  font-size: 42px;
  line-height: 54.6px;
  text-transform: uppercase;
  word-break: break-all;
  margin-bottom: 16px;
}
.about__text {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.mechanics {
  padding-block: 40px;
}
@media (min-width: 1200px) {
  .mechanics {
    padding-block: 60px;
  }
}
.mechanics__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1200px) {
  .mechanics__content {
    flex-direction: row;
    justify-content: center;
  }
}
.mechanics__title {
  font-family: "K2D";
  font-weight: 700;
  font-size: 42px;
  line-height: 54.6px;
  text-transform: uppercase;
  word-break: break-all;
  margin-bottom: 16px;
}
.mechanics__text {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}
.mechanics__photo {
  width: 332px;
  height: 212px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .mechanics__photo {
    width: 382px;
  }
}
@media (min-width: 1200px) {
  .mechanics__photo {
    width: 456px;
    height: 642px;
  }
}

.features {
  padding-block: 40px;
}
@media (min-width: 1200px) {
  .features {
    padding-block: 80px;
  }
}
.features__title {
  font-family: "K2D";
  font-weight: 700;
  font-size: 42px;
  line-height: 54.6px;
  text-transform: uppercase;
  word-break: break-all;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .features__title {
    margin-bottom: 60px;
  }
}
.features__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1200px) {
  .features__cards {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.feature {
  padding: 18px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 3px solid #000000;
  border-radius: 32px;
  background-color: #fff;
}
.feature__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 31.2px;
}
.feature__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.feature__img {
  width: 105px;
  height: 105px;
  object-fit: cover;
}
.feature--dark {
  color: #fff;
  background-color: #000;
}
@media (min-width: 1200px) {
  .feature {
    padding: 24px;
    width: 552px;
    height: 156px;
  }
}

.reviews {
  padding-block: 40px;
}
@media (min-width: 1200px) {
  .reviews {
    padding-block: 60px;
  }
}
.reviews__content {
  padding: 24px;
  border-radius: 32px;
  background: #f3f3f3;
}
@media (min-width: 1200px) {
  .reviews__content {
    padding: 40px;
  }
}
.reviews__title {
  font-family: "K2D";
  font-weight: 700;
  font-size: 42px;
  line-height: 54.6px;
  text-transform: uppercase;
  word-break: break-all;
  margin-bottom: 32px;
}
.reviews__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1200px) {
  .reviews__cards {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.review {
  width: 100%;
  padding: 24px 24px 24px 64px;
  border: 3px solid #000000;
  border-radius: 32px;
  box-shadow: 0px 3px 0px 0px #000000;
}
@media (min-width: 1200px) {
  .review {
    width: 512px;
  }
}
.review__name {
  position: relative;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 31.2px;
  letter-spacing: 0%;
}
.review__name::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  left: -40px;
  background-image: url(../img/smile.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.review__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.faq {
  padding-block: 40px;
}
@media (min-width: 1200px) {
  .faq {
    padding-block: 80px;
  }
}
.faq__title {
  font-family: "K2D";
  font-weight: 700;
  font-size: 42px;
  line-height: 54.6px;
  text-transform: uppercase;
  word-break: break-all;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .faq__title {
    margin-bottom: 60px;
  }
}
.faq__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.question {
  padding: 24px;
  border: 3px solid #000000;
  border-radius: 32px;
  box-shadow: 0px 3px 0px 0px #000000;
  background-color: #fff;
}
.question--dark {
  background-color: #000;
  color: #fff;
}
.question__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 31.2px;
}
.question__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.contact {
  padding-block: 40px;
  color: #fff;
}
@media (min-width: 1200px) {
  .contact {
    padding-block: 60px;
  }
}
.contact__content {
  border-radius: 32px;
  background-image: url(../img/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.contact__container {
  padding: 24px;
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.6);
}
@media (min-width: 1200px) {
  .contact__container {
    padding: 40px;
  }
}
.contact__title {
  font-family: "K2D";
  font-weight: 700;
  font-size: 42px;
  line-height: 54.6px;
  text-transform: uppercase;
  word-break: break-all;
  text-align: center;
  margin-bottom: 16px;
}
.contact__text {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1200px) {
  .contact__form {
    width: 560px;
    margin: 0 auto;
  }
}
.contact__input, .contact__area {
  padding: 16px;
  border: 2px solid #f3f3f3;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0px;
  text-align: left;
  background-color: transparent;
  color: #f3f3f3;
}
.contact__input::placeholder, .contact__area::placeholder {
  text-align: left;
  color: #f3f3f3;
}
.contact__area {
  margin-bottom: 12px;
}
.contact__btn {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19.2px;
  text-align: center;
  background-color: #fff;
  color: #000;
  cursor: pointer;
}

.footer {
  margin-bottom: 24px;
  background-color: #fff;
}
.footer__content {
  padding: 24px;
  border-radius: 32px;
  background: #f3f3f3;
}
@media (min-width: 1200px) {
  .footer__content {
    padding: 40px;
  }
}
.footer__text {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
}
.footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 14px;
}
@media (min-width: 1200px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__rights {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
}
.footer__pages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1200px) {
  .footer__pages {
    flex-direction: row;
    gap: 16px;
  }
}
.footer__page {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  transition: color 0.3s;
}
.footer__page:hover {
  color: #414141;
}

/*# sourceMappingURL=main.css.map */
