footer {
    border-radius: 4.6vh 4.6vh 0 0;
    padding: 0 7.9vh 0 7.9vh;
    position: relative;
    z-index: 2;
}

footer .logo {
    width: 13.12vw;
    height: 5.46vh;
    pointer-events: none;
    margin-bottom: 6.9vh;
}

footer h2 {
    font-family: Avenir;
    font-size: 2.59vh;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
}

footer input {
    color: white;
    font-family: Avenir;
    font-size: 2.31vh;
    font-weight: 500;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    padding: 1.4vh 0;
    margin-right: 3.75vw;
    width: 26.25vw;
    margin-top: auto;
}

footer input::placeholder {
    opacity: 0.5;
    color: white;
}

footer input:focus {
    outline: none;
}

footer .newsletter {
    display: flex;
    justify-content: space-between;
}

footer a#subscribe {
    font-family: Avenir;
    font-weight: 500;
    font-size: 2.5vh;
    color: white;
    width: 30.5vw;
    height: 9.2vh;
    border: 1px solid white;
    border-radius: max(30.5vw, 9.2vh);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

footer a#subscribe:hover {
    background-color: white;
    color: #A6A2FF;
}

footer .newsletter > div > div a,
footer .newsletter > div > div {
    font-size: 0.73vw;
    color: white;
    font-family: Avenir;
    font-weight: 500;
}

footer .newsletter > div > div {
    margin-top: 1em;
}

footer .contact {
    margin-top: 5.55vh;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

footer .contact h2 {
    font-family: Avenir;
    font-size: 1.48vh;
    font-weight: 900;
    color: white;
}

footer .contact > div {
    font-family: Avenir;
    font-size: 1.48vh;
    font-weight: 500;
    color: white;
}

footer .contact > div:nth-child(2) a {
    font-family: Avenir;
    text-decoration: none;
    display: block;
    font-size: 1.48vh;
    font-weight: 500;
    color: white;
}

footer .lower {
    background: black;
    font-family: Avenir;
    font-size: 1.2vh;
    font-weight: 500;
    margin-left: -7.9vh;
    margin-right: -7.9vh;
    padding: 2.96vw;
    color: #777;
    display: flex;
    justify-content: space-between;
}

footer .lower a {
    text-decoration: none;
    color: #777;
}

footer .lower > :last-child {
    width: 42vh;
    text-align: right;
}

footer .lower .links {
    margin-top: 1em;
}

footer .logos {
    display: flex;
    align-items: center;
}

footer .logos > img,
footer .logos > a img {
    height: 9.25vh;
    width: auto;
    margin-right: 4vh;
}

/* Logo coop blanc */
footer .logos > img:first-child {
    height: 7vh;
}

@media(max-width: 992px) {
    footer .logos {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .newsletter {
        flex-direction: column;
    }

    footer .logo {
        width: 100%;
        height: 7.46vh;
        margin-bottom: 4vh;
    }

    footer input {
        width: auto;
    }

    footer a#subscribe {
        width: auto;
        margin-top: 1em;
    }

    footer .newsletter > div > div a, footer .newsletter > div > div {
        font-size: 2vh;
    }

    footer .logos > img,
    footer .logos > a img {
        height: 5vh;
        margin-right: 2vh;
    }
}