<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    --noir: #000;
    --rouge: #FF0000;
    --blanc: #FFF;
    --gris-clair : #f2f4f7;

    --noir: #262626;
    --orange: #EF7D00;
    --vert-drapeau: #3FA535;
    --vert: #0f7705;
    --vert-fonce:#023A05;
    --blanc: #FFF;
}






#dossiers_liste{
    display: block;
    width: 100% !important;
    /* border: 1px solid rgb(215, 234, 13); */
    background-color: var(--blanc);
    padding: 0px;
}
#dossiers_liste h1{
    display: block;
    width: 100% !important;
    font-size: 16px;
    font-weight: 600;
    color: var(--noir);
    margin-top: 15px;
    margin-bottom: 25px;
}

#dossiers_liste .items{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


#dossiers_liste .items .item{
    cursor: pointer;
    position: relative;
    width: 48%;
    height: auto;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(224, 224, 224, 0.1), 0 6px 20px 0 rgba(219, 219, 219, 0.1);
    margin-bottom: 25px;
}
#dossiers_liste .items a{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    /* overflow: hidden; */
    border-radius: 5px !important; 
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(41, 41, 41, 0.1), 0 6px 20px 0 rgba(219, 219, 219, 0.1);
    border-bottom: 1px solid rgba(219, 219, 219, 0.3);
}
#dossiers_liste .items a .inner{
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
    z-index: 2;
}
#dossiers_liste .items a .inner img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right; 
    transition: all 0.3s ease;
    transform: scale(1);
}
#dossiers_liste .items a:hover .inner img{
    transform: scale(1.03);
}
#dossiers_liste .items a .inner::after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent);
    opacity: 1;
    transition: ease-out 0.3s;
    z-index: 5;
}
#dossiers_liste .items a:hover .inner::after{
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
}
#dossiers_liste .items a .inner h2{
    position: absolute;
    bottom: 10px;
    width: 60%;
    left: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--blanc);
    background: linear-gradient(to right, #6a6969, rgb(78 75 73));
    margin-bottom: 10px;
    transition: ease 0.3s all;
    z-index: 10;
}
#dossiers_liste .items a:hover .inner h2{
    background-color: var(--orange);
    color: var(--blanc);
}
#dossiers_liste .items .inner .trait{
    position: absolute;
    content: "";
    bottom: 10px;
    width: 5px;
    height: 40px;
    left: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--blanc);
    margin-bottom: 10px;
    transition: ease 0.3s all;
    z-index: 10;
}
#dossiers_liste .items a .caption{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 120px;
    z-index: 30;

    padding: 10px !important;
    background-color: var(--blanc);
}


#dossiers_liste .items a .caption h3{
    position: relative;
    width: 100% ;
    font-size: 12px;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 10px;
    text-transform: capitalize !important;
}
#dossiers_liste .items a .caption .foot{
    position: relative;
    display: flex;
}
#dossiers_liste .items a .caption .foot div{
    position: relative;
    display: inline-block;
    width: auto;
}
#dossiers_liste .items a .caption .foot .left{
    font-size: 14px;
    font-weight: normal;
    color: var(--orange);
    text-transform: capitalize;
}
#dossiers_liste .items a .caption .foot .right{
    font-size: 16px;
    color: var(--blanc);
    margin-left: 7px;
    display: none;
}






/******************************************* Responsive********************/

@media screen and (max-width: 1520px) {

}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1350px) {
    #dossiers_liste .items a .inner{
        position: relative;
        display: block;
        width: 100%;
        height: 200px;
    }
}
@media screen and (max-width: 1024px) {
    #dossiers_liste .items a .inner{
        width: 100%;
        height: 210px;
    }
}

@media screen and (max-width: 768px) {

    #dossiers_liste .items .item{
        position: relative;
        width: 100%;
        height: auto;
        
    }

    #dossiers_liste .items a .inner h2{
        position: absolute;
        bottom: 10px;
        width: 60%;
        left: 20%;
    }
    #dossiers_liste .items .inner .trait{
        position: absolute;
        content: "";
        bottom: 10px;
        width: 5px;
        height: 37px;
        left: 18%;
        display: flex;
        justify-content: center;
        align-items: center;
        
        background-color: var(--blanc);
        margin-bottom: 10px;
        transition: ease 0.3s all;
        z-index: 10;
    }
    #dossiers_liste .items a .inner{
        width: 100%;
        height: 290px;
    }
   
}


/**************       dark mode   ***********/
.dark-mode #dossiers_liste {
    background-color: rgba(0, 0, 0, 0.00);
}
.dark-mode #dossiers_liste .items a .inner h2,
.dark-mode #dossiers_liste .items a .caption h3{
    color: yellow !important;
}
.dark-mode #footer .section_two .content .items .image .annuaire section .links,
.dark-mode #footer .section_one .content .items .item.gouv_actu input{
    border: 1px solid yellow !important;
}
.dark-mode #footer .section_two .content .links_gouv{
    border-top: 1px solid yellow !important;
    border-bottom: 1px solid yellow !important;
}
.dark-mode #dossiers_liste .items .item{
    box-shadow: 0 4px 8px 0 rgba(224, 224, 224, 0.05), 0 6px 20px 0 rgba(219, 219, 219, 0.02);
}
.dark-mode .section_grands_dossiers .content .titre{
    border-top: 2px solid yellow;
}

.dark-mode .section_chiffres_cles .content .liste .titre h1::after,
.dark-mode #dossiers_liste .items .inner .trait{
   background-color: yellow !important;
}
.dark-mode #dossiers_liste .items a .caption{
   background-color: rgb(31, 31, 31) !important;
}
.dark-mode #dossiers_liste .items a .inner h2{
   background-color: rgb(19, 19, 19) !important;
   background: rgb(19, 19, 19) !important;
}
.dark-mode .section_chiffres_cles .content h3,
.dark-mode .section_chiffres_cles .content{
    background-color: #000 !important;
    background: #000 !important;
}</pre></body></html>