@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Press+Start+2P&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: "Inter", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #1C1C1C;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

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

.main {
  flex: 1 1 auto;
}

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

.title {
  color: #1C1C1C;
  font-family: "Nico Moji";
  font-size: 64px;
  font-weight: 400;
  line-height: 90%;
  text-transform: uppercase;
}

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

.btn {
  color: #1C1C1C;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 120%;
  border-radius: 30px;
  background: #DD7038;
  padding: 20px 48px;
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid transparent;
}

.btn-border {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 120%;
  text-transform: capitalize;
  border: 1px solid #FFF;
  padding: 20px 48px;
  border-radius: 30px;
}

.white {
  color: #fff !important;
}

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

.header {
  position: fixed;
  top: 32px;
  width: 100%;
  z-index: 60;
  background: #191919;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFF;
  font-size: 24px;
  font-weight: 900;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    justify-content: center;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__menu a {
  display: inline-block;
  color: #191919;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  border-radius: 30px;
  border: 1px solid #F6F6F6;
  background: #FFF;
  padding: 16px 22px;
}
.header__menu a:hover {
  background: #DD7038;
  border: 1px solid #DD7038;
}

.footer {
  padding: 0 0 32px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 20px;
  border: 1px solid #FFF;
  padding: 40px;
}
@media (max-width: 767px) {
  .footer__content {
    padding: 24px;
  }
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.footer__subrow {
  display: flex;
  gap: 32px;
}
@media (max-width: 767px) {
  .footer__subrow {
    flex-direction: column;
  }
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__address a,
.footer__address p {
  display: flex;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
}
.footer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__item {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
  }
}
.footer__txt {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.footer__socail {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 60px;
  max-width: 850px;
  width: 100%;
  border-radius: 20px;
  background: #191919;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cookies__btns {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .cookies__btn {
    width: 100%;
  }
}

.game {
  margin: 100px 0 120px;
}
@media (max-width: 575px) {
  .game {
    margin: 156px 0 120px;
  }
}
.game__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 991px) {
  .game__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game__item {
  border-radius: 20px;
  background: #FFF;
  padding: 24px;
}
@media (max-width: 575px) {
  .game__title {
    word-break: break-all;
  }
}
.game__text {
  margin: 24px 0 72px;
}
.game__link {
  width: 100%;
}
.game__icon {
  width: -moz-fit-content;
  width: fit-content;
}
.game__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .game__icon {
    margin: 0 auto;
  }
}
.game__img {
  border-radius: 20px;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.game__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .game__img {
    margin: 0 auto;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 575px) {
  .about__title {
    word-break: break-all;
  }
}
.about__label {
  width: -moz-fit-content;
  width: fit-content;
}
.about__label img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .about__label img:first-child {
    display: none;
  }
}
.about__label img:last-child {
  display: none;
}
@media (max-width: 767px) {
  .about__label img:last-child {
    display: block;
  }
}
@media (max-width: 575px) {
  .about__label img:last-child {
    width: 152px;
    height: 174px;
  }
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 991px) {
  .about__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__card {
  border-radius: 20px;
  background: #FFF;
  padding: 32px;
}
.about__card_first {
  max-width: 325px;
  height: 194px;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .about__card_first {
    position: static;
    max-width: 100%;
    height: auto;
  }
}
.about__card_border {
  border-radius: 20px;
  border: 1px solid #FFF;
  background: none;
}
@media (max-width: 991px) {
  .about__item {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .about__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reviews {
  margin: 120px 0;
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .reviews__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews__card {
  border-radius: 20px;
  border: 1px solid #DD7038;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.reviews__card:nth-child(1) {
  transform: rotate(-4deg);
}
.reviews__card:nth-child(2) {
  border-radius: 20px;
  background: #FFF;
  border: 1px solid #FFF;
}
.reviews__card:nth-child(2) h3 {
  color: #1C1C1C;
}
.reviews__card:nth-child(3) {
  transform: rotate(4deg);
}
.reviews__row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.reviews__name {
  color: #FFF;
  font-family: "Nico Moji";
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}

.info {
  margin-bottom: 120px;
}
.info__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 24px;
  border-radius: 20px;
  background: #FFF;
  padding: 40px;
}
@media (max-width: 991px) {
  .info__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 575px) {
  .info__title {
    word-break: break-all;
  }
}
.info__link {
  width: 100%;
}
.info__img {
  width: -moz-fit-content;
  width: fit-content;
}
.info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .info__img {
    margin: 0 auto;
  }
}

.catallog {
  margin: 120px 0;
}
.catallog__card {
  width: -moz-fit-content;
  width: fit-content;
}
.catallog__arrows {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.swiper-slide {
  width: auto;
  box-sizing: border-box;
}

.privacy {
  margin: 100px 0 120px;
}
@media (max-width: 575px) {
  .privacy {
    margin: 156px 0 120px;
  }
}
.privacy__title {
  margin-bottom: 40px;
}