/* header */

.nav-pum {
  display: none;
}

.header-pum {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  padding: 16px 20px 0;
}

.header-container-pum {
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  width: 100%;
  background-color: #f3f3f3;
  position: relative;
}

.nav-list-pum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 0 102px 0 92px;
}

.nav-item-pum {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.nav-link-pum {
  position: relative;
  padding: 8px 12px;
  height: 40px;
  font-weight: 500;
  line-height: 150%;
  color: #1e1e1e;
}

.nav-item-pum::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: #1e1e1e;
  transition: width 0.3s ease-in-out;
}

.nav-item-pum:hover::after {
  width: 100%;
}

.nav-link-pum:active + .nav-item-pum,
.nav-item-pum:has(.nav-link-pum:active) {
  border: 2px solid #1e1e1e;
}

.menu-svg-pum {
  width: 24px;
  height: 16px;
}

.menu-btn-pum {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-favicon {
  width: 36px;
  height: 36px;
}

@media screen and (min-width: 1440px) {
  .header-pum {
    width: 100%;
    padding: 24px 72px 0;
  }

  .header-container-pum {
    margin: 0 auto;
    width: 1440px;
    padding: 16px 24px;
  }

  .nav-pum {
    display: block;
  }

  .menu-open-pum {
    display: none;
  }

  .header-favicon {
    width: 48px;
    height: 48px;
  }
}

/* modal  */

.modal-pum {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  border-radius: 30px 0 0 30px;
  padding: 116px 20px 36px;
  width: 264px;
  height: 528px;
  box-shadow: -6px 8px 4px 0 rgba(16, 0, 78, 0.25);
  background: #f3f3f3;
}

.modal-btn-pum {
  position: absolute;
  top: 36px;
  right: 20px;
  width: 40px;
  height: 40px;
}

.modal-btn-pum {
  position: absolute;
  top: 36px;
  right: 20px;
  width: 19px;
  height: 19px;
}

.menu-nav-list-pum {
  flex-direction: column;
  align-items: start;
  padding: 0;
  gap: 16px;
}

/* popup */

.popup-pum {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 114px 20px 36px;
  background: #a425fe;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.popup-text-pum {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #f3f3f3;
}

.popup-btn-wrap-pum {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  width: 100%;
  gap: 8px;
}

.popup-btn-pum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 40px;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
}

.popup-btn-accept-pum {
  background: #f3f3f3;
  color: #1e1e1e;
  transition: all 0.3s ease;
}

.popup-btn-decline-pum {
  border: 3px solid #f3f3f3;
  color: #f3f3f3;
  transition: all 0.3s ease;
}

.popup-btn-accept-pum:hover {
  border: 3px solid #f3f3f3;
  color: #f3f3f3;
  background: transparent;
}

.popup-btn-decline-pum:hover {
  background: #f3f3f3;
  color: #1e1e1e;
}

.popup-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 36px;
  right: 20px;
}

.popup-close-icon {
  width: 22px;
  height: 22px;
  fill: #f3f3f3;
}

@media screen and (min-width: 1440px) {
  .popup-pum {
    left: 50%;
    transform: translate(-50%);
    padding: 190px 72px 90px;
    gap: 64px;
    width: 902px;
  }

  .popup-text-pum {
    font-size: 36px;
  }

  .popup-btn-wrap-pum {
    justify-content: end;
    gap: 48px;
  }

  .popup-btn-pum {
    width: 227px;
    height: 62px;
    font-weight: 500;
    font-size: 20px;
  }

  .popup-btn-accept-pum {
    background: #f3f3f3;
    color: #1e1e1e;
    transition: all 0.3s ease;
  }

  .popup-btn-decline-pum {
    border: 3px solid #f3f3f3;
    color: #f3f3f3;
    transition: all 0.3s ease;
  }

  .popup-btn-accept-pum:hover {
    border: 3px solid #f3f3f3;
    color: #f3f3f3;
    background: transparent;
  }

  .popup-btn-decline-pum:hover {
    background: #f3f3f3;
    color: #1e1e1e;
  }

  .popup-close-btn {
    top: 90px;
    right: 72px;
  }
}

