/* 
    Black Color: #101010;
    Red Color: #f31816;
    Green Color: #b4ca68;
    Gray Color: #f5f5f5;
*/
footer .footer-content {
    background-color: #f5f5f5;
    color: #101010;
    padding: 50px 0px;
}
footer .footer-content .footer-brand {
    margin-bottom: 20px;
}
footer .footer-content .footer-brand img {
    max-width: 100px;
}
footer .footer-content .follow-us ul {
    display: flex;
    align-items: center;
}
footer .footer-content .follow-us ul li{
    margin-right: 10px;
    margin-bottom: 0;
}
footer .footer-content .follow-us ul li:last-child{
    margin-right: 0;
}
footer .footer-content .follow-us ul li a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f31816;
    color: #f31816;
    border-radius: 50px;
    transition: all 0.4s;
}
footer .footer-content .follow-us ul li a:hover{
    background-color: #f31816;
    color: #ffffff;
}
footer .footer-content .info-links ul li a {
    color: #101010;
    font-weight: normal;
    line-height: 1.5;
    transition: all 0.4s;
}
footer .footer-content .info-links ul li a:hover {
    padding-left: 8px;
    color: #f31816;
}
footer .footer-content .contact-info ul li a{
    color: #101010;
}
footer .footer-content .contact-info ul li a:hover{
    color: #f31816;
}
.footer-copy-right{
    background-color: #101010;
    color: #ffffff;
}
.foot-pay-logo {
    display: flex;
    align-items: center;
}
.foot-pay-logo img {
    max-width: 45px;
    margin-right: 10px;
}
#whatsApp {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #525252;
    color: #ffffff;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    z-index: 999;
}
@media screen and (max-width: 992.98px){
    footer .footer-content{
        padding: 30px 0 20px;
    }
    #whatsApp {
        bottom: 40px;
    }
}