/* header */

.nav-mmu {
  display: none;
}

.header-mmu {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
}

.header-container-mmu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  background: #1a9acd;
  position: relative;
}

.nav-list-mmu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 0 173px;
}

.nav-item-mmu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.nav-link-mmu {
  position: relative;
  padding: 8px 12px;
  height: 40px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.nav-item-mmu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  color: #fff;
  transition: width 0.3s ease-in-out;
}

.nav-item-mmu:hover::after {
  width: 100%;
}

.nav-link-mmu:active + .nav-item-mmu,
.nav-item-mmu:has(.nav-link-mmu:active) {
  border: 2px solid #fff;
}

.menu-svg-mmu {
  width: 24px;
  height: 16px;
  fill: #fff;
}

.menu-btn-mmu {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 32px;
  height: 32px;
}

.header-favicon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

@media screen and (min-width: 1440px) {
  .header-mmu {
    width: 100%;
  }

  .header-container-mmu {
    margin: 0 auto;
    width: 100%;
    padding: 16px 101px 16px 72px;
  }

  .nav-mmu {
    display: block;
  }

  .menu-open-mmu {
    display: none;
  }

  .header-favicon {
    width: 48px;
    height: 48px;
  }
}

/* modal  */

.modal-mmu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 88px 16px 8px;
  width: 264px;
  height: 459px;
  box-shadow: -6px 8px 4px 0 rgba(16, 0, 78, 0.25);
  background: #1a9acd;
}

.modal-btn-mmu {
  position: absolute;
  top: 8px;
  right: 16px;
  width: 40px;
  height: 40px;
}

.menu-nav-list-mmu {
  flex-direction: column;
  align-items: start;
  padding: 0;
  gap: 16px;
}

/* popup */

.popup-mmu {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 114px 20px 36px;
  background: #ffa01b;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.popup-text-mmu {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #1e1e1e;
}

.popup-btn-wrap-mmu {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 8px;
}

.popup-btn-mmu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 40px;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.popup-btn-accept-mmu {
  background: #1a9acd;
  color: #fff;
}

.popup-btn-decline-mmu {
  border: 3px solid #1e1e1e;
  color: #1e1e1e;
}

.popup-btn-mmu:hover {
  transform: scaleY(1.2);
}

.popup-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 36px;
  right: 20px;
}

.popup-close-icon {
  width: 22px;
  height: 22px;
  fill: #1e1e1e;
}

@media screen and (min-width: 1440px) {
  .popup-mmu {
    left: 50%;
    transform: translate(-50%);
    padding: 190px 72px 90px;
    gap: 64px;
    width: 902px;
  }

  .popup-text-mmu {
    font-size: 36px;
  }

  .popup-btn-wrap-mmu {
    justify-content: end;
    gap: 48px;
  }

  .popup-btn-mmu {
    width: 227px;
    height: 62px;
    font-weight: 500;
    font-size: 20px;
  }

  .popup-close-btn {
    top: 90px;
    right: 72px;
  }
}

/* hero  */

.hero-container-mmu {
  padding-top: 88px;
  padding-bottom: 298px;
}

.hero-wrap-mmu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pic-mmu {
  width: 426px;
  height: 284px;

  position: absolute;
  right: 50%;
  transform: translate(50%);
  bottom: 0;
}

.hero-title-wrap {
  display: flex;
  flex-direction: column;

  h1 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    text-align: center;
  }

  h2 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;

    margin-top: 40px;
    margin-bottom: 16px;
  }

  p {
    font-family: var(--second-family);
    font-weight: 600;
    line-height: 150%;
    text-align: center;
  }
}

@media screen and (min-width: 1440px) {
  .hero-container-mmu {
    padding-top: 211px;
    padding-bottom: 281px;
    height: 800px;
    justify-content: start;
  }

  .hero-wrap-mmu {
    align-items: start;
  }

  .hero-pic-mmu {
    width: 1200px;
    height: 800px;

    right: 0;
    transform: translate(0);
  }

  .hero-title-wrap {
    width: 528px;

    h1 {
      font-size: 48px;
      text-align: left;
    }

    h2 {
      font-size: 32px;
      text-align: left;
    }

    p {
      font-size: 20px;
      text-align: left;
    }
  }
}

/* about */

.about-text-mmu {
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .about-text-mmu {
    font-weight: 500;
    font-size: 20px;
  }
}

/* gallery */

.gallery-swiper-mmu {
  overflow: hidden;
}

