@import url("https://fonts.googleapis.com/css2?family=Anton&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&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 {
  background: #FFF;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.h1 {
  font-size: clamp(44px, 7vw, 100px);
  color: #0F0F0F;
  font-family: "Anton";
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.h1 span {
  color: #124BF2;
}

.h2 {
  font-size: clamp(44px, 6vw, 80px);
  color: #0F0F0F;
  font-family: "Anton";
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.h2 span {
  color: #124BF2;
}

[class*=__text] {
  color: rgba(15, 15, 15, 0.7);
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
}

.line {
  background: linear-gradient(180deg, #00C300 0%, #A2F642 100%);
  max-width: 430px;
  width: 100%;
  height: 3px;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 24px 50px;
  color: #FFF;
  font-family: Anton;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 60px;
  background: #124BF2;
  box-shadow: 0 5px 30px 0 rgba(18, 75, 242, 0.8);
}

.white {
  color: rgba(255, 255, 255, 0.7);
}

.pb-60 {
  padding-bottom: 60px;
}

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

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

.footer {
  padding-bottom: 20px;
  background: #FFF;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__text {
  color: rgba(15, 15, 15, 0.6);
  font-family: Anton;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 40px;
  border: 3px solid #124BF2;
  background: #0F0F0F;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cookies__title {
  color: #FEFEFE;
  text-align: center;
  font-family: Anton;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
}
.cookies__text {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #FFF;
  border: 2px solid #FFF;
  background: transparent;
  box-shadow: none;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #FFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0F0F0F;
  font-family: Anton;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #0F0F0F;
  font-family: Anton;
  font-size: 14px;
  font-weight: 400;
}

.games {
  padding: 60px 0;
  background: #124BF2;
}
.games__title {
  color: #fff;
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.games__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.games__grid {
  max-width: 540px;
}
@media (max-width: 575px) {
  .games__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.games__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.games__row {
  display: flex;
  gap: 20px;
}
.games__card {
  position: relative;
}
.games__card a {
  position: absolute;
  inset: 0;
}
@media (max-width: 767px) {
  .games .info__img {
    max-width: 196px;
  }
  .games .info__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.catalog__bg {
  padding: 60px 0;
  background: #124BF2;
  margin-bottom: 60px;
}
.catalog__link {
  color: #124BF2;
  font-family: Anton;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 60px;
  background: #FFF;
  box-shadow: 0 5px 30px 0 rgba(255, 255, 255, 0.8);
  padding: 24px 50px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}

.faq__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq__item {
  border-radius: 20px;
  background: rgba(18, 75, 242, 0.1);
  padding: 20px;
}
.faq__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}
.faq__name {
  color: #0F0F0F;
  font-family: Anton;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}
.faq__arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.faq__item.active .faq__arrow {
  transform: rotate(180deg);
}
.faq__item.active .faq__text {
  max-height: 200px;
  margin-top: 15px;
}

.info__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .info__content {
    flex-direction: column;
  }
}
.info__address {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(18, 75, 242, 0.1);
  padding: 20px;
}
.info__address a,
.info__address p {
  color: #124BF2;
  font-family: Anton;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .info__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .info__img_hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .info__img_hero {
    height: 481px;
  }
}

.privacy {
  margin: 76px 0 0;
}
@media (max-width: 575px) {
  .privacy {
    margin: 118px 0 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privacy__content_center {
  align-items: center;
}