/* Footer */
footer {
    padding: 5rem 0 6rem;
}
.footer-wrap {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 2.1rem auto 1fr 2rem;
}
.footer-logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.footer-logo:focus {
    outline: 2px solid #fff;
    outline-offset: 4px;
    border-radius: .4rem;
}
.footer-wrap .heading {
    font-weight: 700;
    color: #FFFFFF80;
    margin-bottom: 0.5rem;
}
.footer-wrap .head {
    font-size: 5rem;
    font-weight: 700;
    line-height: 6rem;
    margin: 5rem 0 0;
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}
.footer-wrap .social-links {
    display: flex;
    list-style: none;
    padding-left: 0;
    gap: 15px;
    margin: 4rem 0 5rem;
    grid-column: 1 / 4;
    align-items: center;
    grid-row: 3 / 4;
}
.footer-wrap .social-links i {
    width: 40px;
    height: 40px;
    display: block;
    border: 1px solid;
    border-radius: 50%;
    font-style: normal;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dark-bg .social-links a {
    border-color: var(--neutral-100);
    color: var(--neutral-100);
    display: inline-block;
}
.dark-bg .social-links a:focus-visible {
    outline: 2px solid var(--chambray-blue-400);
    outline-offset: 4px;
    border-radius: 8px;
}
.dark-bg .social-links a:focus:not(:focus-visible) {
    outline: none;
}
.dark-bg .social-links a:hover i {
    background-color: #ffffff14;
    color: #ffffff14;
}
.facebook::before {
    display: inline-block;
    width: 11px;
    height: 21px;
    content: var(--facebook);
}
.linkedin::before {
    content: var(--linkedin);
    display: inline-block;
    width: 18px;
    height: 19px;
}
.glassdoor::before {
    content: var(--glassdoor);
    display: inline-block;
    width: 15px;
    height: 20px;
}
.instagram::before {
    content: var(--instagram);
    display: inline-block;
    width: 18px;
    height: 19px;
}
.copyright {
    color: #ffffff80;
    grid-column: 1 / 5;
    grid-row: 4 / 5;
}
.mid-column {
    grid-column: 6 / 9;
    grid-row: 1 / 5;
}
.hq {
    font-weight: 500;
}
.office-location+.office-location {
    margin-top: 1.5rem;
}
.office-location a,
.page-links a {
    transform: translateX(-1rem);
}
.end-column {
    grid-column: 10 / 13;
    grid-row: 1 / 5;
}
.contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tel {
    display: inline-flex;
    color: var(--neutral-100);
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}
.email {
    display: inline-flex;
    color: var(--neutral-100);
    font-size: 1.4rem;
    line-height: 2rem;
}
.email:hover,
.email:focus {
    text-decoration: underline;
}
.page-links {
    margin-top: 3rem;
    display: inline-flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    footer {
        padding: 3rem 0 3rem;
    }
    .footer-wrap {
        grid-template-columns: repeat(1, auto);
        grid-template-rows: repeat(6, auto);
    }
    .footer-logo {
        grid-column: unset;
        grid-row: 1 / 2;
    }
    .footer-wrap .head {
        font-size: 2.4rem;
        line-height: 3.125rem;
        margin: 1.6rem 0 3rem;
        grid-column: unset;
        grid-row: 2 / 3;
    }
    .footer-wrap .social-links {
        grid-column: unset;
        grid-row: 5 / 6;
        margin: 4rem 0 3rem;
    }
    .copyright {
        grid-column: unset;
        grid-row: 6 / 7;
    }
    .mid-column {
        grid-column: unset;
        grid-row: 3 / 4;
        margin-bottom: 3rem;
    }
    .end-column {
        grid-column: unset;
        grid-row: 4 / 5;
    }
    .office-location a,
    .page-links a {
        margin-bottom: 1rem;
    }
}