.hero-image {
  margin-bottom: 2rem;
}

.hero-image__container {
  position: relative;
}

.hero-image__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 650px;
}

.hero-image__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image__card-outer {
  position: relative;
  z-index: 2;
  max-width: 420px;
  width: 100%;
  background-color: white;
  padding: 1rem;
}

@media (max-width: 599px) {
  .hero-image__card-outer {
    margin-top: -150px;
    margin-left: auto;
    margin-right: auto;
    background-color: inherit;
  }
}

@media (min-width: 600px) {
  .hero-image__card-outer {
    position: absolute;
    max-width: 380px;
    top: 30%;
    left: 20%;
    transform: translate(-30%, -20%);
  }
}

.hero-image__card-inner {
  padding: 2rem;
  border: 1px dotted #B9B9B9;
  text-align: center;
}

@media (max-width: 599px) {
  .hero-image__card-inner {
    background-color: white;
  }
}

.hero-image__subtitle p {
  color: #707070;
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.hero-image__title h2 {
  color: #0060A6;
  font-size: 38px;
  font-family: itc-giovanni, serif;
  font-weight: normal;
  text-transform: uppercase;
}

.hero-image__title hr {
  max-width: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-width: 4px;
  border-color: #B9B9B9;
}

.hero-image__description {
  margin-bottom: 2rem;
}

.hero-image__action .button {
  display: inline-block;
  background-color: #0060A6;
  color: white;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: .75rem 1rem;
}