.awards-slider-heading{
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bolder;
    padding-top: 40px;
}
.slider-span{
    color: #FF2525;
    font-weight: bolder;
}
.award-card{
    background: #BADCFC;
    max-width: 220px;
    margin-left: 11px;
}
.award-img{
    width: auto;
    height: 170px;
    overflow: hidden;
}
.award-img img{
    height: 100%;
    width: 100%;
    background-size: contain;
    transition: all 0.5s ease;
    transform: scale(1);
    overflow: hidden;
}
.award-img img:hover{
    transform: scale(1.3);
    overflow: hidden;
}
.award-title h5{
    color: #FF2525;
}

@media only screen and (max-width: 576px){
    .awards-slider-heading{
        font-size: 18px;
    }
    .award-img{
        width: auto;
    }
    .award-title h5{
        font-size: 15px;
    }
}