@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Michroma", sans-serif;
  background: #000;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

a,
button {
  cursor: pointer;
  font-family: inherit;
  display: block;
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  padding-left: 20px;
  margin: 0;
}

section {
  padding-top: 46px;
  padding-bottom: 46px;
}

@media (min-width: 1200px) {
  section {
    padding-top: 98px;
    padding-bottom: 98px;
  }
}

.container {
  width: 100%;
  padding: 0 13px;
  margin: 0 auto;
  max-width: 430px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }
}

.h1, .h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  text-transform: capitalize;
}

@media (min-width: 1200px) {
  .h1, .h2 {
    font-size: 45px;
  }
}

.h3 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}

.text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.logo {
  font-weight: 400;
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: all 320ms ease-in-out;
  transition: all 320ms ease-in-out;
}

.logo:hover, .logo:focus {
  color: #4dffff;
}

.link {
  font-weight: 400;
  -webkit-transition: all 320ms ease-in-out;
  transition: all 320ms ease-in-out;
}

.link:hover, .link:focus {
  color: #4dffff;
}

.border {
  display: inline-block;
  -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 30%, 100% 100%, 5% 100%, 0% 70%);
          clip-path: polygon(0% 0%, 95% 0%, 100% 30%, 100% 100%, 5% 100%, 0% 70%);
  background: #4dffff;
  /* цвет бордера */
  padding: 4px;
  /* толщина бордера */
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.clip {
  border: none;
  -webkit-clip-path: inherit;
          clip-path: inherit;
  /* повторяем форму шестиугольника */
}

.btn {
  width: 100%;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #000d04;
  text-align: center;
  -webkit-transition: all 320ms ease-in-out;
  transition: all 320ms ease-in-out;
  cursor: pointer;
  border: none;
  border-radius: 0;
  padding: 14px 24px;
  background: #4dffff;
}

@media (min-width: 1200px) {
  .btn {
    max-width: 300px;
  }
}

.btn:hover, .btn:focus {
  background: #005353;
}

.btn.w-full {
  max-width: 100%;
}

.btn.more {
  background: #005353;
  color: #4dffff;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1200px) {
  .grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.header {
  position: fixed;
  background: #000;
  width: 100%;
  z-index: 10;
}

.header__nav {
  padding-top: 14px;
  padding-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__menu {
  margin: 0;
  border: none;
  background: transparent;
}

@media (min-width: 1200px) {
  .header__menu {
    display: none;
  }
}

.header__list {
  list-style: none;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

@media (min-width: 1200px) {
  .header__list {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__link {
  padding: 10px;
  background: #80808038;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.header__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  padding-top: 52px;
  z-index: 9;
  background-image: url(/wp-content/themes/fravonex/assets/img/1.webp), url(/wp-content/themes/fravonex/assets/img/bg.webp);
  background-position: bottom 0 center, center;
  background-repeat: no-repeat;
  background-size: contain, cover;
}

.header__mobile.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.header__mobile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header__mobile__link {
  background: #79797973;
  padding: 20px;
  width: 100%;
  text-align: center;
}

.header__mobile .border {
  width: 100%;
  max-width: 100%;
}

.hero {
  padding-top: 92px;
  padding-bottom: 0;
  background-image: url(/wp-content/themes/fravonex/assets/img/bg.webp);
  background-position: right 0 bottom 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .container {
  padding-right: 0;
}

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media (min-width: 1200px) {
  .hero__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero__text-block {
  max-width: 500px;
}

.about__content, .reviews__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.about__list, .reviews__list {
  list-style: none;
}

.about__item, .reviews__item {
  position: relative;
  text-align: left;
}

.about__item .img, .reviews__item .img {
  position: absolute;
  top: 4px;
  right: 40px;
}

.card {
  display: inline-block;
  -webkit-clip-path: polygon(0% 0%, 97% 0%, 100% 10%, 100% 100%, 3% 100%, 0% 90%);
          clip-path: polygon(0% 0%, 97% 0%, 100% 10%, 100% 100%, 3% 100%, 0% 90%);
  background: #4dffff;
  /* цвет бордера */
  padding: 4px;
  /* толщина бордера */
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
}

.card-clip {
  height: 100%;
  border: none;
  -webkit-clip-path: inherit;
          clip-path: inherit;
  /* повторяем форму шестиугольника */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: #191a25;
}

.card-clip .img {
  position: absolute;
  top: 4px;
  right: 40px;
}

.who {
  padding-top: 92px;
  padding-bottom: 0px;
  background-image: url(/wp-content/themes/fravonex/assets/img/bg.webp);
  background-position: right 0 bottom 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.who .container {
  padding-right: 0;
}

.who__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media (min-width: 1200px) {
  .who__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.who__text-block {
  max-width: 500px;
}

.how__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media (min-width: 1200px) {
  .how__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.how .text-block {
  max-width: 500px;
}

.footer {
  padding-top: 42px;
  padding-bottom: 42px;
  background-image: url(/wp-content/themes/fravonex/assets/img/bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 16px;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__address {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  padding: 10px;
  background: #79797973;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

@media (min-width: 768px) {
  .footer__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__hr {
  width: 100%;
}

.footer__copy {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
}

.cookie-popup {
  width: 100%;
  position: fixed;
  z-index: 8;
  bottom: 0;
  left: 0;
  display: none;
}

.cookie-popup.show {
  display: block;
}

@media (min-width: 1200px) {
  .cookie-popup {
    max-width: 1100px;
  }
}

.cookie-popup__content {
  padding: 48px 12px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

@media (min-width: 1200px) {
  .cookie-popup__content {
    padding: 48px;
  }
}

.cookie-popup__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

@media (min-width: 1200px) {
  .cookie-popup__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.cookie-popup .border {
  width: 100%;
  max-width: 100%;
}

.cookie-popup .clip {
  max-width: 100%;
}

.games {
  padding-top: 92px;
}

.games__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.games__list {
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .games__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.games__item {
  position: relative;
  text-align: left;
  min-height: 300px;
  max-width: 100%;
}

.games__item .card-clip {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.games__item.g1 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g1.webp);
}

.games__item.g2 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g2.webp);
}

.games__item.g3 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g3.webp);
}

.games__item.g4 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g4.webp);
}

.games__item.g5 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g5.webp);
}

.games__item.g6 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g6.webp);
}

.games__item .img {
  position: absolute;
  top: 4px;
  right: 40px;
}

.game {
  padding-top: 92px;
}

.game__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}

.game__list {
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .game__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.game__item {
  position: relative;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  min-height: 420px;
  max-width: 100%;
}

.game__item .border {
  max-width: 100%;
  width: 100%;
}

.game__item .card-clip {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.game__item.g1 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g1.webp);
}

.game__item.g2 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g2.webp);
}

.game__item.g3 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g3.webp);
}

.game__item.g4 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g4.webp);
}

.game__item.g5 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g5.webp);
}

.game__item.g6 .card-clip {
  background-image: url(/wp-content/themes/fravonex/assets/img/g6.webp);
}

.game__item .img {
  position: absolute;
  top: 4px;
  right: 40px;
}

.privacy, .terms, .cookie-policy {
  padding-top: 92px;
}

.privacy__content, .terms__content, .cookie-policy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.privacy a, .terms a, .cookie-policy a {
  display: inline;
}
/*# sourceMappingURL=styles.css.map */