@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&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: "Bebas Neue", sans-serif;
  background: linear-gradient(180deg, #150001 0%, #0E1015 50%, #150001 100%);
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #150001 0%, #0E1015 50%, #150001 100%);
}

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

.main {
  flex: 1 1 auto;
}

.h1 {
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[class*=__text] {
  color: #FFF;
  font-family: "Roboto Condensed";
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 767px) {
  [class*=__text] {
    font-size: 20px;
  }
}

.btn {
  display: inline-block;
  border-radius: 2px;
  background: linear-gradient(92deg, #D90F19 21.43%, #F90B10 50.63%, #F90B10 100%, #D90F19 117.04%);
  box-shadow: 0 4px 97px 0 rgba(249, 11, 16, 0.5);
  color: #D9D9D9;
  font-family: "Bebas Neue";
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding: 16px 32px;
  text-align: center;
}

.label {
  color: #FFB200;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .label {
    font-size: 32px;
  }
}

.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/vaelstrixgale/assets/fonts/DrukCyr-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Druk Cyr";
  src: url(/wp-content/themes/vaelstrixgale/assets/fonts/DrukCyr-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #0E1015;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
@media (max-width: 767px) {
  .header__content {
    padding: 12px 0;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 2px;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #D90F19;
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@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: #0E1015;
    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: 24px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
    gap: 32px;
  }
}
.menu__link {
  color: #D9D9D9;
  font-family: "Bebas Neue";
  font-size: 24px;
  font-style: normal;
  line-height: 140%;
  text-transform: uppercase;
}

.footer {
  padding: 42px 0;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/bg-3.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .footer {
    background: url(/wp-content/themes/vaelstrixgale/assets/img/bg-3_mob.webp) no-repeat center/cover;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer__menu a {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .footer__menu a {
    font-size: 20px;
  }
}
@media (max-width: 429px) {
  .footer__menu {
    flex-direction: column;
    gap: 12px;
  }
}
.footer__row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer__row p,
.footer__row a {
  color: #FFF;
  font-family: "Roboto Condensed";
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 991px) {
  .footer__row {
    gap: 12px;
    flex-direction: column;
    justify-content: center;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 991px) {
  .footer__social {
    gap: 12px;
  }
}
.footer__line {
  background: rgba(255, 255, 255, 0.3);
  height: 1px;
  width: 100%;
}
.footer__txt {
  color: #FFF;
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 48px;
  max-width: 1116px;
  width: 100%;
  background: #0E1015;
}
@media (max-width: 767px) {
  .cookies {
    padding: 48px 12px;
  }
}
.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: #D9D9D9;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 2px;
}
@media (max-width: 575px) {
  .cookies__btn {
    width: 100%;
  }
}
.cookies__btn:first-child {
  background: rgba(0, 0, 0, 0.2);
  background: linear-gradient(92deg, #D90F19 21.43%, #F90B10 50.63%, #F90B10 100%, #D90F19 117.04%);
  box-shadow: 0 4px 97px 0 rgba(249, 11, 16, 0.5);
  border: 1px solid #D90F19;
}
.cookies__btn:last-child {
  border: 1px solid #D90F19;
}

.hero {
  margin: 82px 0 0;
  padding: 96px 0;
  position: relative;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/bg-1.webp) no-repeat center/cover;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero {
    padding: 48px 0;
    margin: 56px 0 0;
    background: url(/wp-content/themes/vaelstrixgale/assets/img/bg-1_mob.webp) no-repeat center/cover;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 736px;
}
@media (max-width: 991px) {
  .hero__content {
    max-width: 100%;
  }
}
.hero__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .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__link {
  margin-top: 36px;
  width: -moz-fit-content;
  width: fit-content;
}

.about {
  padding: 96px 0;
  position: relative;
  z-index: 2;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/bg-2.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .about {
    padding: 48px 0;
    background: url(/wp-content/themes/vaelstrixgale/assets/img/bg-2_mob.webp) no-repeat center/cover;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 736px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .about__content {
    max-width: 100%;
    margin: 0;
  }
}
.about__img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .about__img {
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.categories {
  padding: 96px 0;
}
@media (max-width: 767px) {
  .categories {
    padding: 48px 0;
  }
}
.categories__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .categories__content {
    gap: 24px;
  }
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.categories__grid_advantages {
  padding: 24px;
  background: linear-gradient(180deg, #131313 0%, #310002 80.03%);
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.categories__grid_advantages::before {
  content: "";
  position: absolute;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/left.svg) no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
}
.categories__grid_advantages::after {
  content: "";
  position: absolute;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/right.svg) no-repeat;
  background-size: contain;
  top: 0;
  right: 0;
  width: 17px;
  height: 17px;
}
@media (max-width: 767px) {
  .categories__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.categories__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.258px solid rgba(241, 78, 78, 0);
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.8) 0%, rgba(49, 0, 2, 0.8) 80.03%);
  backdrop-filter: blur(2px);
}
.categories__card_advantages {
  background: none;
  backdrop-filter: none;
  border: none;
}
.categories__card_evaluate {
  padding: 24px;
  background: linear-gradient(180deg, #131313 0%, #310002 80.03%);
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.categories__card_evaluate::before {
  content: "";
  position: absolute;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/left.svg) no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
}
.categories__card_evaluate::after {
  content: "";
  position: absolute;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/right.svg) no-repeat;
  background-size: contain;
  top: 0;
  right: 0;
  width: 17px;
  height: 17px;
}
.categories__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px 24px;
}
.categories__name {
  color: #FFF;
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding: 12px 24px;
  background: #761116;
}
@media (max-width: 767px) {
  .categories__name {
    font-size: 32px;
  }
}
.categories__name_advantages {
  background: none;
  padding: 0;
}

.catalog {
  margin: 82px 0 0;
  padding: 96px 0;
}
@media (max-width: 767px) {
  .catalog {
    padding: 48px 0;
    margin: 56px 0 0;
  }
}
.catalog__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.catalog__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.catalog__select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .catalog__select {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog__card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, #131313 0%, #310002 80.03%);
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.catalog__card::before {
  content: "";
  position: absolute;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/left.svg) no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
}
.catalog__card::after {
  content: "";
  position: absolute;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/right.svg) no-repeat;
  background-size: contain;
  top: 0;
  right: 0;
  width: 17px;
  height: 17px;
}
.catalog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__name {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .catalog__name {
    font-size: 32px;
  }
}

.game {
  margin: 82px 0 0;
  padding: 96px 0;
  background: url(/wp-content/themes/vaelstrixgale/assets/img/bg-4.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .game {
    padding: 48px 0;
    margin: 56px 0 0;
    background: url(/wp-content/themes/vaelstrixgale/assets/img/bg-4_mob.webp) no-repeat center/cover;
  }
}
.game__content {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .game__content {
    flex-direction: column;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 546px;
}
@media (max-width: 767px) {
  .game__column {
    max-width: 100%;
  }
}

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