.op-contact-info{
  position: relative;
  margin: 24px;
}

.op-contact-info .contact-image{
  height: 350px;
  text-align: left;
}

.op-contact-info .contact-image img{
  height: 100%;
  object-fit: cover;
  width: 90%;
}

.op-contact-info .content{
  position: absolute;
  right: 0;
  bottom: -50px;
  background: var(--color-primary);
  padding: 22px;
  color: white;
}

.op-contact-info .content .contact-title{
  padding-bottom: 12px;
}

.op-contact-info .content a{
  color: white;
}

.op-contact-info .content a:hover{
  color: white;
  text-decoration: underline;
}

@media (min-width: 992px) { 
  .op-contact-info .contact-image{
    height: 605px;
    text-align: center;
  }
  
  .op-contact-info .contact-image img{
    width: 80%;
  }

  .op-contact-info .content{
    left: 0;
    right: unset;
    bottom: 0;
    width: 100%;
  }

}