.main-section {
  position: fixed;
  z-index: 9;
  width: 100%;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
}

.nav {
  display: none;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
}

.page-nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.page-nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--white);
  transition: color 0.3s ease;
}

.page-nav-link:hover {
  color: var(--l-gray);
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-open-svg {
  stroke: var(--white);
}

.menu-close-svg {
  stroke: var(--white);
}

@media screen and (min-width: 1431px) {
  .main-section {
    padding: 24px 160px;
  }

  .nav {
    display: block;
  }

  .menu-btn {
    display: none;
  }
}

/* modal  */

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8;
  width: 100%;
  padding: 50px;
  padding-top: 100px;
  transform: translateX(100%);
  transition: transform 1s ease;
  background: var(--black);
}

.menu-nav-list {
  flex-direction: column;
}

@media screen and (min-width: 1431px) {
  .menu {
    padding: 100px;
  }
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  width: 96%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--white);
  transition: transform 0.4s ease;
  border-radius: 32px;
  padding: 32px;
  background: var(--black);
}

.popup-text {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
}

.popup-btn {
  border: 1px solid var(--white);
  border-radius: 28px;
  padding: 16px 32px;

  font-family: var(--third-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: var(--white);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  background: var(--white);
  color: var(--black);
}

.popup-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

@media screen and (min-width: 1431px) {
  .page-popup {
    padding: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }

  .popup-wrap {
    margin: 0;
    flex-direction: row;
    gap: 32px;
  }
}

/* hero  */

.dashboard {
  background-image: url(../asset/banner.jpg);
  background-position: center right -250px;
  background-size: cover;
  padding-top: 116px;
  padding-bottom: 58px;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 87px;
}

.page-hero-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--l-gray);
  margin-bottom: 24px;
}

.page-hero-sub-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-link {
  display: block;
  border-radius: 16px;
  padding: 16px 32px;
  width: 343px;
  max-width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: var(--l-orange);
  text-align: center;
  background: var(--black);
  margin: 0 auto;
  transition: background-color 0.3s ease;
}

.hero-link:hover {
  background: var(--d-gray);
}

@media screen and (min-width: 1431px) {
  .dashboard {
    padding-top: 150px;
    padding-bottom: 59px;
    background-position: center;
  }

  .hero-title {
    font-size: 96px;
    max-width: 736px;
    margin-bottom: 27px;
  }

  .page-hero-text {
    font-size: 18px;
    max-width: 736px;
    margin-bottom: 33px;
  }

  .page-hero-sub-title {
    font-size: 20px;
    margin-bottom: 33px;
  }

  .hero-link {
    margin: 0;
  }
}

/* how */

.how-list {
  display: flex;
  flex-direction: column;
  gap: 24px;

  li {
    display: flex;
    align-items: center;
    gap: 33px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: var(--l-gray);
    border-radius: 32px;
    width: 64px;
    height: 64px;
    background: var(--d-gray);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--white);
    margin-bottom: 8px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--l-gray);
  }
}

@media screen and (min-width: 1431px) {
  .how-list {
    h5 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }
  }
}

/* memory */

.memory-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;

  li {
    border: 2px solid var(--d-gray);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--l-gray);
  }
}

@media screen and (min-width: 1431px) {
  .memory-list {
    flex-direction: row;
    gap: 32px;
    margin: 40px 0;

    li {
      width: calc((100% - 64px) / 3);
      font-size: 18px;
    }
  }
}

/* visual */

.visual-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;

  li {
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    background: var(--d-gray);
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--white);
    margin-bottom: 4px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--l-gray);
    display: block;
    margin-bottom: 16px;
  }

  img {
    width: 100%;
  }
}

@media screen and (min-width: 1431px) {
  .visual-list {
    margin: 40px 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;

    li {
      width: calc((100% - 32px) / 2);
    }
  }
}

/* impact */

.impact-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--white);
  margin: 24px 0;
}

.impact-list {
  list-style: disc;
  padding-left: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--l-gray);
}

@media screen and (min-width: 1431px) {
  .impact-text {
    font-size: 20px;
    margin: 40px 0;
  }
  .impact-list {
    font-size: 18px;
  }
}

/* testimonials */

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials-item {
  border-radius: 16px;
  padding: 24px;
  background: var(--d-gray);

  p {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
    margin-bottom: 24px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: right;
    color: var(--l-gray);
    display: block;
    text-align: end;
  }
}

@media screen and (min-width: 1431px) {
  .testimonials-list {
    flex-direction: row;
    gap: 32px;
  }

  .testimonials-item {
    width: calc((100% - 96px) / 4);

    p,
    span {
      font-size: 18px;
    }
  }
}

/* faq */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  width: 100%;
  border: 1px solid var(--m-gray);
  border-radius: 16px;
  padding: 16px 24px;
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;

  svg {
    stroke: var(--white);
  }
}

.faq-svg {
  stroke: #181b1d;
  transition: stroke 0.25s ease;
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 9px;
}

.faq-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--white);
}

.faq-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--l-gray);
  padding-top: 9px;
  border-top: 1px solid var(--l-gray);
}

@media screen and (min-width: 1431px) {
  .faq-list {
    width: 832px;
    gap: 32px;
  }
  .faq-title {
    font-size: 20px;
  }

  .faq-text {
    font-size: 18px;
  }
}

/* contact */

.contact-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--l-gray);
  margin-bottom: 24px;
  display: block;
}

@media screen and (min-width: 1431px) {
  .contact-link {
    font-size: 18px;
  }
}

/* footer */

.footer {
  padding: 40px 16px;
}

.footer-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  background: linear-gradient(180deg, #996b07 0%, #ffb20c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.footer-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--l-gray);
}

.footer-link-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
  margin-top: 40px;
}

@media screen and (min-width: 1431px) {
  .footer {
    padding: 40px 160px;
  }

  .footer-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-title {
    font-size: 28px;
    margin: 0;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-link-wrap {
    margin: 0;
    align-items: flex-end;
  }

  .footer-description {
    font-size: 12px;
  }
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  transform: rotate(0);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
