@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&family=Titan+One&display=swap");
* {
  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%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 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: "Poppins", sans-serif;
  background: #CAFBFF;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  color: #202020;
  font-family: "Titan One";
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 400;
  text-transform: uppercase;
}

.sub-title {
  color: #202020;
  font-family: "Titan One";
  font-size: clamp(32px, 6vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
}

[class*=__text] {
  color: #202020;
  font-size: 16px;
  font-weight: 400;
}

.btn {
  display: flex;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  border-radius: 60px;
  background: #00ECFF;
  padding: 22px 58px;
  color: #202020;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.red {
  color: #FF4A3B;
}

.text-center {
  text-align: center;
}

.white {
  color: #fff !important;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #CAFBFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #202020;
  font-family: "Titan One";
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .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: #000;
  }
  .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%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #CAFBFF;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 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: 767px) {
  .menu__list {
    flex-direction: column;
    gap: 40px;
  }
}
.menu__link {
  color: #202020;
  font-size: 16px;
  font-weight: 400;
}

.footer {
  background: #CAFBFF;
  padding: 40px 0 355px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .footer {
    padding: 40px 0 200px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0 150px;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__content {
    gap: 20px;
  }
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .footer__row {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__menu a {
  color: #202020;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer__address a,
.footer__address p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  border-radius: 30px;
  background: #00858F;
  padding: 20px;
}
@media (max-width: 991px) {
  .footer__address a,
  .footer__address p {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .footer__address {
    flex-direction: column;
    width: 100%;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__txt {
  color: #202020;
  font-size: 12px;
  font-weight: 400;
}
.footer__img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.footer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 60px 80px;
  max-width: 680px;
  width: 100%;
  border-radius: 20px;
  background: #00ECFF;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 429px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #202020;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 22px 58px;
  border-radius: 60px;
  background: #FFF;
}
.cookies__btn:last-child {
  opacity: 0.6;
}
@media (max-width: 429px) {
  .cookies__btn {
    width: 100%;
  }
}

.hero {
  margin: 68px 0 0;
  padding: 0 0 60px;
}
@media (max-width: 991px) {
  .hero {
    padding: 0 0 40px;
  }
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  display: flex;
  gap: 20px;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .hero__content {
    flex-direction: column;
  }
}
.hero__title {
  color: #202020;
  font-family: "Titan One";
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  text-transform: uppercase;
}

.choose__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .choose__content {
    gap: 20px;
  }
}

.about {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .about {
    padding: 40px 0;
  }
}
.about__content {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .about__content_catalog {
    flex-direction: column;
    gap: 20px;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__link {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  .about__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.catalog__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__grid {
  max-width: 456px;
  width: 100%;
  flex-shrink: 0;
}

.game__content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 991px) {
  .game__content {
    gap: 60px;
  }
}
.game__row {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .game__row {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game__link {
  width: -moz-fit-content;
  width: fit-content;
}
.game__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .game__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.game__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 30px;
  background: #00858F;
  padding: 20px;
}
.game__name {
  color: #FFF;
  font-family: "Titan One";
  font-size: 28px;
  font-weight: 400;
}

.privacy {
  margin: 68px 0 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .privacy__content {
    gap: 20px;
  }
}
.privacy__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.privacy ul li {
  color: #202020;
  font-size: 16px;
  font-weight: 400;
  margin-left: 25px;
  list-style: disc;
}