aside, .top-footer, footer {
    padding: 50px 0;
    color: var(--primary-color);
    background:var(--primary-color);
    position: relative;
}

aside::before, .top-footer::before, footer::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background: var(--primary-text-color);
}

aside::after, .top-footer::after, footer::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background: var(--primary-color);
    opacity: .3;

}

aside::after, .top-footer::after{
    opacity: .1;
}
aside:before,
.top-footer:before{
opacity: 1;
}
footer:after{
    opacity: .5;
    z-index: -1;
}
footer::before{
opacity: .8;
}

footer>div, aside > div, .top-footer > div{
 z-index: 1;
}
aside .favorite-links .nav,
.top-footer .favorite-links .nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
aside .favorite-links li,
.top-footer .favorite-links li{
    display: inline-block;
    padding:5px;
}
aside a,
.top-footer a{
    color:  var(--primary-color);
    font-size: 14px;
}

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

footer a:hover{
    color: #fff;
}
footer .copyright{
    color: var(--primary-color);
}

footer .copyright a{
    color: var(--primary-color);

    display:inline;
}
footer .copyright a:hover{
    color:#fff;
}
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-text-color);
    background-color:  var(--primary-color);
    height: 28px;
    width: 28px;
    border-radius: 100%;
    font-size: 18px;
    line-height: 28px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
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: #222222;
    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){
    aside, .top-footer, 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);
    }

}
