@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Grobold";
  src: url("../../fonts/GROBOLD.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --main-font: "Roboto", sans-serif;
  --secondary: "Grobold", sans-serif;
  --text-color: #fff;
  --header-bg: #33010066;
  --header-text: #fff;
  --popup-btn: #000;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  color: var(--text-color);
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 52px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  scale: 110%;
}

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 52px;
  margin-top: 36px;
}

.icon {
  width: 42px;
  height: 42px;
  fill: white;
}

.header__icon--menu {
  stroke: var(--header-text);
}

.header__icon--close {
  fill: var(--header-text);
}

.section--title {
  font-family: var(--secondary);
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #ffbe06;
  -webkit-text-stroke: 3px #940100;
}
@media screen and (min-width: 1205px) {
  .section--title {
    font-size: 36px;
    margin-bottom: 50px;
  }
}

.section--text {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.header__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: var(--header-bg);
  z-index: -1;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.header.is-open .header__background {
  left: 0;
}
.header__button-wrapper {
  margin-left: auto;
  padding-right: 35px;
}
.header__icon {
  display: none;
  width: 38px;
  height: 28px;
}
.header__icon-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  border-radius: 50%;
}

.header__icon--menu {
  display: block;
}

.header__icon-button.is-open .header__icon--menu {
  display: none;
}

.header__icon-button.is-open .header__icon--close {
  display: block;
}

.navigation {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 20px;
  position: relative;
}
.navigation__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: 49px 60px;
  background: linear-gradient(176.13deg, #1c0000 3.17%, #820000 96.83%);
  margin-top: 5px;
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  color: var(--header-text);
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  color: #ff0200;
  text-shadow: 0px 0px 10px #ff0200;
}

