@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,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: "Anonymous Pro", monospace;
  background: #DEF9F4;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  color: #5F4B40;
  font-size: clamp(30px, 5vw, 60px);
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
}
.title span {
  font-weight: 700;
  font-style: normal;
}

[class*=__text] {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.btn {
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  background: #5F4B40;
  padding: 20px 50px;
  width: -moz-fit-content;
  width: fit-content;
}

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

.white {
  color: #fff !important;
}

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

@font-face {
  font-family: "Druk Cyr";
  src: url(/wp-content/themes/static-site-theme/assets/fonts/DrukCyr-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Druk Cyr";
  src: url(/wp-content/themes/static-site-theme/assets/fonts/DrukCyr-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #DEF9F4;
}
.header__content {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 7px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5F4B40;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

@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: #5F4B40;
  }
  .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: #DEF9F4;
    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: 58px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__link {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer {
  padding: 60px 0;
  border: 8px solid #5F4B40;
  background: #DEF9F4;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer__contact {
    gap: 10px;
  }
}
.footer__contact h2 {
  color: #5F4B40;
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 400;
}
.footer__address {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
.footer__address a {
  color: #000;
}
.footer__title {
  color: #5F4B40;
  text-align: center;
  font-size: clamp(50px, 13vw, 160px);
  font-weight: 400;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__title span {
  font-style: italic;
}
.footer__item {
  background: #5F4B40;
  padding: 10px 0;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 80px;
}
.footer__menu a {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 575px) {
  .footer__menu a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 80px;
  }
}
.footer__txt {
  text-align: center;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 20px;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 60px 40px;
  max-width: 1116px;
  width: 100%;
  background: #5F4B40;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .cookies__btns {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cookies__btns {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}
.cookies__btn {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px 50px;
}
@media (max-width: 575px) {
  .cookies__btn {
    width: 100%;
  }
}
.cookies__btn:first-child {
  opacity: 0.4;
  background: #DEF9F4;
}
.cookies__btn:last-child {
  background: #DEF9F4;
}

.hero {
  margin: 54px 0 0;
  padding: 46px 0;
  position: relative;
  z-index: 2;
}
.hero_about {
  padding: 114px 0;
}
@media (max-width: 1023px) {
  .hero_about {
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .hero {
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.hero__img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1023px) {
  .hero__img {
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__img_about {
  left: auto;
  right: 0;
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 490px;
  margin-left: auto;
  position: relative;
}
@media (max-width: 1023px) {
  .hero__column {
    margin: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .hero__column {
    gap: 40px;
  }
}
.hero__column_about {
  margin: 0;
}
.hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__txt {
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 9.375px;
  letter-spacing: -3px;
  text-transform: lowercase;
}
.hero__subcolumn {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.hero__title {
  color: #5F4B40;
  text-align: center;
  font-size: clamp(80px, 10vw, 110px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -6.6px;
  text-transform: uppercase;
}
.hero__title span {
  font-style: italic;
}
@media (max-width: 767px) {
  .hero__title {
    letter-spacing: -4.8px;
  }
}
.hero__link {
  margin: 0 auto;
}
.hero__icon {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  left: 0;
}

.stand {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .stand {
    padding: 40px 0;
  }
}
.stand__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stand__row {
  display: flex;
  justify-content: space-between;
  gap: 122px;
}
@media (max-width: 767px) {
  .stand__row {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.stand__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .stand__icon {
    position: absolute;
    width: 58px;
    aspect-ratio: 1/1;
  }
  .stand__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.stand__arrows {
  display: flex;
  align-items: center;
  gap: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.stand__prev, .stand__next {
  cursor: pointer;
}
.stand__slide {
  max-width: 748px;
}
.stand__card {
  padding: 10px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 364px;
}
.stand__name {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  line-height: 80%;
  text-transform: capitalize;
  padding: 16px 0;
  background: #5F4B40;
  height: 100%;
}
.stand .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.info {
  padding: 60px 0;
  position: relative;
}
@media (max-width: 767px) {
  .info {
    padding: 40px 0;
  }
}
.info__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.info__title {
  color: #5F4B40;
  text-align: center;
  font-size: clamp(40px, 12vw, 126.888px);
  font-style: italic;
  font-weight: 400;
  line-height: 80%;
}
.info__img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .info__img {
    position: static;
    transform: none;
  }
  .info__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .info__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.faq {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .faq__column {
    gap: 20px;
  }
}
.faq__accardion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
.faq__subrow {
  display: flex;
  align-items: center;
  gap: 21px;
}
.faq__plus {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: #5F4B40;
  transition: transform 0.3s ease;
}
.faq__plus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq__plus::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq__accardion.active .faq__plus::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq__name {
  color: #5F4B40;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.2px;
}
.faq__text {
  border-left: 2px solid #5F4B40;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq__accardion.active .faq__text {
  max-height: 200px;
  opacity: 1;
  padding: 6px 0 6px 10px;
}

.catalog {
  margin: 54px 0 0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .catalog {
    padding: 40px 0;
  }
}
.catalog__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalog__text {
  background: #FFF;
  padding: 10px;
  max-width: 792px;
  margin-left: auto;
}
.catalog__link {
  margin: 0 auto;
}
.catalog__grid {
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .catalog__grid {
    flex-direction: column;
    gap: 0;
  }
}
.catalog__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .catalog__row {
    margin: 0 auto;
  }
}
.catalog__icon {
  margin: 0 auto;
}
@media (max-width: 575px) {
  .catalog__icon {
    margin: 0;
  }
}
.catalog__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 575px) {
  .catalog__column {
    gap: 0;
  }
}
.catalog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.game {
  margin: 54px 0 0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .game {
    padding: 40px 0;
  }
}
.game__content {
  display: flex;
  flex-direction: column;
  gap: 90px;
  position: relative;
}
.game__title {
  max-width: 425px;
}
.game__icon {
  position: absolute;
}
.game__icon_big {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .game__icon_big {
    position: fixed;
    top: 55%;
    transform: none;
    right: 30px;
    left: auto;
  }
}
@media (max-width: 575px) {
  .game__icon_big {
    top: 60%;
  }
}
@media (max-width: 429px) {
  .game__icon_big {
    top: 65%;
  }
}
.game__icon_small {
  right: 0;
  top: 10%;
}
@media (max-width: 767px) {
  .game__icon_small {
    top: 5%;
  }
}
.game__line {
  background: #000;
  max-width: 190px;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
}
@media (max-width: 991px) {
  .game__line {
    display: none;
  }
}
.game__row {
  display: flex;
  gap: 50px;
}
@media (max-width: 991px) {
  .game__row {
    flex-direction: column;
    gap: 20px;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.game__text {
  background: #FFF;
  padding: 10px;
}
@media (max-width: 991px) {
  .game__img {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .game__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.policy {
  margin: 54px 0 0;
  padding: 96px 0;
}
@media (max-width: 767px) {
  .policy {
    padding: 48px 0;
  }
}