.why-sponsor-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    position: relative;
    z-index: 2;
}

.why-sponsor-body{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.why-sponsor-body:hover{
    transform: translateY(-10px);
    cursor: pointer;
}

.why-sponsor-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.why-sponsor-text-content{
    position: relative;
    background: #000000cc;
    padding: 40px;
    z-index: 3;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .why-sponsor-content{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .why-sponsor-content{
        grid-template-columns: repeat(1, 1fr);
    }
}