/* header */

.nav-mwh {
  display: none;
}

.header-mwh {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--base);
}

.header-container-mwh {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 12px 24px;
  width: 100%;
  position: relative;
  height: 48px;
  width: 375px;
}

.menu-btn-mwh {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 4px;
  border: 1px solid var(--accent-1);
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.menu-btn-mwh:hover {
  transform: scale(1.1);
}

.menu-svg-mwh {
  width: 16px;
  height: 14px;
  fill: var(--txt);
}

.nav-list-mwh {
  display: flex;
  align-items: center;
  gap: 79px;
  width: 100%;
}

.nav-item-mwh {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-mwh {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 8px;

  font-weight: 300;
  font-size: 12px;
  color: var(--txt-2);
  transition: all 0.3s ease-in-out;
}

.nav-item-mwh::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--accent-1);
  transition: all 0.3s ease-in-out;
}

.item-active-mwh::after {
  width: 100%;
}

.link-active-mwh {
  font-weight: 500;
  color: var(--txt);
}

.nav-link-mwh:hover {
  font-weight: 500;
  color: var(--txt);
}

@media screen and (min-width: 1440px) {
  .header-mwh {
    width: 100%;
  }

  .header-container-mwh {
    margin: 0 auto;
    justify-content: center;
    padding: 8px 120px;
    width: 1440px;
  }

  .nav-mwh {
    display: block;
  }

  .menu-btn-mwh {
    display: none;
  }
}

/* modal  */

.modal-mwh {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 40px 14px 56px;
  background: var(--base);
  width: 375px;
}

