<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;
}

body{
    margin: 0 !important;
    padding: 0 !important;
}
#mega_banner{
    position: relative;
    width: 100%;
    padding: 0 !important;
    margin:  0 !important;
    /* border: 1px solid red; */
}
#mega_banner .content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: var(--vert-fonce);
    border: 2px solid var(--vert-fonce);
}
#mega_banner .content .banner_btn{
    position: absolute;
    top: 1px;
    right: 0;
    z-index: 2;
    
    padding: 0;
}#mega_banner .content .banner_btn a{
   color: var(--blanc);
   font-size: 13px;
   font-weight: 300;
   text-transform: capitalize;
   background-color: rgba(0, 0, 0, 0.3);
   padding: 5px 8px;
   transition: ease all 0.3s;
   cursor: pointer;
}
#mega_banner .content .banner_btn a:hover{
    color: var(--blanc);
    font-size: 13px;
    font-weight: 300;
    text-transform: capitalize;
    background-color: rgba(0, 0, 0, 0.5);
 }
#mega_banner .content .inner{
    position: relative;
    width: 100%;
    z-index: 1;
}
#mega_banner .content .inner img{
    position: relative;
    width: 100%;
}
/*************** small_banner  ***********/
#small_banner .content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 35px;
    margin-bottom: 35px;
    padding: 25px;
    background-color: rgba(235, 233, 229, 0.2);
}


#small_banner .content .inner{
    position: relative;
    width: 48%;
    /* border: 1px solid red; */
}
#small_banner .content .inner img{
    position: relative;
    width: auto;
}
@media screen and (max-width: 1200px) {
    #small_banner .content{
        position: relative;
        margin-top: 55px;
        margin-bottom: 55px;
        padding: 10px;
    }
}

@media screen and (max-width: 992px) {
    #small_banner .content .inner{
        position: relative;
        width: 48%;
        margin-bottom: 15px;
    }
    #small_banner .content .inner &gt; div{
        position: relative;
        width: 100%;
    }
    #small_banner .content .inner div img{
        position: relative;
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    #small_banner .content{
        margin-top: 30px;
        margin-bottom: 30px;
        background-color: rgba(235, 233, 229, 0.3);
        padding: 0 !important;

        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
       
    }
    #small_banner .content .inner{
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #small_banner .content .inner &gt; div{
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #small_banner .content .inner div img{
        position: relative;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
</pre></body></html>