.bandeau {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0 20px 0;
    font-size: 13px;
}

.section {
    flex-basis: 30%;
    /* Ajuster la largeur selon vos besoins */
    text-align: center;
}

.icone img {
    width: 50px;
    /* Ajuster la taille de l'icône selon vos besoins */
    height: auto;
}

.description p {
    margin-top: 10px;
    /* Espace entre l'icône et la description */
}

.description p a {
    color: #f00 !important;
}


/* Media query pour les écrans de taille téléphone */

@media (max-width: 800px) {
    .section3 {
        visibility: hidden !important;
    }
    .section1 {
        visibility: hidden !important;
    }
}

.container_footer {
    width: 90%;
    margin: 0 auto;
}

footer {
    background-color: rgb(45, 45, 45);
    color: #fff;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
}

.footer-image {
    flex: 1;
    margin-right: 20px;
}

.footer-image img {
    max-width: 100%;
    height: auto;
}

.footer-text {
    flex: 1;
    margin-right: 20px;
}

.footer-text p:first-child {
    font-weight: bold;
}

.footer-text p:nth-child(2) {
    text-align: center;
    font-size: 10px;
}

.footer-menu {
    flex: 1;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-menu ul li a:hover {
    color: #f00;
}

@media screen and (max-width: 799px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-text p {
        font-size: 12px;
    }
}

@media screen and (min-width: 801px) {
    .footer-menu ul {
        display: flex;
        justify-content: space-evenly;
    }
}