footer{
    background: var(--primary-color);
}

#footer-top [class*="col"]{
    padding: 30px;
}
#footer-bottom .copyright [class*="col"]{
    padding: 0px;
}

footer .opacity-dark{
    background: rgba(0,0,0,.85);
    padding: 6em 0 0 0;
}

footer .opacity-dark.hide-footer{
    background: rgba(0,0,0,.85);
    padding: 0em 0 0 0;
}
footer p, footer a{
    margin: 0 0 10px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--primary-font-family);
}
footer h3{
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 30px 0;
}
footer ul li{
    margin: 0 0 10px 0;
    list-style: none;
}
footer a{
    display: flex;
    align-items: center;
    width: 100%;
}
footer a:hover{
    color: #fff;
}
footer a i{
    float: left;
    font-size: 20px !important;
    width: 40px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px !important;
    padding: 3em;
    width: 100%;
    float: left;
}
footer .hide-footer .copyright{
    border-top: none;
    padding: 0em;
}
footer .copyright a{
    display:inline;
}
footer .copyright a:hover{
    color:#f2f2f2;
}
.footer-responsive{
    background:var(--primary-color);
    position: fixed;
    display:none;
    bottom: 0;
    right:0px;
    z-index: 1024;
    box-shadow:0 -4px 8px rgba(0, 0, 0, 0.5);
    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: 26px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: 46px;
    padding: 10px;
    display:block;
    margin: 0 1px;
    line-height: 0;
    border-radius: 0;
    position:relative;
    background-color: rgba(255, 255, 255, 0.2);
}
.footer-responsive a{
    color: var(--primary-text-color);
}

.footer-responsive ul li a span{
    position: absolute;
    top: 8px;
    right: 5px;
    font-size: 40%;
    font-weight: 700;
}


@media screen and (max-width: 768px) {
    footer{
        display: none;
    }
    #page-wrapper{
        padding-bottom: 60px;
    }
    .footer-responsive{
        display: block !important;
    }
    footer{
        padding-bottom: 110px;
    }
    footer .copyright{
        display: none;
    }
    footer h3{
        text-align: center;
    }
    footer p{
        text-align: center;
    }
    #footer-bottom{
        padding: 0px;
    }
    footer .copyright{
        margin-top: 0px;
    }
}

