footer {
    border-top: 1px solid #99A1B7;
    background: #fff;
}
footer > .wrapper {
    display: flex;
    padding: 30px 20px;
    justify-content: space-between;
    align-items: center;
}
footer .links {
    display: flex;
    flex-wrap: wrap;
}
footer .social-icons {
    display: flex;
    flex-direction: column;
}
footer a {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}
footer .links a {
    flex-basis: 50%;
}
footer a .fab {
    color: #0E5484;
    font-size: 20px;
    margin-right: 6px;
}
footer .copy {
    background: #108418;
    padding: 12px 0;
}
footer .copy .wrapper {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}
footer .info {
    font-size: 12px;
    padding: 10px 0;
}
#call-us {
    position: fixed;
    bottom: 0;
    right: 10px;
    background: #b809bf;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px 4px 0 0;
    z-index: 999;
}
#call-us a {
    color: #fff;
}
#call-us .fas {
    margin-right: 10px;
    transform: rotate(100deg);
}

@media (max-width: 1000px) {
    footer > .wrapper {
        flex-wrap: wrap;
    }
    footer .logo {
        flex-basis: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}
@media (max-width: 600px) {
    footer .links {
        flex-basis: 100%;
    }
    footer .social-icons {
        flex-basis: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 30px;
    }
}
