.our-team-images {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.border-team {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.096);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px 5px 0px 0px;
}

.team-social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    /* Initially invisible */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.border-team:hover .team-social-links {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.social-common-team {
    background-color: rgb(0, 0, 0);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 40px;
    transition: 0.5s;
    border-radius: 4px;
}



.social-common-team>i {
    color: white;
}