/* header */

.nav-cbk {
  display: none;
}

.header-cbk {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--paper-cream);
}

.header-container-cbk {
  display: flex;
  justify-content: space-between;
  padding: 20px 16px 0;
  position: relative;
  width: 375px;
  height: 80px;
}

.nav-logo-link-cbk {
  width: 44px;
  height: 44px;
}

.header-logo-cbk {
  border: 1px solid var(--deep-sage-green);
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.menu-btn-cbk {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 56px;
  transition: all 0.3s ease;
}

.menu-btn-cbk:hover {
  transform: scale(1.1);
}

.menu-svg-cbk {
  stroke: var(--soft-charcoal);
}

.menu-svg-open-cbk {
  width: 44px;
  height: 44px;
}

.menu-svg-close-cbk {
  width: 23px;
  height: 23px;
}

.nav-list-cbk {
  display: flex;
  align-items: center;
  gap: 55px;
}

.nav-item-cbk {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-cbk {
  position: relative;
  font-size: 18px;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}

.nav-item-cbk::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--soft-charcoal);

  transition: all 0.3s ease-in-out;
}

.item-active-cbk::after {
  width: 100%;
}

.link-active-cbk {
  font-weight: 900;
}

.nav-link-cbk:hover {
  font-weight: 900;
}

@media screen and (min-width: 1440px) {
  .header-container-cbk {
    align-items: center;
    padding: 8px 160px;
    width: 1440px;
    height: 60px;
  }

  .nav-cbk {
    display: block;
  }

  .menu-btn-cbk {
    display: none;
  }

  .header-btn-link-cbk {
    display: flex;
  }
}

/* modal  */

.modal-cbk {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  border-radius: 8px;
  padding: 16px 0px;
  width: 343px;
  background: var(--paper-cream);

  display: flex;
  flex-direction: column;
}

.nav-modal-cbk {
  width: 100%;
}

.menu-nav-list-cbk {
  gap: 0;
  width: 100%;
  flex-direction: column;
}

.menu-nav-item-cbk {
  width: 100%;
}

.menu-nav-link-cbk {
  display: block;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
}

/* hero  */

#home {
  background-position: center 100px;
  background-repeat: no-repeat;
  background-image: url(./images/hero-mob.png);
  background-size: cover;
}

.hero-container-cbk {
  padding: 100px 16px 60px;
}

.hero-title-cbk {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 32px;
}

.hero-subtitle-cbk {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 16px;
}

.hero-text-cbk {
  line-height: 150%;
  margin-bottom: 298px;
}

.hero-link-cbk {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  padding: 16px 24px;
  width: 256px;
  height: 59px;
  background: var(--soft-charcoal);

  font-size: 18px;
  line-height: 150%;
  color: var(--paper-cream);
  transition: all 0.3s ease;
}

.hero-link-cbk:hover {
  background: var(--amber-lantern);
}

.hero-link-cbk:active {
  background: var(--amber-lantern);
}

@media screen and (min-width: 1440px) {
  #home {
    background-position: center;
    background-image: url(./images/hero-desk.png);
  }

  .hero-container-cbk {
    padding: 120px 736px 120px 160px;
    align-items: start;
  }

  .hero-title-cbk {
    font-size: 72px;
    margin-bottom: 40px;
  }

  .hero-subtitle-cbk {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero-text-cbk {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

/* features */

.features-list-cbk {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-item-cbk {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;

  h3 {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    padding-left: 24px;
  }

  h3::before {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--amber-lantern);
  }

  p {
    line-height: 150%;
    color: var(--deep-sage-green);
  }
}

.features-item-cbk:not(:last-child)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--amber-lantern);
}

.features-img-cbk {
  background-image: url(./images/features-mob.png);
  height: 255px;
}

@media screen and (min-width: 1440px) {
  .features-container-cbk {
    padding-right: 736px;
  }

  .features-item-cbk {
    h3 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }
  }

  .features-img-cbk {
    background-image: url(./images/features-desk.png);
    height: 470px;
    right: 160px;
    bottom: 80px;
  }
}

/* how */

.how-list-cbk {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-item-cbk {
  position: relative;
  display: flex;
  flex-direction: column;

  h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: var(--amber-lantern);
  }

  h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 8px;
  }

  p {
    line-height: 150%;
  }
}

.how-item-cbk:not(:last-child)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--amber-lantern);
}

.how-img-cbk {
  background-image: url(./images/how-mob.png);
  height: 215px;
}

@media screen and (min-width: 1440px) {
  .how-container-cbk {
    padding-left: 736px;
  }

  .how-item-cbk {
    h3 {
      font-size: 28px;
    }

    h4 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }
  }

  .how-img-cbk {
    background-image: url(./images/how-desk.png);
    height: 470px;
    left: 160px;
    bottom: 80px;
  }
}

/* about */

.about-text-cbk {
  line-height: 150%;
}

.about-img-cbk {
  background-image: url(./images/about-mob.png);
  height: 211px;
}

@media screen and (min-width: 1440px) {
  .about-container-cbk {
    padding-right: 736px;
  }

  .about-text-cbk {
    font-size: 18px;
  }

  .about-img-cbk {
    background-image: url(./images/about-desk.png);
    height: 295px;
    right: 160px;
    bottom: 80px;
  }
}

/* cta */

.section-cta-cbk {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./images/cta-mob.png);
  padding-bottom: 0;
}

.cta-container-cbk {
  padding: 80px 16px;
}

.cta-title-cbk {
  text-align: center;
  margin-bottom: 24px;
}

.cta-text-cbk {
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .section-cta-cbk {
    background-image: url(./images/cta-desk.png);
  }

  .cta-container-cbk {
    position: relative;
    padding: 160px 380px 123px;
  }

  .cta-wrap-cbk {
    position: absolute;
    top: 103px;
    left: 350px;
    width: 736px;
    height: 244px;
    filter: blur(139px);
    background: #fff;
    opacity: 0.6;
  }

  .cta-title-cbk {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
  }

  .cta-text-cbk {
    position: relative;
    z-index: 2;
    font-size: 18px;
  }
}

/* footer */

#footer {
  background: var(--deep-sage-green);
  color: var(--paper-cream);
}

.footer-container-cbk {
  padding: 40px 16px 16px;
}

.footer-links-list-cbk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;

  li {
    a {
      line-height: 150%;
      text-align: center;
    }
  }
}

.footer-text-cbk {
  font-size: 11px;
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-container-cbk {
    padding: 40px 160px 16px;
  }

  .footer-links-list-cbk {
    li {
      a {
        font-size: 18px;
      }
    }
  }

  .footer-text-cbk {
    font-size: 12px;
  }
}

/* ********************* */

.hidden-cbk {
  display: none;
}

.click-cbk {
  transform: rotate(180deg);
}
