/* Our Team Section Design */
.team-card-container{
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    gap: 20px;
    text-align: center;
    justify-content: space-evenly;
}

.team-card{
    position: relative;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 350px;
}

.team-card img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.team-card .team-content{
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 350px;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
    border-radius: 50%;
    opacity: 0;
    overflow: hidden;
    padding: 15px;
}

.team-card:hover .team-content{
    opacity: 1;
}

.team-content p,
.team-content h4{
    margin: 0;
}