@charset "UTF-8";
@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');
:root {
  --main-font: 'Poppins', sans-serif;
  --text-color: #002919;
  --header-bg: #d3ee78;
  --header-text: #002919;
}

* {
  -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-weight: 900;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1203px) {
  .section--title {
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
  }
}

.section--text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}

.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);
}
.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: 16px;
  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: 24px;
  padding: 73px 60px;
  background: #8eb51d;
  margin-top: 6px;
  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: 15px;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link::before {
  content: '•';
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover::before {
  opacity: 1;
}

.header.is-open {
  background-color: transparent;
}

@media screen and (min-width: 1203px) {
  .header {
    max-width: 1300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 20px;
    border-radius: 32px;
  }
  .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: 18.5px;
  }
  .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: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 18px;
    width: auto;
    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: 70px 20px 159px 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1203px) {
  .home {
    padding-top: 83px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1203px) {
  .home .wrapper {
    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: 80px;
  }
}
.home .wrapper div {
  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;
  position: relative;
  z-index: 1;
}
.home .logo {
  width: 171px;
}
.home h1 {
  font-weight: 900;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2509803922);
  color: #fbd64e;
  margin-bottom: 8px;
}
@media screen and (min-width: 1203px) {
  .home h1 {
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 12px;
  }
}
.home p {
  text-align: center;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2509803922);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  line-height: 20px;
}
@media screen and (min-width: 1203px) {
  .home p {
    font-size: 18px;
  }
}
.home 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;
}
.home 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;
}
.home li img {
  width: 43px;
}
.home__image-1 {
  display: none;
}
@media screen and (min-width: 1203px) {
  .home__image-1 {
    display: block;
  }
}
.home__image-2 {
  min-width: 508px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 23%);
  transform: translate(-50%, 23%);
}
@media screen and (min-width: 1203px) {
  .home__image-2 {
    display: none;
  }
}

.play-btn {
  display: block;
  width: 207px;
  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);
}

.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-color: #fff;
  border-radius: 20px;
  border: 1px solid #002919;
  -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(--text-color);
  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: var(--text-color);
  color: #fff;
}

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

.mobile {
  background-image: url('../../images/mobile-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 9px;
  padding-inline: 20px;
}
@media screen and (min-width: 1203px) {
  .mobile {
    padding-top: 0;
  }
}
.mobile__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: 25px;
}
@media screen and (min-width: 1203px) {
  .mobile__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 71px;
  }
}
.mobile h3 {
  text-align: center;
}
.mobile__image {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1203px) {
  .mobile__image {
    max-width: 700px;
  }
}
.mobile 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;
}
.mobile li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.mobile li img {
  width: 43px;
}

.contacts {
  background-image: url('../../images/contacts-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 76px;
  padding-inline: 20px;
}
@media screen and (min-width: 1203px) {
  .contacts {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
.contacts__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;
}
.contacts p {
  text-align: center;
}

.features {
  background-image: url('../../images/features-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
}
@media screen and (min-width: 1203px) {
  .features {
    padding-top: 48px;
    padding-bottom: 63px;
  }
}
.features 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: 20px;
}
.features li {
  width: 300px;
  height: 270px;
  background: #d3ee78;
  border: 4px solid #ffffff;
  border-radius: 32px;
  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: 10px;
}
.features p {
  text-align: center;
}
.features .box {
  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;
  margin-top: 32px;
}
.features .box h3 {
  text-transform: uppercase;
}

.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: 1203px) {
  .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: 1203px) {
  .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;
}

.spins {
  background-image: url('../../images/spins-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 1203px) {
  .spins {
    padding-top: 48;
    padding-bottom: 56px;
  }
  .spins .section--title,
  .spins .section-txt {
    text-align: start;
  }
}
.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;
  gap: 32px;
}
@media screen and (min-width: 1203px) {
  .spins__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
.spins h3 {
  text-align: center;
}
.spins__image {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1203px) {
  .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: 12px;
  margin-top: 32px;
}
.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;
  padding-top: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 1203px) {
  .about {
    padding-top: 0;
  }
}
.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: 32px;
}
@media screen and (min-width: 1203px) {
  .about__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 126px;
  }
}
.about h3 {
  text-align: center;
}
.about__image {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1203px) {
  .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;
  gap: 12px;
  margin-top: 32px;
}
.about li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.gallery {
  background-color: #8eb51d;
  padding-top: 30px;
  padding-bottom: 62px;
  position: relative;
}
.gallery img {
  height: 200px;
}
@media screen and (min-width: 1203px) {
  .gallery img {
    height: 412px;
  }
}
.gallery .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(350%, 220%);
  transform: translate(350%, 220%);
  z-index: 1;
  width: 33px;
  height: 40px;
}
@media screen and (min-width: 1203px) {
  .gallery .arrow {
    width: 67px;
    height: 80px;
  }
}

.symbol {
  background-image: url('../../images/symbol-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
  padding-bottom: 335px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1203px) {
  .symbol {
    padding-top: 48px;
    padding-bottom: 26px;
  }
}
.symbol .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: 10px;
}
@media screen and (min-width: 1203px) {
  .symbol .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 123px;
  }
}
.symbol 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: 20px;
  position: relative;
  z-index: 1;
}
.symbol li {
  height: 112px;
  background: #d3ee78;
  border: 4px solid #ffffff;
  border-radius: 32px;
  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;
}
.symbol__img {
  position: absolute;
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 533px;
}
@media screen and (min-width: 1203px) {
  .symbol__img {
    display: none;
  }
}

