.sponsor-link-box {
    justify-content: center;
    display: flex;
    height: 147px;
}

.sponsor-link-img{
    max-height: 118px;
    width:100%;
    object-fit: contain;
}
.timing{
    font-family: "Dubai-Regular", sans-serif;
    color: #1d4652;
    margin-right: 10px;
}
            
.icon-div {
  position: relative;        /* contain absolutely positioned children */
  width: 80px;               /* adjust as needed */
  height: 80px;              /* same as your image size */
  margin: 0 auto;            /* optional: center horizontally */
}

.icon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;              /* full height of parent */
  transition: opacity 0.3s ease;
}

.hover-img {
  opacity: 0;
}

.icon-div:hover .hover-img {
  opacity: 1;
}

.icon-div:hover .icon-img:not(.hover-img) {
  opacity: 0;
}
