/* header */

.nav-wdt {
  display: none;
}

.header-wdt {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--main-bg-txt);
}

.header-container-wdt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  width: 375px;
  height: 48px;
}

.header-logo-link-wdt {
  border-radius: 4px;
  width: 24px;
  height: 24px;

  img {
    width: 100%;
    height: 100%;
  }
}

.menu-btn-wdt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: var(--accent);
  transition: all 0.3s ease;

  svg {
    stroke: var(--main-bg-txt);
  }
}

.menu-btn-wdt:hover {
  transform: scale(1.1);
}

.menu-svg-open-wdt {
  width: 15px;
  height: 13px;
}

.menu-svg-close-wdt {
  width: 13px;
  height: 13px;
}

.nav-list-wdt {
  display: flex;
  align-items: center;
}

.nav-item-wdt {
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-wdt {
  opacity: 0.6;
  position: relative;
  text-align: center;
  font-weight: 300;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}

.nav-item-wdt::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);

  transition: all 0.3s ease-in-out;
}

.item-active-wdt::after {
  width: 100%;
}

.link-active-wdt {
  opacity: 1;
}

.nav-link-wdt:hover {
  opacity: 1;
}

@media screen and (min-width: 1440px) {
  .header-container-wdt {
    padding: 8px 120px;
    width: 1440px;
    justify-content: space-between;
  }

  .nav-wdt {
    display: block;
  }

  .menu-btn-wdt {
    display: none;
  }

  .header-btn-link-wdt {
    display: flex;
  }
}

/* modal  */

.modal-wdt {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;

  background: var(--main-bg-txt);
  border-bottom: 1px solid var(--extra);
  padding: 76px 32px;
  width: 375px;
  height: 699px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-nav-list-wdt {
  flex-direction: column;
  gap: 24px;
}

.menu-nav-item-wdt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0px;
  width: 311px;
}

.menu-nav-link-wdt {
  font-size: 14px;
}

/* hero  */

