#footer {
    background-color: var(--primary-color);
    color: #fff;
}

#footer .school-info {
    padding: 20px 0;
}

#footer .school-info .container {
    justify-content: center;
}

#footer .footer-right {
    border-left: 1px solid #fff;
    padding-left: 20px;
    margin-left: 20px;
}

#footer .footer-right p {
    font-size: 16px;
}

.footer-right .socials {
    margin-top: 15px;
    display: flex;
    gap: 24px;
}

#footer .school-info .social-links {
    max-width: 27px;
    width: 100%;
    display: inline-block;
}

#footer .school-info .social-links img {
    width: 100%;
}

#footer .footer-copyright {
    background-color: #0066B2;
    padding: 8px 0;
    text-align: center;
    font-size: 16px;
}

#footer .footer-copyright a {
    color: #fff;
    text-decoration: none;
}

#footer .footer-left img {
    width: auto;
    height: 100px;
}

@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;
    }
}

@media screen and (min-width: 999px) {

    #footer .footer-right,
    #footer .footer-left {
        width: 50%;
    }

    #footer .footer-left {
        justify-content: end;
    }
}


#scrollTop {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 5px;
    z-index: 9;
    text-indent: -9999px;
    background: url(/wp-content/themes/EddyEvolution/assets/img/svg/back-to-top.svg) no-repeat transparent;
    width: 59px;
    height: 65px;
    opacity: 1 !important;
    background-size: contain;
}


@media only screen and (min-width:1200px) {
    #scrollTop {
        right: 15%;
    }
}