.page-footer {
    display: flex;
    width: 100%;
    background-image: url('/res/Forest.jpg');
    background-color: #3D5C41;
    position: relative;
    padding-top: 6rem;
    padding-bottom: 2rem;
    justify-content: center;
    align-content: flex-start;
    color: #F9F9F9;
    flex-wrap: wrap;
    overflow: hidden;
}

.page-footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    width: 0;
    margin-left: -32rem;
    border-style: solid;
    border-width: 4rem 32rem;
    border-color: #F9F9F9 transparent transparent transparent;
}

.footer-contact, .quicklinks {
    flex: 0 1 auto;
    width: 32rem;
    padding: 0 4rem;
    padding-bottom: 1rem;
}

.footer-contact {
    text-align: left;
}

.quicklinks {
    text-align: right;
}

.footer-quicklinks {
    list-style: none;
}

.footer-quicklinks > li {
    margin: 0.25rem 0;
}

.footer-quicklinks > li > a {
    padding: 0.125rem 0;
}

.footer-contact > p {
    margin: 0.25rem 0;
}


@media screen and (max-width: 65rem) {

    .footer-contact, .quicklinks {
        text-align: center !important;
    }
    
}