#section_actualites {
    position: relative;
    width: 100%;
    padding: 150px 0;
}
#section_actualites::before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('/images/slide-01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1 !important;
    content: '';
}
#section_actualites::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(250, 250, 250, 0.92);
    background-size: cover;
    background-position: center;
    z-index: 2 !important;
    content: '';
}
#section_actualites .wrapper {
    position: relative;
    width: 1060px !important;
    width: 100%;
    margin: auto !important;
    z-index: 5;
}
#section_actualites .wrapper .title{
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}
#section_actualites .wrapper .title h2{
    position: relative;
   font-size: 30px;
   font-weight: 600;
   color: var(--noir);
   margin-bottom: 10px;
   text-transform: uppercase;
}
#section_actualites .wrapper .title p{
    position: relative;
    font-size: 13px;
}
#section_actualites .wrapper #owl_actualites .item {
    width: 100%;
    position: relative;
    background-color: rgb(245, 245, 245);
}
#section_actualites .wrapper #owl_actualites .item a {
    position: relative;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 100%;
    height: auto;
    min-height: 350px;
    overflow: hidden;
    border-radius: 5px;
    text-decoration: none;
    transition: ease all 0.3s;
}


#section_actualites .wrapper #owl_actualites .item a .inner {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 5px solid var(--bleu);
    overflow: hidden;
    transition: ease all 0.3s;
}
#section_actualites .wrapper #owl_actualites .item a:hover .inner {
    border-bottom: 2px solid var(--orange);
}
#section_actualites .wrapper #owl_actualites .item a .inner::after {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-color: rgba(1, 48, 109, 0.2);
    z-index: 2;
    transition: ease all 0.3s;
}
#section_actualites .wrapper #owl_actualites .item a:hover .inner::after {
    background-color: rgba(1, 48, 109, 0.4);
}

#section_actualites .wrapper #owl_actualites .item a .inner img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out;
}
#section_actualites .wrapper #owl_actualites .item a:hover .inner img {
    transform: scale(1.03) rotate(1deg);
}

#section_actualites .wrapper #owl_actualites .item a .inner .date {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    background-color: var(--bleu);
    color: var(--blanc);
    font-size: 12px;
    padding: 5px 10px;
    z-index: 3;
}
#section_actualites .wrapper #owl_actualites .item a .caption {
    position: relative;
    width: 100%;
    min-height: 120px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: rgba(248, 248, 248, 0.3);
    transition: ease 0.3s all;
}
#section_actualites .wrapper #owl_actualites .item a:hover .caption{
    background-color: var(--bleu);
}
#section_actualites .wrapper #owl_actualites .item a .caption h2 {
    position: relative;
    text-align: left;
    font-size: 20px;
    color: var(--noir);
    font-weight: 600;
    transition: all 0.3s ease-in;
    text-transform: uppercase;
}
#section_actualites .wrapper #owl_actualites .item a:hover .caption h2 {
    position: relative;
    color: var(--orange);
}
#section_actualites .wrapper #owl_actualites .item a .caption p{
    position: relative;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    color: var(--noir);
    text-transform: capitalize;
    transition: all 0.3s ease-in;
}
#section_actualites .wrapper #owl_actualites .item a:hover .caption p {
    color: rgb(236, 236, 236);
}


#section_actualites .wrapper #owl_actualites .owl-dots{  /** Les controles **/
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    bottom: -33px;
    left: 48%;
}
#section_actualites .wrapper #owl_actualites .owl-dots button{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--bleu-clair);
    margin: 5px;
    
    display: flex;
    justify-content: center;
    align-items: center;

    color: rgba(1, 48, 109, 0.0);
}
#section_actualites .wrapper #owl_actualites .owl-dots button span{
    color: rgba(1, 48, 109, 0.0) !important;
    background-color: rgba(1, 48, 109, 0.0) !important;
}
#section_actualites .wrapper #owl_actualites button.owl-dot.active{
    background-color: var(--bleu) !important;
}



