.team-elementSpace {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-right: 10%;
    margin-left: 10%;
}

.team-element {
    color: white;
    border-radius: 12px;
    text-align: center;
    min-width: 300px;
    position: relative;
    margin-bottom: 75px;
            z-index: 1;

}

.team-elementPicture {
    background-color: #0f0f0f2c;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
        z-index: 1;

}

.team-elementPicture img {
    width: 100%;
    height: max-content;
    object-fit: cover;
    display: block;
        z-index: 1;

}

.team-elementDescription {
    background-color: #0f0f0f;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.team-name {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0 20px 0;
    color: white;
}

.line {
    height: 4px;
    background-color: #00d95a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-role {
    background-color: #0f0f0f;
    color: #00d95a;
    padding: 0 10px;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.team-elementLinkedIn {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
        z-index: 1;

}

.team-elementLinkedIn img {
    width: 50px;
    height: 50px;
    display: block;
    transition: transform 0.2s ease;
        z-index: 1;

}

.team-elementLinkedIn img:hover {
    transform: scale(1.1);
}