@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&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;
}

:root {
  --Text-Primary: #000E12;
  --Primary-500: #FA6444;
}

body {
  font-family: "Manrope", sans-serif;
  background: #000E12;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.h1 {
  color: #FFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
  text-transform: capitalize;
}

.label {
  color: #FA6444;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.btn {
  display: flex;
  align-items: center;
  text-align: center;
  white-space: nowrap;
}
.btn span {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 32px;
  background: #FA6444;
  padding: 16px 32px;
}
.btn-arrow {
  border-radius: 32px;
  background: #FA6444;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.white {
  color: #fff !important;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #000E12;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
}

@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: url(/wp-content/themes/velmorithcrest/assets/img/menu.webp) no-repeat center/contain, linear-gradient(107deg, var(--Text-Primary, rgba(0, 14, 18, 0.48)) 26.23%, var(--Primary-500, rgba(250, 100, 68, 0.48)) 95.39%), linear-gradient(0deg, rgba(196, 196, 196, 0.16) 0%, rgba(196, 196, 196, 0.16) 100%), #000E12;
    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: 96px;
  }
}
.menu__item_mob {
  display: none;
}
@media (max-width: 767px) {
  .menu__item_mob {
    display: block;
  }
}
.menu__link {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  text-transform: uppercase;
}

.footer {
  padding: 96px 0;
  background: linear-gradient(182deg, rgba(250, 100, 68, 0.08) -137.11%, #000E12 81.27%);
}
@media (max-width: 767px) {
  .footer {
    padding: 48px 0;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__menu a {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .footer__menu {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__address {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
}
.footer__address a {
  color: #FFF;
}
@media (max-width: 991px) {
  .footer__address {
    gap: 12px;
  }
  .footer__address span {
    display: none;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__txt {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 48px;
  max-width: 1115px;
  width: 100%;
  background: #000E12;
}
@media (max-width: 767px) {
  .cookies {
    padding: 48px 12px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn:last-child span {
  border: 1px solid #FFF;
  background: transparent;
}
.cookies__btn:last-child div {
  border: 1px solid #FFF;
  background: transparent;
}
@media (max-width: 575px) {
  .cookies__btn {
    width: 100%;
  }
}
.cookies__btn span {
  width: 100%;
}

.hero {
  margin: 81px 0 0;
  background: url(/wp-content/themes/velmorithcrest/assets/img/bg.webp) no-repeat center/cover;
  padding: 180px 0;
}
@media (max-width: 767px) {
  .hero {
    background: url(/wp-content/themes/velmorithcrest/assets/img/bg_mob.webp) no-repeat center/cover;
    padding: 48px 0;
  }
}
.hero_about {
  margin: 0;
  background: url(/wp-content/themes/velmorithcrest/assets/img/bg-1.webp) no-repeat center/cover;
  padding: 262px 0;
}
@media (max-width: 767px) {
  .hero_about {
    background: url(/wp-content/themes/velmorithcrest/assets/img/bg-1_mob.webp) no-repeat center/cover;
    padding: 48px 0;
  }
}
.hero__content {
  max-width: 546px;
}
@media (max-width: 767px) {
  .hero .game__column {
    flex-direction: column;
  }
}

.make {
  padding: 96px 0;
  background: linear-gradient(119deg, var(--Text-Primary, rgba(0, 14, 18, 0.4)) 38.33%, var(--Primary-500, rgba(250, 100, 68, 0.4)) 98.83%), var(--Text-Primary, #000E12);
}
@media (max-width: 767px) {
  .make {
    padding: 48px 0;
  }
}
.make__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.make__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .make__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.make__card {
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 2px solid #fa6543;
}
.make__name {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.game__content {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .game__content {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .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: 48px;
}
@media (max-width: 767px) {
  .game__column {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.game__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .catalog__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .catalog__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
}
.catalog__card a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__title {
  color: #FFF;
  font-size: 60px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
}
.catalog__title span {
  font-weight: 400;
}
.catalog__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.catalog__name {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.privacy {
  margin: 81px 0 0;
  padding: 96px 0;
  background: linear-gradient(119deg, var(--Text-Primary, rgba(0, 14, 18, 0.4)) 38.33%, var(--Primary-500, rgba(250, 100, 68, 0.4)) 98.83%), var(--Text-Primary, #000E12);
}
@media (max-width: 991px) {
  .privacy {
    padding: 48px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy ul li {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-left: 25px;
  list-style: disc;
}