.projet__header {
    height: 30vh;
    background-image: url("../img/background-header.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.projet__header__filtre {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.projet__header__filtre p {
    color: #fff;
    text-align: center;
    font-size: 1.2em;
}

.projet__header__filtre button {
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    outline: none;
    margin: 0 10px;
    font-size: 1.1em;
    margin-top: 10px;
    background-color: #65acff;
    color: #FFF;
}

.typer {
    color: #fff;
    font-size: 2.3em;
    text-align: center;
}

.typer span {
    color: #65acff;
}

.projet__section__container {
    background-color: #F5F5F5;
}

.projet__grid {
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, max(300px));
    gap: 20px;
    justify-content: center;
    margin: auto;
    padding: 50px 0;
}


.projet__item {
    border-radius: 2px;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.projet__image {
    height: 170px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.projet__cat {
    font-weight: normal;
    font-size: 10px;
    background-color: #65acff;
    color: #fff;
    width: fit-content;
    border-radius: 15px;
    padding: 1px 5px;
}

.projet__titreflex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
}

.projet__titre h4 {
    padding: 10px 0px;
    font-size: 1em;
    font-weight: 300;
    color: #000;
}

.projet__profil__link {
    margin-bottom: 5px;
    font-size: 10px;
    color: gray;
}

.projet__profil__link a {
    /* text-decoration: underline; */
    color: #65acff;
}

.plus__link button {
    border: none;
    width: 100%;
    padding: 5px;
    border-radius: 2px;
    color: #fff;
    background-color: #65acff;
    font-size: 1em;
    cursor: pointer;
}

.projet-title {
    padding: 20px 0 !important;
    text-align: center;
}

.projet-title h1 {
    font-size: 1.4em !important;
    font-weight: 500;
}

@media screen and (max-width:850px) {
    .typer {
        color: #fff;
        font-size: 1.5em;
        text-align: center;
        padding: 0 10px;
    }

    .projet__header__filtre p {
        color: #fff;
        text-align: center;
        font-size: 1em;
        line-height: 20px;
        padding: 0 10px;
    }

    .projet__header {
        height: 35vh;
    }

}