footer {
    background-color: #1D78C5;
    width: 100%;
    color: #FFFFFF;
    padding: 3em 4em 0;
}

footer, footer p, footer input, #newsletter {
    font-family: 'Avenir Light';
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer__contact-socials picture {
    width: 20px;
    height: 20px;
}

.footer__contact-socials picture img {
    object-fit: cover;
}

.footer__container, 
.footer__block-contact, 
.footer__contact-infos, 
.rights__container, 
.footer__contact-location, 
.footer__contact-socials {
    display: flex;
}

.footer__container, .footer__block-contact {
    justify-content: space-between;
}

.footer__contact-socials {
   gap: 1.5em;
}

.footer__block-contact, .footer__contact-infos {
    flex-flow: column;
}

.footer__block-contact, .footer__block-img, .footer__block-infos {
    flex: 1;
}

.footer__block-infos {
    padding-left: 2em;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.footer__block-infos div p {
    margin-bottom: 0;
}

.footer__block-img {
    display: flex;
    justify-content: center;
}

.footer__contact-infos {
    gap: 1.5em;
    padding-left: 0;
}

.footer__contact-infos, .footer__contact-location, .rights__container, .footer__block-infos {
    font-family: 'Avenir Light' !important;
}

.footer__contact-infos a:hover {
    color: #FD941E;
    transition: color 0.5s ease;
}

.footer__contact-location {
    gap: .5em;
}

.footer__contact-location img {
    width: 1.5em;
    height: 1.5em;
}

.footer__infos-cpmt, .footer__infos-cnesst {
    display: flex;
    flex-flow: column;
    text-align: center;
    align-items: center;
}

.rights__container {
    justify-content: center;
    align-items: center;
    padding: 1em;
}

.rights__container p {
    font-size: 12px;
}

/* Formulaire d'infolettre */

.footer__infos-newsletter form {
    display: flex;
    flex-flow: column;
    gap: 0.5em;
}

.footer__infos-newsletter form input[type="email"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    background-color: transparent;
}

.footer__infos-newsletter form input[type="email"], .footer__infos-newsletter form input::placeholder, .footer__btn {
    color: #FFFFFF;
}

.footer__infos-newsletter form input::placeholder {
    font-size: 14px;
    font-family: 'Avenir Light';
}

.footer__btn {
    background-color: #FD941E;
    border: none;
    border-radius: 8px;
    padding: 0.7em 2em;
    font-size: 14px;
    width: 125px;
    font-family: 'Avenir';
}

/* Footer responsive */

@media screen and (max-width: 700px) {
    .footer__container {
        flex-flow: column;
    }
    .footer__block-img {
        display: none;
    }
    .footer__block-contact {
        padding-bottom: 3em;
    }
    .footer__block-contact, .footer__block-infos {
        gap: 1em;
    }
    .footer__block-infos {
        padding-left: 0;
    }
    .footer__infos-cpmt, .footer__infos-cnesst {
        align-items: flex-start;
    }
    .footer__infos-cnesst p {
        width: 100%;
        text-align: left;
        align-items: center;
    }

}

/* Scroll to the top */
.scrollTop__img-container {
    width: 4em;
    height: 4em;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.scrollTop__img-container svg {
    object-fit: cover;
}

.scrollTop__img-container svg:hover path {
    fill: #0264b5;
    transition: fill 0.5s ease;
}

/* Scroll to the top responsive */

@media screen and (max-width: 700px) {
    .scrollTop__img-container {
        width: 3em;
        height: 3em;
    }
}