/* Header */
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
}

.header__content {
  height: 102px;
}

header .header__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: white;
  opacity: 0.1;
}

header.shadow-hero .header__content::after {
  background: transparent;
}

/* Aside */
.overlay,
aside {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.overlay {
  display: none;
}

aside {
  width: 400px;
  max-width: 100%;
  background: white;
  transform: translateX(100%);
}

aside.show {
  transform: translateX(0%);
}


/* Hero */
.hero-section {
  background-image: url("../images/hero/hero-bg.png");
  background-repeat: no-repeat;
  background-position: 100% 70%;
  overflow: hidden;
  margin-top: 102px;
}

.hero-section__content {
  padding: 140px 90px 0;
}

.hero-section__content h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 66px;
}

.hero-section__content p {
  color: white;
  opacity: 0.8;
}

.hero-section__content .screen-shots {
  padding-top: 90px;
}

@media (max-width: 768px) {
  .hero-section__content {
    padding: 80px 0 0;
  }

  .hero-section__content h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 26.5px;
  }

  .hero-section__content .screen-shots {
    padding-top: 50px;
  }
}

/* About */
.about-section {
  padding-top: 140px;
  background: linear-gradient(0.61deg, #F9F8F4 0.53%, #FFFFFF 99.49%);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .about-section {
    padding-top: 80px;
  }
}

/* Features */
.features-section {
  padding: 140px 0;
}

.features-section .features-list {
  margin-top: 100px;
}

.features-section .features-list .list .mark {
  min-width: 48px;
  height: 48px;
  background-color: #FAF5EC;
  border-radius: 8px;
}

.features-section .features-list .list h3 {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .features-section {
    padding: 80px 0;
  }

  .features-section .features-list {
    margin-top: 60px;
  }

  .features-section .features-list .layer {
    margin-bottom: 48px;
  }
}

/* Download */
.download-section {
  padding-top: 140px;
}

.download-section .doctor .one {
  right: 0px;
  top: 50px;
}

.download-section .doctor .two {
  right: 20px;
  bottom: 50px;
}

.download-section .doctor .three {
  left: 0;
  top: 90px;
}

@media (max-width: 1024px) {
  .download-section {
    padding-top: 80px;
  }
}

/* Footer */
.footer-content {
  padding: 140px 0;
}

.copy-right {
  height: 102px;
}

.copy-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #C2C2C233;
}

@media (max-width: 1024px) {
  .footer-content {
    padding: 80px 0;
  }
}