.hero {
  position: relative;
}

.hero h1 {
  font-weight: 300;
  font-size: 2.7rem;
  line-height: 4.1rem;
  text-transform: uppercase;
  position: absolute;
  top: var(--space-6);
}

.hero-cta {
  position: absolute;
  bottom: 0;
  width: 35%;
}

.hero-cta .cta-button {
  width: 100%;
  /* background: var(--color-white); */
}

.hero-text {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0;
  right: 0;
  width: 39%;
  height: 50%;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 35px;
}

main section article {
  margin-bottom: var(--space-12);
}

main section article h2 {
  font-weight: 300;
  font-size: var(--font-size-3xl);
  line-height: 100px;
}

main section article p {
  font-weight: 400;
  font-size: var(--font-size-xl);
  line-height: 35px;
}


@media screen and (max-width: 768px) {
  .hero h1 {
    position: static;
  }
  
  .hero .sm-screen-img {
    border-radius: 1em;
  }

  .hero-cta {
    position: static;
    width: 100%;
    margin: var(--space-6) auto;
  }

  .hero-text {
    position: static;
    width: 100%;
    height: unset;
    text-align: center;
  }

  main section article h2 {
    font-size: 1.75rem;
    line-height: normal;
    margin-bottom: var(--space-4);
  }
}