﻿.client-avatar-img {
    width: 70px; /* Set your desired width */
    height: 70px; /* Set your desired height */

    overflow: hidden; /* Ensures the image doesn't overflow the borders */
    margin: 0 auto; /* Center the image */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .client-avatar-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the specified dimensions */
        display: block;
    }

@media (max-width: 767px) {
    .client-avatar-img {
        width: 60px; /* Adjust size for mobile view */
        height: 60px; /* Adjust size for mobile view */
    }
}

