@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&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: "Bebas Neue", sans-serif;
}

.lock {
  overflow: hidden;
}

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

.main {
  flex: 1 1 auto;
}

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

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

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

.h2 {
  color: #FFF;
  font-family: "Bebas Neue";
  font-size: clamp(50px, 5vw, 60px);
  font-weight: 400;
}

.h3 {
  color: #FFF;
  font-family: "Bebas Neue";
  font-size: 44px;
  font-weight: 400;
}

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

.btn {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #8F2DD1;
  padding: 24px 50px;
}

.btn-border {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  border-radius: 60px;
  border: 1px solid #FFF;
  padding: 24px 50px;
}

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

.footer {
  padding: 0 0 20px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 429px) {
  .footer .header__menu {
    flex-direction: column;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 20px;
  max-width: 800px;
  width: 100%;
  border-radius: 30px;
  border: 3px solid #8F2DD1;
  background: #030303;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookies__title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookies__btns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
.cookies__btn {
  width: 100%;
  padding: 24px 0;
}

.hero {
  margin: 70px 0 0;
  padding: 60px 0;
  background: url(/wp-content/themes/klomarith/img/bg.webp) no-repeat center/cover;
}
@media (max-width: 429px) {
  .hero {
    margin: 107px 0 0;
  }
}
.hero__title {
  font-family: "Bebas Neue";
  font-size: clamp(94px, 28vw, 345px);
  font-weight: 400;
  line-height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, #FFF 50%, rgba(255, 255, 255, 0.12) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hero__row {
    flex-direction: column;
    gap: 20px;
  }
}
.hero__item {
  max-width: 377px;
}
.hero__item_sub {
  max-width: 305px;
}
.hero__column {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 575px) {
  .hero__column {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .hero__column_sub {
    margin-left: auto;
  }
}

.about {
  margin: 80px 0;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 767px) {
  .about__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about__img {
  max-width: 807px;
  width: 100%;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__arrow {
  border-radius: 50%;
  background: #8F2DD1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.about__grig {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .about__grig {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__column_sub {
  gap: 20px;
}
.about__link {
  width: -moz-fit-content;
  width: fit-content;
}
.about__subimg {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}
.about__subimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__subrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about__card {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about__card:nth-child(2) {
  padding: 20px;
  background: linear-gradient(90deg, #8F2DD1 0%, rgba(143, 45, 209, 0) 100%);
}
.about__num {
  color: rgba(255, 255, 255, 0.5);
  font-size: 40px;
  font-weight: 400;
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about__name {
  color: #FFF;
  font-size: 32px;
  font-weight: 400;
}

.choose__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.choose__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 991px) {
  .choose__row {
    width: 100%;
  }
}
.choose__card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #030303;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-width: 380px;
}
.choose__card:nth-child(1), .choose__card:nth-child(3), .choose__card:nth-child(5) {
  background: #8F2DD1;
}
@media (max-width: 991px) {
  .choose__card {
    max-width: 100%;
    width: 100%;
  }
}

.faq {
  margin: 80px 0;
}
.faq__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.faq__title {
  max-width: 822px;
  margin: 0 auto;
  text-align: center;
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.faq__card {
  width: 100%;
  display: flex;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #8F2DD1;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
}
.faq__card.active .faq__arrow img {
  transform: rotate(180deg);
}
.faq__card.active .faq__text {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}
.faq__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.faq__name {
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
}
.faq__text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.faq__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}
.faq__arrow img {
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}

.gallery__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.gallery__grig {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .gallery__grig {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .gallery__grig {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info {
  margin: 80px 0;
}
.info__content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .info__content {
    flex-direction: column;
  }
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__label {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .info__label {
    padding: 12px 32px;
  }
}
.info__address a,
.info__address p {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .info__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .info__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.catallog {
  margin: 70px 0 0;
}
@media (max-width: 429px) {
  .catallog {
    margin: 107px 0 0;
  }
}
.catallog__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.catallog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .catallog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.catallog__card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transition: opacity 0.4s ease-in;
}
.catallog__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #8F2DD1;
}
.catallog__card:hover::before {
  opacity: 1;
}
.catallog__card:hover .catallog__name {
  opacity: 1;
}
@media (max-width: 767px) {
  .catallog__card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.catallog__name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.catallog__link {
  position: absolute;
  inset: 0;
}
.catallog__link-sub {
  width: -moz-fit-content;
  width: fit-content;
}

.game {
  margin: 80px 0 0;
  background: rgba(143, 45, 209, 0.1);
  padding: 60px 0;
}
.game__content {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .game__content {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .game__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .game__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.privacy {
  margin: 70px 0 80px;
}
@media (max-width: 429px) {
  .privacy {
    margin: 107px 0 80px;
  }
}