/* header */

.nav-sct {
  display: none;
}

.header-sct {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.1),
    0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.header-container-sct {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5.5px 32px;
  position: relative;
  width: 375px;
}

.header-logo-sct {
  border-radius: 15px;
  width: 51px;
  height: 51px;
}

.menu-btn-sct {
  transition: all 0.3s ease;
}

.menu-btn-sct:hover {
  transform: scale(1.1);
}

.menu-svg-sct {
  width: 32px;
  height: 32px;
  stroke: #171717;
}

.nav-list-sct {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item-sct {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-sct {
  position: relative;

  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #4a5565;
  transition: all 0.3s ease-in-out;
}

.nav-item-sct::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #4a5565;

  transition: all 0.3s ease-in-out;
}

.item-active-sct::after {
  width: 100%;
}

.link-active-sct {
  font-weight: 900;
}

.nav-link-sct:hover {
  font-weight: 900;
}

.header-btn-link-sct {
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: #155dfc;
  border-radius: 33554400px;
  width: 167px;
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  transition: all 0.3s ease;
}

.header-btn-link-sct:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .header-container-sct {
    padding: 7px 144px;
    width: 1440px;
    height: 73px;
  }

  .header-logo-sct {
    width: 60px;
    height: 60px;
  }

  .nav-sct {
    display: block;
    margin-right: 31px;
  }

  .menu-btn-sct {
    display: none;
  }

  .header-btn-link-sct {
    display: flex;
  }
}

/* modal  */

