.img-container{
    position: relative;
    width: 100%;
}

.how-do-sponsors-img{
    height: 200px;
    object-fit: cover;
    width: 100%;
    border: 5px white solid;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.img-label{
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 6px 16px;
    background-color: red;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}
@media only screen and (max-width: 767px) {
    .img-label{
        position: absolute;
        right: 4px;
        top: 7px;
        padding: 4px 13px;
        background-color: red;
        border-radius: 24px;
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        -ms-border-radius: 24px;
        -o-border-radius: 24px;
        width: 90%;
        font-size: 0.76rem;
        text-align:center;
    }

}
@media only screen and (max-width: 575px) {
    .img-label{
        position: absolute;
        right: 4px;
        top: 7px;
        padding: 4px 13px;
        background-color: red;
        border-radius: 24px;
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        -ms-border-radius: 24px;
        -o-border-radius: 24px;
        width: 90%;
        font-size: 1.16rem;
        text-align:center;
    }
    .how-do-sponsors-img {
        height: 350px;
    }
}
@media only screen and (max-width: 450px) {
    .img-label{
        position: absolute;
        right: 4px;
        top: 10px;
        padding: 4px 13px;
        background-color: red;
        border-radius: 24px;
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        -ms-border-radius: 24px;
        -o-border-radius: 24px;
        width: 90%;
        font-size: .8rem;
        text-align:center;
    }
    .how-do-sponsors-img {
        height: 220px;
    }
}