.site-footer {
    position: relative;
    color: var(--light);
    padding: 4rem 0;
    background-size: cover;
    background-position: center center;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:not(.button) {
    border-bottom: 1px solid transparent;
}

.site-footer a:not(.button):hover {
    border-color: var(--light);
}

.site-footer .widget_heading {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--white);
}

.site-footer .widget_heading::after {
    content: "";
    display: block;
    height: 2px;
    width: 75%;
    background: var(--light);
    margin-top: 2rem;
}

.site-footer .widget_text {
    margin-top: 1rem;
}

.site-footer .footer-logo {
    width: 140px;
    margin: 4rem auto 0;
}

@media (min-width: 576px) {
    .site-footer .widget_heading {
        font-size: 3.75rem;
    }
}

@media(min-width: 768px) {
    .site-footer .widget_heading::after {
        margin-top: 2.5rem;
    }

    .site-footer .footer-logo {
        position: absolute;
        right: 2rem;
        bottom: 2rem;
        margin-top: 0;
    }
}

@media(min-width: 992px) {
    .site-footer {
        padding: 7.5rem 0 12.5rem;
    }

    .site-footer .widget_heading::after {
        margin-top: 3rem;
    }
}

@media(min-width: 1200px) {
    .site-footer .widget_heading::after {
        margin-top: 3.5rem;
    }
}