.gallery-item-mmu {
  width: 189px;
  height: 409px;

  img {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .gallery-item-mmu {
    width: 283px;
    height: 613px;
  }
}

/* how */

.how-list-mmu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.how-item-mmu {
  padding: 8px 16px;

  display: flex;
  gap: 16px;
  align-items: center;

  span {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 36px;
    line-height: 150%;
    color: #d61c59;
  }

  p {
    font-family: var(--second-family);
    font-weight: 500;
    line-height: 150%;
  }
}

.how-pic-mmu {
  width: 137px;
  height: 107px;

  background: url(/images/how-pic.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  position: absolute;
  right: -20px;
  bottom: -29px;
}

@media screen and (min-width: 1440px) {
  .how-list-mmu {
    gap: 24px 406px;
    height: 408px;
  }

  .how-item-mmu {
    width: 405px;
    padding: 12px 16px;
    gap: 24px;

    span {
      font-size: 64px;
    }

    p {
      font-family: var(--third-family);
      font-size: 20px;
    }
  }

  .how-pic-mmu {
    width: 358px;
    height: 278px;

    right: 469px;
    bottom: 105px;
  }
}

/* features */

.features-list-mmu {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.features-item-mmu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 25px;
  position: relative;

  h3 {
    font-family: var(--second-family);
    font-weight: 500;
    line-height: 150%;
    text-align: center;
  }

  p {
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }

  svg {
    width: 48px;
    height: 48px;
    fill: #d61c59;
    position: absolute;
  }
}

.features-item-mmu:nth-child(1) {
  svg {
    bottom: -32px;
    left: 0;
  }
}

.features-item-mmu:nth-child(2) {
  svg {
    transform: scaleX(-1);
    bottom: -40px;
    right: 0;
  }
}

.features-item-mmu:nth-child(3) {
  svg {
    bottom: -32px;
    left: 0;
  }
}

.features-item-mmu:nth-child(4) {
  svg {
    transform: scaleX(-1);
    bottom: -32px;
    right: 0;
  }
}

.features-item-mmu:nth-child(5) {
  svg {
    bottom: -32px;
    left: 0;
  }
}

@media screen and (min-width: 1440px) {
  .features-list-mmu {
    flex-direction: row;
    gap: 19px 48px;
    width: 1216px;
    height: 405px;
  }

  .features-item-mmu {
    width: 584px;
    padding: 16px 25px;
    height: 124px;

    h3 {
      font-family: var(--third-family);
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }

    svg {
      width: 86px;
      height: 86px;
    }
  }

  .features-item-mmu:nth-child(1) {
    svg {
      bottom: 7px;
      left: 563px;
    }
  }

  .features-item-mmu:nth-child(2) {
    svg {
      transform: scaleX(-1);
      bottom: -49px;
      right: 54px;
    }
  }

  .features-item-mmu:nth-child(3) {
    svg {
      bottom: -55px;
      left: 54px;
    }
  }

  .features-item-mmu:nth-child(4) {
    svg {
      transform: scaleX(-1);
      bottom: -15px;
      right: 567px;
    }
  }

  .features-item-mmu:nth-child(5) {
    svg {
      bottom: 16px;
      left: 563px;
    }
  }

  .paws-bg-mmu {
    background: url(/images/paws.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
  }
}

/* faq */

.faq-list-mmu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-mmu {
  display: flex;
  flex-direction: column;
  width: 287px;
}

.faq-question-wrap-mmu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;

  background: #fff;
  border: 2px solid #1e1e1e;
  border-radius: 7px;
  padding: 12px 16px;

  transition: all 0.3s ease-in-out;

  p {
    font-weight: 500;
    line-height: 150%;
    color: #1e1e1e;

    transition: all 0.3s ease-in-out;
  }

  .faq-btn-mmu {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;

    transition: all 0.3s ease-in-out;

    svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }
  }
}

.faq-question-wrap-active-mmu {
  background: #d61c59;
  border: none;

  p {
    color: #fff;
  }
}

.faq-answer-wrap-mmu {
  padding: 20px 16px 12px;
  border-radius: 0 0 10px 10px;

  margin-top: -8px;
  background: #f3f3f3;

  transition: all 0.3s ease-in-out;

  p {
    font-size: 14px;
    line-height: 150%;
    color: #1e1e1e;
  }
}

@media screen and (min-width: 1440px) {
  .faq-list-mmu {
    gap: 24px;
  }

  .faq-item-mmu {
    width: 1216px;
  }

  .faq-question-wrap-mmu {
    p {
      font-size: 24px;
    }
  }

  .faq-answer-wrap-mmu {
    p {
      font-size: 18px;
    }
  }
}

/* call */

.call-container-mmu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.call-wrap-mmu {
  h2 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    text-align: center;
  }

  p {
    font-family: var(--second-family);
    font-weight: 500;
    line-height: 150%;
    text-align: center;

    margin-top: 32px;
    margin-bottom: 16px;
  }

  h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
  }
}

.call-pic-mmu {
  background: url(/images/call-pic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  width: 236px;
  height: 151px;

  margin-top: 116px;
}

@media screen and (min-width: 1440px) {
  .call-container-mmu {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .call-wrap-mmu {
    width: 746px;

    h2 {
      font-size: 48px;
      text-align: left;
    }

    p {
      font-size: 20px;
      text-align: left;

      margin-top: 47px;
      margin-bottom: 24px;
    }

    h3 {
      font-weight: 800;
      font-size: 24px;
      text-align: left;
    }
  }

  .call-pic-mmu {
    width: 526px;
    height: 336px;

    margin-top: 0;
  }
}

/* footer */

#footer {
  background: #1a9acd;
  z-index: 2;
  overflow: hidden;
}

.footer-container-mmu {
  width: 375px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links-list-mmu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links-item-mmu {
  padding: 8px 12px;
}

.footer-link-mmu {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.footer-text-mmu {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.slash-item-mmu {
  display: none;
}

@media screen and (min-width: 1440px) {
  .footer-container-mmu {
    width: 1440px;
    padding: 24px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-links-list-mmu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }

  .footer-text-mmu {
    span {
      text-transform: capitalize;
    }
  }

  .slash-item-mmu {
    display: block;
    font-family: var(--font3);
    font-weight: 500;
    line-height: 150%;
    text-align: center;
    color: #fff;
  }
}

/* ********************* */

.hidden-mmu {
  display: none;
}

.click-mmu {
  transform: rotate(45deg);
  color: #fff;
}
