footer {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    bottom: 0;
    color: rgba(241, 241 ,241 , 0.65);
}

footer .container .footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: flex-end;
}

footer p {
    margin: 0.25rem 0 0 0;
}
footer a {
    color: rgba(241, 241 ,241 , 0.5);
}

footer p.text-center {
    float: right;
    text-align: right;
}


footer p.btt::before {
    content: '';
    position: relative;
    height: 2rem;
    width: 100%;
    top: 0;
    left: 0;
    display: inline-block;
    z-index: -1;
    background: url("../img/arrow-up-square.svg") no-repeat center;
    background-size: contain;
}

.footer-nav iframe.site-links-frame {
    display: none;
}

.footer-nav div.open-close {
    display: none;
}

.footer-nav.active div.open-close {
    display: inline-block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: rgba(34,25,18,0.85);
    z-index: 1;
    border: 0;
}

.footer-nav.active iframe.site-links-frame {
    display: inline-block;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    height: 78vh;
    width: 80vw;
    z-index: 10;
    border: 0;
}

@media (min-width: 768px) {
    footer .container .footer-inner {
        display: flex;
        flex-direction: row;
        align-content: center;
        width: 100%;
    }

    footer .container .footer-inner > div{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }


    footer .back-to-top {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 0;
    }
}

