/* header */

.nav-oow {
  display: none;
}

.header-oow {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background-color: var(--bg);
}

.header-container-oow {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  position: relative;
  width: 375px;
  height: 80px;
}

.nav-logo-link-oow {
  padding-top: 4px;
}

.header-logo-oow {
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

.menu-btn-oow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  width: 44px;
  height: 54px;
  transition: all 0.3s ease;
}

.menu-btn-oow:hover {
  transform: scale(1.1);
}

.menu-svg-oow {
  stroke: var(--d-blue);
}

.menu-svg-open-oow {
  width: 44px;
  height: 44px;
}

.menu-svg-close-oow {
  width: 23px;
  height: 23px;
}

.nav-list-oow {
  display: flex;
  align-items: center;
  gap: 44.5px;
}

.nav-item-oow {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-oow {
  position: relative;
  font-size: 18px;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}

.nav-item-oow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--d-blue);

  transition: all 0.3s ease-in-out;
}

.item-active-oow::after {
  width: 100%;
}

.link-active-oow {
  font-weight: 900;
}

.nav-link-oow:hover {
  font-weight: 900;
}

@media screen and (min-width: 1440px) {
  .header-container-oow {
    align-items: center;
    padding: 8px 160px;
    width: 1440px;
    height: 60px;
  }

  .nav-oow {
    display: block;
  }

  .menu-btn-oow {
    display: none;
  }

  .header-btn-link-oow {
    display: flex;
  }
}

/* modal  */

.modal-oow {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  border-radius: 16px;
  padding: 16px 0px;
  width: 343px;
  background-color: var(--bg);

  display: flex;
  flex-direction: column;
  align-items: start;
}

.nav-modal-oow {
  width: 100%;
}

.menu-nav-list-oow {
  gap: 0;
  width: 100%;
  flex-direction: column;
}

.menu-nav-item-oow {
  width: 100%;
}

.menu-nav-link-oow {
  display: block;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}

/* hero  */

#home {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./images/hero-mob.png);
  background-size: cover;
}

.hero-container-oow {
  padding: 96px 0 60px;
}

.hero-wrap-oow {
  position: relative;
  padding: 4px 16px 51px;
  margin-bottom: 178px;
}

.hero-text-bg-oow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(104px);
  background: #000;
  opacity: 0.6;
}

.hero-title-oow {
  position: relative;
  z-index: 2;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 42px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 29px;
}

.hero-subtitle-oow {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-text-oow {
  position: relative;
  z-index: 2;
  line-height: 150%;
  color: var(--white);
}

.hero-link-oow {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #a6a6a6;
  border-radius: 6px;
  padding: 10px 12px;
  background: #000;
  width: 180px;
  height: 57px;

  .hero-gplay-logo-oow {
    width: 31px;
    height: 35px;
  }

  .hero-gplay-text-oow {
    width: 113px;
    height: 37px;
  }
}

@media screen and (min-width: 1440px) {
  #home {
    background-image: url(./images/hero-desk.png);
  }

  .hero-container-oow {
    padding: 96px 640px 219px 160px;
    align-items: start;
  }

  .hero-wrap-oow {
    padding: 0;
    margin-bottom: 56px;
  }

  .hero-text-bg-oow {
    top: 14px;
    left: 25px;
    width: 692px;
    height: 536px;
    filter: blur(208px);
    opacity: 0.4;
  }

  .hero-title-oow {
    font-size: 80px;
    margin-bottom: 24px;
  }

  .hero-subtitle-oow {
    font-size: 28px;
    margin-bottom: 48px;
  }

  .hero-text-oow {
    font-size: 18px;
    width: 544px;
  }

  .hero-link-oow {
    position: relative;
    z-index: 2;
  }
}

/* features */

.features-list-oow {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-item-oow {
  display: flex;
  flex-direction: column;
  gap: 8px;

  h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
  }

  p {
    line-height: 150%;
  }
}

