.hero {
  /*height: 100vh;*/
  background-size: auto 38rem, cover;
  background-position: top left -11.6875rem, center;
  background-repeat: no-repeat; 
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 32%,     
    rgba(2, 29, 72, 0.3) 45%,   
    rgba(2, 29, 72, 0.4) 100%     
  );
  z-index: 1;
}

.hero > .hero__wrapper {
  background-color: transparent;
  position: relative;
  height: 100%;
}
.hero > .hero__wrapper {
  padding-top: 26.5625rem;
  padding-bottom: 9.1875rem;
  position: relative;
  height: 100%;
}
.hero .hero__content {
  position: relative;
  max-width: 100%;
  height: 100%;
  z-index: 1;
  padding-right: 13.75rem;
  padding-left: 13.75rem;
}
.hero .hero__content .hero__title {
  color: var(--white-1);
  padding-bottom: 2.1875rem;
  width: 100%;
}

.hero .hero__description {
  color: var(--white-1);
  font-size: 1.375rem;
  font-weight: 300;
  width: 100%;
}

.hero .hero__button{
  width: 100%;
}
@media screen and (max-width: 960px) {
  .hero .hero__content {
    width: 100%;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .hero .hero__text .hero__description {
    margin-bottom: 2.5rem;
  }
  .hero .hero__content .hero__title {
    padding-bottom: 1.25rem;
  }
}
@media screen and (min-width: 960px) {
  .hero{
    height: 57.1875rem;
    background-size: auto 53.125rem, cover;
    background-position: top left, center;
  }
  .hero .hero__content {
    width: 100%;
    min-height: auto;
  }
  .hero .hero__content .hero__title {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0px;
  }
  .hero .hero__content .hero__title > span:first-of-type {
    max-width: 72.9375rem;
    margin-bottom: 9.9375rem;
  }
  .hero .hero__text {
    width: 32.8125rem;
    left: 0px;
  }
  .hero .hero__text .hero__description {
    margin-bottom: 3.125rem;
  }
  .hero .hero__button{
      width: auto;
      align-self: center;
    }
}
