.hero-1-wrapper {
  overflow: hidden;
  /* margin: 2rem 0; */
  position: relative;
}

.hero-1-wrapper .tile-wrap img {
  max-height: 40rem;
}

.hero-3-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  overflow: hidden;
  /* margin: 2rem 0; */
  position: relative;
}

.hero-3-wrapper .hero-image img {
  transition: all 0.3s ease-in-out;
}

.hero-3-wrapper .hero-image img:hover {
  transform: scale(1.04);
}

.hero-image {
  cursor: pointer;
}

.hero-image img {
  width: 100%;
}

.hero-title {
  color: #fff;
  cursor: pointer;
  margin: 0;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
}

.hero-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  box-shadow: 0px -15px 15px rgb(0 0 0 / 50%);
  display: flex;
  padding: 0.75rem 2rem;
  position: absolute;
  width: 102%;
  z-index: 3;
}

.overlay-text {
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-left: 1px solid #fff;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.tile-wrap {
  background-color: black;
  overflow: hidden;
  position: relative;
}
.tile-wrap .hero-title a {
  color: white !important;
  text-decoration-color: white;
}

.tile-wrap .hero-overlay .hero-title a:hover {
  background: transparent;
  color: white;
  text-decoration-color: white;
}

/* **********************************
/*    Responsive Media Queries      */
/************************************/

@media only screen and (min-width: 0) {
  .hero-3-wrapper {
    grid-template-columns: auto;
  }
  .overlay-text {
    display: none;
  }
}

@media only screen and (min-width: 500px) {
  .hero-secondary {
    display: flex;
  }
}

@media only screen and (min-width: 820px) {
  .overlay-text {
    display: unset;
  }
}

@media only screen and (min-width: 1024px) {
  .hero-3-wrapper {
    grid-template-columns: 2fr 1fr;
  }
  .hero-secondary {
    display: block;
  }
}
