.nav {
  display: none;
}

.header {
  position: fixed;
  z-index: 9;
  width: 100%;
  padding: 30px;
  background-image: url(./images/bg.jpg);
  background-position: center;
  background-size: cover;
}

.header-logo {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.contact-nav-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;

  border: 0.75px solid #fff;
  transition: background-color 0.3s ease;
  border-radius: 30px;
  padding: 6px;
  width: 30px;
  height: 30px;

  svg {
    stroke: #fff;
  }
}

.contact-link:hover {
  background-color: #ff0;
  border-color: transparent;
}

.nav-link:hover {
  color: #ff0;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.menu-svg {
  stroke: #fff;
  fill: #fff;
}

@media screen and (min-width: 1420px) {
  .header {
    padding: 30px 117px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #fff;
    transition: color 0.3s ease;
  }

  .header-logo:hover {
    color: #ff0;
  }

  .nav {
    display: block;
  }

  .menu-open {
    display: none;
  }
}

/* modal  */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  padding: 90px;
  padding-top: 110px;
  padding-right: 20px;
  background-image: url(./images/bg.jpg);
  background-position: center;
  background-size: cover;
}

.menu-nav-list {
  flex-direction: column;
  align-items: flex-start;
}

.modal-logo {
  display: flex;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #fff;
  gap: 9px;
  margin-bottom: 30px;
}

/* popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  left: 50%;
  width: 95%;
  transform: translateX(-50%);
  padding: 30px 20px;
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.18);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.4s ease;
}

.popup-text {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 143%;
  color: #737b8f;
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 143%;
  color: #737b8f;
  border: 2px solid #737b8f;
  border-radius: 6px;
  padding: 12px 36px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.popup-btn:hover {
  color: #fff;
  background: green;
}

.popup-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media screen and (min-width: 1420px) {
  .popup {
    display: flex;
    padding: 42px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .popup-text {
    max-width: 65%;
  }
  .popup-wrap {
    width: auto;
    gap: 20px;
  }
}

/* home  */

.hero {
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background-image: url(./images/bg.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: 0 43px 114px rgba(0, 107, 184, 0.42);
}

.hero-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 117%;
  color: #fff;
  margin-bottom: 28px;
}

.hero-sub-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 12px;
}

.hero-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: #eaf9fd;
  margin-bottom: 30px;
}

.hero-link {
  display: block;
  border-radius: 749px;
  padding: 9px;
  width: 193px;
  max-width: 100%;
  backdrop-filter: blur(52.5px);
  box-shadow: 0 61px 176px rgba(0, 48, 121, 0.21);
  background-color: #f00;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  transition: background-color 0.3s ease;
}

.hero-link:hover {
  background-color: rgb(178, 0, 0);
}

.disclaimer {
  margin-top: 60px;
  padding: 59px;
  padding-left: 20px;
  transform: translateX(-20px);
}

.disclaimer-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.disclaimer-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-link {
  margin: 0;
}

.letters {
  position: absolute;
  width: 90px;
  right: 0;
  top: 200px;
}

.card1 {
  display: none;
}

.card2 {
  position: absolute;
  bottom: 22%;
  right: 0;
  width: 145px;
}

@media screen and (min-width: 1420px) {
  .hero {
    padding-top: 154px;
    overflow: visible;
  }

  .hero-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 110px;
  }

  .hero-title {
    font-size: 105px;
    margin: 0;
    flex-shrink: 0;
  }

  .letters {
    position: static;
    width: auto;
    margin: 0 auto;
  }

  .card1 {
    display: block;
    position: absolute;
    bottom: -44px;
    left: 117px;
  }

  .card2 {
    width: auto;
    bottom: 102px;
    right: auto;
    left: 342px;
  }

  .disclaimer {
    margin: 0;
    padding: 40px 130px;
    transform: translateX(0);
    margin-left: 350px;
  }
}

/* about */

.about-nav {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  color: #0052b4;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.about-link {
  display: flex;
  align-items: center;
  justify-content: center;

  border: 0.75px solid #0052b4;
  border-radius: 30px;
  padding: 6px;
  width: 30px;
  height: 30px;
  transition: background-color 0.3s ease;

  svg {
    stroke: #0052b4;
  }
}

