/* General Footer Styles */
.rs-footer {
    background: #1b1b1b;
    color: #ffffff;
    padding: 50px 0;
    font-family: 'Open Sans', sans-serif;
}

.rs-footer .footer-logo-wrap {
    margin-bottom: 20px; /* Ajoute de l'espace sous le logo */
}

.rs-footer .textwidget {
    margin-top: 20px; /* Ajoute de l'espace au-dessus du texte */
}

.rs-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rs-footer a:hover {
    color: #2C5CD4;
}


.rs-footer .footer-top .row > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



.rs-footer .footer-title {
    margin-bottom: 20px; 
    font-size: 20px; 
    color: #ffffff;
    position: relative;
}


.rs-footer .fa-ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-left: 0;
}

.rs-footer .fa-ul li {
    display: flex;
    align-items: center; 
    margin-bottom: 10px; 
}


.rs-footer .fa-ul li i {
    color: #2C5CD4;
    font-size: 18px; 
    margin-right: 10px; 
}

.rs-footer .fa-ul li a {
    color: #ffffff;
    text-decoration: none;
}

.rs-footer .fa-ul li a:hover {
    color: #2C5CD4;
}


.rs-footer .footer-top .widget {
    margin-bottom: 40px;
}

.rs-footer .footer_social {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

.rs-footer .footer_social li {
    display: inline-block;
}

.rs-footer .footer_social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px; 
    background-color: #2C5CD4;
    color: #ffffff;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.rs-footer .footer_social li a i {
    font-size: 18px; 
}

.rs-footer .footer_social li a:hover {
    background-color: #ffffff;
    color: #2C5CD4;
    transform: scale(1.1); 
}

/* Flexbox Layout */
.footer-top .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-top .col-lg-4 {
    flex: 1 1 30%;
    max-width: 30%;
}

.footer-bottom {
    background: #151515;
    padding: 20px 0;
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    border-top: 1px solid #333333;
}

.footer-bottom .copyright {
    margin-bottom: 0;
}

.footer-bottom .menu {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.footer-bottom .menu li {
    display: inline;
}

.footer-bottom .menu li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-bottom .menu li a:hover {
    color: #2C5CD4;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .footer-top .col-lg-4 {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }
    .footer_social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 16px;
    }
    .footer-bottom .menu {
        flex-direction: column;
    }
    .footer-bottom .menu li {
        margin-bottom: 10px;
    }
}
