footer{
    padding: 25px 0px;
    position: relative;
    background: var(--primary-color) ;
}

footer:before, footer:after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: .1;
}

footer:before{
    opacity: .8;
    background: var(--primary-text-color) !important;
}
footer:after{
    opacity: .5;
    background: var(--primary-color) !important;
}

footer p, footer a{
    margin: 0;
    font-size: 14px;
    color: var(--primary-text-color);
    font-weight: 500;
    font-family: var(--secondary-font-family);
}
footer ul li{
    margin: 0 0 10px 0;
    list-style: none;
}

footer a:hover{
    color: var(--primary-color) ;
}
footer .favorite-links li{
    display: inline-block;
    padding:5px;
}


footer .social span{
    display: none;
}
footer .social,
footer .copyright,
footer .favorite-links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer .social a{
    display: flex;
    justify-content: center;
    margin: 5px;
    align-items: center;
    color: var(--primary-color);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    font-size: 20px;    
    line-height: 40px;
    position: relative;
    outline: none;
    background: var(--primary-text-color) ;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
footer .social a i{
    z-index: 1;
}

footer >div{
    z-index: 1;
}

footer .social a:hover{
    cursor: pointer;
    text-decoration: none;
}
.footer-responsive{
    background: var(--primary-color);
    position: fixed;
    display:none;
    bottom: 0;
    right:0px;
    z-index: 1024;
    width: 100%;
}
.footer-responsive ul li{
    display: table-cell;
    position: relative;
    vertical-align: middle;
    text-align: center;
    float: none;
}
.footer-responsive ul li a{
    color:  var(--primary-text-color);
    font-size: 14px;
    position: relative;
    display: block;
    padding: 10px 21px;
}


.footer-responsive ul li a span{
    font-size: 14px;
    font-weight: 700;
}


@media screen and (min-width: 992px){

}
@media screen and (max-width: 767px){
    footer{
        display: none;
    }

    #page-wrapper{
        padding-bottom: 60px;
    }

    .footer-responsive{
        display: block !important;
    }
    footer .copyright{
        display: none;
    }
    
    footer{
        padding-bottom: 65px;
    }
    .footer-responsive a{
        color: var(--primary-text-color);
    }

}
