/*----------------------------------Image categorie--------------------------------------------*/

.boximagecategorie {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #2D2A2B;
    display: flex;
    justify-content: left;
    align-items: center;
    overflow: hidden;
}

.boximagecategorie img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.boximagecategorie .boxtextecategorie {
    position: relative;
    max-width: 80%;
    padding-left: 10%;
    text-align: left;
}

.boximagecategorie .boxtextecategorie h2 {
    color: #fff;
    font-size: 60px;
    text-align: left;
}

.boximagecategorie .boxtextecategorie .separateurcategorie {
    height: 5px;
    width: 40px;
    background-color: #30ABA8;
}

.boximagecategorie .boxtextecategorie p {
    color: #fff;
    font-size: 18px;
    padding-top: 15px;
    z-index: -1;
}

.boximagecategorie .boxtextecategorie p a {
    color: #30ABA8;
}

@media (max-width:900px) {
    .boximagecategorie .boxtextecategorie h2 {
        font-size: 40px;
    }
}