#hero_bg {
    background: url("../images/borrowers/about-hero-desktop.jpg") no-repeat scroll center center;
    background-size: cover;
}

.maincontent p:first-of-type {
    line-height: 36px;
}

#about_contact {
    display: grid;
    grid-template-columns: 50% 53%; /* Over 100% to add in spacing for long address */
}

#about_contactleft:first-child {
    margin-top: 25px;
}

#about_contactleft {
    padding-left: 30%;
}

#about_contactleft .large {
    width: auto;
    margin-top: 10px;
}

#about_contactright {
    border-left: solid 2px #F47A20;
    text-align: left;
}

#about_contactright table {
    padding-left: 15px;
}

#about_contactright img, #about_contactbelow img {
    width: 30px;
    padding: 15px;
}

.maincontent > h1 {
    margin-top: 60px;
}

#about_contactbelow {
    display: none;
    max-width: 600px;
    margin: auto;
}

#about_contactbelow p {
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    padding: 10px 0 0 0;
}

#about_contactbelow {
    border-top: solid 2px #F47A20;
}

#about_contactbelow img {
    padding: 15px 15px 15px 0;
}

@media (max-width: 750px) {
    #about_contact {
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 600px) {
    #about_contact {
        grid-template-rows: 34% 66%;
        grid-template-columns: unset;
    }
    #about_contactleft {
        padding: unset;
    }


    #about_contactright {
        display: none;
    }

    #about_contactbelow {
        display: block;
    }

    #about_contactbelow p, #about_contactbelow > p span {
        display: block;
    }

    #about_contactbelow img {
        padding: 15px 0 0 0;
    }

    #about_contactleft:first-child {
        margin-top: 0px;
    }

}

@media (max-width: 481px) {
#hero_bg {
    background-size: 850px;
    background-position: top;
}

}