* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  color: #fff;
  background: #1fabf6;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

[class*=__text] {
  font-size: 14px;
  line-height: 120%;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

h2 {
  font-size: 100px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: calc(768px - 1px)) {
  h2 {
    font-size: 50px;
  }
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 200px;
}

.btn {
  display: flex;
  padding: 24px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #fcba03;
  color: #242424;
  font-family: Inter;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-border {
  display: flex;
  padding: 24px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 60px;
  border: 1px solid #fff;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: calc(768px - 1px)) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  .mobile {
    display: block;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 26px;
  background: #0060e6;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  font-size: 44px;
  text-transform: uppercase;
}
.cookies__text {
  margin-bottom: 15px;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.cookies__btn {
  color: #fff;
  border: 1px solid #fff;
  background: #000;
}

.footer {
  padding-top: 80px;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.footer__content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer__menu {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
@media (max-width: calc(768px - 1px)) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__menu a {
  color: #fff;
}
@media (max-width: calc(576px - 1px)) {
  .footer__content-img {
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.header__logo {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
}

@media (max-width: calc(768px - 1px)) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
    background: #fff;
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
    background: #fff;
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
    background: #fff;
  }
}
@media (max-width: calc(768px - 1px)) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    border-radius: 0 0 80px 80px;
    background: #000;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
    border-radius: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: calc(768px - 1px)) {
  .menu__list {
    flex-direction: column;
    margin-bottom: 140px;
  }
}
.menu__link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.hero {
  margin-top: 65px;
  background: linear-gradient(180deg, #0060e6 0%, #67bcfd 100%);
  padding-bottom: 20px;
}
.hero__title {
  color: #fff;
  text-align: center;
  font-size: 130px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: calc(768px - 1px)) {
  .hero__title {
    font-size: 60px;
  }
}
.hero__text {
  text-align: center;
  max-width: 814px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.hero__btn {
  max-width: 312px;
  margin: 0 auto;
}
.hero__img {
  text-align: center;
}
@media (max-width: calc(1024px - 1px)) {
  .hero__img img {
    width: 100%;
  }
}

.about {
  margin-bottom: 80px;
}
.about__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: calc(1024px - 1px)) {
  .about__wrapper {
    flex-direction: column;
  }
}
.about__content {
  max-width: 692px;
}
.about__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.about__text {
  margin-bottom: 30px;
}
.about__card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: #fff;
  width: fit-content;
}
.about__card h4 {
  color: #242424;
  font-size: 44px;
  line-height: 120%;
}
.about__card p {
  color: #242424;
  line-height: 120%;
}
.about__image img {
  width: 100%;
}

.choose {
  margin-bottom: 100px;
}
.choose__title {
  text-align: center;
  margin-bottom: 10px;
}
.choose__imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media (max-width: calc(576px - 1px)) {
  .choose__imgs img {
    width: 100%;
  }
}

.grovundax {
  margin-bottom: 80px;
}
.grovundax__wrapper {
  display: flex;
  gap: 30px;
}
@media (max-width: calc(1024px - 1px)) {
  .grovundax__wrapper {
    flex-direction: column;
  }
}
.grovundax__content h2 {
  margin-bottom: 10px;
}
.grovundax__content p {
  margin-bottom: 30px;
}
.grovundax__btn {
  max-width: 310px;
}

.reviews {
  margin-bottom: 80px;
}
.reviews h2 {
  text-align: center;
  margin-bottom: 10px;
}
.reviews__cards {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: calc(768px - 1px)) {
  .reviews__cards {
    flex-direction: column;
  }
}
.reviews__card {
  display: flex;
  flex-direction: column;
  max-width: 387px;
  width: 100%;
  padding: 20px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  background: #fff;
}
.reviews__card h4 {
  color: #242424;
  line-height: 120%;
  font-size: 44px;
}
.reviews__card p {
  color: #242424;
  line-height: 120%;
}
.reviews__img {
  text-align: center;
}
@media (max-width: calc(576px - 1px)) {
  .reviews__img img {
    width: 100%;
  }
}

.adventure {
  background: #0060e6;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
.adventure__content {
  max-width: 905px;
}
.adventure__content h2 {
  margin-bottom: 10px;
}
.adventure__content p {
  margin-bottom: 30px;
}
.adventure__cards {
  display: flex;
  gap: 15px;
}
@media (max-width: calc(1024px - 1px)) {
  .adventure__cards {
    flex-direction: column;
  }
}
.adventure__card {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #fff;
  color: #242424;
  font-size: 22px;
  line-height: 120%;
  width: fit-content;
  max-width: 327px;
}
.adventure__img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: -1;
}
@media (max-width: calc(768px - 1px)) {
  .adventure__img {
    position: static;
    transform: translate(26%, 0%);
  }
}
@media (max-width: calc(768px - 1px)) {
  .adventure__img img {
    width: 100%;
  }
}

.games {
  margin-top: 80px;
  margin-bottom: 80px;
}
.games__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: calc(1024px - 1px)) {
  .games__content {
    flex-direction: column;
  }
}
.games__content-left {
  max-width: 920px;
}
.games__imgs {
  display: flex;
  gap: 20px;
}
@media (max-width: calc(1024px - 1px)) {
  .games__imgs {
    flex-direction: column;
  }
}
.games__imgs-left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: fit-content;
  max-width: 340px;
}
.games__imgs-left img {
  max-width: 160px;
  max-height: 160px;
}
.games__imgs-right {
  display: flex;
  gap: 20px;
}
@media (max-width: calc(768px - 1px)) {
  .games__imgs-right {
    flex-direction: column;
  }
}

.game {
  margin-top: 80px;
  margin-bottom: 80px;
}
.game__top {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 84px;
}
@media (max-width: calc(1024px - 1px)) {
  .game__top {
    flex-direction: column;
  }
}
.game__top img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  max-width: 360px;
}
@media (max-width: calc(576px - 1px)) {
  .game__top img {
    max-width: 260px;
    max-height: 260px;
  }
}
.game__top-content {
  max-width: 910px;
}
.game__top-content h2 {
  margin-bottom: 10px;
}
.game__top-content h3 {
  font-size: 80px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: calc(768px - 1px)) {
  .game__top-content h3 {
    font-size: 40px;
  }
}
.game__top-content p {
  margin-bottom: 10px;
}
.game__btn {
  max-width: 190px;
}
.game__bottom {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: calc(1024px - 1px)) {
  .game__bottom {
    flex-direction: column;
  }
}
@media (max-width: calc(576px - 1px)) {
  .game__bottom img {
    width: 100%;
  }
}

.privacy {
  margin: 70px 0 0;
  padding: 40px 0;
}

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