
/*FOOTER*/

footer {
    background: #16222A;
    background: -webkit-linear-gradient(59deg, #3A6073, #16222A);
    background: linear-gradient(20deg, #436a7e,20%, #0f1c25);
    color: white;
    display:flex;
    width: 100%;
}
.footer-content{
    display: flex;
    flex-wrap: wrap;
}
.footer-content .info{
    width:30%;
    height: max-content;
}
.footer-content .actus{
    width: 30%;
}
.footer-content .rapido{
    width: 20%;
}
footer .contact{
    width:20%;
}
.footer-content .bloc{
    padding-right: 15px;
}

footer .bloc .titre{
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
}
footer .bloc .titre::after{
    content: "";
    width: 100px;
    height: 3px;
    background-color: orange;
    position: absolute;
    display: flex;
    margin-top: 10px;
}
/*  */
footer .footer-content hr{
    margin: 13px 0px;
    border: 1px dashed gray;
}

footer .info img{
    width: 180px;
    margin-bottom: 10px;
}
footer .info h4{
    font-size: 16px;
    color: orange;
}
footer .info p{
    margin: 5px 0px;
}
footer .info .rsociaux{
    margin-top: 10px;
}
footer .rsociaux > h4 {
    font-size: 16px;
    color: white;
}
footer .rsociaux ul{
    width: max-content;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
}
footer .rsociaux li{
    width: 30px; height: 30px;
    padding: 5px;
    background-color: whitesmoke;
    border-radius: 50%;
    color:var(--color-movelight);
}
footer .rsociaux li a{
    color: var(--color-mainstrong);
    font-size: 18px;
    display: flex;
    margin: auto;
}
footer li:hover{
    color:var(--color-white);
}
footer .rsociaux li:hover{
    color:var(--color-orange);
}

.footer-content ul{
    list-style: none;
    display: flex;
    flex-direction: column;
}
.footer-content ul li{
    font-size: 16px;
    color: rgb(238, 238, 238);
}
.footer-content .actus ul li{
    font-size: 14px;
}
  
footer .bas{
    width: 100%;
    padding: 20px 0px;
}
footer .bas hr{
    border: 1px solid rgb(124, 123, 123);   
}
footer .bas p{
    font-size: 13px;
    margin-top: 10px;
    text-align: right;
    color:rgb(172, 172, 172);
}

/* ============================================ */
@media screen and (max-width: 768px){
    .footer-content{
        flex-wrap: wrap;
    }
    .footer-content .bloc{
        width: 50%;
    }
    .footer-content .info{
        margin-bottom: 30px;
    }
}
/* ---------------------------------- */
@media screen and (max-width: 425px){
    .footer-content{
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-content .bloc{
        width: 100% !important;
    }
    .footer-content .info{
        margin-bottom: 0px;
    }
    .footer-content .bloc .titre{
        margin-bottom: 30px;
    }
}
/* ------------------- */
@media screen and (max-width: 375px){

}
/* --------------------- */
@media screen and (max-width: 320px){

}