/* hero  */

.hero-container-pum {
  padding-bottom: 423px;
  padding-top: 119px;
}

.hero-wrap-pum {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;

  h2 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
  }

  p {
    font-family: var(--second-family);
    font-weight: 500;
    line-height: 150%;
    text-align: center;
  }
}

.hero-logo-pum {
  width: 334px;
  height: 202px;
}

.hero-link-pum {
  border-radius: 8px;
  padding: 12px 16px;
  width: 235px;
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: 12px 12px 20px 0 rgba(0, 0, 0, 0.1);
  background: #f3f3f3;
  color: #1e1e1e;
  border: 1.5px solid #1e1e1e;
  transition: all 0.3s ease;

  svg {
    fill: currentColor;
  }
}

.hero-link-pum:hover {
  background: linear-gradient(90deg, #ffd920 0%, #4347ae 35%, #0c0e4d 80%);
  color: #fff;
}

.hero-link-pum:active {
  background: var(--yellow);
  color: black;
}

.img-googleplay-logo-pum {
  width: 30px;
  height: 34px;
  margin-right: 10px;
}

.icon-googleplay-text-pum {
  fill: currentColor;
}

.hero-bg-pum {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 350px 0 0 355px;
  border: 5px solid #ffd920;
  width: 355px;
  height: 405px;
  box-shadow: -37px 35px 113px 0 rgba(0, 0, 0, 0.1),
    -148px 142px 205px 0 rgba(0, 0, 0, 0.09),
    -334px 319px 250px 0 rgba(0, 0, 0, 0.05),
    -594px 568px 250px 0 rgba(0, 0, 0, 0.01),
    -928px 887px 250px 0 rgba(0, 0, 0, 0);
  background: url(/images/hero-bg.png);
  background-size: cover;
}

@media screen and (min-width: 1440px) {
  .hero-container-pum {
    padding-bottom: 220px;
    padding-top: 220px;
    display: flex;
  }

  .hero-wrap-pum {
    width: 582px;
    align-items: start;

    h2 {
      text-align: left;
    }

    p {
      font-size: 20px;
      text-align: left;
    }
  }

  .hero-logo-pum {
    width: 369px;
    height: 222px;
  }

  .hero-bg-pum {
    top: 0;
    right: -212px;
    border: none;
    width: 919px;
    height: 1026px;
  }
}

/* description */

#description {
  border-top: 4px solid #ffa726;
  border-bottom: 4px solid #ffeb3b;
}

.descr-container-pum {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.descr-title-pum {
  text-align: start;
}

.descr-pic-pum {
  width: 334px;
  height: 357px;
}

.descr-text-wrap-pum {
  display: flex;
  flex-direction: column;
}

.description-text-pum {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 16px;
}

.descr-list-pum {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    display: flex;
    gap: 16px;

    img {
      width: 54px;
      height: 54px;
    }

    p {
      font-weight: 400;
      font-size: 18px;
      line-height: 150%;
    }
  }
}

@media screen and (min-width: 1440px) {
  #description {
    border-top: 8px solid #ffa726;
    border-bottom: 8px solid #ffeb3b;
  }

  .descr-container-pum {
    flex-direction: row;
    gap: 130px;
  }

  .descr-pic-pum {
    width: 485px;
    height: 518px;
    padding-bottom: 12px;
    padding-left: 21.5px;
  }

  .description-text-pum {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .descr-list-pum {
    li {
      align-items: center;

      img {
        width: 54px;
        height: 54px;
      }

      p {
        font-weight: 500;
        font-size: 20px;
      }
    }
  }
}

/* how to play */

