/*// Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) { 
    .user-img{
        border-radius: 50%;
        width: 50%;
    }
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { 
    .user-img{
        border-radius: 50%;
        width: 50%;
    }
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 
    .user-img{
        border-radius: 0%;
        width: 90%;
    }
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { 
    .user-img{
        border-radius: 0%;
        width: 90%;
    }
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
    .user-img{
        border-radius: 0%;
        width: 90%;
    }
}