/* Our staffs */
.staff-img-container {
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.staff-img {
    object-fit: cover;
    object-position: center;
    transition: 0.3s all;
}

@media (max-width: 576px) {
    .staff-img-container {
        height: 250px;
        width: 250px;
        display: flex;
        justify-content: center;
    }
}

.staff-img-container:hover .staff-img {
    transform: scale(1.1);
}

.staff-details{
    cursor: pointer;
}

.staff-designation {
    font-size: small;
}

.modal-header-staff-designation {
    font-size: 12px;
}
