.personBioMain .personImage{
    width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 50%;
    background-color: red;
}
.personBioMain .personImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* /// Media Queries  */
@media screen and (max-width: 1400px) {
    .personBioMain .personImage{
        width: 310px;
        height: 310px;
    }
}

@media screen and (max-width: 1200px) {
    .personBioMain .personImage{
        width: 270px;
        height: 270px;
    }
}



@media screen and (max-width: 991px) {
    .personBioMain .personImage{
        width: 210px;
        height: 210px;
    }
}


@media screen and (max-width: 767px) {
    .personBioMain .personImage{
        width: 180px;
        height: 180px;
    }
}



@media screen and (max-width: 467px) {
    .personBioMain .personImage{
        width: 120px;
        height: 120px;
    }
}