.about-link:hover {
  border-color: transparent;
  background-color: #ff0;
}

.about-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: #737b8f;
  margin-bottom: 24px;
}

.about-img {
  width: 375px;
  margin: 0 auto;
  margin-top: 38px;
}

@media screen and (min-width: 1420px) {
  #about {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 69px;
    flex-direction: row-reverse;
    padding-top: 118px;
  }

  .about-wrap {
    transform: translateX(-100px);
    margin-bottom: 92px;
  }

  .about-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .about-text {
    font-size: 20px;
  }
}

/* features */

#features {
  padding-left: 0;
  padding-right: 0;
}

.features-wrap {
  padding-top: 54px;
  border-radius: 30px;
  background: linear-gradient(
    173deg,
    #0052b4 16.24%,
    #10c2ea 55.89%,
    #0052b4 75.72%
  );

  ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 50px;
    color: #fff;
    margin-bottom: 16px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 18px;
    line-height: 167%;
    color: #fff;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #fff;
  }
}

.money {
  width: 345px;
  margin: 0 auto;
}

@media screen and (min-width: 1420px) {
  #features {
    padding-left: 117px;
    padding-right: 117px;
  }

  .features-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 81px;
    padding: 54px 81px;
    padding-bottom: 12px;

    ul {
      padding: 0;
    }
  }

  .money {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    transform: translateY(-100px);
  }
}

/* gameplay */

#gameplay {
  background-image: url(./images/bg.jpg);
  background-position: center;
  background-size: cover;
}

.section-green-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  text-transform: uppercase;
  color: #36ba6f;
  margin-bottom: 18px;
  position: relative;
}

.section-green-title::before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 42px;
  height: 4px;
  background-color: #36ba6f;
  content: "";
}

.gameplay-logo {
  width: 325px;
  margin: 0 auto;
  margin-bottom: 42px;
}

.gameplay-link {
  border-color: #fff;
  svg {
    stroke: #fff;
  }
}

.gameplay-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  color: #fff;
  margin-bottom: 20px;
}

.iframe-wrap {
  position: relative;
  width: 335px;
  max-width: 100%;
  height: 203px;
  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;
  margin: 0 auto;
  margin-top: 60px;
}

.close-button-frame {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-40px) translateX(10px);
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  z-index: 1;
  .menu-svg {
    fill: #fff;
    stroke: #fff;
  }
}

.close-button-frame:hover {
  .menu-svg {
    fill: #f00;
    stroke: #f00;
  }
}

#gameIframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (min-width: 768px) {
  .iframe-wrap {
    width: 500px;
    height: 290px;
  }
}

@media screen and (min-width: 1200px) {
  .iframe-wrap {
    min-width: 837px;
    height: 490px;
  }
}

@media screen and (min-width: 1420px) {
  .gameplay-flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 79px;
  }

  .gameplay-logo {
    width: 463px;
    margin: 0;
    flex-shrink: 0;
  }
}

/* symbols */

#symbols {
  position: relative;
  padding-bottom: 261px;
  padding-left: 0;
  padding-right: 0;
}

.symbols-title-wrap {
  border-radius: 18px;
  padding: 42px;
  backdrop-filter: blur(54px);
  background: rgba(0, 19, 55, 0.6);
}

.symbols-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.symbols-img {
  width: 190px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.symbols-swiper {
  margin-top: 40px;
}

.symbols-wrapper {
  padding: 20px 0;
}

.symbols-item {
  border-radius: 15px;
  width: 289px;
  max-width: 100%;
  min-height: 172px;
  backdrop-filter: blur(50.769229888916016px);
  background: rgba(255, 255, 255, 0.8);
  padding: 37px 65px;
  /* box-shadow: 0 51px 147px rgba(0, 48, 121, 0.24); */

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 14px;
    line-height: 129%;
    text-transform: uppercase;
    color: #04550d;
    text-align: center;
    margin-bottom: 24px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 112%;
    text-align: center;
    color: #1e1e1e;
  }
}

