.container {
    margin: auto;
    max-width: 1410px;
    padding: 50px 15px 150px;
    position: relative;
    text-align: center;
}

.container h1 {
    text-align: center;
}

.container p {
    margin-bottom: 20px;
}

.container .flex {
    margin: 50px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.container .flex img {
    object-fit: cover;
    width: 400px;
    height: 300px;
    border-radius: 5px;
    box-shadow: 4px 4px 5px 2px rgba(0,0,0,0.25);
}

@media (max-width: 992px) {
    .container .flex {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .container .flex img {
        width: 300px;
        height: 200px;
    }
}

.container .team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    margin-bottom: 50px;
}

.container .team div {
    max-width: 400px;
    width: 30%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.container .team div img {
    object-fit: cover;
    width: 280px;
    height: 280px;
    margin: 50px auto 15px;
    border-radius: 5px;
    box-shadow: 4px 4px 5px 2px rgba(0,0,0,0.25);
}

.container .team div strong {
    font-weight: bold;
}

.container .end {
    position: absolute;
    right: 15px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.txt-center {
    text-align: center;
}

#section_2 {
    padding: 30px 15px;
    background: linear-gradient(#F10019, #F51E41);
}

#section_2 * {
    color: var(--white);
}

#section_2 .counters {
    display: flex;
    flex-flow: row nowrap;
    text-align: center;
    justify-content: center;
    margin-top: 30px;
}

#section_2 .count {
    padding: 2em 2em;
    border-right: 2px solid var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#section_2 .count img {
    width: 75px;
    color: var(--white);
}

@media (max-width: 792px) {
    #section_2 .counters {
        flex-direction: column;
    }

    #section_2 .count {
        width: 300px;
        margin: auto;
        border-right: none;
        border-bottom: 2px solid var(--white);
    }
}


@media (max-width: 400px) {
    #section_2 .count {
        width: 200px;
    }
}

#section_2 .count:last-of-type {
    border: none;
}

#section_2 .count strong {
    font-weight: 600;
    font-size: 24px;
}

.contact {
    display: flex;
    flex-direction:column;
    align-items: center;
}

.team, .div-in-team, .franck-cogo, .pascal-roland {
    vertical-align: top;
}

.p-team, .p-pascal-roland, .p-franck-cogo {
    background-color:#F10019; 
    color: #ffffff; 
    padding: 0.5vw; 
    margin: 0.5vw;
}