
footer {
    color: var(--white);
}

footer .footer-logo {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/static/img/logo-inverted.png');
    height: 50px;
    width: 120px;
}

footer .top h2 {
    margin-top: 0;
}

footer .top {
    background-color: var(--indigo-dye);
    padding: 60px 0;
}

footer .top .max-width {
    display: flex;
}

footer .top .max-width .side {
    width: 100%;
}

footer .bottom {
    background-color: var(--prussian-blue);
    padding: 12px 0;
}

footer .bottom .max-width {
    display: flex;
}

footer .bottom .max-width .footer-item {
    margin: 0 75px 0 0;
}

footer .bottom .max-width .footer-item:last-of-type {
    margin: 0 0 0 auto;
}

footer .bottom .max-width .footer-item span,
footer .bottom .max-width .footer-item a {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
    margin: 0 0 0 50px;
    transition: 0.2s;
}

footer .bottom .max-width .footer-item span {
    margin: 0;
}

footer .bottom .max-width .footer-item a:hover {
    opacity: 1;
    transition: 0.2s;
}

footer .side .form {
    display: flex;
}

footer .side .form input {
    background: var(--cultured);
    border: none;
    font-size: 16px;
    margin: 0;
    padding: 10px 15px;
    width: calc(100% - 30px);
}

footer .side .form .button {
    font-size: 16px;
}

footer .mob {
    display: none;
}

footer .desk {
    display: block;
}


@media (max-width: 700px) {
    footer .side .form {
        display: block;
    }

    footer .side .form .button {
        width: 100%;
    }

    footer .top .max-width,
    footer .bottom .max-width {
        display: block;
    }

    footer .bottom .max-width .footer-item a {
        margin: 18px 0;
        display: block;
    }

    footer .top {
        background-color: var(--indigo-dye);
        padding: 36px 0;
    }

    footer .top .footer-logo {
        display: none;
    }

    footer .mob {
        background-color: var(--rich-black);
        display: block;
        font-size: 12px;
        padding: 9px 18px;
        opacity: 0.7;
    }

    footer .desk {
        display: none;
    }

    footer .bottom {
        padding-bottom: 0;
    }

}
