.hero-block-wrapper {
  padding-bottom: 1rem;
}

.hero-block-wrapper .hero-background-image {
  width: 100%;
  box-shadow: none;
  background-size: cover;
  transition: box-shadow 0.5s;
  border-radius: var(--border-radius);
  height: 100%;
  padding: 6rem 2rem 4rem 2rem;
}

.content.hero-block-wrapper {
  position: relative;
  height: 100%;
}

.hero-info > * {
  margin-bottom: 1rem;
}

.hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-summary-text {
  text-align: center;
  flex-grow: 1;
}

.hero-top-logo {
  flex-basis: 150px;
  text-align: center;
}

.block-inline-blockhero-image {
  height: 100%;
}

.hero-top-logo .field--name-field-hero-top-logo {
  max-width: 250px;
  margin: 0 auto 1rem auto;
}

.hero-button a {
  padding: 0.8rem 1.6rem;
  background: var(--main-color);
  border-radius: 5px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 1000ms linear;
}

.crm-home .hero-button a {
  background: var(--crm--main-color);
}

.gov-home .hero-button a {
  background: var(--gov--main-color);
}

.hero-button a:hover {
  background-color: var(--main-color-light);
  color: black;
  transition: background-color 1000ms linear;
}

.gov-home .hero-button a:hover {
  background-color: #dde56c
}



.hero-background-image:hover {
  transition: box-shadow 0.5s ease-in-out;
  box-shadow: 0px 0px 10px 0px #000;
}

.hero-button {
  justify-self: flex-end;
}

