@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..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: "Unbounded", sans-serif;
  background: #000;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.h1 {
  color: #FFF;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
}

.h2 {
  color: #FFF;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
}

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

.btn {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  white-space: nowrap;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 24px 60px;
  border-radius: 60px;
  background: #FF6C10;
}

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

.white {
  color: #fff !important;
}

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

@font-face {
  font-family: "KyivType Sans";
  src: url(/wp-content/themes/sylvarionroot/assets/fonts/KyivTypeSans-Regular-.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KyivType Sans";
  src: url(/wp-content/themes/sylvarionroot/assets/fonts/KyivTypeSans-Bold-.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KyivType Sans";
  src: url(/wp-content/themes/sylvarionroot/assets/fonts/KyivTypeSans-Medium-.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KyivType Sans";
  src: url(/wp-content/themes/sylvarionroot/assets/fonts/KyivTypeSans-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

@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: #000;
    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: 20px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__link {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.footer {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__menu a {
  text-align: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__line {
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 1px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
}
.footer__blur {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .footer__blur {
    transform: none;
    right: 0;
    left: auto;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 800px;
  border-radius: 40px;
  background: #FFF;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .cookies__title {
    font-size: 30px;
  }
}
.cookies__text {
  color: #000;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero {
  margin: 65px 0 0;
  background: url(/wp-content/themes/sylvarionroot/assets/img/img-1.webp) no-repeat center/cover;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 767px) {
  .hero {
    background: url(/wp-content/themes/sylvarionroot/assets/img/img-1_mob.webp) no-repeat center/cover;
    padding: 40px 0;
  }
}
.hero__content {
  position: relative;
}
.hero__column {
  max-width: 275px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media (max-width: 991px) {
  .hero__column {
    gap: 20px;
    max-width: 100%;
  }
}
.hero__link {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 991px) {
  .hero__link {
    position: static;
  }
}
.hero__subtitle {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.about {
  padding: 125px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .about {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .about__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.about__img {
  position: absolute;
  top: 65px;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .about__img {
    position: static;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about__img {
    z-index: 2;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 618px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .about__column {
    max-width: 100%;
    margin: 0;
  }
}
.about__row {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 991px) {
  .about__row {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.about__blur {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.choose {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .choose {
    padding: 40px 0;
  }
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .choose__content {
    gap: 20px;
  }
}
.choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .choose__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__card {
  border-radius: 28px;
  border: 1px solid #FFF;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.choose__name {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 60px;
  border: 1px solid #FFF;
  padding: 14px 20px;
}
.choose__icon {
  margin-left: auto;
}
.choose__blur {
  position: absolute;
  left: 0;
  z-index: -1;
}

.players {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .players {
    padding: 40px 0;
  }
}
.players__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .players__content {
    gap: 20px;
  }
}
.players__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.players__column_sub {
  max-width: 387px;
  margin-left: auto;
  margin-right: 192px;
}
@media (max-width: 991px) {
  .players__column_sub {
    max-width: 100%;
    margin: 0;
  }
}
.players__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.players__name {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}
.players__img {
  position: absolute;
  z-index: -1;
  top: 180px;
}
.players__img_left {
  left: 0;
}
.players__img_right {
  right: 0;
}
@media (max-width: 991px) {
  .players__img {
    position: static;
    z-index: 2;
  }
  .players__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.players__blur {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .players__blur {
    top: 50%;
    transform: translateY(-50%);
  }
}

.contact {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .contact {
    padding: 40px 0;
  }
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 40px;
  background: #FF6C10;
  padding: 20px 40px;
}
@media (max-width: 991px) {
  .contact__content {
    padding: 20px 10px;
    
  }

  .contact__row {
  grid-template-columns: repeat(1, 1fr);
}
}
.contact__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .contact__row {
  grid-template-columns: repeat(1, 1fr);
}}

.contact__row p,
.contact__row a {
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 20px 0;
  border-radius: 60px;
  border: 1px solid #FFF;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection {
  margin: 65px 0 0;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .collection {
    padding: 40px 0;
  }
}
.collection__content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 991px) {
  .collection__content {
    gap: 80px;
  }
}
.collection__row {
  display: flex;
  align-items: center;
  gap: 27px;
}
@media (max-width: 991px) {
  .collection__row {
    flex-direction: column-reverse;
  }
}
.collection__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 620px;
}
@media (max-width: 991px) {
  .collection__column {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .collection__column {
    gap: 20px;
  }
}
.collection__img {
  position: absolute;
  right: 0;
  top: 60px;
  z-index: -1;
}
@media (max-width: 991px) {
  .collection__img {
    position: static;
  }
  .collection__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.collection__select {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .collection__select {
    gap: 20px;
  }
}
.collection__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .collection__block {
    gap: 16px;
  }
}
.collection__item {
  display: flex;
  gap: 20px;
}
.collection__item_sub {
  margin-left: auto;
}
@media (max-width: 767px) {
  .collection__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .collection__item {
    gap: 16px;
  }
}
.collection__subicon {
  position: absolute;
  bottom: 60px;
}
@media (max-width: 991px) {
  .collection__subicon {
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .collection__subicon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.collection__blur {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.game {
  margin: 65px 0 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .game {
    padding: 40px 0;
  }
}
.game__content {
  display: flex;
  gap: 27px;
}
@media (max-width: 767px) {
  .game__content {
    flex-direction: column;
  }
}
.game__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.game__row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .game__row {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .game__row {
    align-items: center;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy {
  margin: 65px 0 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .privacy__content {
    gap: 20px;
  }
}