/* BentonSans (footer only) — @font-face without the :root --primary-font override */
@font-face {
    font-family: 'BentonSans';
    src: url('../fonts/bentonsans/bentonsans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BentonSans';
    src: url('../fonts/bentonsans/bentonsans-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

#footer {
    background-color: var(--primary-color);
    color: #000;
}

#footer .school-info {
    padding: 30px 0;
}

#footer .school-info .container {
    justify-content: center;
}

#footer .footer-right {
    border:none;
    /* border-left: 1px solid #fff; */
    padding-left: 20px;
    margin-left: 20px;
}

#footer .footer-right p {
    font-family: 'BentonSans', sans-serif;
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
}

.footer-right .socials {
    margin-top: 15px;
}

#footer .school-info .social-links {
    max-width: 27px;
    width: 100%;
    display: inline-block;
    margin-right: 14px;
}

#footer .school-info .social-links img {
    width: 100%;
}

#footer .footer-copyright {
    background-color: #A71930;
    padding: 8px 0;
    text-align: center;
}
.footer-copyright .container{
    font-family: 'BentonSans', sans-serif;
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 10px;
}
#footer .footer-copyright a {
    font-family: 'BentonSans', sans-serif;
    color: #fff;
    text-decoration: underline;
}

.mobile-break {
    display: none;
}

@media screen and (max-width: 999px) {
    #footer .school-info .container {
        flex-direction: column;
    }

    #footer .footer-right {
        padding-left: 0;
        margin-left: 0;
        margin-top: 15px;
        border-left: none;
        text-align: center;
    }

    .mobile-break {
        display: block;
    }

    .footer-copyright span {
        line-height: 3px;
    }

    #footer {
        padding: 26px 0px;
        padding-bottom: 0px;
    }
}