@media screen and (min-width: 1205px) {
  .header__icon-button {
    display: none;
  }
  .header__button-wrapper {
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .navigation {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-block: 28px;
    padding-inline: 20px;
  }
  .navigation__list {
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    margin-top: 0;
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navigation__link {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navigation__item:nth-last-child(-n+3) {
    display: none;
  }
}
.home {
  background-image: url("../../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 20px 162px 20px;
  overflow: hidden;
}
@media screen and (min-width: 1205px) {
  .home {
    padding-block: 131px;
  }
}
.home .wrapper {
  max-width: 1050px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.home .logo {
  width: 191px;
}
@media screen and (min-width: 1205px) {
  .home .logo {
    width: 255px;
  }
}
.home h1 {
  font-family: var(--secondary);
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 1205px) {
  .home h1 {
    font-weight: 500;
    font-size: 35px;
    line-height: 40px;
  }
}
.home p {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 1205px) {
  .home p {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
  }
}
.home h3 {
  font-family: var(--secondary);
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 1205px) {
  .home h3 {
    margin-bottom: 22px;
  }
}
.home .image {
  position: absolute;
  bottom: -170px;
}
.home__image-1 {
  left: 0;
  width: 188px;
}
@media screen and (min-width: 1205px) {
  .home__image-1 {
    width: auto;
    bottom: -130px !important;
    left: -100px;
  }
}
.home__image-2 {
  right: 0;
  width: 162px;
}
@media screen and (min-width: 1205px) {
  .home__image-2 {
    width: auto;
    top: -60px;
    right: -110px;
  }
}

.play-btn {
  display: block;
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.play-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: drop-shadow(0px 10.95px 32.85px #ffeb1f);
          filter: drop-shadow(0px 10.95px 32.85px #ffeb1f);
}
@media screen and (min-width: 1205px) {
  .play-btn {
    max-width: 389px;
  }
}

.popup {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 380px;
  width: calc(100% - 20px);
  background: #1C0400;
  border-radius: 20px;
  border: 1px solid #FFFFFF;
  -webkit-box-shadow: 0px 14px 42px 0px rgba(8, 15, 52, 0.0588235294);
          box-shadow: 0px 14px 42px 0px rgba(8, 15, 52, 0.0588235294);
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .popup {
    max-width: 1300px;
  }
}

.popup-close-btn {
  position: absolute;
  top: 36px;
  right: 36px;
  background-color: transparent;
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup-close-btn:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.popup-close-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--text-color);
}

.popup-top {
  padding: 78px 20px 23px 20px;
}

.popup-bottom {
  border-top: 1px solid #eff0f6;
  padding: 20px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .popup-bottom {
    padding: 38px 60px;
  }
}

.popup h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 37px;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .popup h2 {
    font-size: 38px;
    margin-bottom: 32px;
  }
}

.popup p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
  text-align: center;
}
@media screen and (min-width: 900px) {
  .popup p {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
  }
}

.popup p a {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

.popup a {
  color: var(--text-color);
  cursor: pointer;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .popup a {
    font-weight: 400;
    font-size: 27px;
    line-height: 45px;
  }
}

.popup .button-wrap button {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  background: #fff;
  color: var(--popup-btn);
  border: 1px solid #eff0f6;
  border-radius: 56px;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(74, 58, 255, 0.1803921569);
          box-shadow: 0px 3px 12px 0px rgba(74, 58, 255, 0.1803921569);
  padding: 18px 26px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 900px) {
  .popup .button-wrap button {
    font-size: 24px;
  }
}
.popup .button-wrap button:hover {
  font-weight: 700;
  background: #FFBE06;
}

.button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .button-wrap {
    gap: 60px;
  }
}

.mobile {
  background: linear-gradient(176.13deg, #1c0000 3.17%, #741000 96.83%);
  padding-top: 50px;
  padding-bottom: 76px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .mobile {
    padding-bottom: 56px;
  }
}
.mobile p {
  text-align: center;
  max-width: 794px;
  margin: 0 auto;
  margin-bottom: 64px;
}

.contacts {
  background-image: url("../../images/contacts-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 276px;
  padding-inline: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1205px) {
  .contacts {
    padding-bottom: 104px;
  }
}
.contacts .contacts--list {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
.contacts .contacts--list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #160101;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
}
.contacts .contacts--list li a {
  text-decoration: none;
  color: inherit;
  font-style: normal;
}
.contacts .fruits {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1205px) {
  .contacts .fruits {
    width: auto !important;
    bottom: 0 !important;
  }
}
.contacts .fruit-left {
  width: 255px;
  left: 0;
}
@media screen and (min-width: 1205px) {
  .contacts .fruit-left {
    left: 50%;
    -webkit-transform: translateX(-180%);
            transform: translateX(-180%);
  }
}
.contacts .fruit-right {
  width: 200px;
  right: 0;
  bottom: 80px;
}
@media screen and (min-width: 1205px) {
  .contacts .fruit-right {
    right: 50%;
    -webkit-transform: translateX(180%);
            transform: translateX(180%);
  }
}

.socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}

.features {
  background: linear-gradient(176.13deg, #1c0000 3.17%, #820000 96.83%);
  margin-top: -1px;
  padding: 50px 20px;
}
@media screen and (min-width: 1205px) {
  .features {
    padding-bottom: 90px;
  }
}
.features .box {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  max-width: 622px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 1205px) {
  .features .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.features .text {
  margin-bottom: 30px;
}
@media screen and (min-width: 1205px) {
  .features .text {
    margin-bottom: 50px;
    text-align: center;
  }
}
.features ul {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1205px) {
  .features ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}

.guide {
  background-image: url("../../images/about-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 30px 20px 68px 20px;
}
@media screen and (min-width: 1205px) {
  .guide {
    padding-top: 48px;
    padding-bottom: 44px;
  }
  .guide h2 {
    text-align: start;
  }
}
.guide ul {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  max-width: 1036px;
}
@media screen and (min-width: 1205px) {
  .guide ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 36px;
       -moz-column-gap: 36px;
            column-gap: 36px;
    margin: 0 auto;
  }
}
.guide li {
  max-width: 484px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.faq {
  background: -webkit-gradient(linear, left bottom, left top, from(#1c0000), to(#1c0000));
  background: linear-gradient(0deg, #1c0000, #1c0000);
  margin-top: -1px;
  padding-top: 50px;
  padding-bottom: 124px;
}
@media screen and (min-width: 1205px) {
  .faq {
    padding-bottom: 176px;
  }
}
.faq li {
  width: 335px;
  background: #250706;
  border: 2px solid #ff0200;
  border-radius: 12px;
  padding: 16px;
  margin: 0 11px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1205px) {
  .faq li {
    width: 440px;
  }
}
.faq h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
}
.faq p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.faq .faq__list-top li {
  height: 252px;
  margin-bottom: 22px;
}
@media screen and (min-width: 1205px) {
  .faq .faq__list-top li {
    height: 226px;
  }
}
.faq .faq__list-bottom li {
  height: 174px;
}

.spins {
  background-image: url("../../images/spins-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-inline: 20px;
}
.spins h2 {
  text-align: center !important;
}
.spins__container {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1205px) {
  .spins__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.spins__image {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .spins__image {
    max-width: 703px;
  }
}
.spins ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  margin-top: 22px;
}
.spins li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.about {
  background-image: url("../../images/about-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -1px;
  padding-top: 50px;
  padding-bottom: 21px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .about {
    padding-bottom: 44px;
  }
}
.about__container {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
@media screen and (min-width: 1205px) {
  .about__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
.about__image {
  max-width: 410px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .about__image {
    max-width: 700px;
  }
}
.about ul {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  max-width: 562px;
  width: 100%;
}
.about li p {
  font-weight: 600;
}

.gallery {
  background-image: url("../../images/gallery-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px 74px 20px;
}
@media screen and (min-width: 1205px) {
  .gallery {
    padding-bottom: 188px;
  }
}
.gallery h3 {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 1205px) {
  .gallery h3 {
    margin-bottom: 50px;
  }
}
.gallery ul {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1205px) {
  .gallery ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.gallery img {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .gallery img {
    max-width: none;
  }
}

.strategic {
  background-image: url("../../images/strategic-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px 220px 20px;
  overflow: hidden;
}
@media screen and (min-width: 1205px) {
  .strategic {
    padding-bottom: 74px;
  }
}
.strategic .wrapper {
  max-width: 794px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.strategic h3 {
  text-align: center;
  margin-bottom: 32px;
}
.strategic ul {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}
.strategic li {
  background: #250706;
  border: 2px solid #ff0200;
  border-radius: 12px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.strategic .image {
  position: absolute;
  bottom: -285px;
}
@media screen and (min-width: 1205px) {
  .strategic .image {
    bottom: -80px !important;
  }
}
.strategic__image-1 {
  left: -100px;
}
@media screen and (min-width: 1205px) {
  .strategic__image-1 {
    left: -150px;
  }
}
.strategic__image-2 {
  right: -100px;
}
@media screen and (min-width: 1205px) {
  .strategic__image-2 {
    right: -150px;
  }
}

.mechanics {
  background-image: url("../../images/mechanics-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px 40px 20px;
}
@media screen and (min-width: 1205px) {
  .mechanics {
    padding-bottom: 23px;
  }
}
.mechanics ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}
.mechanics li {
  width: 100%;
  background: #250706;
  border: 2px solid #ff0200;
  border-radius: 12px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1205px) {
  .mechanics li {
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mechanics li p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
}
.mechanics .mechanics-img {
  margin: 0 auto;
}

.frame-container {
  background: linear-gradient(356.13deg, #1c0000 3.17%, #820000 96.83%);
  margin-top: -1px;
  height: 400px;
}
@media screen and (min-width: 1205px) {
  .frame-container {
    height: 600px;
  }
}

.game-iframe-wrapper {
  position: relative;
  padding: 30px;
}

.game-iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

@media screen and (min-width: 1205px) {
  .game-iframe-wrapper {
    padding: 50px;
  }
  .game-iframe {
    height: 500px;
  }
}
.close-button {
  position: absolute;
  top: 30px;
  right: 30px;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  background-color: transparent;
}

.disclaimer {
  background-image: url("../../images/disclaimer-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}
@media screen and (min-width: 1205px) {
  .disclaimer {
    padding-bottom: 114px;
  }
}
.disclaimer p {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
  max-width: 1238px;
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#1c0000), to(#820000));
  background: linear-gradient(180deg, #1c0000 0%, #820000 100%);
  margin-top: -1px;
  padding: 27px 20px;
}
@media screen and (min-width: 1205px) {
  .footer {
    padding-block: 38px;
  }
}
.footer__container {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
@media screen and (min-width: 1205px) {
  .footer__container {
    -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: 118px;
  }
}
.footer .wrapper {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
.footer .privacy-box {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 1205px) {
  .footer .privacy-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 28px;
  }
}
.footer .social-box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  margin-bottom: 12px;
}
.footer__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--text-color);
}
.footer__copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.policies {
  background: linear-gradient(356.13deg, #1c0000 3.17%, #820000 96.83%);
  padding-top: 100px;
  padding-inline: 20px;
  padding-bottom: 50px;
  color: #fff;
}
@media screen and (min-width: 1205px) {
  .policies {
    padding-top: 150px;
  }
}
.policies a {
  color: #fff;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: #ffbe06;
}
.policies h1 {
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 24px;
}
.policies h2 {
  margin-block: 15px;
  font-size: 18px;
}
.policies h4 {
  margin-top: 15px;
}
.policies ul {
  margin-left: 40px;
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.policies strong {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */