/* header */

.nav-eol {
  display: none;
}

.header-eol {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--l-gray);
}

.header-container-eol {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px 16px 16px;
  width: 375px;
  height: 80px;
}

.header-link-eol {
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
}

.header-link-eol:hover {
  transform: scale(1.1);
}

.header-link-icon-eol {
  width: 100%;
  height: 100%;
}

.menu-btn-eol {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
}

.menu-btn-eol:hover {
  transform: scale(1.1);
}

.menu-close-eol {
  padding: 14px 10px;
}

.menu-svg-eol {
  width: 100%;
  height: 100%;
  stroke: var(--d-gray);
}

.nav-list-eol {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-item-eol {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-eol {
  position: relative;
  font-size: 18px;
  line-height: 150%;
  color: var(--d-gray);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.nav-item-eol::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--d-gray);

  transition: all 0.3s ease-in-out;
}

.item-active-eol::after {
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .header-container-eol {
    padding: 8px 160px;
    width: 1440px;
    height: 60px;
  }

  .nav-eol {
    display: block;
  }

  .menu-btn-eol {
    display: none;
  }
}

/* modal  */

.modal-eol {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;

  width: 343px;
  background: var(--l-gray);
  padding: 16px 0px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-nav-list-eol {
  flex-direction: column;
  gap: 25px;
}

.menu-nav-item-eol {
  width: 343px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-nav-link-eol {
  font-size: 24px;
  line-height: 130%;
  text-align: center;
}

/* hero  */

.hero-content-eol {
  background-image: url(./images/hero-bg-mob.png);
  padding-top: 100px;
  padding-bottom: 75px;
  height: 812px;
}

.hero-title-eol {
  font-weight: 600;
  font-size: 64px;
  line-height: 120%;
  margin-bottom: 24px;
}

.hero-subtitle-eol {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 164px;
}

.hero-text-eol {
  line-height: 150%;
  margin-bottom: 122px;
}

.hero-btn-eol {
  border: 1px solid #a6a6a6;
  border-radius: 6px;
  padding: 10px 12px;
  width: 180px;
  height: 57px;
  background: #000;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  transition: all 0.3s ease;

  .hero-gplay-logo-eol {
    width: 31px;
    height: 35px;
  }

  .hero-gplay-text-eol {
    width: 113px;
    height: 37px;
  }
}

.hero-btn-eol:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .hero-content-eol {
    background-image: url(./images/hero-bg-desk.png);
    background-position: bottom;
    background-size: cover;
    padding-top: 130px;
    padding-bottom: 94px;
    height: auto;
  }

  .hero-title-eol {
    font-size: 88px;
    margin-bottom: 30px;
  }

  .hero-subtitle-eol {
    font-size: 28px;
    margin-bottom: 115px;
  }

  .hero-text-eol {
    width: 390px;
    padding-left: 4px;
    font-size: 18px;
    margin-bottom: 44px;
  }

  .hero-btn-eol {
    margin: 0;
  }
}

/* features */

.features-content-eol {
  background-image: url(./images/features-bg-mob.png);
  padding-bottom: 161px;
}

.features-list-eol {
  display: flex;
  flex-direction: column;
  gap: 24px;

  li {
    display: flex;
    flex-direction: column;
    gap: 8px;

    h3 {
      font-weight: 500;
      font-size: 18px;
      line-height: 150%;
    }

    p {
      line-height: 150%;
      color: var(--l-gray);
    }
  }
}

@media screen and (min-width: 1440px) {
  .features-content-eol {
    background-image: url(./images/features-bg-desk.png);
    padding-right: 544px;
    height: 706px;
  }

  .features-list-eol {
    li {
      h3 {
        font-size: 20px;
      }

      p {
        font-size: 18px;
      }
    }
  }
}

/* how */

#how {
  background: var(--gray);
}

.how-content-eol {
  background-image: url(./images/how-bg-mob.png);
  padding-bottom: 184px;
}

.how-list-eol {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    background: var(--white);
    padding: 16px;

    h3 {
      font-weight: 600;
      font-size: 48px;
      line-height: 120%;
      color: var(--d-gray);
    }

    h4 {
      font-weight: 500;
      font-size: 18px;
      line-height: 150%;
      color: var(--d-gray);
      margin-bottom: 16px;
    }

    p {
      line-height: 150%;
      color: var(--gray);
    }
  }
}

@media screen and (min-width: 1440px) {
  .how-content-eol {
    background-image: url(./images/how-bg-desk.png);
    padding-top: 91px;
    padding-bottom: 185px;
    height: 615px;
  }

  .how-list-eol {
    flex-direction: row;
    gap: 32px;

    li {
      height: 244px;
      width: 256px;

      h4 {
        font-size: 20px;
      }

      p {
        font-size: 18px;
      }
    }
  }
}

/* reviews */

.reviews-content-eol {
  background-image: url(./images/reviews-bg-mob.png);
  padding-bottom: 76px;
  padding-right: 0;
}

.reviews-item-eol {
  padding: 16px;
  width: 272px;
  height: 243px;
  background: var(--white);

  p {
    line-height: 150%;
    color: var(--gray);
    margin-bottom: 16px;
  }

  h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: right;
    color: var(--d-gray);
  }
}

@media screen and (min-width: 1440px) {
  .reviews-content-eol {
    background-image: url(./images/reviews-bg-desk.png);
    padding-top: 71px;
  }

  .glide {
    cursor: default;
  }

  .reviews-list-eol {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .reviews-item-eol {
    width: 448px;
    height: 213px;

    p {
      font-size: 18px;
    }

    h4 {
      font-size: 20px;
    }
  }

  .reviews-item-eol:last-child {
    height: 159px;
  }
}

/* faq */

#faq {
  background: var(--gray);
}

.faq-content-eol {
  background-image: url(./images/faq-bg-mob.png);
}

.faq-list-eol {
  display: flex;
  flex-direction: column;
  gap: 32px;

  div {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;

    h3 {
      font-weight: 500;
      font-size: 18px;
      line-height: 150%;
    }

    p {
      line-height: 150%;
      color: var(--l-gray);
    }
  }
}

.faq-item-eol:not(:last-child)::after {
  position: absolute;
  bottom: -16px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--l-gray);
}

@media screen and (min-width: 1440px) {
  .faq-content-eol {
    background-image: url(./images/faq-bg-desk.png);
    padding-right: 384px;
  }

  .faq-list-eol {
    div {
      h3 {
        font-size: 20px;
      }

      p {
        font-size: 18px;
      }
    }
  }

  .faq-item-eol:not(:last-child)::after {
    position: absolute;
    bottom: -16px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--l-gray);
  }
}

/* footer */

#footer {
  background: var(--d-gray);
}

.footer-container-eol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 16px 16px;
}

.footer-links-list-eol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links-item-eol {
  transition: all 0.3s ease;

  a {
    line-height: 150%;
    text-align: center;
    color: var(--l-gray);
  }
}

.footer-links-item-eol:hover {
  transform: scale(1.1);
}

.footer-text-eol {
  font-size: 11px;
  line-height: 150%;
  text-align: center;
  color: var(--l-gray);
}

@media screen and (min-width: 1440px) {
  .footer-links-item-eol {
    a {
      font-size: 18px;
    }
  }

  .footer-text-eol {
    font-size: 12px;
  }
}

/* ********************* */

.hidden-eol {
  display: none;
}

.click-eol {
  transform: rotate(181deg);
}
