/* Footer styles! */

footer {
    display: flex;
    flex-direction: column;
}
footer, footer > * > *, footer > * > * > *> *{
    background-color: #505050;
    color: #ffffff;
}

.footer-main-banner {
    display: flex;
    justify-content: space-between;
    padding: 50px 100px;
    border-bottom: 1px solid #edefef;
}

.footer-copyright-banner {
    display: flex;
    justify-content: center;
    padding: 0px 100px;
    font-style: italic;
}

.partner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.partner-container img {
    width: 150px;
    padding: 0 10px;
}

.socials-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
}

.social-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

h5 {
    margin: 0;
}

.socials {
    margin: 10px 0;
}

#call-box a {
    padding: 20px 0;
}

.socials a img {
    width: 30px;
    border-radius: 5px;
    transition: ease-in-out .2s;
}

.socials a img:hover {
    background-color: #494949;
}



@media (max-width: 1200px) {

    footer {
        flex-wrap: nowrap !important;
    }
    .footer-main-banner {
        flex-direction: column;
        padding: 5% 10% !important;
    }
    .socials-container {
        margin-top: 10px;
        flex-direction: column;
        width: 100% !important;
    }
    .socials a img {
        width: 40px !important;
        margin: 0 20px !important;
    }
    .social-box h5 {
        font-size: 20px !important;
        text-align: center;
    }
    .partner-container {
        justify-content: center !important;
    }
}