.modal-sct {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  padding: 169px 103px;
  width: 375px;
  height: 812px;
  background: linear-gradient(135deg, #d2e5ff 0%, #e0ffe9 100%);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-close-sct {
  position: absolute;
  top: 10px;
  right: 10px;

  svg {
    stroke: #364153;
    width: 41px;
    height: 41px;
  }
}

.menu-nav-list-sct {
  flex-direction: column;
  gap: 40px;
}

.menu-nav-link-sct {
  font-size: 18px;
  line-height: 111%;
}

.nav-modal-sct {
  margin-bottom: 55px;
}

.modal-btn-link-sct {
  display: flex;
  box-shadow: none;
}

/* popup */

.popup-sct {
  position: fixed;
  z-index: 11;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 24px 25px 31px;
  width: 346px;
  height: 371px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #fff;
  display: none;
  flex-direction: column;
}

.popup-close-btn-sct {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;

  svg {
    width: 20px;
    height: 20px;
    stroke: #99a1af;
  }
}

.popup-title-sct {
  padding-left: 37px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #000;
  margin-bottom: 32px;
}

.popup-text-sct {
  padding-left: 8px;
  padding-right: 8px;
  font-size: 14px;
  line-height: 163%;
  color: #000;
  margin-bottom: 37px;
}

.popup-btn-wrap-sct {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-btn-sct {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  width: 296px;
  height: 48px;
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-align: center;

  transition: all 0.3s ease;
}

.popup-btn-accept-sct {
  color: #fff;
  background: #155dfc;
}

.popup-btn-decline-sct {
  color: #000;
  border: 2px solid #e5e7eb;
}

.popup-btn-sct:hover {
  transform: scale(1.05);
}

.popup-close-btn-sct:hover {
  transform: scale(1.3);
}

@media screen and (min-width: 1440px) {
  .popup-sct {
    bottom: 27.5px;
    padding: 33px 34px 40px;
    width: 769px;
    height: 286px;
  }

  .popup-close-btn-sct {
    top: 33px;
    right: 33px;
  }

  .popup-text-sct {
    padding-left: 16px;
    padding-right: 15px;
    font-size: 18px;
    line-height: 126%;
  }

  .popup-btn-wrap-sct {
    flex-direction: row;
  }

  .popup-btn-sct {
    width: 348px;
  }

  .popup-btn-accept-sct {
    width: 344px;
  }

  .popup-close-btn-sct:hover {
    transform: scale(1.5);
  }
}

/* hero  */

#home {
  background: linear-gradient(135deg, #d2e5ff 0%, #e0ffe9 100%);
}

.hero-container-sct {
  padding: 253px 32px 191px;
}

.hero-title-sct {
  margin-bottom: 42px;
}

.hero-wrap-sct {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.hero-text-sct {
  font-size: 14px;
  line-height: 143%;
  text-align: center;
}

.hero-link-sct {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: #155dfc;
  border-radius: 33554400px;
  width: 219px;
  height: 35px;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-link-sct:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .hero-container-sct {
    padding: 242px 433px 170px;
  }

  .hero-title-sct {
    font-size: 72px;
    margin-bottom: 55px;
  }

  .hero-wrap-sct {
    max-width: 567px;
  }

  .hero-text-sct {
    font-size: 20px;
    line-height: 140%;
  }

  .hero-link-sct {
    width: 219px;
    height: 61px;
    font-size: 18px;
    line-height: 156%;
  }
}

/* philosophy  */

.philosophy-container-sct {
  padding-left: 14px;
  padding-right: 13px;
}

.philosophy-title-sct {
  margin-bottom: 10px;
}

.philosophy-text-sct {
  font-size: 14px;
  text-align: center;
  color: #4a5565;
}

.philosophy-upper-text-sct {
  margin-bottom: 31px;
}

.philosophy-glide-sct {
  position: relative;
}

.philosophy-controls-wrap-sct {
  position: absolute;
  top: 193px;
  left: 50%;
  transform: translate(-50%);
}

.philosophy-btn-sct {
  color: #101828;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #101828;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.philosophy-btn-right-sct {
  right: 27px;
}

.philosophy-btn-left-sct {
  left: 27px;

  svg {
    transform: rotate(180deg);
  }
}

.philosophy-btn-sct:active {
  color: #fff;
  background-color: #155dfc;
  border: none;
}

.philosophy-bullet-sct.glide__bullet--active {
  background: #3d3d3d;
  transform: scale(1.5);
}

.philosophy-controls-btn-icon-sct {
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  stroke: currentColor;
}

.philosophy-bullet-wrap-sct {
  bottom: -2px;
}

.philosophy-bullet-sct {
  width: 4px;
  height: 4px;
  box-shadow: none;
  background-color: #7c7c7c;
}

.glide__slide {
  max-width: 264px;
  min-height: 168px;
}

.philosophy-item-sct {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  padding: 32px 32px 0px;
  background: linear-gradient(135deg, #d2e5ff 0%, #e0ffe9 100%);

  svg {
    width: 48px;
    height: 48px;
    stroke: #000;
    fill: none;
  }

  p {
    font-size: 14px;
    line-height: 143%;
    color: #364153;
  }
}

.philosophy-lower-text-sct {
  line-height: 143%;
  margin-top: 60px;
}

.philosophy-wrapper-sct {
  align-items: center;
}

.philosophy-item-sct {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1440px) {
  .philosophy-container-sct {
    padding: 101px 145px 0;
  }

  .philosophy-text-sct {
    font-size: 18px;
  }

  .philosophy-upper-text-sct {
    margin-bottom: 52px;
  }

  .philosophy-wrapper-sct {
    display: flex;
    gap: 33px;
    cursor: default;
  }

  .glide__slide {
    min-height: 207px;
  }

  .philosophy-item-sct {
    p {
      padding-right: 29px;
      font-size: 16px;
      line-height: 163%;
    }
  }

  .philosophy-lower-text-sct {
    line-height: 156%;
    margin-top: 18px;
  }

  .glide__controls-wrapper {
    display: none;
  }
}

/* background */

.background-container-sct {
  padding: 50px 21px;
  gap: 16px;
}

.background-title-sct {
  text-align: left;
}

.background-text-sct {
  font-size: 14px;
  line-height: 143%;
  color: #4a5565;
}

.background-text-first-sct {
  margin-bottom: 10px;
}

.background-pic-sct {
  background: url(/images/background-pic.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 332px;
  height: 231px;
}

@media screen and (min-width: 1440px) {
  .background-container-sct {
    padding: 101px 119px;
    flex-direction: row;
    gap: 37px;
  }

  .background-title-sct {
    margin-bottom: 25px;
  }

  .background-text-sct {
    font-size: 20px;
    line-height: 163%;
  }

  .background-pic-sct {
    width: 584px;
    height: 407px;
    flex-shrink: 0;
  }
}

/* history */

.section-history-sct {
  background: linear-gradient(135deg, #d2e5ff 0%, #e0ffe9 100%);
}

.history-container-sct {
  padding: 33px 23px 23px;
}

.history-title-sct {
  margin-bottom: 15px;
}

.history-wrap-sct {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.history-text-sct {
  font-size: 14px;
  line-height: 143%;
  color: #4a5565;
}

@media screen and (min-width: 1440px) {
  .history-container-sct {
    padding: 39px 337px;
  }

  .history-title-sct {
    margin-bottom: 51px;
  }

  .history-wrap-sct {
    padding-right: 25px;
  }

  .history-text-sct {
    font-size: 20px;
    line-height: 163%;
  }
}

/* presence */

.presence-container-sct {
  padding: 54px 22px 0;
}

.presence-title-sct {
  margin-bottom: 37px;
}

.presence-wrap-sct {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-right: 12px;
}

.presence-text-sct {
  font-size: 14px;
  line-height: 143%;
  color: #4a5565;
}

@media screen and (min-width: 1440px) {
  .presence-container-sct {
    padding-left: 447px;
    padding-right: 354px;
  }

  .presence-title-sct {
    margin-bottom: 51px;
  }

  .presence-wrap-sct {
    gap: 10px;
    padding-right: 0;
  }

  .presence-text-sct {
    font-size: 20px;
    line-height: 163%;
  }

  .presence-text-second-sct {
    padding-right: 73px;
  }
}

/* time */

.time-container-sct {
  padding: 56px 22px 50px;
}

.time-text-sct {
  font-size: 14px;
  line-height: 143%;
  color: #4a5565;
  padding-right: 18px;
}

@media screen and (min-width: 1440px) {
  .time-container-sct {
    padding-left: 447px;
    padding-right: 354px;
  }

  .time-title-sct {
    margin-bottom: 54px;
    max-width: 460px;
  }

  .time-text-sct {
    font-size: 20px;
    line-height: 163%;
    padding-right: 0;
  }

  .time-text-second-sct {
    padding-right: 73px;
  }
}

/* vision */

.section-vision-sct {
  background: linear-gradient(135deg, #d2e5ff 0%, #e0ffe9 100%);
}

.vision-container-sct {
  padding: 43px 14px;
}

.vision-wrap-sct {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vision-milestone-wrap-sct {
  border-radius: 24px;
  padding: 22px 56px 22px 40px;
  width: 346px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #155dfc 0%, #2b7fff 100%);
  color: #fff;

  .vision-milestone-cicrle-sct {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 33554400px;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 12px;

    svg {
      width: 32px;
      height: 32px;
    }
  }

  .vision-milestone-title-sct {
    font-weight: 500;
    font-size: 20px;
    line-height: 180%;
    margin-bottom: 10px;
  }

  .vision-milestone-text-sct {
    font-size: 14px;
    line-height: 143%;
  }
}

.vision-evolution-wrap-sct {
  background: linear-gradient(135deg, #00a63e 0%, #00c950 100%);
}

@media screen and (min-width: 1440px) {
  .vision-container-sct {
    padding: 21px 209px 40px;
  }

  .vision-wrap-sct {
    flex-direction: row;
    gap: 49px;
  }

  .vision-milestone-wrap-sct {
    padding: 41px 54px 41px 41px;
    width: 489px;
    height: 338px;

    .vision-milestone-cicrle-sct {
      margin-bottom: 25px;
    }

    .vision-milestone-title-sct {
      font-size: 30px;
      line-height: 120%;
      margin-bottom: 17px;
    }

    .vision-milestone-text-sct {
      font-size: 18px;
      line-height: 163%;
    }
  }

  .vision-milestone-wrap-sct {
    p {
      padding-right: 31px;
    }
  }

  .vision-evolution-wrap-sct {
    p {
      padding-right: 0;
    }
  }
}

/* faq */

.faq-container-sct {
  padding: 50px 9px 0;
}

.faq-list-sct {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item-sct {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 16px;
  padding: 24px 32px;
  width: 358px;
  min-height: 76px;
  box-shadow:
    0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: #fbfbfb;
}

.faq-question-wrap-sct {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-question-sct {
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  color: #101828;
}

.faq-btn-icon-sct {
  width: 24px;
  height: 24px;
}

.faq-answer-sct {
  font-size: 14px;
  line-height: 163%;
  color: #4a5565;
}

@media screen and (min-width: 1440px) {
  .faq-container-sct {
    padding: 101px 273px 0;
  }

  .faq-title-sct {
    margin-bottom: 68px;
  }

  .faq-list-sct {
    gap: 17px;
  }

  .faq-item-sct {
    width: 897px;
  }

  .faq-question-sct {
    font-size: 18px;
    line-height: 156%;
  }

  .faq-answer-sct {
    font-size: 16px;
  }
}

/* contact */

.contact-container-sct {
  padding: 50px 12px 81px;
}

.contact-title-sct {
  margin-bottom: 10px;
}

.contact-text-sct {
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #4a5565;
  padding: 0 14px;
  margin-bottom: 30px;
}

.contact-wrap-sct {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  width: 350px;
  height: 198px;
  padding: 22px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #155dfc 0%, #00a63e 100%);
  color: #fff;
}

.contact-email-wrap-sct {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 33554400px;
  padding: 16px;
  width: 69px;
  height: 69px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.contact-email-icon-sct {
  width: 37px;
  height: 37px;
}

.contact-email-sct {
  font-weight: 500;
  line-height: 200%;
  margin-bottom: 5px;
}

.contact-call-wrap-sct {
  display: flex;
  gap: 8px;

  svg {
    width: 20px;
    height: 20px;
  }

  p {
    font-size: 14px;
    line-height: 200%;
  }
}

@media screen and (min-width: 1440px) {
  .contact-container-sct {
    padding: 101px 313px;
  }

  .contact-title-sct {
    margin-bottom: 25px;
  }

  .contact-text-sct {
    font-size: 20px;
    line-height: 163%;
    padding: 0 71px 0 81px;
    margin-bottom: 52px;
  }

  .contact-wrap-sct {
    width: 817px;
    height: 271px;
    padding: 49px 0 39px;
  }

  .contact-email-wrap-sct {
    margin-bottom: 32px;
  }

  .contact-email-sct {
    font-size: 24px;
    line-height: 133%;
    margin-bottom: 25px;
  }
}

/* footer */

#footer {
  background: linear-gradient(135deg, #d2e5ff 0%, #e0ffe9 100%);
}

.footer-container-sct {
  padding: 35px 27px 24px;
}

.footer-links-wrap-sct {
  padding: 0 22px;
  margin-bottom: 61px;
  display: flex;
  flex-direction: row-reverse;
  gap: 17px;
}

.nav-footer-list-sct {
  display: flex;
  flex-direction: column;
  gap: 10px;

  li {
    a {
      display: flex;
      align-items: center;
      width: 124px;
      font-size: 14px;
      color: #000;
    }
  }
}

.footer-links-list-sct {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-item-sct {
  a {
    width: 137px;
    font-size: 14px;
    color: #000;
  }
}

.footer-text-sct {
  font-size: 14px;
  text-align: center;
  color: #000;
}

@media screen and (min-width: 1440px) {
  .footer-container-sct {
    padding: 55px 0 50px;
  }

  .footer-links-wrap-sct {
    padding: 0;
    margin-bottom: 82px;
    flex-direction: column;
    gap: 101px;
  }

  .nav-footer-list-sct {
    flex-direction: row;
    gap: 31px;

    li {
      a {
        font-size: 20px;
        width: fit-content;
      }
    }
  }

  .footer-links-list-sct {
    flex-direction: row;
    justify-content: center;
    gap: 31px;
  }

  .footer-links-item-sct {
    a {
      width: fit-content;
      padding: 0 11px;
      font-size: 20px;
    }
  }

  .footer-text-sct {
    font-size: 20px;
    line-height: 180%;
  }
}

/* ********************* */

.hidden-sct {
  display: none;
}

.click-sct {
  transform: rotate(181deg);
}