.how-list-pum {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-item-pum {
  border: 3px solid #ffa726;
  background: #5c048d;
  border-radius: 10px;
  padding: 16px 24px;
  width: 335px;
  display: flex;
  align-items: center;
  gap: 16px;

  span {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    background: linear-gradient(180deg, #ffa726 0%, #ffeb3b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  p {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
  }
}

@media screen and (min-width: 1440px) {
  .how-list-pum {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 55px 52px;
  }

  .how-item-pum {
    padding: 24px;
    width: 397px;
    height: 129px;
    display: flex;
    gap: 24px;

    span {
      font-size: 64px;
    }

    p {
      font-size: 20px;
    }
  }
}

/* features */

#features {
  border-top: 4px solid #ffa726;
}

.features-container-pum {
  padding-bottom: 402px;
}

.features-pic-pum {
  position: absolute;
  bottom: -70px;
  left: 93.5px;
  background: url(/images/features-pic.png);
  background-size: cover;
  width: 188px;
  height: 448px;
  box-shadow: -13px 9px 35px 0 rgba(0, 0, 0, 0.1),
    -52px 37px 64px 0 rgba(0, 0, 0, 0.09),
    -117px 83px 86px 0 rgba(0, 0, 0, 0.05),
    -208px 147px 102px 0 rgba(0, 0, 0, 0.01),
    -325px 230px 111px 0 rgba(0, 0, 0, 0);
}

.features-list-pum {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-item-pum {
  border: 3px solid #ffa726;
  background: #5c048d;
  border-radius: 10px;
  padding: 0px 16px;
  width: 335px;
  display: flex;
  align-items: center;

  img {
    width: 48px;
    height: 48px;
  }

  p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    padding: 24px;
  }
}

@media screen and (min-width: 1440px) {
  #features {
    border-top: 8px solid #ffa726;
  }

  .features-container-pum {
    padding-bottom: 90px;
    display: flex;
    justify-content: end;
  }

  .features-pic-pum {
    position: absolute;
    bottom: 60px;
    left: 172px;
    background: url(/images/features-pic.png);
    background-size: cover;
    width: 288px;
    height: 688px;
    box-shadow: -23px 13px 58px 0 rgba(0, 0, 0, 0.1),
      -92px 53px 106px 0 rgba(0, 0, 0, 0.09),
      -208px 119px 143px 0 rgba(0, 0, 0, 0.05),
      -369px 211px 170px 0 rgba(0, 0, 0, 0.01),
      -576px 330px 186px 0 rgba(0, 0, 0, 0);
  }

  .features-title-pum {
    text-align: left;
    margin-bottom: 36px;
  }

  .features-list-pum {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .features-item-pum {
    width: 748px;
    height: 78px;

    p {
      font-size: 20px;
    }
  }
}

/* faq */

#faq {
  border-top: 4px solid #ffeb3b;
  background: #a425fe;
  z-index: 2;
}

.faq-pic-pum {
  background: url(/images/faq-pic.png);
  background-size: cover;
  width: 261px;
  height: 380px;
  margin: 0 auto;
  margin-top: 24px;
}

