.site-footer {
    width: 100%;
    position: relative;
    bottom: 0;
    z-index: 100;
    text-decoration: none;
}

.site-footer .footer {
    border-top: unset;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    z-index: 10;
    transform: translateY(0);
    transition: all .25s ease-in-out;
    position: fixed;
    bottom: 0;
    box-shadow: 0 1em 2em rgba(0, 0, 0, .16);
}

.site-footer .desktop {
    display: block;
}

.site-footer .mobile {
    width: 100vw;
    display: none;
}

@media (max-width: 50.625em) {
    .site-footer .mobile {
        display: block
    }

    .site-footer .desktop {
        display: none
    }
}

.mobile-container {
    display: flex;
    align-content: center;
    justify-content: flex-end;
    max-width: 50.625em;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.desktop .container {
    max-width: 71.25em;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.desktop .row {
    display: flex;
    flex-wrap: wrap;
}

.desktop .button {
    color: #1A3967;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 1.5em 0;
    position: relative;
    transition: all .25s ease-in-out;
    letter-spacing: .02em;
    line-height: 1.875;
    flex-shrink: 1;
    text-decoration: none;
}

.desktop .button::after {
    background: transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 0.125em;
    left: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(0) translateY(0);
    transition: .2s ease-in-out;
    width: calc(100% + 17px);
}

.desktop .button:hover {
    color: #ed7f22;
}

.desktop .nav-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    width: 100%;
}

.desktop .nav-wrapper span {
    width: 2px;
    height: 2em;
    margin: 1em 0;
    background: #1A3967;
    border-radius: 0.1875em;
    display: block;
    flex-shrink: 1;
}
