.zoom:hover p {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out 0.1s;
    color: #06A3DA;
    /* background-size: 0 0.1em, 100% 0.1em; */
  }
  
  .headline-image {
    opacity: 1;
    transition: .5s ease;
    backface-visibility: hidden;
    object-fit: cover;
  }
  
  .headline-container:hover .headline-image {
    opacity: 0.3;
  }
  
  .headline-container:hover .headline-overlay{
    opacity: 1;
  }

  .headline-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background:  rgba(238,249,255,0.5);
  }
  
  .headline-text {
    font-size: 16px;
    padding: 16px 32px;
  }