@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,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;
}

body {
  font-family: "Space Mono", monospace;
  background: #0F0F0F;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  color: #FFF;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 400;
  line-height: 90%;
  letter-spacing: -1.5px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .title {
    letter-spacing: -0.9px;
  }
}

[class*=__text] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.btn {
  display: flex;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  padding: 14px 40px;
  border-radius: 9px;
  background: linear-gradient(292deg, #D5DA63 -24.67%, #636EB4 60.45%);
}

.pink {
  color: #DB30DE;
}

.greenyellow {
  color: #BDF589;
}

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

.white {
  color: #fff !important;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
}
.header_scroll {
  background: #0F0F0F;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 47.688px;
  letter-spacing: -3px;
  background: linear-gradient(292deg, #D5DA63 -24.67%, #636EB4 60.45%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: 24px;
  }
}

@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: #fff;
  }
  .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: #0F0F0F;
    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: 40px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__link {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
}

.footer {
  border-radius: 40px 40px 0 0;
  background: linear-gradient(259deg, rgba(244, 0, 249, 0.76) 16.35%, rgba(99, 110, 180, 0.76) 47.54%, rgba(189, 245, 137, 0.76) 77.56%);
  padding: 40px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer__content {
    gap: 20px;
  }
}
.footer__title {
  color: #FFF;
  text-align: center;
  font-size: clamp(42px, 11vw, 150px);
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.footer__row {
  display: flex;
  align-items: center;
  gap: 43px;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__menu a {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__address a,
.footer__address p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.footer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer__item {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  border-radius: 20px;
  background: #636EB4;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 429px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  border-radius: 9px;
  background: #0F0F0F;
  padding: 14px 40px;
}
@media (max-width: 429px) {
  .cookies__btn {
    width: 100%;
  }
}

.hero {
  background: url(/wp-content/themes/eldravynmist/assets/img/bg.webp) no-repeat center/cover;
  padding: 126px 0 60px;
}
@media (max-width: 767px) {
  .hero {
    background: url(/wp-content/themes/eldravynmist/assets/img/bg-mob.webp) no-repeat center/cover;
    padding: 86px 0 40px;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__txt {
  color: #FFF;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
}
.hero__title {
  color: #FFF;
  text-align: center;
  font-size: clamp(50px, 10vw, 100px);
  font-weight: 400;
  line-height: 32.335px;
  letter-spacing: -7px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .hero__title {
    letter-spacing: -3.5px;
    line-height: 100%;
  }
}
.hero__img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .hero__img {
    margin: 0 auto 20px;
  }
}
.hero__row {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .hero__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.hero__subrow {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .hero__subrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.hero__item:first-child {
  padding: 10px;
}
.hero__num {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 28.286px;
  margin-bottom: 5px;
}

.about {
  background: #0F0F0F;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .about {
    padding: 40px 0;
  }
}
.about__content {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 575px) {
  .about__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about .catalog__label {
  justify-content: start;
}

.info {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .info {
    padding: 40px 0;
  }
}
.info__content {
  max-width: 1003px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 991px) {
  .info__content {
    max-width: 100%;
    width: 100%;
  }
}
.info__title {
  color: #FFF;
  text-align: center;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .info__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.info__icon {
  position: absolute;
}
@media (max-width: 991px) {
  .info__icon {
    position: relative;
  }
  .info__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.info__icon_left {
  left: -20px;
  top: -90px;
}
@media (max-width: 991px) {
  .info__icon_left {
    left: 0;
    top: 0;
  }
}
.info__icon_right {
  right: -20px;
  bottom: -50px;
}
@media (max-width: 991px) {
  .info__icon_right {
    top: 0;
    left: auto;
    right: 0;
  }
}

.choose {
  background: url(/wp-content/themes/eldravynmist/assets/img/bg-1.webp) no-repeat center/cover;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .choose {
    background: url(/wp-content/themes/eldravynmist/assets/img/bg-1_mob.webp) no-repeat center/cover;
    padding: 40px 0;
  }
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 767px) {
  .choose__content {
    gap: 40px;
  }
}
.choose__row {
  display: flex;
  align-items: center;
}
.choose__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 767px) {
  .choose__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.choose__body {
  border-radius: 20px;
  background: #6F78B0;
  box-shadow: 18.333px 33.333px 33.333px 0 rgba(0, 0, 0, 0.05);
  padding: 28px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: -28px;
  position: relative;
}
.choose__name {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.faq {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__row {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.faq__plus {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: #DB30DE;
  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__name {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}
.faq__text {
  border-left: 2px solid #DB30DE;
  padding: 6px 0 6px 10px;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease;
}
.faq .item.active .faq__text {
  max-height: 300px;
  margin-top: 24px;
  opacity: 1;
}
.faq .item.active .faq__plus::after {
  transform: translateX(-50%) rotate(90deg);
}

.catalog__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.catalog__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #BDF589;
  font-size: 20px;
  font-weight: 400;
}
.catalog__label span {
  width: 16px;
  height: 16px;
  background: #BDF589;
  border-radius: 50%;
  flex-shrink: 0;
}
.catalog__item {
  position: relative;
  max-width: 957px;
  width: 100%;
  margin: 0 auto;
  height: 560px;
}
.catalog__item a {
  position: absolute;
}
.catalog__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__item a {
  transition: transform 0.3s ease;
}
.catalog__item a:nth-child(1) {
  left: 0;
  z-index: 1;
}
.catalog__item a:nth-child(2) {
  left: 112px;
  top: 122px;
  z-index: 2;
}
.catalog__item a:nth-child(3) {
  left: 237px;
  top: 122px;
  z-index: 3;
}
.catalog__item a:nth-child(4) {
  left: 278px;
  top: 56px;
  z-index: 2;
}
.catalog__item a:nth-child(5) {
  right: 67px;
  bottom: 0;
  z-index: 2;
}
.catalog__item a:nth-child(6) {
  right: 0;
  top: 0;
  z-index: 1;
}
.catalog__item a:hover {
  z-index: 10;
  transform: translateY(-10px);
}
@media (max-width: 767px) {
  .catalog__item a {
    position: static;
    height: auto;
  }
  .catalog__item a:hover {
    transform: none;
    z-index: unset;
  }
}
@media (max-width: 767px) {
  .catalog__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
}

.game__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 767px) {
  .game__content {
    gap: 20px;
  }
}
.game__row {
  display: flex;
  align-items: center;
  gap: 50px;
}
.game__row:last-child {
  justify-content: center;
}
@media (max-width: 767px) {
  .game__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.game__title {
  color: #FFF;
  font-family: "Bai Jamjuree";
  font-size: 44px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 465px;
  width: 100%;
}
@media (max-width: 767px) {
  .game__title {
    font-size: 40px;
    max-width: 100%;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 578px;
  width: 100%;
}
.game__text_border {
  border-left: 3px solid #93BE6C;
  padding: 10px;
}
.game__link {
  width: -moz-fit-content;
  width: fit-content;
}

.privacy {
  margin: 76px 0 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .privacy__content {
    gap: 20px;
  }
}
.privacy__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.privacy ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin-left: 25px;
  list-style: disc;
}