.faq-list-pum {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-pum {
  border: 3px solid #ffa726;
  background: #5c048d;
  border-radius: 8px;
  padding: 8px 12px;
  width: 335px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-question-wrap-pum {
  display: flex;
  align-items: center;
  justify-content: space-between;

  p {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
  }

  .faq-btn-pum {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    svg {
      transform: rotate(-90deg);
      width: 20px;
      height: 12px;
      fill: #f3f3f3;
    }
  }
}

.faq-answer-wrap-pum {
  p {
    font-size: 18px;
    line-height: 150%;
  }
}

@media screen and (min-width: 1440px) {
  #faq {
    border-top: 8px solid #ffeb3b;
  }

  .faq-container-pum {
    display: flex;
    justify-content: start;
  }

  .faq-title-pum {
    text-align: left;
    margin-bottom: 36px;
  }

  .faq-pic-pum {
    background: url(/images/faq-pic.png);
    background-size: cover;
    width: 443px;
    height: 644px;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .faq-list-pum {
    gap: 32px;
  }

  .faq-item-pum {
    width: 745px;
  }

  .faq-question-wrap-pum {
    p {
      font-size: 24px;
    }
  }
}

/* reviews */

#reviews {
  border-top: 4px solid #ffa726;
  border-bottom: 4px solid #ffeb3b;
}

.reviews-list-pum {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.reviews-item-pum {
  width: 335px;
  padding-right: 6px;
  padding-bottom: 7px;
  position: relative;
  display: flex;
  gap: 26px;

  img {
    border-radius: 10px;
    width: 56px;
    height: 99px;
    padding-top: 46px;
  }

  .review-text-pum {
    padding: 20.5px 10px 20.5px 24px;
    width: 259px;

    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #1e1e1e;
  }

  svg {
    position: absolute;
    top: 0;
    right: 6px;
    z-index: -1;
    width: 260px;
    height: 139px;
  }

  .review-salt-wrap-pum {
    position: absolute;
    left: 115px;
    top: -16px;
    border: 3px solid #ffa726;
    background: #5c048d;
    border-radius: 8px;
    padding: 4px 12px;

    .review-salt-pum {
      font-weight: 500;
      font-size: 14px;
      line-height: 150%;
      text-align: center;
    }
  }
}

.reviews-item-pum:nth-child(4),
.reviews-item-pum:nth-child(5),
.reviews-item-pum:nth-child(6) {
  flex-direction: row-reverse;

  svg {
    right: 70px;
    width: 259px;
    height: 128px;
  }

  .review-salt-wrap-pum {
    left: 12px;
    top: -21px;

    .review-salt-pum {
      font-size: 12px;
    }
  }
}

@media screen and (min-width: 1440px) {
  #reviews {
    border-top: 8px solid #ffa726;
    border-bottom: 8px solid #ffeb3b;
  }

  .reviews-list-pum {
    flex-wrap: wrap;
    gap: 66px 20px;
    height: 840px;
  }

  .reviews-item-pum {
    width: 638px;
    height: 234px;
    padding: 0;
    padding-left: 30px;
    gap: 9px;

    img {
      border-radius: 30px;
      width: 130px;
      height: 178px;
      padding-top: 56px;
    }

    .review-text-pum {
      padding: 57px 70px 38px 60px;
      width: 469px;

      font-weight: 500;
      font-size: 20px;
    }

    svg {
      position: absolute;
      top: 24px;
      right: 30px;
      width: 439px;
      height: 206px;
    }

    .review-salt-wrap-pum {
      left: 295px;
      top: 5px;

      .review-salt-pum {
        font-family: var(--second-family);
        font-size: 20px;
      }
    }
  }

  .reviews-item-pum:nth-child(4),
  .reviews-item-pum:nth-child(5),
  .reviews-item-pum:nth-child(6) {
    padding: 0;
    padding-right: 30px;

    .review-text-pum {
      padding: 57px 60px 38px 70px;
      width: 469px;

      font-weight: 500;
      font-size: 20px;
    }

    svg {
      position: absolute;
      top: 24px;
      right: 169px;
      width: 439px;
      height: 206px;
    }

    .review-salt-wrap-pum {
      left: 69px;
      top: 5px;

      .review-salt-pum {
        font-family: var(--second-family);
        font-size: 20px;
      }
    }
  }
}

/* gallery */

.gallery-swiper-pum {
  overflow: hidden;
}

.gallery-item-pum {
  border-radius: 5px;
  width: 118px;
  height: 210px;

  img {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .gallery-item-pum {
    border-radius: 15px;
    width: 300px;
    height: 540px;
  }
}

/* footer */

.footer-pum {
  background: #5c048d;
  border-top: 4px solid #ffa726;
}

.footer-container-pum {
  width: 375px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links-list-pum {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links-item-pum {
  padding: 8px 12px;
}

.footer-link-pum {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #f3f3f3;
}

.footer-text-pum {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #f3f3f3;
}

.slash-item-pum {
  display: none;
}

@media screen and (min-width: 1440px) {
  .footer-pum {
    border-top: 8px solid #ffa726;
  }

  .footer-container-pum {
    width: 1440px;
    padding: 48px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-links-list-pum {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }

  .footer-link-pum {
    color: #fff;
  }

  .footer-text-pum {
    color: #fff;

    span {
      text-transform: capitalize;
    }
  }

  .slash-item-pum {
    display: block;
  }
}

/* ********************* */

.hidden-pum {
  display: none;
}

.click-pum {
  transform: rotate(180deg);
}
