.cta-background {
  background-size: cover;
  background-position: center center;
  bottom: 0;
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.cta {
  background: #333;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
  height: 300px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.cta:hover img {
  /* top: -10%; */
  filter: brightness(50%);
}
.cta:hover .text {
  bottom: 0;
}
.cta img {
  bottom: 0;
  filter: brightness(100%);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta .text {
  bottom: -60%;
  padding: 15px;
  position: absolute;
  transition: 0.5s ease-in-out;
}
.cta .text h2 {
  color: #fff;
  display: inline-block;
  font-weight: 300;
  margin-bottom: 5px;
  position: relative;
}
.cta .text p {
  color: #fff;
  font-weight: 300;
}
