@import url("https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@100..800&family=Geist+Mono:wght@100..900&family=Geist:wght@100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&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;
}

.lock {
  overflow: hidden;
}

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

.main {
  flex: 1 1 auto;
}

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

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

[class*=__text] {
  color: #000;
  font-family: Geist;
  font-size: 15px;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: 0.15px;
}

.h1 {
  color: #000;
  font-family: "Anek Tamil";
  font-size: clamp(37px, 10vw, 106px);
  font-weight: 800;
  line-height: 110%;
  letter-spacing: -5.3px;
  text-transform: uppercase;
}
.h1 span {
  color: #808DFD;
}
@media (max-width: 991px) {
  .h1 {
    line-height: 80%;
    letter-spacing: -1.85px;
  }
}

.h2 {
  color: #000;
  font-family: "Anek Tamil";
  font-size: 36px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -1.08px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .h2 {
    font-size: 28px;
    letter-spacing: -0.84px;
  }
}

.h3 {
  color: #000;
  font-family: "Anek Tamil";
  font-size: 25px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -0.75px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .h3 {
    font-size: 22px;
    letter-spacing: -0.66px;
  }
}

.black {
  color: #000 !important;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  border-bottom: 1px solid #000;
  background: #E9ECFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1px;
}

@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: #000;
  }
  .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: #E9ECFF;
    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: 60px;
}
@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: #000;
  font-family: "Geist Mono";
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.15px;
  text-transform: uppercase;
}
.menu__btn {
  color: #000;
  font-family: "Geist Mono";
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.15px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 7.246px;
  background: #808CFD;
  padding: 12px 17px;
}

.footer {
  padding: 27px 0 50px;
  border-top: 1px solid #000;
  background: #E9ECFF;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 169px;
}
@media (max-width: 767px) {
  .footer__content {
    gap: 80px;
  }
}
.footer__logo {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer__logo {
    flex-direction: column;
    gap: 28px;
  }
}
.footer__logo-title {
  color: #000;
  font-family: "Instrument Sans";
  font-size: 52.432px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -2.622px;
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer__column {
    gap: 40px;
  }
}
.footer__row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    gap: 16px;
  }
}
.footer__column-sub {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__column-sub h3 {
  color: #000;
  font-family: "Anek Tamil";
  font-size: 22px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.66px;
  text-transform: uppercase;
}
.footer__row-sub {
  display: flex;
  align-items: center;
}
.footer__row-sub a,
.footer__row-sub p {
  color: #000;
  font-family: Geist;
  font-size: 14px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: 0.14px;
}
.footer__txt {
  color: #000;
  font-family: Geist;
  font-size: 14px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: 0.14px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__menu a {
  color: #000;
  font-family: Geist;
  font-size: 14px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: 0.14px;
}
@media (max-width: 575px) {
  .footer__menu {
    gap: 10px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 64px;
  max-width: 850px;
  width: 100%;
  background: #E9ECFF;
}
@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: #000;
  font-family: "Anek Tamil";
  font-size: 36px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -1.08px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .cookies__title {
    font-size: 28px;
    letter-spacing: -0.84px;
  }
}
.cookies__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 575px) {
  .cookies__btns {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cookies__btn {
  color: #000;
  font-family: "Geist Mono";
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.15px;
  text-transform: uppercase;
  padding: 12px 0;
  border-radius: 7.246px;
  background: #808CFD;
  width: 100%;
}
.cookies__link {
  text-align: center;
  color: #000;
  font-family: "Geist Mono";
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.15px;
  text-transform: uppercase;
  padding: 12px 0;
  width: 100%;
}

.hero {
  margin: 82px 0 0;
  padding: 20px 0;
}
.hero_sub {
  margin: 0;
}

.catallog {
  background: #E9ECFF;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.catallog__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .catallog__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catallog__card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px;
}
@media (max-width: 767px) {
  .catallog__card {
    padding: 30px 0;
  }
}
.catallog__card_border {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
@media (max-width: 767px) {
  .catallog__card_border {
    border: none;
  }
}
.catallog__body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.catallog__column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.catallog__name {
  color: #000;
  font-family: Geist;
  font-size: 17px;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: -0.51px;
  position: relative;
}
.catallog__name::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
}
.catallog__link {
  text-align: center;
  color: #000;
  font-family: "Geist Mono";
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.15px;
  text-transform: uppercase;
  border-radius: 7.246px;
  background: #808CFD;
  padding: 12px 0;
  width: 100%;
}
.catallog__line {
  width: 100%;
  height: 1px;
  background: #000;
}
@media (max-width: 767px) {
  .catallog__line {
    display: none;
  }
}

.catallog-info {
  padding: 102px 0;
  background: #808CFD;
}
.catallog-info__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.catallog-info__label {
  color: #000;
  text-align: center;
  font-family: Geist;
  font-size: 15px;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: 0.15px;
}
.catallog-info__title {
  color: #000;
  text-align: center;
  font-family: "Anek Tamil";
  font-size: 57px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2.85px;
  text-transform: uppercase;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .catallog-info__title {
    font-size: 44px;
    letter-spacing: -2.2px;
  }
}
.catallog-info__txt {
  max-width: 780px;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-family: Geist;
  font-size: 15px;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: 0.15px;
}
.catallog-info__link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #000;
  font-family: "Geist Mono";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.15px;
  text-transform: uppercase;
  padding: 12px 17px;
  border-radius: 7.246px;
  background: #E9ECFF;
}

.game {
  background: #E9ECFF;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.game_sub {
  border-top: none;
}
.game_top {
  border-bottom: none;
}
.game__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 1023px) {
  .game__content {
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .game__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 66px;
}
@media (max-width: 1023px) {
  .game__column {
    padding: 20px 20px 30px;
  }
}
.game__column_line {
  border-left: 1px solid #000;
}
.game__column_sub {
  padding: 0 0px;
  justify-content: flex-start;
}
.game__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game__title-main {
  padding: 42px 15px;
}
.game__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px;
}
.game__item:nth-child(2) {
  border-top: 1px solid #000;
}
.game__item:nth-child(3) {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.game__item:nth-child(4) {
  border-bottom: 1px solid #000;
}
.game__link {
  color: #000;
  font-family: "Geist Mono";
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.15px;
  text-transform: uppercase;
  padding: 42px 15px;
}
.game .menu__btn {
  width: -moz-fit-content;
  width: fit-content;
}

.privacy {
  margin: 82px 0 0;
  padding: 80px 0;
}
.privacy__title {
  color: #1E2423;
  font-family: Geist;
  font-size: 64px;
  font-weight: 700;
  line-height: 90%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .privacy__title {
    font-size: 44px;
  }
}