.nav-modal-mwh {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.menu-nav-list-mwh {
  flex-direction: column;
  gap: 16px;
  width: 176px;
}

.menu-nav-item-mwh {
  padding: 0;
  width: 100%;
  margin: 0;
}

.menu-nav-link-mwh {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
}

.menu-footer-list-mwh {
  display: flex;
  gap: 16px;
}

/* popup */

.popup-mwh {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 34px;
  background: var(--cards);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.popup-text-mwh {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
}

.popup-btn-wrap-mwh {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

.popup-btn-mwh {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 37px;

  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.popup-btn-decline-mwh {
  border-bottom: 1px solid var(--txt);
  font-weight: 300;
  color: var(--txt-2);
}

.popup-btn-accept-mwh {
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: var(--txt-2);
  font-weight: 500;
  color: var(--base);
}

.popup-btn-mwh:hover {
  transform: scaleY(1.2);
}

@media screen and (min-width: 1440px) {
  .popup-mwh {
    left: 50%;
    transform: translate(-50%);
    padding: 40px;
    width: 1440px;
  }

  .popup-btn-wrap-mwh {
    gap: 80px;
  }
}

/* hero  */

#home {
  background: url(images/hero-pic.png);
  background-position: center;
  background-size: cover;
}

.hero-container-mwh {
  padding: 98px 16px 92px;

  display: flex;
  flex-direction: column;
}

.hero-title-mwh {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 56px;
  line-height: 130%;
  text-align: center;
}

.hero-text-mwh {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;

  margin-top: 107px;
  margin-bottom: 164px;
}

.hero-link-mwh {
  background: var(--txt);
  color: var(--base);
}

.hero-link-mwh:hover {
  background: var(--txt-2);
}

.hero-link-mwh:active {
  background: var(--txt);
}

@media screen and (min-width: 1440px) {
  .hero-container-mwh {
    padding: 180px 120px 312px;
  }

  .hero-title-mwh {
    line-height: 150%;
    text-align: left;
  }

  .hero-text-mwh {
    font-size: 16px;
    text-align: left;

    margin-top: 80px;
    margin-bottom: 48px;
  }

  .hero-link-mwh {
    margin: 0;
  }
}

/* who */

.who-title-mwh {
  text-align: left;
  font-size: 40px;

  span {
    color: var(--accent-1);
  }
}

.who-text-mwh {
  font-weight: 300;
  line-height: 150%;

  span {
    font-weight: 500;
  }
}

@media screen and (min-width: 1440px) {
  .who-content-mwh {
    display: flex;
    gap: 64px;
  }

  .who-title-mwh {
    width: 485px;
    margin-bottom: 0;
  }

  .who-text-mwh {
    width: 651px;
  }
}

/* services */

.services-container-mwh {
  padding-bottom: 285px;
}

.services-list-mwh {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-item-mwh {
  background: linear-gradient(180deg, rgba(26, 31, 34, 0) 0%, #1a1f22 100%);
  border-radius: 0 0 12px 12px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;

  h4 {
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
  }

  p {
    font-weight: 300;
    line-height: 150%;
    color: var(--txt-2);
  }
}

.services-pic-mwh {
  background: url(/images/services-pic.png);
  background-position: center;
  background-size: cover;

  width: 375px;
  height: 245px;

  position: absolute;
  bottom: 0;
  left: 0;
}

.services-pic-bg-mwh {
  background: linear-gradient(
    180deg,
    #0e1113 0%,
    rgba(14, 17, 19, 0) 10%,
    rgba(14, 17, 19, 0) 90%,
    #0e1113 100%
  );

  width: 375px;
  height: 245px;

  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1440px) {
  .services-container-mwh {
    padding-bottom: 664px;
  }

  .services-list-mwh {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
  }

  .services-item-mwh {
    padding: 24px;
    width: 384px;
    height: 150px;
  }

  .services-pic-mwh {
    background: url(/images/services-pic.png);
    background-position: center;
    background-size: cover;

    width: 1440px;
    height: 600px;
  }

  .services-pic-bg-mwh {
    background: linear-gradient(
      180deg,
      #0e1113 0%,
      rgba(14, 17, 19, 0) 10%,
      rgba(14, 17, 19, 0) 90%,
      #0e1113 100%
    );

    width: 1440px;
    height: 600px;
  }
}

/* method */

.method-list-mwh {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.method-item-mwh {
  border-radius: 0 0 12px 12px;
  padding: 16px;
  width: 163px;
  height: 202px;

  display: flex;
  flex-direction: column;
  gap: 16px;

  background: url(/images/method-item-pic-mob.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  h4 {
    font-family: var(--second-family);
    font-weight: 300;
    font-size: 32px;
    line-height: 150%;
    text-align: right;
    color: var(--accent-1);
  }

  h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }

  p {
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    color: var(--txt-2);
  }
}

.method-link-mwh:hover {
  color: var(--accent-1);
}

.method-link-mwh:active {
  color: var(--txt);
}

@media screen and (min-width: 1440px) {
  .method-list-mwh {
    gap: 24px;
  }

  .method-item-mwh {
    padding: 24px 16px;
    width: 180px;
    height: 215px;

    background: url(/images/method-item-pic-desktop.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* impact */

.impact-title-mwh {
  margin-bottom: 145px;
}

.impact-pic-mwh {
  background: url(/images/impact/impact-pic.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  width: 511px;
  height: 65px;

  position: absolute;
  left: -68px;
  top: 250px;
}

.impact-list-mwh {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.impact-item-mwh {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  width: 161px;
  height: 144.5px;
  padding-bottom: 13.5px;

  img {
    width: 40px;
    height: 40px;
    opacity: 0.9;
  }

  h4 {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.02em;
    text-align: center;
  }

  p {
    font-weight: 300;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    color: var(--txt-2);
  }
}

@media screen and (min-width: 1440px) {
  .impact-container-mwh {
    height: 474px;
  }

  .impact-title-mwh {
    position: absolute;
    top: 162px;
    left: 120px;
    margin-bottom: 0;
    width: 431px;
  }

  .impact-pic-mwh {
    width: 429px;

    left: 123px;
    top: 325px;
  }

  .impact-list-mwh {
    flex-direction: column;
    gap: 24px;
    position: absolute;
    top: 162px;
    right: 120px;
  }

  .impact-item-mwh {
    flex-direction: row;
    gap: 24px;

    width: fit-content;
    height: fit-content;
    padding-bottom: 0;

    p {
      font-size: 14px;
    }
  }
}

/* insights */

.insights-text-mwh {
  font-weight: 300;
  line-height: 150%;
  text-align: center;
  color: var(--txt-2);
  margin-bottom: 40px;
}

.insights-list-mwh {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.insights-item-mwh {
  background: url(/images/insights-item-pic-mob.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;

  border-radius: 0 0 12px 12px;
  padding: 24px;
  width: 343px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  img {
    width: 240px;
    height: 134px;
  }

  p {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.04em;
    text-align: center;
  }
}

.insights-link-mwh:hover {
  color: var(--accent-2);
}

.insights-link-mwh:active {
  color: var(--txt);
}

@media screen and (min-width: 1440px) {
  .insights-content-mwh {
    width: 435px;
  }

  .insights-title-mwh {
    font-size: 32px;
    text-align: left;
    margin-bottom: 32px;
  }

  .insights-text-mwh {
    text-align: left;
    margin-bottom: 48px;
  }

  .insights-list-mwh {
    flex-direction: row;

    position: absolute;
    top: 162px;
    right: 120px;
  }

  .insights-item-mwh {
    background: url(/images/insights-item-pic-desktop.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;

    width: 228px;
    height: 235px;

    img {
      width: 180px;
      height: 100px;
    }
  }

  .insights-link-mwh {
    margin: 0;
  }

  .insights-link-mwh:hover {
    color: var(--accent-2);
  }

  .insights-link-mwh:active {
    color: var(--txt);
  }
}

/* faq */

.faq-container-mwh {
  padding-bottom: 290px;
}

.faq-list-mwh {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-mwh {
  display: flex;
  flex-direction: column;
  padding: 12px 24px;
}

.faq-question-wrap-mwh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;

  border-bottom: 1px solid rgba(167, 180, 189, 0.7);
  padding: 8px 0px;
  color: var(--accent-2);

  transition: all 0.3s ease-in-out;

  p {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    color: var(--txt);

    transition: all 0.3s ease-in-out;
  }

  .faq-btn-mwh {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;

    transition: all 0.3s ease-in-out;

    svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }
  }
}

.faq-answer-wrap-mwh {
  margin-top: 16px;

  transition: all 0.3s ease-in-out;

  p {
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    color: var(--txt-2);
  }
}

.faq-pic-mwh {
  background: url(/images/faq-pic.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  width: 375px;
  height: 250px;

  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1440px) {
  .faq-container-mwh {
    padding-bottom: 712px;
  }

  .faq-list-mwh {
    width: 1062px;
    margin: 0 auto;
  }

  .faq-pic-mwh {
    width: 1440px;
    height: 680px;
  }
}

/* contact */

.contact-title-wrap-mwh {
  margin-bottom: 40px;

  .contact-text-mwh {
    font-weight: 200;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: var(--txt-2);
  }
}

.contact-list-mwh {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 261px;
  margin: 0 auto;
}

.contact-item-mwh {
  display: flex;
  align-items: center;
  gap: 24px;

  svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-2);
  }

  p {
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
  }
}

@media screen and (min-width: 1440px) {
  .contact-title-wrap-mwh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 64px;

    .contact-title-mwh {
      margin-bottom: 0;
      flex-shrink: 0;
    }

    .contact-text-mwh {
      font-size: 20px;
      width: 499px;
    }
  }

  .contact-list-mwh {
    flex-direction: row;
    gap: 64px;
    width: 1079px;
  }
}

/* footer */

#footer {
  border-top: 1px solid rgba(101, 195, 233, 0.5);
}

.footer-container-mwh {
  width: 375px;
  margin: 0 auto;
  padding: 48px 14px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-links-list-mwh {
  display: flex;
  gap: 16px;
}

.footer-link-mwh {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.footer-text-mwh {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-container-mwh {
    width: 1440px;
    padding: 80px 120px;
    flex-direction: row-reverse;
    gap: 244px;
  }

  .footer-links-list-mwh {
    gap: 24px;
  }

  .footer-text-mwh {
    text-align: left;
  }
}

/* ********************* */

.hidden-mwh {
  display: none;
}

.click-mwh {
  transform: rotate(45deg);
  color: var(--accent-1);
}
