/* here you can put your own css to customize and override the theme */
@charset "UTF-8";
@media print {}

/* Form minimum devices upto large devices */
 
@media (min-width: 992px) and (max-width: 1200px) {}
@media (min-width: 992px) {
    .school-logo{
        width: 20%;
        height: 20%;
    }
    .usr-photo{
        width: 100%;
        height: 100%;
        border-radius: 50%!important;
    }
}
@media (max-width: 991px) {}
@media (min-width: 768px) and (max-width: 991px) {
    .school-logo{
        width: 20%;
        height: 20%;
    }
    .usr-photo{
        width: 20%;
        height: 20%;
        border-radius: 50%!important;
    }
}
@media (max-width: 767px) {
     .school-logo{
        width: 30%;
        height: 30%;
    }
    .usr-photo{
        width: 30%;
        height: 30%;
        border-radius: 50%!important;
    }
}
@media (max-width: 480px) {
    .school-logo{
        width: 50%;
        height: 50%;
    }
    .usr-photo{
        width: 50%;
        height: 50%;
        border-radius: 50%!important;
    }
}