.gallery-photo {
            max-height: 240px;
            img {
                width: 100%;
                height: auto;
                transform: scale(1);
                min-height: 240px;
                object-fit: fill;
            }
        }

.team-card {
    display: block;
    position: relative;
    overflow: hidden;
    .team-cover {
        transition: all 0.5s ease-in-out;
        img {
            height: auto;
            transition: all 0.3s ease-in-out;
        }
    }
    .team-body {
        position: relative;
        background: #272727ba;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

.team-card:hover {
    cursor: pointer;
    img {
        transform: scale(1.05);
    }
}