.symbols-bg {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}

.symbols-list {
  display: none;
}

@media screen and (min-width: 1420px) {
  #symbols {
    position: relative;
    padding-bottom: 20px;
    padding-left: 117px;
    padding-right: 117px;
  }

  .symbols-img {
    width: auto;
    position: static;
    bottom: auto;
    left: auto;
    transform: translateX(0);
  }

  .symbols-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    gap: 92px;
  }

  .symbols-bg {
    top: 30%;
    left: 50%;
    width: calc(100% - 234px);
    transform: translateX(-50%);
    height: 50%;
  }

  .symbols-list {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 37px;

    li {
      width: calc((100% - 54px) / 4);
    }
  }

  .symbols-swiper {
    display: none;
  }
}

/* achievements */

.achievements-item {
  border-radius: 18px;
  width: 357px;
  max-width: 100%;
  min-height: 392px;
  background-image: url(./images/bg.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  div {
    border: 3px solid #fff;
    width: 100%;
    border-radius: 18px;
    padding: 36px;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.6);
  }

  img {
    width: 160px;
    padding-top: 30px;
  }

  p {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 131%;
    color: #202636;
    margin-bottom: 10px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #737b8f;
  }
}

.achievements-list {
  display: none;
}

@media screen and (min-width: 1420px) {
  .achievements-swiper {
    display: none;
  }

  .achievements-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
  }
}

/* faq */

#faq {
  padding-left: 0;
  padding-right: 0;
}

.faq-item {
  border-radius: 18px;
  padding: 18px 24px;
  width: 375px;
  height: 621px;
  background: rgba(137, 135, 135, 0.25);
  padding-top: 71px;
  position: relative;

  span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #fff;
    background-color: rgb(53, 164, 66);
    position: absolute;
    top: 20px;
    left: 20px;
    margin-bottom: 20px;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 18px;
    line-height: 167%;
    color: #202636;
    margin-bottom: 18px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #202636;
  }
}

.faq-img {
  display: none;
}

@media screen and (min-width: 1420px) {
  #faq {
    padding-left: 117px;
    padding-right: 117px;
    padding-right: 0;
  }

  .faq-img {
    display: block;
    flex-shrink: 0;
  }

  .faq-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* contact */

.contact-wrap {
  background-image: url(./images/bg.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 90px 10px;
  padding-bottom: 254px;
  position: relative;
}

.contact-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: #737b8f;
  margin-bottom: 40px;
}

.contact-list {
  padding: 100px 20px;
  backdrop-filter: blur(54px);
  background: rgba(0, 19, 55, 0.6);

  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;

  a {
    display: flex;
    align-items: center;
    gap: 24px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #fff;
    transition: color 0.3s ease;
  }

  a:hover {
    color: #ff0;
  }
}

.gold {
  position: absolute;
  width: 204px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1420px) {
  .contact-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 224px;
    padding-bottom: 41px;
    padding-right: 181px;
    padding-left: 117px;
  }

  .contact-text {
    max-width: 440px;
    margin-bottom: 124px;
  }

  .gold {
    position: static;
    width: 257px;
    bottom: auto;
    left: auto;
    transform: translateX(0);
    margin-left: auto;
  }

  .contact-list {
    padding: 120px;
    border-radius: 20px;
    transform: translateY(100px);
  }
}

/* footer */

.footer {
  padding: 20px;
  padding-top: 76px;
  border-top: 1px solid #d4d6dd;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  font-family: var(--second-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #1e1e1e;
  margin-bottom: 24px;
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: #737b8f;
  margin-bottom: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;

  a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #737b8f;
  }

  a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1420px) {
  .footer {
    padding: 70px 117px;
    padding-bottom: 20px;
  }

  .footer-logo-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-list {
    align-items: flex-end;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-text {
  }

  .link-list {
    flex-direction: row;
    gap: 20px;
  }
}

/* ********************* */

.hidden {
  display: none;
}

.popup-click {
  transform: translateY(120%) translateX(-50%);
}
