@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pompiere&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  overflow-x: hidden;
}

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

address {
  font-style: normal;
}

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

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

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

section:first-child {
  padding-top: 80px;
}

@media (min-width: 1200px) {
  section:first-child {
    padding-top: 120px;
  }
}

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

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

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

.h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 90%;
  text-transform: uppercase;
}

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

.h1 span {
  font-family: "Pompiere", sans-serif;
}

.h2 {
  font-family: "Pompiere", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 80%;
  text-transform: uppercase;
}

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

.h2 span {
  font-family: "Pompiere", sans-serif;
}

.h3 {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

.h4 {
  font-weight: 500;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
}

.accent {
  color: #FF0000;
}

.second {
  color: #ff7e7e;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.mt-a {
  margin-top: auto;
}

.mb-a {
  margin-bottom: auto;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.font-second {
  font-family: "Pompiere", sans-serif;
}

.logo {
  font-weight: 400;
  font-size: 40px;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.logo:hover, .logo:focus {
  color: #ff7e7e;
}

.logo:active {
  color: #000;
}

.logo__img {
  max-width: 32px;
}

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

.link:hover, .link:focus {
  color: #ff7e7e;
}

.link:active {
  color: #000;
}

.btn {
  font-family: "Poppins", sans-serif;
  width: 100%;
  border: none;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (min-width: 1200px) {
  .btn {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.btn:hover, .btn:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.btn:active {
  opacity: 0.5;
}

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

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

.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  color: #fff;
}

.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: 40px;
  padding: 0;
}

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

.menu {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background: #fff;
}

.menu.open {
  display: block;
}

.menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100dvh;
}

.menu__list {
  list-style: none;
  padding: 0;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  text-transform: uppercase;
}

.menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
}

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

.hero {
  background-image: url(/wp-content/themes/brinthelia/assets/img/1.webp);
  background-position: top 0 right 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  color: #fff;
}

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

@media (min-width: 1200px) {
  .hero__content {
    max-width: 750px;
  }
}

.hero__subtitle {
  font-family: "Pompiere", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 80%;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .hero__subtitle {
    font-size: 80px;
  }
}

.about {
  background-image: url(/wp-content/themes/brinthelia/assets/img/2.webp);
  background-position: top 0 left 0;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1200px) {
  .about {
    padding-top: 200px;
  }
}

.about__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

@media (min-width: 1200px) {
  .about__title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

.about__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: 32px;
  padding-left: 0;
  list-style: none;
}

.about__item {
  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;
}

@media (min-width: 1200px) {
  .about__item {
    max-width: 30%;
  }
}

.reviews {
  background-image: url(/wp-content/themes/brinthelia/assets/img/3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1200px) {
  .reviews {
    padding-top: 200px;
  }
}

.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: 60px;
}

.reviews__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

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

.reviews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  list-style: none;
}

.reviews__item {
  position: relative;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
}

.reviews__text-block {
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  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;
}

.reviews__text {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
}

.reviews__author {
  font-weight: 400;
  font-size: 14px;
  text-align: right;
}

.advantages {
  background-image: url(/wp-content/themes/brinthelia/assets/img/4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.advantages__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: 60px;
}

.advantages__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: 10px;
  list-style: none;
  padding-left: 0;
}

.advantages__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid gray;
}

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

.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(18.75%, #000), to(#FF0000));
  background: linear-gradient(90deg, #000 18.75%, #FF0000 100%);
}

.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: 20px;
}

.footer__upper {
  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;
}

@media (min-width: 1200px) {
  .footer__upper {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__address {
  text-align: center;
}

@media (min-width: 1200px) {
  .footer__address {
    text-align: left;
  }
}

.footer__center {
  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;
}

@media (min-width: 1200px) {
  .footer__center {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.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: 20px;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

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

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer__copy {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}

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

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

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

.cookie-popup__content {
  border: 2px solid #FF0000;
  padding: 40px 20px;
  background: #000;
  color: #fff;
  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: 20px;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
}

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

.cookie-popup__title {
  font-weight: 500;
  font-size: 40px;
}

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

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

.cookie-popup__btn {
  padding: 20px 48px;
  background: #FF0000;
  margin: 0;
  border: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.cookie-popup__btn:hover, .cookie-popup__btn:focus {
  background: #ff7e7e;
}

.cookie-popup__btn:active {
  color: #000;
}

.cookie-popup__btn-second {
  background: rgba(255, 255, 255, 0.2);
}

.games {
  background-color: #000;
  background-image: url(/wp-content/themes/brinthelia/assets/img/gbg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.games__list {
  padding-left: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 0;
}

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

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

.games__link {
  overflow: hidden;
}

.games__link img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.games__link:hover img, .games__link:focus img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

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

.game__list {
  list-style: none;
  padding-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 1200px) {
  .game__list {
    -ms-grid-columns: 1fr 0.7fr 1fr;
        grid-template-columns: 1fr 0.7fr 1fr;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.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: 20px;
}

.privacy a, .terms a, .cookie-policy a {
  display: inline;
  font-weight: 800;
  color: #FF0000;
}

.privacy a:hover, .privacy a:focus, .terms a:hover, .terms a:focus, .cookie-policy a:hover, .cookie-policy a:focus {
  color: #ff7e7e;
}
/*# sourceMappingURL=styles.css.map */