@import url("https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Lora:ital,wght@0,400..700;1,400..700&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 {
  font-family: "Poppins", sans-serif;
}

.lock {
  overflow: hidden;
}

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

.main {
  flex: 1 1 auto;
}

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

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

[class*=__text] {
  color: #2C2930;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
}
.header_privacy {
  top: 0;
  background: #000;
}
.header_scroll {
  background: #000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  font-weight: 800;
  line-height: 90%;
  letter-spacing: 1.92px;
  text-transform: capitalize;
}

@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: #fff;
  }
  .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: #2C2930;
    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: 4px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.4);
  padding: 4px;
}
@media (max-width: 991px) {
  .menu__list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 4px;
  }
}
.menu__item a {
  color: #2C2930;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-transform: capitalize;
  border-radius: 30px;
  background: #FFF;
  padding: 12px 24px;
  display: inline-block;
}

.footer {
  padding-bottom: 32px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__address {
  display: flex;
  justify-content: center;
  gap: 49px;
}
.footer__address a,
.footer__address p {
  color: #2C2930;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 767px) {
  .footer__address {
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .footer__address {
    flex-direction: column;
  }
}
.footer__line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.footer__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 49px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__txt {
  color: #2C2930;
  font-size: 14px;
  font-weight: 400;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 49px;
}
.footer__menu a {
  color: #2C2930;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 64px;
  max-width: 850px;
  width: 100%;
  border-radius: 24px;
  background: #F7F7F7;
}
@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: #2C2930;
  font-size: 48px;
  font-weight: 700;
  line-height: 90%;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  border-radius: 30px;
  background: #7447EE;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 120%;
  text-transform: capitalize;
  border: 1px solid transparent;
  width: 100%;
  padding: 20px 0;
}
.cookies__btn_sub {
  color: #000;
  background: transparent;
  border: 1px solid #2C2930;
}

.hero {
  background: url(/wp-content/themes/xynorelia/img/bg.webp) no-repeat center/cover;
}
.hero_games {
  padding: 91px 0 437px;
}
@media (max-width: 575px) {
  .hero_games {
    padding: 80px 0 437px;
  }
}
.hero_game {
  padding: 91px 0 112px;
}
@media (max-width: 575px) {
  .hero_game {
    padding: 80px 0 112px;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.hero__title {
  color: #F7FE28;
  text-align: center;
  font-size: clamp(72px, 18vw, 170px);
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}
.hero__title_dash {
  word-break: break-all;
}
.hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__row a {
  color: #F7FE28;
  font-size: 44px;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .hero__row {
    flex-direction: column;
    gap: 24px;
  }
}
.hero__icon {
  position: absolute;
}
.hero__icon_left {
  top: 80px;
}
@media (max-width: 575px) {
  .hero__icon_left {
    top: 30px;
  }
}
.hero__icon_right {
  top: 240px;
  right: 0;
}
@media (max-width: 575px) {
  .hero__icon_right {
    top: 150px;
  }
}

.about {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 150px;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.about__title {
  color: #2C2930;
  text-align: center;
  font-size: clamp(72px, 13vw, 129px);
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}
.about__title span {
  color: #7447EE;
}
.about__img {
  position: absolute;
  right: 0;
  top: 90px;
  transform: rotate(-9.612deg);
  padding: 16px 16px 58px 16px;
  background: #FFF;
  z-index: -1;
}
@media (max-width: 991px) {
  .about__img {
    top: 240px;
    right: 0px;
    padding: 8px 8px 32px;
  }
  .about__img img {
    width: 75px;
    height: 66px;
  }
}
.about__img-second {
  position: absolute;
  top: 400px;
  right: 100px;
  transform: rotate(22.111deg);
  padding: 16px 16px 58px 16px;
  background: #FFF;
  z-index: -1;
}
.about__img-second p {
  color: #7447EE;
  text-align: center;
  font-family: "Gloria Hallelujah";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  width: 381px;
  transform: rotate(320deg);
  position: absolute;
  top: 240px;
  right: -60px;
}
@media (max-width: 991px) {
  .about__img-second {
    top: auto;
    bottom: 0;
    right: 0;
    padding: 8px 8px 32px;
  }
  .about__img-second img {
    width: 206px;
  }
}
@media (max-width: 991px) {
  .about__img-second img {
    width: 115px;
  }
  .about__img-second p {
    font-size: 13.421px;
    top: 148px;
    width: 140px;
    right: 0px;
  }
}
.about__img-third {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: #F7FE28;
}
.about__img-third p {
  color: #2C2930;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 100%;
}
@media (max-width: 991px) {
  .about__img-third img {
    width: 190px;
    height: 190px;
  }
  .about__img-third p {
    font-size: 13.421px;
    font-weight: 800;
  }
}
.about__img-four {
  position: absolute;
  top: 400px;
  left: 0;
  transform: rotate(-18.131deg);
  padding: 16px 16px 58px;
  background: #fff;
  z-index: -1;
}
.about__img-four p {
  color: #2C2930;
  text-align: center;
  font-family: "Gloria Hallelujah";
  font-size: 24px;
  font-weight: 400;
  line-height: 90%;
  position: absolute;
  top: 340px;
  left: 0;
  width: 381px;
  transform: rotate(26deg);
}
@media (max-width: 991px) {
  .about__img-four {
    bottom: 0;
    top: auto;
    padding: 8px 8px 32px;
  }
  .about__img-four img {
    width: 206px;
  }
}
@media (max-width: 991px) {
  .about__img-four img {
    width: 115px;
  }
  .about__img-four p {
    font-size: 13.421px;
    top: 180px;
    left: 0;
    width: 137px;
  }
}

.info {
  margin-bottom: 80px;
}
.info__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .info__content {
    align-items: flex-start;
  }
}
.info__title {
  color: #2C2930;
  text-align: center;
  font-family: Lora;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 90%;
}
.info__column {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 340px;
}
@media (max-width: 767px) {
  .info__column {
    max-width: 198px;
    gap: 47px;
  }
}
.info .game__link {
  text-align: center;
  display: block;
  margin-top: auto;
}
@media (max-width: 767px) {
  .info .game__link {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .info .catallog__column {
    transform: rotate(-21.2deg);
  }
}
@media (max-width: 767px) {
  .info .catallog__column_sub {
    display: none;
  }
}

.catallog {
  padding: 80px 0;
}
.catallog__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.catallog__column {
  display: flex;
  flex-direction: column;
  background: #FFF;
  padding: 16px;
  gap: 16px;
  transform: rotate(-21.2deg);
}
@media (max-width: 1439px) {
  .catallog__column {
    transform: rotate(-6.2deg);
  }
}
@media (max-width: 767px) {
  .catallog__column {
    transform: rotate(0deg);
  }
  .catallog__column img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.catallog__column_sub {
  transform: rotate(-158.8deg);
}
@media (max-width: 1439px) {
  .catallog__column_sub {
    transform: rotate(-173.8deg);
  }
}
@media (max-width: 767px) {
  .catallog__column_sub {
    transform: rotate(-180deg);
  }
  .catallog__column_sub img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.game {
  padding: 80px 0;
}
.game__content {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 767px) {
  .game__content {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .game__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.game__link {
  color: #7447EE;
  font-size: 44px;
  font-weight: 700;
  line-height: 90%;
  text-decoration: underline;
  text-transform: uppercase;
}

.privacy {
  margin-top: 76px;
  padding: 40px 0;
}
.privacy__title {
  color: #2C2930;
  font-size: clamp(44px, 7vw, 64px);
  font-weight: 700;
  margin-bottom: 49px;
}