/* header */

.nav-mtb {
  display: none;
}

.header-mtb {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
}

.header-container-mtb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  width: 100%;
  background: #03445c;
  position: relative;
}

.nav-list-mtb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 0 107px;
}

.nav-item-mtb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.nav-link-mtb {
  position: relative;
  padding: 8px 12px;
  height: 40px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.nav-item-mtb::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  color: #fff;
  transition: width 0.3s ease-in-out;
}

.nav-item-mtb:hover::after {
  width: 100%;
}

.nav-link-mtb:active + .nav-item-mtb,
.nav-item-mtb:has(.nav-link-mtb:active) {
  border: 2px solid #fff;
}

.menu-svg-mtb {
  width: 24px;
  height: 16px;
  fill: #fff;
}

.menu-btn-mtb {
  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-mtb {
    width: 100%;
  }

  .header-container-mtb {
    margin: 0 auto;
    width: 100%;
    padding: 16px 72px;
  }

  .nav-mtb {
    display: block;
  }

  .menu-open-mtb {
    display: none;
  }

  .header-favicon {
    width: 48px;
    height: 48px;
  }
}

/* modal  */

.modal-mtb {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  border-radius: 30px 0 0 30px;
  padding: 108px 20px 28px;
  width: 264px;
  height: 459px;
  box-shadow: -6px 8px 4px 0 rgba(16, 0, 78, 0.25);
  background: #03445c;
}

.modal-btn-mtb {
  position: absolute;
  top: 28px;
  right: 20px;
  width: 40px;
  height: 40px;
}

.menu-nav-list-mtb {
  flex-direction: column;
  align-items: start;
  padding: 0;
  gap: 16px;
}

/* popup */

.popup-mtb {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 114px 20px 36px;
  background: #dcec79;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.popup-text-mtb {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
}

.popup-btn-wrap-mtb {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 8px;
}

.popup-btn-mtb {
  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-mtb {
  background: #064055;
  color: #fff;
}

.popup-btn-decline-mtb {
  border: 3px solid #1e1e1e;
  color: #1e1e1e;
}

.popup-btn-mtb: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-mtb {
    left: 50%;
    transform: translate(-50%);
    padding: 190px 72px 90px;
    gap: 64px;
    width: 902px;
  }

  .popup-text-mtb {
    font-size: 36px;
  }

  .popup-btn-wrap-mtb {
    justify-content: end;
    gap: 48px;
  }

  .popup-btn-mtb {
    width: 227px;
    height: 62px;
    font-weight: 500;
    font-size: 20px;
  }

  .popup-close-btn {
    top: 90px;
    right: 72px;
  }
}

/* hero  */

#home {
  background: url(/images/hero-bg-mob.png);
  background-position: center;
  background-size: cover;
}

.hero-container-mtb {
  padding-top: 88px;
  padding-bottom: 255px;
}

.hero-wrap-mtb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-pic-mtb {
  width: 155px;
  height: 167px;
}

.hero-title-wrap {
  width: 295px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  h1 {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: #002439;
  }

  h2 {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: #002439;
  }
}

@media screen and (min-width: 1440px) {
  #home {
    background: url(/images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .hero-container-mtb {
    width: 100%;
    padding-top: 170px;
    padding-bottom: 470px;
  }

  .hero-wrap-mtb {
    flex-direction: row;
    width: 764px;
    gap: 24px;
  }

  .hero-pic-mtb {
    width: 207px;
    height: 223px;
  }

  .hero-title-wrap {
    width: auto;
    gap: 16px;

    h1 {
      font-size: 28px;
      text-align: left;
    }

    h2 {
      font-size: 24px;
      text-align: left;
    }
  }
}

/* why */

#why {
  z-index: 2;
}

.why-container-mtb {
  background: #dcec79;
  width: 100%;
  display: flex;
  justify-content: center;
}

.why-content-mtb {
  background: #c4b5fd;
  padding-left: 23.5px;
  padding-right: 23.5px;
  width: 335px;
}

.why-title-mtb {
  color: #03445c;
}

