footer {
    padding: 2rem 0 0 0;
    background-color: var(--bleubeaver);
    color: var(--blanc);
    text-align: left;
    overflow: hidden;
    font-size: 0.85rem;
    position: relative;
}

footer .une {
    padding-bottom: 2.5rem;
}

footer .inner {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 1920px;
    margin: 0 auto;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .menu-bas-footer-container {
    text-align: center
}

footer .menu-bas-footer-container ul {
    flex-direction: column;
    display: flex;
    justify-content: center;
}

footer .menu-bas-footer-container ul li {
    text-transform: uppercase;
    border-bottom: 1px solid var(--bleubeaver);
}

footer .menu-bas-footer-container ul li a {
    display: block;
    padding: 1rem;
}

footer img.logo {
    width: 80%;
    max-width: 225px;
    margin-bottom: 1.5rem;
}

footer .ttl {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

footer .ttl.lower {
    text-transform: none;
    margin-bottom: 0.5rem;
}

footer .menu-complements-container ul li a, footer .menu-besoins-container ul li a {
    color: var(--blanc);
    display: block;
    padding: 0.25rem 0;
}

footer .menu-complements-container ul li a:hover, footer .menu-besoins-container ul li a:hover {
    color: var(--grisclair);
}

footer .mentions {
    padding: 1.5rem 0;
}

footer .mentions a {
    color: var(--blanc)
}

footer .mentions a:hover {
    color: var(--grisclair);
}

footer .paiement {
    padding: 1rem;
    text-transform: uppercase;
}

footer .paiement img {
    height: 35px;
    width: auto;
    margin: 5px;
}

footer .rezos p {
    margin-bottom: 0.5em;
}

.rezos a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-left: 0.5rem;
    opacity: .8;
}

.rezos a:hover {
    opacity: 1;
}

.rezos a img {
    width: 100%;
    height: auto;
}

.navigation-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bleubeaver);
    color: var(--blanc);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    z-index: 998;
    overflow: auto;
}

.navigation-mobile.opened {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.navigation-mobile .inner {
    padding: 180px 10% 1rem 10%;
}

.navigation-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation-mobile ul li {
    display: block;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid var(--blanc);
}

.navigation-mobile ul li a {
    color: var(--blanc);
    display: block;
    padding: 1rem 0;
}

.navigation-mobile ul ul.sub-menu.first {
    display: none;
    margin-bottom: 1rem;
}

.navigation-mobile ul ul.sub-menu li {
    border-bottom: 0;
    text-transform: none;
}

.navigation-mobile ul ul.sub-menu li a {
    padding: 0.5rem 0;
}

#comptes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--blanc);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

#comptes li {
    flex: 0 1 100%;
    border-bottom: 1px solid var(--bleubeaver);
    text-align: center;
}

#comptes li:last-child {
    border-bottom: none;
}

#comptes li a {
    color: var(--bleufonce);
    display: block;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 10;
}

#comptes li a .picto {
    width: 30px;
    margin: 0 auto;
    background-position: center top;
    background-size: 28px;
    background-repeat: no-repeat;
}

#comptes li a .intitule {
    font-size: 0.8rem;
}

#comptes li.cpt a span.picto {
    background-image: url(img/cpt.svg);
}

#comptes li.cptpro a span.picto {
    background-image: url(img/cptp.svg);
}

#menu-bas-mobile {
    margin: 1rem 0 0 0;
}

#menu-bas-mobile li {
    border-bottom: none;
    font-weight: bold;
}

#comptes li {
    flex: 0 1 33.333%;
    border-left: 1px solid var(--bleubeaver);
    border-bottom: none;
}

#comptes li:last-child {
    border-right: inherit;
}

#comptes li:first-child {
    border-left: inherit;
}


@media screen and (min-width: 800px) {
    footer .menu-bas-footer-container ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    footer .menu-bas-footer-container ul li {
        border-bottom: none;
    }
}

@media screen and (min-width: 1440px) {
    .navigation-mobile {
        display: none;
    }
}

@media screen and (min-width: 1440px) {
    footer {
        padding-top: 2.5rem;
    }
}