@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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: "Montserrat", sans-serif;
}

.lock {
  overflow: hidden;
}

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

.main {
  flex: 1 1 auto;
}

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

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

[class*=__text] {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.h1 {
  color: #FFF;
  font-size: clamp(64px, 15vw, 131px);
  font-weight: 700;
  line-height: 90%;
  text-transform: lowercase;
}

.h2 {
  color: #FFF;
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 600;
  line-height: 90%;
  text-transform: lowercase;
}

.h3 {
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}

.black {
  color: #000 !important;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #E83D46;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFF;
  font-size: 24px;
  font-weight: 900;
  line-height: 90%;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .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_privacy span, .menu__icon_privacy::before, .menu__icon_privacy::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: 991px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #2C2930;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body_privacy {
    background: #fff;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 72px;
}
@media (max-width: 991px) {
  .menu__list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 48px;
  }
}
.menu__item a {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
}

.footer {
  padding: 32px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    gap: 48px;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__column h3 {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 90%;
}
.footer__column a,
.footer__column p {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-transform: capitalize;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__link {
  display: flex;
  align-items: center;
}
.footer__link span {
  color: #E83D46;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
  padding: 20px 48px;
  border-radius: 40px;
  background: #FFF;
}
.footer__link div {
  border-radius: 40px;
  background: #FFF;
  width: 59px;
  height: 59px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__text {
  text-align: center;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 64px;
  max-width: 850px;
  width: 100%;
  border-radius: 24px;
  background: #F7F7F7;
}
@media (max-width: 767px) {
  .cookies {
    padding: 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookies__title {
  color: #0D0D0D;
  font-size: 48px;
  font-weight: 400;
  line-height: 90%;
}
.cookies__text a {
  color: #0D0D0D;
  text-decoration: underline;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
  border: 1px solid transparent;
  width: 100%;
  padding: 20px 0;
  border-radius: 40px;
  background: #E83D46;
}
.cookies__btn_sub {
  color: #0D0D0D;
  background: transparent;
  border: 1px solid #2C2930;
}

.hero {
  margin: 66px 0 0;
  padding: 85px 0 0;
}
.hero_game {
  margin-bottom: 120px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 991px) {
  .hero__row {
    flex-direction: column;
    gap: 24px;
  }
}
.hero__title_dash {
  word-break: break-all;
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 305px;
}
@media (max-width: 991px) {
  .hero__column {
    max-width: 100%;
  }
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__img_game {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.about {
  margin: 120px 0 0;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__card {
  border-radius: 40px;
  background: #FFF;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}
@media (max-width: 767px) {
  .info__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__card {
  border-radius: 40px;
  border: 2px solid #FFF;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.info__card_white {
  border: 2px solid transparent;
  background: #FFF;
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info .footer__link_red span,
.info .footer__link_red div {
  color: #FFF;
  background: #E83D46;
}

.start {
  margin: 120px 0;
}
.start__content {
  display: flex;
  flex-direction: column;
}
.start__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.start__link {
  color: #FFF;
  text-align: center;
  font-size: clamp(72px, 14vw, 164px);
  font-weight: 700;
  line-height: 90%;
  text-transform: lowercase;
}

.catallog {
  border-radius: 120px;
  background: #FFF;
  padding: 60px;
  margin: 120px 0;
}
@media (max-width: 1023px) {
  .catallog {
    padding: 60px 24px;
  }
}
.catallog__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.catallog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
@media (max-width: 991px) {
  .catallog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .catallog__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catallog__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 40px;
  background: #E83D46;
  position: relative;
}
.catallog__card img {
  -o-object-fit: cover;
     object-fit: cover;
}
.catallog__card a {
  position: absolute;
  inset: 0;
}

.privacy {
  margin: 66px 0 0;
  padding: 80px 0;
}
.privacy__title {
  color: #FFF;
  font-size: 40px;
  font-weight: 400;
  line-height: 90%;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin-bottom: 40px;
}