.titre {
    text-align: center;
}

.team-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.team-card {
    width: calc(30% - 20px);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /*! color: black; */
}

.team-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.team-card p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}
.team-card a {
    color: #ca6767;
}
.team-card a:hover {
    color: #6586b4;
}
.court {
    padding-top: 0 !important;

}

.text-section {
    padding: 20px;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    margin: 0 auto;
    font-size: 20px;
    font-family: lato;
    font-weight: 300;
}
.team-card p.descriptif {
     padding: 5px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    font-family: lato;
    font-weight: 400;
     color: black;
}
.new {
    border-top: 3px double #8c8b8b;
}
hr {
    width: 100%
}
.text-section.two-columns {
    display: flex;
    flex-direction: row;
    gap: 120px;
}

.text-section.two-columns div {
    flex: 1;
}

.deux img {
    width: 100%
}

section span {
    color: red;
}



@media (max-width: 1080px) {
    .titre {
    padding-top: 50px
}
    .deux img {
        display: none;
    }

    .text-section {
        padding: 0px;
        width: 90%;
    }

    .team-card {
        width: calc(50% - 20px);
    }

    .text-section.two-columns {
        flex-direction: column;
        gap: 0
    }

    .text-section.two-columns div {
        flex: none;
    }

}

@media (max-width: 480px) {
    .team-card {
        width: 100%;
    }
}