#hero {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  max-width: 100%;
  overflow: hidden;
  min-height: 760px;
  position: relative;
}

#hero .row {
  height: 100%;
}

#hero .image-side {
  padding: 0;
  position: relative;
}

#hero .image-side img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .content-side {
  padding: 3rem;
  padding-left: 0;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#hero .content-side .content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 400px;
}

#hero .icon-wrap {
  margin-bottom: 3rem;
  font-size: 120px;
  line-height: 0;
}

#hero .content-side h2 {
  font-size: 60px;
  font-family: 'Cachet Book', sans-serif;
  margin-top: 0;
  margin-bottom: 3rem;
  line-height: 1;
}

#hero .content-side .subhead {
  font-size: 20px;
  font-family: 'Cachet Bold', sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 3rem;
  line-height: 1;
}

#hero .content-side p {
  margin-top: 0;
  margin-bottom: 3rem;
}

#hero .image-side {
  padding: 0;
}

.program-alert .global-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: white;
  margin: 0;
  border-radius: 0;
  text-align: center;
  padding: 16px;
  font-family: 'Cachet Book', sans-serif;
  line-height: 1.2;
}
.program-alert .global-alert .icon {
  font-size: 2em;
  margin-right: 16px;
}

@media (max-width: 1600px) {
  #hero .content-side {
    padding: 20px;
  }
  #hero .icon-wrap,
  #hero .content-side h2,
  #hero .content-side .subhead,
  #hero .content-side p {
    margin-bottom: 2rem;
  }
}

@media (max-width: 1200px) {
  #hero .content-side {
    padding-left: 3rem;
  }
  #hero .content-side h2 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  #hero {
    aspect-ratio: unset;
  }
  #hero .image-side {
    padding: 0;
    padding-right: 4rem;
  }
  #hero .image-side img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0 0 10px 0;
  }
  #hero .content-side {
    justify-content: center;
    padding: 3rem;
    padding-top: 2rem;
  }
  #hero .content-side .content-inner {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #hero .content-side h2 {
    font-size: 30px;
  }
  #hero .content-side .subhead {
    font-size: 15px;
  }
  #hero .content-side p {
    font-size: 15px;
  }
}