.why-text-mtb {
  line-height: 150%;
  text-align: center;
  margin-bottom: 8px;
}

.why-text-last-mtb {
  margin-bottom: 0;
}

.why-bubbles-mtb {
  background: url(/images/bubbles-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  position: absolute;
  top: -78px;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 153px;
}

@media screen and (min-width: 1440px) {
  .why-content-mtb {
    padding-left: 40px;
    padding-right: 40px;
    width: 1296px;
  }

  .why-text-mtb {
    font-weight: 500;
    font-size: 24px;
    text-align: left;
    margin-bottom: 16px;
  }

  .why-bubbles-mtb {
    top: -134px;
    height: 310px;
  }
}

/* gallery */

.gallery-content-mtb {
  background: #fffce4;
  padding-bottom: 96px;
}

.gallery-title-mtb {
  color: #a73d48;
}

.gallery-swiper-mtb {
  overflow: hidden;
}

.gallery-item-mtb {
  width: 212px;
  height: 377px;

  img {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .gallery-content-mtb {
    padding-bottom: 128px;
  }

  .gallery-item-mtb {
    width: 320px;
    height: 570px;
  }
}

/* features */

.features-content-mtb {
  background: #fff4c3;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 105px;
}

.features-title-mtb {
  color: #a73d48;
  margin-bottom: 44px;
}

.features-list-mtb {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 16px;
}

.features-item-mtb {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;

  .features-number-mtb {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    text-align: center;
    color: #fff;

    width: 48px;
    height: 48px;
    border-radius: 100%;
    background: #eb4343;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .features-wrap-mtb {
    display: flex;
    flex-direction: column;
    gap: 4px;

    h3 {
      font-family: var(--second-family);
      font-weight: 500;
      font-size: 18px;
      line-height: 150%;
    }

    p {
      font-size: 14px;
      line-height: 150%;
    }
  }
}

.features-item-mtb:nth-child(2),
.features-item-mtb:nth-child(4) {
  padding-right: 52px;
}

.features-condo-mtb {
  background: url(/images/features/scratching-post.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  width: 73px;
  height: 103px;

  position: absolute;
  top: 246px;
  right: -14px;
}

.features-gamepad-mtb {
  background: url(/images/features/gamepad.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  width: 73px;
  height: 116px;

  position: absolute;
  bottom: 198px;
  right: -14px;
}

.features-box-mtb {
  background: url(/images/features/box-mob.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  width: 201px;
  height: 125px;

  position: absolute;
  bottom: -33px;
  left: 67px;
}

@media screen and (min-width: 1440px) {
  .features-content-mtb {
    padding: 40px;
  }

  .features-title-mtb {
    margin-bottom: 36px;
  }

  .features-list-mtb {
    flex-wrap: wrap;
    padding: 12px 8px;
    height: 432px;
  }

  .features-item-mtb {
    gap: 24px;
    padding: 12px 16px;
    width: 588px;

    .features-number-mtb {
      font-weight: 500;
      font-size: 48px;

      width: 72px;
      height: 72px;
    }

    .features-wrap-mtb {
      gap: 8px;

      h3 {
        font-size: 20px;
      }

      p {
        font-size: 18px;
      }
    }
  }

  .features-item-mtb:nth-child(2),
  .features-item-mtb:nth-child(4) {
    padding-right: 133px;
  }

  .features-condo-mtb {
    width: 112px;
    height: 158px;

    top: 291px;
    right: 676px;
  }

  .features-gamepad-mtb {
    width: 112px;
    height: 178px;

    bottom: 277px;
    right: 48px;
  }

  .features-box-mtb {
    background: url(/images/features/box-desktop.png);

    width: 419px;
    height: 262px;

    bottom: -55px;
    left: 831px;
  }
}

/* customize */

.customize-content-mtb {
  background: #c4b5fd;
}

.customize-title-mtb {
  color: #03445c;
}

.customize-item-mtb {
  width: 287px;
  height: 227px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  img {
    width: 115px;
    height: 115px;
  }

  p {
    line-height: 150%;
    text-align: center;
  }
}

@media screen and (min-width: 1440px) {
  .customize-wrapper-mtb {
    display: flex;
    gap: 24px;
  }

  .customize-item-mtb {
    width: 389px;
    height: 249px;

    img {
      width: 155px;
      height: 155px;
    }

    p {
      font-weight: 500;
      font-size: 20px;
    }
  }
}

/* reviews */

.reviews-content-mtb {
  background: #fffce4;
}

.reviews-title-mtb {
  color: #a73d48;
}

.reviews-item-mtb {
  border-radius: 20px;
  padding: 16px 24px;
  width: 287px;
  height: 202px;
  background: #fff4c3;

  h3 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 4px;
  }

  p {
    font-weight: 500;
    line-height: 150%;
    margin-top: 24px;
  }
}

.reviews-paw-list-mtb {
  display: flex;
  gap: 2px;

  li {
    svg {
      width: 16px;
      height: 16px;
      fill: #eb4343;
    }
  }
}

@media screen and (min-width: 1440px) {
  .reviews-item-mtb {
    border-radius: 40px;
    padding: 36px 32px;
    width: 528px;
    height: 246px;

    h3 {
      font-size: 24px;
    }

    p {
      font-size: 20px;
    }
  }

  .reviews-paw-list-mtb {
    li {
      svg {
        width: 20px;
        height: 20px;
      }
    }
  }
}

/* call */

#call {
  background: #c4b5fd;
}

.call-subtitle-mtb {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  text-align: center;

  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 16px;

  svg {
    width: 48px;
    height: 48px;
    fill: #eb4343;
  }
}

.call-text-mtb {
  font-family: var(--second-family);
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  margin-bottom: 16px;
}

.call-text-last-mtb {
  margin-bottom: 32px;
}

.call-pic-mtb {
  background: url(/images/call-pic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  width: 335px;
  height: 232px;

  position: relative;
  z-index: 2;
}

.call-bubbles-mtb {
  background: url(/images/bubbles-bottom-purple.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  min-width: 617px;
  width: 100%;
  height: 170px;

  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.footer-bubbles-mtb {
  background: url(/images/bubbles-bottom-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  min-width: 617px;
  width: 100%;
  height: 170px;

  position: absolute;
  bottom: -92px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1440px) {
  .call-container-mtb {
    padding-bottom: 202px;
    justify-content: start;
  }

  .call-wrap-mtb {
    width: 653px;
  }

  .call-title-mtb {
    text-align: left;
  }

  .call-subtitle-mtb {
    font-size: 32px;
    text-align: left;
  }

  .call-text-mtb {
    font-size: 24px;
    text-align: left;
  }

  .call-text-last-mtb {
    margin-bottom: 0;
  }

  .call-pic-mtb {
    width: 623px;
    height: 430px;

    position: absolute;
    right: 72px;
    top: 188.6px;
  }

  .call-bubbles-mtb {
    min-width: 2027px;
    height: 483px;

    top: -131px;
  }

  .footer-bubbles-mtb {
    background: url(/images/bubbles-bottom-blue.png);

    min-width: 1440px;
    height: 160px;

    bottom: -1px;
    left: 0;
    transform: translateX(0);
  }
}

/* footer */

#footer {
  background: #03445c;
  z-index: 2;
  overflow: hidden;
}

.footer-container-mtb {
  width: 375px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links-list-mtb {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links-item-mtb {
  padding: 8px 12px;
}

.footer-link-mtb {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.footer-text-mtb {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.slash-item-mtb {
  display: none;
}

@media screen and (min-width: 1440px) {
  .footer-container-mtb {
    width: 1440px;
    padding: 24px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-links-list-mtb {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }

  .footer-text-mtb {
    span {
      text-transform: capitalize;
    }
  }

  .slash-item-mtb {
    display: block;
    font-family: var(--third-family);
    font-weight: 500;
    line-height: 150%;
    text-align: center;
    color: #fff;
  }
}

/* ********************* */

.hidden-mtb {
  display: none;
}
