/* ---- footer ---- */
#footer {
    background: #191919;
    display: inline-block;
    width: 100%;
}
.footer {
    padding: 50px 0;
    background: #191919;
}
.footer-aboutus h2, .footer-link h2, .footer-address h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 40px;
    position: relative;
}
.footer-aboutus p, .footer-link ul li a ,.footer-address span, .footer-address ul li {
    color: #808080;
    font-size: 18px;
    list-style: none;
    transition: all 0.2s;
}
.footer-link ul li:hover a {
    color: #fff;
}
.footer-link ul li {
    color: #808080;
}
.footer-link ul, .footer-address ul{
    padding: 0;
}
.footer-link ul li, .footer-address ul li {
    line-height: 2.3;
}
.footer-address ul li span svg {
    width: 20px;
    height: 20px;
    fill: #808080;
    margin-right: 10px;
}
.footer-aboutus h2::before, .footer-link h2::before, .footer-address h2::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #fff;
    bottom: -10px;
}
.footer-bottom p {
    color: #fff;
    margin: 0;
    font-size: 15px;
}
.footer-bottom p svg {
    width: 20px;
    fill: #fff;
}
.footer-bottom {
    background: #222222;
    padding: 25px 5%;
    width: 100%;
}
.social-follow svg {
    fill: #fff;
}
.social-follow a {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 12px;
    position: relative;
    z-index: 1;
}
.social-follow div {
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    overflow: hidden;
    margin: 0 10px;
    border-radius: 10px;
}
.social-follow div:before {
    content: "";
    width: 90px;
    height: 90px;
    display: block;
    position: absolute;
    transform: rotate( -45deg) translate(-110%, -23px);
    z-index: 0;
    animation: back-out .5s forwards;
    animation-timing-function: cubic-bezier(0.5, -0.6, 1, 1);
    background: linear-gradient(83deg, rgb(75, 218, 254) 0%, rgba(75, 218, 254, 0.525) 50%, rgba(75, 218, 254, 0.224) 100%);
    color: #bef2ff;
}
.social-follow div:hover:before {
    animation: back-in .5s forwards;
    animation-timing-function: cubic-bezier(0, 0, 0.4, 1.6);
}
.social-follow div:hover svg {
    fill: #000;
}
@keyframes back-in {
    0% { transform: rotate(-45deg) translate(-110%, -23px); }
	80% { transform: rotate(-45deg) translate(5%, -23px); }
	100% { transform: rotate(-45deg) translate(0%, -23px); }
}

@keyframes back-out {
    0% { transform: rotate(-45deg) translate(0%, -23px); }
	20% { transform: rotate(-45deg) translate(5%, -23px); }
	100% { transform: rotate(-45deg) translate(-110%, -23px); }
}

@keyframes icon-in {
    0% { font-size: 1.25em; }
	80% { color: #fff; font-size: 1.5em; }
	100% { color: #fff; font-size: 1.35em; }
}

@keyframes icon-out {
	0% { color: #fff; font-size: 1.35em; }
	20% { color: #fff; font-size: 1.5em; }
	100% { font-size: 1.25em; }
}
@media (max-width: 991px){
    .footer-about-us {
        /* float: unset!important; */
        width: 100%;
        text-align: center;
        display: inline-block;
        max-width: 100%;
    }
    .footer-link-wrap, .footer-address-contact {
        max-width: 50%;
        text-align: center;
    }
    .footer-bottom {
        display: inline-block;
        padding: 20px 15px;
    }
    .footer-bottom .col-md-6 {
        max-width: 100%;
        text-align: center;
    }
    .social-follow {
        display: flex;
        margin: 15px auto 0;
        justify-content: center;
    }
    .social-follow div{  
        width: 30px;
        height: 30px;
        margin: 0 5px;
    }
    .social-follow a{
        width: 30px;
        height: 30px;
        padding: 5px;
    }
    .footer-aboutus h2, .footer-link h2, .footer-address h2{
        margin-bottom: 30px;
        font-size: 20px;
    }
    .footer-link h2, .footer-link ul li{
        text-align: left;
    }
    .footer-address ul{
        margin-bottom: 0;
    }
    .footer-aboutus {
        margin-bottom: 25px;
    }
}
@media (max-width: 767px){
    .footer-link-wrap {
        display: flex;
    }
    .footer-link-wrap, .footer-address-contact {
        max-width: 100%;
    }
    .footer{
        padding: 40px 0px 30px;
    }
}

@media (min-width: 1200px) {
    .footer .container {
        max-width: 1200px;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}