footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
}

footer .footer-content {
    height: 160px;
    display: flex;
    justify-content: center;
    background-color: #FFF6F2;
    color: #918F92;
}

footer .footer-content .footer-content-wrapper {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    width: 90%;
}
footer .footer-content .footer-content-wrapper .footer-definition-items {
    text-transform: uppercase;
    font-size: 11px;
}

footer .footer-content .footer-content-wrapper .footer-definition-items img {
    width: 150px;
}

footer .footer-content .footer-content-wrapper .footer-definition-items ul {
    list-style: none;
    margin: 0;
}

footer .footer-content .footer-content-wrapper .footer-definition-items ul li {
    padding-bottom: 3px;
    font-family: Helvetica, sans-serif, Arial;
    letter-spacing: 0;
}

footer .footer-content .footer-content-wrapper .footer-definition-items ul li a {
    color: #918F92;
    font-family: Helvetica, sans-serif, Arial;
    letter-spacing: 0;
}

footer .footer-content .footer-content-wrapper .footer-definition-items ul .item-header {
    font-weight: bold;
    font-size: 14px;
    padding-bottom: 5px;
} 

footer .footer-content .footer-content-wrapper .footer-definition-items ul li.item-header a  {
    font-family: 'Baloo' !important;
}

footer .footer-content .footer-content-wrapper .footer-definition-items .footer-social-media-content {
    padding-left: 40px;
    font-size: 14px;
    font-weight: bold;
    color: #921119;
}

footer .footer-content .footer-content-wrapper .footer-definition-items .footer-social-media-content .social-media-title {
    letter-spacing: 0;
}

footer .footer-content .footer-content-wrapper .footer-definition-items .footer-social-media-content .footer-social-media-icons-container {
    display: flex;
    justify-content: flex-start;
}

footer .footer-content .footer-content-wrapper .footer-definition-items .footer-social-media-content .footer-social-media-icons-container a {
    color: #CE1B24; 
    font-size: 26px;
}

footer .footer-address {
    display: flex;
    justify-content: center;
    background-color: #940E13;
    color: #ffffff;
    text-transform: uppercase;
    height: 28px;
    font-size: 14px;
    font-weight: bold;
}

footer .footer-address div:last-child {
    text-transform: lowercase;
}

footer .footer-address div {
    padding: 0 15px;
    line-height: 28px;
}

@media (max-width: 992px) {
    footer .footer-content {
        height: auto;
    }

    footer .footer-content .footer-content-wrapper {
        flex-direction: column;
        justify-content: center;
    }

    footer .footer-content .footer-content-wrapper .footer-definition-items {
        text-align: center;
        padding-bottom: 20px;
    }

    footer .footer-content .footer-content-wrapper .footer-definition-items .footer-social-media-content {
        padding-left: 0;
    }

    footer .footer-content .footer-content-wrapper .footer-definition-items .footer-social-media-content .footer-social-media-icons-container {
        justify-content: center;
    }

	footer .footer-address {
        flex-direction: column;
        height: auto;
        justify-content: center;
    }

    footer .footer-address div {
        text-align: center;
    }
}