/* Teams expert */
.expert-teams {
    text-align: center;
}

.expert-teams h1 {
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, var(--couleur-tertiaire),var(--couleur-secondaire));
    border-image-slice: 1;
    top: 20px;
    position: relative;
    font-size: 18px;
    margin: 10px;
    font-weight: 900;
}

.teams {
    display: block;
}

.cofondateur {
    border: 1px solid var(--couleur-secondaire);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 5px;
}

.cofondateur img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.cofondateur h2 {
    font-weight: 800;
    font-size: 21px;
    margin-top: 10px;
}

.cofondateur ul {
    text-align: left;
}

.cheffeprojet {
    border: 1px solid #D3D828;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 5px;
}

.cheffeprojet img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.cheffeprojet h2 {
    font-weight: 800;
    font-size: 21px;
    margin-top: 10px;
}

.cheffeprojet ul {
    text-align: left;
}


/* projet */
.projet {
    padding: 0;
    text-align: center;
    margin-top: 100px;
    position: relative;
}

.projet img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.projet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgb(0 0 0 / 77%);
}

.projet h1,
.projet p,
.projet a {
    position: absolute;
    z-index: 1;
    color: white;
}

.projet h1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-transform: uppercase;
    font-weight: 900;
}

.projet p {
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    font-size: 13px;
}

.projet a {
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    padding: 10px 20px;
    background-color: #D3D828;
    color: black;
    font-weight: 900;
    border: none;
    font-size: 12px;
    border-radius: 28px;
    top: 240px;
}

/* Media Queries */
@media (min-width: 576px) {
    .expert-teams {
        text-align: center;
    }

    .expert-teams h1 {
        text-transform: uppercase;
        display: inline-block;
        padding-bottom: 5px;
        border-bottom: 5px solid;
        border-image-slice: 1;
        top: 20px;
        position: relative;
        font-weight: 900;
        font-size: 23px;
    }

    .teams {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cofondateur {
        border-radius: 10px;
        padding: 20px;
        margin: 20px 5px;
    }

    .cofondateur img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    .cofondateur h2 {
        font-weight: 800;
        font-size: 21px;
        margin-top: 10px;
    }

    .cofondateur ul {
        text-align: left;
    }

    .cheffeprojet {
        border: 1px solid #D3D828;
        border-radius: 10px;
        padding: 20px;
        margin: 20px 5px;
    }

    .cheffeprojet img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    .cheffeprojet h2 {
        font-weight: 800;
        font-size: 21px;
        margin-top: 10px;
    }

    .cheffeprojet ul {
        text-align: left;
    }

}

@media (min-width: 768px) {}

@media (min-width: 992px) {
    .expert-teams {
        text-align: center;
    }

    .expert-teams h1 {
        text-transform: uppercase;
        display: inline-block;
        padding-bottom: 5px;
        border-bottom: 5px solid;
        border-image-slice: 1;
        top: 20px;
        position: relative;
        font-weight: 900;
        font-size: 2.5rem;
    }

    .teams {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cofondateur {
        border-radius: 10px;
        padding: 20px;
        margin: 50px;
    }

    .cofondateur img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    .cofondateur h2 {
        font-weight: 800;
        font-size: 21px;
        margin-top: 10px;
    }

    .cofondateur ul {
        text-align: left;
    }

    .cheffeprojet {
        border: 1px solid #D3D828;
        border-radius: 10px;
        padding: 20px;
        margin: 50px;
    }

    .cheffeprojet img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    .cheffeprojet h2 {
        font-weight: 800;
        font-size: 21px;
        margin-top: 10px;
    }

    .cheffeprojet ul {
        text-align: left;
    }

    /* Projet */
    .projet img {
        height: 600px;
    }

    .projet h1 {
        top: 25%;
        font-weight: 800;
    }

    .projet p {
        top: 40%;
        width: 55%;
        font-size: 23px;
    }

    .projet a {
        font-size: 20px;
        top: 500px;
    }



}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}