#footer {
    --color: var(--color-primary);
    transform: scale3d(1, 1, 1);
    margin-top: -70px;
}

#footer h4 {
    margin-bottom: 40px;
}

#footer > img {
    display: block;
}

#footer > img:first-of-type:not(:last-of-type){
    transform: scaleX(-1);
}

#footer-main {
    background-color: #F0F8FF;
}

#footer-school {
    background-color: #8DCAFF;
    margin-bottom: -200px;
    padding: 40px 0 240px 0;
    color: var(--color-white);
}

#footer-school a:not(.button) > span:after {
    border-color: var(--color-white);
}

#footer-logo img {
    width: 134px;
    height: auto;
}

#footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer ul li:not(:last-of-type){
    margin-bottom: 20px;
}

#footer-bottom {
    font-weight: 300;
    font-size: 14px;
    padding: 60px 0 80px 0;
}

#footer-bottom .col:last-of-type {
    text-align: right;
}


#footer .social-media-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

#footer .social-media-list li:not(:last-of-type){
    margin-right: 20px;
}

#footer .social-media-list a,
#sticky-contact a,
#back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-secondary);
    border-radius: 100%;
    transition:
        all 250ms ease-in-out,
        transform 250ms cubic-bezier(0.5, 0.25, 0.5, 2)
    ;
    font-size: 20px;
    transform: scale(1.001);
    border: 0 solid var(--color-primary);
    box-sizing: border-box;
}

#footer .social-media-list a span {
    display: none;
}

#sticky-contact a,
#back-to-top a {
    background-color: var(--color-white);
    position: relative;
}

#sticky-contact a.alt-sticky-contact {
    background-color: var(--color-primary);
    color: var(--color-white);
}

#footer .social-media-list a:hover,
#sticky-contact a:hover,
#back-to-top a:hover {
    border-width: 22.5px;
    color: var(--color-white);
    transform: scale(1.2);
}

#sticky-contact a span {
    display: none;
}

#sticky-contact {
    position: fixed;
    left: 0;
    top: 25%;
    background-color: var(--color-secondary);
    border-radius: 0 25px 25px 0;
    padding: 10px;
    z-index: 4;
}

#sticky-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#sticky-contact ul li:not(:last-of-type){
    margin-bottom: 10px;
}

#sticky-contact a label {
    position: absolute;
    white-space: nowrap;
    left: calc(100% - 10px);
    background-color: inherit;
    padding: 4px 7px 4px 30px;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 200ms ease-in-out;
    font-size: 14px;
    color: var(--color-primary);
}

#sticky-contact a:hover label {
    transform: scaleX(1);
    transition:
        all 200ms ease-in-out,
        transform 300ms cubic-bezier(0.5, 0.25, 0.5, 1.5)
    ;
    color: var(--color-white);
}

#sticky-contact a i {
    position: relative;
    z-index: 2;
}

#back-to-top {
    position: absolute;
    bottom: 0;
    right: 30px;
    background-color: var(--color-primary);
    border-radius: 25px 25px 0 0;
    padding: 10px;
    z-index: 4;
}

#back-to-top i {
    transform: rotate(-90deg);
}

#footer-main .menu-footermenu-container {
    column-count: 2;
}

#footer-logo {
    position: relative;
    z-index: 10;
}

#footer-school #menu-footermenu {
    column-count: 2;
}