#home {
  position: relative;
  background-image: url(./images/hero-mob.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container-wdt {
  position: relative;
  padding: 96px 16px 302px;
}

.hero-title-wdt {
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

.hero-subtitle-wdt {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: var(--also-txt);
  margin-bottom: 32px;
}

.hero-gradient-wdt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 92px;
  background: linear-gradient(180deg, rgba(24, 25, 28, 0) 0%, #18191c 93.09%);
}

@media screen and (min-width: 1440px) {
  #home {
    background-image: url(./images/hero-desk.png);
  }

  .hero-container-wdt {
    position: relative;
    padding: 96px 223px 526px;
  }

  .hero-title-wdt {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 16px;
  }

  .hero-optional-wdt {
    display: none;
  }

  .hero-subtitle-wdt {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .hero-gradient-wdt {
    height: 420px;
  }
}

/* about */

.about-subtitle-wrap-wdt {
  position: relative;
  z-index: 2;
}

.about-text-wdt {
  position: relative;
  z-index: 2;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  width: 313px;
  margin-bottom: 40px;
}

.about-img-wdt {
  position: relative;
  z-index: 2;
  width: 343px;
  height: 152px;
}

.about-gradient-wdt {
  display: none;
}

@media screen and (min-width: 1440px) {
  #about {
    position: relative;
    background-image: url(./images/about-bg-desk.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .about-gradient-wdt {
    position: absolute;
    left: 0;
    width: 100%;
    display: block;
    background: linear-gradient(180deg, rgba(24, 25, 28, 0) 0%, #18191c 93.09%);
  }

  .about-gradient-upper-wdt {
    transform: rotate(180deg);
    height: 174px;
    top: 0;
  }

  .about-gradient-lower-wdt {
    height: 324px;
    bottom: 0;
  }

  .about-subtitle-wrap-wdt {
    margin-bottom: 58px;
  }

  .about-text-wdt {
    font-size: 16px;
    width: 790px;
    margin-bottom: 48px;
  }

  .about-img-wdt {
    width: 616px;
    height: 272px;
  }
}

/* gameplay */

.gameplay-text-wdt {
  width: 330px;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 40px;
}

.gameplay-list-wdt {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gameplay-item-wdt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  padding: 16px;
  width: 162px;
  height: 122px;
  box-shadow: 0 0 2px 0 var(--accent);
  background: var(--bg2);

  svg {
    width: 32px;
    height: 32px;
  }

  p {
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
}

@media screen and (min-width: 1440px) {
  .gameplay-text-wdt {
    width: 840px;
    font-size: 16px;
    margin-bottom: 48px;
  }

  .gameplay-list-wdt {
    gap: 32px;
  }

  .gameplay-item-wdt {
    padding: 32px;
    width: 210px;
    height: 176px;

    svg {
      width: 48px;
      height: 48px;
    }

    p {
      font-size: 16px;
    }
  }
}

/* system */

.system-text-wdt {
  width: 333px;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 40px;
}

.system-optional-wdt {
  display: none;
}

.system-list-wdt {
  display: flex;
  gap: 8px;
}

.system-item-wdt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--extra);
  border-radius: 8px;
  padding: 16px 12px;
  width: 108px;
  height: 105px;
  margin-bottom: 32px;

  svg {
    width: 25px;
    height: 27px;
  }

  p {
    font-weight: 300;
    font-size: 10px;
    line-height: 150%;
    text-align: center;
  }
}

.system-img-wrap-wdt {
  display: flex;
  gap: 16px;

  .system-img-wdt {
    border-radius: 8px;
    width: 162px;
    height: 195px;
  }
}

@media screen and (min-width: 1440px) {
  .system-container-wdt {
    position: relative;
  }

  .system-text-wdt {
    width: 812px;
    font-size: 16px;
    margin-bottom: 48px;
  }

  .system-optional-wdt {
    display: block;
  }

  .system-list-wdt {
    position: absolute;
    bottom: 94px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 32px;
  }

  .system-item-wdt {
    flex-direction: row;
    padding: 24px;
    width: 310px;
    height: 91px;
    margin-bottom: 0;

    p {
      font-size: 16px;
    }
  }

  .system-img-wrap-wdt {
    gap: 374px;

    .system-img-wdt {
      width: 303px;
      height: 365px;
    }
  }
}

/* variety */

.variety-container-wdt {
  padding-bottom: 40px;
}

.variety-text-wdt {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}

.variety-optional-wdt {
  display: none;
}

.variety-img-wdt {
  background-image: url(./images/variety-pic.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 375px;
  height: 215px;
}

@media screen and (min-width: 1440px) {
  .variety-container-wdt {
    padding-bottom: 48px;
  }

  .variety-optional-wdt {
    display: block;
  }

  .variety-text-wdt {
    font-size: 16px;
  }

  .variety-img-wdt {
    background-image: url(./images/variety-pic.png);
    width: 1440px;
    height: 825px;
  }
}

/* features */

.features-text-wdt {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 40px;
}

.features-list-wdt {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.features-item-wdt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  padding: 16px;
  width: 162px;
  height: 122px;
  box-shadow: 0 0 2px 0 var(--accent);
  background: var(--bg2);

  svg {
    width: 32px;
    height: 32px;
  }

  p {
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
}

.features-item-wdt:nth-child(3) {
  width: 340px;
  height: 101px;
}

@media screen and (min-width: 1440px) {
  .features-text-wdt {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .features-list-wdt {
    gap: 32px;
  }

  .features-item-wdt {
    padding: 32px;
    width: 210px;
    height: 176px;

    svg {
      width: 48px;
      height: 48px;
    }

    p {
      font-size: 16px;
    }
  }

  .features-item-wdt:nth-child(3) {
    width: 210px;
    height: 176px;
  }
}

/* gallery */

.gallery-subtitle-wrap-wdt {
  padding-left: 20px;
}

.gallery-container-wdt {
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.gallery-curtain-wdt {
  display: none;
  position: absolute;
  z-index: 2;
  bottom: 80px;
  height: 368px;
  width: 220px;
  background: var(--main-bg-txt);
  opacity: 0.9;
}

.gallery-curtain-left-wdt {
  left: 0;
}

.gallery-curtain-right-wdt {
  right: 0;
}

.glide {
  position: relative;
}

.gallery-item-wdt {
  width: 303px;
  height: 227px;
  border: 2px solid var(--extra);
  border-radius: 8px;
}

.gallery-item-picture-wdt {
  width: 100%;
  height: 100%;
}

.gallery-controls-wrap-wdt {
  display: none;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-controls-wdt {
  display: flex;
  justify-content: space-between;
  width: 1200px;
}

.gallery-btn-wdt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: var(--accent);
  border: none;
  transition: all 0.3s ease;
}

.gallery-btn-wdt:hover {
  background: linear-gradient(180deg, #78aa06 0%, #467800 100%);
}

.gallery-btn-wdt:active {
  background: linear-gradient(180deg, #78aa06 0%, #467800 100%);
}

.gallery-btn-right-wdt {
  .gallery-controls-btn-icon-wdt {
    transform: rotate(180deg);
  }
}

.gallery-controls-btn-icon-wdt {
  width: 22px;
  height: 42px;
  stroke: var(--main-bg-txt);
  fill: none;
}

@media screen and (min-width: 1440px) {
  .gallery-subtitle-wrap-wdt {
    padding-left: 120px;
  }

  .gallery-curtain-wdt {
    display: block;
  }

  .gallery-item-wdt {
    width: 800px;
    height: 368px;
  }

  .gallery-item-picture-wdt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gallery-controls-wrap-wdt {
    display: block;
  }
}

/* reviews */

.reviews-container-wdt {
  padding-bottom: 40px;
}

.reviews-item-wdt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--extra);
  border-radius: 8px;
  padding: 24px 16px;
  width: 210px;
  height: 145px;

  .reviews-item-wrap-wdt {
    display: flex;
    justify-content: space-between;
    align-items: center;

    h4 {
      font-weight: 300;
      font-size: 14px;
      line-height: 150%;
      color: var(--also-txt);
    }

    .reviews-item-stars-wrap-wdt {
      display: flex;

      img {
        width: 12px;
        height: 12px;
      }
    }
  }

  p {
    font-weight: 300;
    font-size: 10px;
    line-height: 150%;
  }
}

.reviews-img-wdt {
  background-image: url(./images/reviews-pic-mob.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 375px;
  height: 179px;
}

@media screen and (min-width: 1440px) {
  .reviews-container-wdt {
    padding-bottom: 48px;
  }

  .reviews-glide-wdt {
    cursor: default;
  }

  .reviews-list-wdt {
    display: flex;
    gap: 32px;
  }

  .reviews-item-wdt {
    height: 178px;

    .reviews-item-wrap-wdt {
      h4 {
        font-size: 16px;
      }
    }

    p {
      font-size: 12px;
    }
  }

  .reviews-img-wdt {
    background-image: url(./images/reviews-pic-desk.png);
    width: 1440px;
    height: 465px;
  }
}

/* faq */

.faq-container-wdt {
  padding-bottom: 52px;
}

.faq-list-wdt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item-wdt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 4px;
}

.faq-question-wrap-wdt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--extra);
  padding: 8px 0px;
}

.faq-question-wdt {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  color: var(--also-txt);
}

.faq-btn-wdt {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--accent);
  width: 24px;
  height: 24px;
}

.faq-btn-icon-wdt {
  width: 16px;
  height: 8px;
  fill: none;
  stroke: var(--main-bg-txt);
}

.faq-answer-wdt {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
}

@media screen and (min-width: 1440px) {
  .faq-list-wdt {
    width: 1062px;
  }

  .faq-question-wdt {
    font-size: 24px;
  }

  .faq-answer-wdt {
    font-size: 16px;
  }
}

/* contact */

.section-contact-wdt {
  padding-bottom: 40px;
}

.contact-link-wdt {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  text-align: center;

  svg {
    width: 24px;
    height: 24px;
  }
}

.contact-pic-wdt {
  width: 375px;
  height: 175px;
  background-image: url("./images/contact-pic-mob.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 1440px) {
  .section-contact-wdt {
    padding-bottom: 0;
  }

  .contact-link-wdt {
    gap: 32px;
    font-size: 24px;
  }

  .contact-pic-wdt {
    width: 1440px;
    height: 673px;
    background-image: url("./images/contact-pic-desk.png");
  }
}

/* footer */

.footer-container-wdt {
  gap: 32px;
  padding-bottom: 56px;
}

.gplay-link-wdt {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--extra);
  border-radius: 8px;
  width: 280px;
  height: 72px;
  box-shadow: 2px 2px 1px 0 rgba(64, 67, 73, 0.4);
  background: var(--bg2);
  transition: all 0.3s ease;

  img {
    width: 175px;
    height: 40px;
  }
}

.gplay-link-wdt:hover {
  background: linear-gradient(180deg, #222326 0%, #404349 100%);
}

.gplay-link-wdt:active {
  background: linear-gradient(180deg, #222326 0%, #404349 100%);
  box-shadow: none;
}

.footer-links-list-wdt {
  display: flex;
  align-items: center;
  gap: 32px;

  .footer-links-item-wdt {
    transition: all 0.3s ease;

    a {
      font-weight: 300;
      font-size: 14px;
      line-height: 150%;
      text-decoration: underline;
      text-decoration-skip-ink: none;
    }
  }
}

.footer-links-item-wdt:hover {
  transform: scale(1.1);
}

.footer-text-wdt {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-container-wdt {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 72px;
  }

  .footer-gplay-link-wdt {
    order: 2;
  }

  .footer-links-list-wdt {
    order: 3;
    gap: 64px;
    padding-left: 36px;

    .footer-links-item-wdt {
      a {
        font-size: 16px;
      }
    }
  }

  .footer-text-wdt {
    order: 1;
    font-size: 16px;
  }
}

/* ********************* */

.hidden-wdt {
  display: none;
}

.click-wdt {
  transform: rotate(180deg);
}