.features-list-upper-oow {
  margin-bottom: 32px;
}

.features-img-upper-oow {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./images/features-pic-1-mob.png);
  background-size: contain;
  width: 343px;
  height: 362px;
}

.features-list-lower-oow {
  margin-top: 32px;
  margin-bottom: 32px;
}

.features-img-lower-oow {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./images/features-pic-2-mob.png);
  background-size: contain;
  width: 343px;
  height: 350px;
}

@media screen and (min-width: 1440px) {
  .features-container-oow {
    position: relative;
  }

  .features-item-oow {
    h3 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }
  }

  .features-list-upper-oow {
    margin-bottom: 257px;
    padding-right: 576px;
  }

  .features-img-upper-oow {
    position: absolute;
    top: 80px;
    right: 160px;
    background-image: url(./images/features-pic-1-desk.png);
    width: 448px;
    height: 560px;
  }

  .features-list-lower-oow {
    margin: 0;
    padding-left: 576px;
    padding-bottom: 123px;
  }

  .features-img-lower-oow {
    position: absolute;
    bottom: 67px;
    left: 160px;
    background-image: url(./images/features-pic-2-desk.png);
    width: 448px;
    height: 560px;
  }
}

/* how */

.how-list-oow {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.how-item-oow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--white);
  border-radius: 16px;
  padding: 16px;
  background: var(--pink);

  h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: var(--blue);
  }

  p {
    line-height: 150%;
  }
}

.how-img-oow {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./images/how-pic-mob.png);
  background-size: contain;
  width: 343px;
  height: 200px;
}

@media screen and (min-width: 1440px) {
  .how-list-oow {
    flex-direction: row;
    gap: 32px;
  }

  .how-item-oow {
    width: 352px;
    height: 232px;

    h3 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }
  }

  .how-img-oow {
    background-image: url(./images/how-pic-desk.png);
    width: 1120px;
    height: 496px;
  }
}

/* testimonials */

.testimonials-item-oow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--blue);
  border-radius: 16px;
  padding: 16px;
  width: 300px;

  p {
    line-height: 150%;
  }

  h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    text-align: right;
    color: var(--blue);
  }
}

@media screen and (min-width: 1440px) {
  .testimonials-item-oow {
    width: 448px;

    p {
      font-size: 18px;
    }

    h3 {
      font-size: 20px;
    }
  }
}

/* faq */

.faq-list-oow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item-oow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--white);
  border-radius: 16px;
  padding: 16px;
  background: var(--l-blue);
}

.faq-question-wrap-oow {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-question-oow {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: var(--blue);
  width: 100%;
}

.faq-btn-oow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background: transparent;
  transform: rotate(90deg);
  transition: all 0.3s ease;

  .faq-btn-icon-oow {
    stroke: var(--blue);
    width: 28px;
    height: 28px;
  }
}

.faq-icon-stable-oow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  stroke: var(--blue);
  width: 28px;
  height: 28px;
}

.faq-answer-oow {
  line-height: 150%;
}

@media screen and (min-width: 1440px) {
  .faq-question-oow {
    font-size: 20px;
  }

  .faq-answer-oow {
    font-size: 18px;
  }
}

/* footer */

#footer {
  background: var(--d-blue);
}

.footer-container-oow {
  padding: 40px 16px 16px;
}

.footer-links-list-oow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;

  li {
    a {
      line-height: 150%;
      text-align: center;
      color: var(--l-blue);
    }
  }
}

.footer-text-oow {
  font-size: 11px;
  line-height: 150%;
  text-align: center;
  color: var(--l-blue);
}

@media screen and (min-width: 1440px) {
  .footer-container-oow {
    padding: 60px 88px;
  }

  .footer-links-list-oow {
    li {
      a {
        font-size: 18px;
      }
    }
  }

  .footer-text-oow {
    font-size: 12px;
  }
}

/* ********************* */

.hidden-oow {
  display: none;
}

.click-oow {
  transform: rotate(180deg);
}
