.sponsor{
  .sponsor_wrapper{
    background-image: url(../images/sopnsoreBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
    padding: 60px 0 100px 0 ;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-image: linear-gradient(180deg, #F5F5F500 0%, #f5f5f5d1 82%);
        z-index: -1;
    }
    .sponsor_item{
        height: 110px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
        overflow: hidden;
        img{
            max-height: 90%;
            max-width: 100%;
            object-fit: contain;
        }
    }
  }
}