

/**** DECO  ****/
.decoration_style{
    position:relative;
    display: block;
}
.decoration_style:after, .decoration_style:before {
    display: block;
    position: absolute;
    left: -50px;
    transform: skew(14deg);
    opacity: 75%;
    mix-blend-mode: multiply;
    content: "";
    bottom: 50px;
    width: 140px;
    height: 140px;
    background-color:#E9F6D9;
}

.decoration_style:before{
    width: 50px;
    height: 80px;
    bottom: 120px;
    left: -120px;
}


/**** CTA ****/

.cta_home_txt{
    min-height:130px;
}

/**** Listing ****/
.item_listing_filiere{
    overflow:hidden;
    .title_item_listing{
        position:relative;
        bottom:0;
        transition: all 300ms ease-in-out !important;
        
    }
    
    
    .btn_listing{
        position:relative;
        bottom:-100px;
        transition: all 300ms ease-in-out !important;
        
    }
    
    &:hover{
        .title_item_listing{
            bottom:30px;

        }
        .btn_listing{
            bottom:0;

        }
    }
}


/**** COMMON ***/

h1, h2, h3, h4, h5, h6{
    strong, b{
        font-weight: 900;
    }
}

/**** FOOTER ****/
.link-footer a{
    color:#FCFCFC;
    &:hover{
        color:#F7BE00;
    }
}