* {
  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%;
  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: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  background: #000;
  font-size: 14px;
}

.lock {
  overflow: hidden;
}

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

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

[class*=__text] {
  color: rgba(255, 255, 255, 0.8);
}

h2 {
  font-family: Inter;
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: calc(576px - 1px)) {
  h2 {
    font-size: 36px;
  }
}

.main {
  flex: 1 1 auto;
}

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

.btn {
  display: inline-flex;
  padding: 24px 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  background: linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%);
  box-shadow: 0 5px 22px 0 rgba(233, 64, 255, 0.6);
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  height: fit-content;
}

@media (max-width: calc(768px - 1px)) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  .mobile {
    display: block;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 60px 40px;
  width: 100%;
  max-width: 700px;
  background: #000;
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 10px;
  border-radius: 30px;
  border: 3px solid var(--gr, #0095ff);
}
@media (max-width: calc(768px - 1px)) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__img {
  text-align: center;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cookies__text {
  margin-bottom: 15px;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.cookies__btn {
  color: #fff;
  border: 1px solid #fff;
  background: #000;
}

.footer {
  padding-top: 50px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: url(/wp-content/themes/ylvarnex/img/footer-bg.webp) no-repeat center/cover;
}
.footer__content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__menu {
  display: flex;
  gap: 20px;
}
@media (max-width: calc(576px - 1px)) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__menu a {
  color: #fff;
}
@media (max-width: calc(576px - 1px)) {
  .footer__content-img {
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.header__logo {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: calc(768px - 1px)) {
  .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%);
    background: #fff;
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
    background: #fff;
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
    background: #fff;
  }
}
@media (max-width: calc(768px - 1px)) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    border-radius: 0 0 80px 80px;
    background: #000;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
    border-radius: 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: calc(768px - 1px)) {
  .menu__list {
    flex-direction: column;
    margin-bottom: 140px;
  }
}
.menu__link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.hero {
  margin-top: 100px;
  margin-bottom: 80px;
}
.hero__title {
  text-align: center;
  font-size: 90px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 1014px;
  margin: 0 auto;
}
@media (max-width: calc(768px - 1px)) {
  .hero__title {
    font-size: 40px;
  }
}
.hero__text {
  max-width: 236px;
}
@media (max-width: calc(1024px - 1px)) {
  .hero__text {
    max-width: 100%;
  }
}
.hero__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  top: -166px;
}
@media (max-width: calc(1024px - 1px)) {
  .hero__content {
    flex-direction: column;
    align-items: center;
    top: 0;
    gap: 30px;
  }
}
@media (max-width: calc(576px - 1px)) {
  .hero__content img {
    width: 100%;
  }
}

.discover {
  margin-bottom: 100px;
  padding-bottom: 60px;
}
.discover__contents {
  display: flex;
  align-items: flex-end;
}
@media (max-width: calc(1024px - 1px)) {
  .discover__contents {
    flex-direction: column;
    gap: 354px;
    align-items: center;
  }
}
@media (max-width: calc(576px - 1px)) {
  .discover__contents {
    gap: 146px;
  }
}
.discover__content {
  flex: 1;
}
@media (max-width: calc(768px - 1px)) {
  .discover__content h2 {
    font-size: 36px;
  }
}
.discover__cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.discover__card {
  border-radius: 100px;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
  color: #000;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: calc(576px - 1px)) {
  .discover__card {
    font-size: 22px;
  }
}
.discover__content-right {
  position: relative;
  bottom: -84px;
}
.discover__content-img {
  position: absolute;
  right: -36px;
  bottom: 163px;
}
@media (max-width: calc(1024px - 1px)) {
  .discover__content-img {
    right: -88px;
    bottom: 203px;
  }
}
@media (max-width: calc(576px - 1px)) {
  .discover__content-img {
    width: 250px;
    right: -36px;
  }
}

.categories {
  background: linear-gradient(180deg, rgba(119, 0, 216, 0.2) 0%, rgba(0, 12, 239, 0.2) 100%);
  padding: 60px 0;
  position: relative;
}
.categories::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
}
.categories::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
}
.categories__title {
  text-align: center;
  margin-bottom: 30px;
}
.categories__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.categories__card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid var(--gr, #0095ff);
  background: #000;
  max-width: 440px;
}
.categories__card img {
  width: 80px;
  margin: 0 auto;
}
.categories__card-title {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.categories__text {
  text-align: center;
}

.journey {
  padding-top: 185px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media (max-width: calc(1024px - 1px)) {
  .journey {
    padding-top: 60px;
    padding-bottom: 250px;
  }
}
.journey__contents {
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media (max-width: calc(1024px - 1px)) {
  .journey__contents {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.journey__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: calc(1024px - 1px)) {
  .journey__img {
    top: 120%;
    width: 360px;
  }
}
.journey__content {
  max-width: 387px;
}
@media (max-width: calc(1024px - 1px)) {
  .journey__content {
    max-width: 100%;
  }
}
.journey__cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.journey__card {
  display: flex;
  padding: 20px;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid var(--gr, #0095ff);
}
.journey__card-info h3 {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.journey__card-info p {
  color: rgba(255, 255, 255, 0.8);
}

.blog {
  background: url(/wp-content/themes/ylvarnex/img/blog-bg.webp) no-repeat center/cover;
  padding-bottom: 200px;
}
.blog h2 {
  text-align: center;
  margin-bottom: 30px;
}
.blog__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.blog__card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid var(--gr, #0095ff);
  max-width: 285px;
}
.blog__card h3 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog__card p {
  color: rgba(255, 255, 255, 0.8);
}
.blog__card img {
  width: 245px;
}

.connect {
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
}
.connect::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
}
.connect::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
}
.connect h2 {
  text-align: center;
  padding-bottom: 30px;
}
.connect__text {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.connect__infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.connect__info {
  display: flex;
  padding: 20px;
  gap: 10px;
  border-radius: 15px;
  border: 1px solid var(--gr, #0095ff);
  width: fit-content;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.connect__img {
  text-align: center;
}

.games {
  margin-top: 100px;
  padding-bottom: 80px;
}
.games__title, .games__text {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.games__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.pony {
  margin-top: 100px;
  margin-bottom: 60px;
}
.pony__title, .pony__text {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.pony__img {
  text-align: center;
  margin-bottom: 30px;
}
.pony__button {
  text-align: center;
  margin-bottom: 80px;
}
.pony__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: calc(1024px - 1px)) {
  .pony__contents {
    flex-direction: column;
    gap: 30px;
  }
}
.pony__content h3 {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gr, linear-gradient(90deg, #0095ff 0%, #00e796 53.37%, #e940ff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}
@media (max-width: calc(768px - 1px)) {
  .pony__content h3 {
    font-size: 36px;
  }
}
.pony__content p {
  max-width: 570px;
  margin-bottom: 30px;
}
@media (max-width: calc(768px - 1px)) {
  .pony__content img {
    width: 100%;
  }
}

.privacy {
  margin: 70px 0 0;
  padding: 40px 0;
}

/*# sourceMappingURL=style.css.map */