.events {
  background-image: url('../../images/events-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
}
@media screen and (min-width: 1203px) {
  .events {
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .events h2 {
    text-align: start;
  }
}
.events .section-txt {
  margin-bottom: 32px;
}
.events .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: 10px;
}
@media screen and (min-width: 1203px) {
  .events .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 123px;
  }
}
.events 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: 20px;
}
.events li {
  height: 112px;
  background: #d3ee78;
  border: 4px solid #ffffff;
  border-radius: 32px;
  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;
}
.events .events-img {
  max-width: 230px;
  width: 100%;
}
@media screen and (min-width: 1203px) {
  .events .events-img {
    max-width: none;
    width: auto;
  }
}

.benefits {
  background-image: url('../../images/benefits-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -1px;
  padding: 64px 20px;
}
@media screen and (min-width: 1203px) {
  .benefits {
    padding-block: 96px;
  }
}
.benefits .section--text {
  margin-bottom: 32px;
}
@media screen and (min-width: 1203px) {
  .benefits .section--text {
    margin-bottom: 60px;
  }
}
.benefits 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: 28px;
}
@media screen and (min-width: 1203px) {
  .benefits ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 48px;
  }
}
.benefits li {
  max-width: 400px;
  min-height: 252px;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 16px;
}
.benefits p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
.benefits span {
  font-weight: 700;
}

.demo {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#030205),
    to(#402b6b)
  );
  background: linear-gradient(0deg, #030205 0%, #402b6b 100%);
  margin-top: -1px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1203px) {
  .demo {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.demo__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: 10px;
  background: rgba(132, 0, 255, 0.1490196078);
  border: 1px solid #8400ff;
  border-radius: 30px;
  padding: 36px 16px;
}
@media screen and (min-width: 1203px) {
  .demo__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 48px 28px;
    padding-right: 120px;
  }
}
.demo__image {
  max-width: 360px;
  width: 100%;
}
.demo span {
  font-weight: 700;
  color: #ff77f1;
}
@media screen and (min-width: 1203px) {
  .demo .section--text {
    font-size: 24px;
    line-height: 32px;
  }
}
.demo .play-btn {
  margin-left: 0;
}

.frame-container {
  background-image: url('../../images/frame-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
}
@media screen and (min-width: 1203px) {
  .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: 1203px) {
  .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;
}

.reviews {
  background-image: url('../../images/benefits-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -1px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1203px) {
  .reviews {
    padding-block: 96px;
  }
}
.reviews ul {
  margin-inline: -20px;
}
.reviews li {
  width: 335px;
  height: 464px;
  background-color: #fff;
  color: #001118;
  margin: 0 10px;
  border-radius: 16px;
  border: 2px solid #ff3b22;
  padding: 20px;
}
@media screen and (min-width: 1203px) {
  .reviews li {
    width: 400px;
    height: 416px;
  }
}
.reviews li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.reviews img {
  width: 64px;
}
.reviews span {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.reviews p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

.tech {
  background-image: url('../../images/tech-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -1px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1203px) {
  .tech {
    padding-block: 96px;
  }
}
.tech__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: 32px;
}
@media screen and (min-width: 1203px) {
  .tech__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 78px;
  }
}
.tech__image {
  max-width: 506px;
  width: 100%;
}
@media screen and (min-width: 1203px) {
  .tech h2,
  .tech h3 {
    text-align: start;
  }
}

.social {
  background-image: url('../../images/benefits-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -1px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1203px) {
  .social {
    padding-top: 47px;
    padding-bottom: 79px;
  }
}
.social__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: 32px;
}
@media screen and (min-width: 1203px) {
  .social__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 78px;
  }
}
.social span {
  text-transform: none;
}
.social__image {
  max-width: 374px;
  width: 100%;
}
@media screen and (min-width: 1203px) {
  .social h2,
  .social h3 {
    text-align: start;
  }
}

.disclaimer {
  background-image: url('../../images/disclaimer-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
}
@media screen and (min-width: 1203px) {
  .disclaimer {
    padding-block: 48px;
  }
}
.disclaimer h2 {
  font-weight: 900;
  font-size: 26px;
  line-height: 26px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 1203px) {
  .disclaimer h2 {
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
  }
}
.disclaimer p {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 1203px) {
  .disclaimer p {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
  }
}

.footer {
  background: #8eb51d;
  padding: 16px 20px;
}
@media screen and (min-width: 1203px) {
  .footer {
    padding-block: 30px;
  }
}
.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: 14px;
}
@media screen and (min-width: 1203px) {
  .footer__container {
    -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 .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: 22px;
}
.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: 1203px) {
  .footer .privacy-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
  }
}
.footer .social-box {
  background: #d3ee78;
  border: 4px solid #ffffff;
  border-radius: 22px;
  padding: 16px;
}
.footer .social-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  margin-bottom: 14px;
}
.footer 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: 16px;
}
.footer__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--text-color);
}
.footer__copyright {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}
@media screen and (min-width: 1203px) {
  .footer__copyright {
    font-weight: 400;
  }
}

.policies {
  padding-top: 100px;
  padding-inline: 20px;
  padding-bottom: 50px;
  color: #002919;
}
@media screen and (min-width: 1203px) {
  .policies {
    padding-top: 150px;
  }
}
.policies a {
  color: #002919;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: #8eb51d;
}
.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 */
