/*======================================
FOOTER
======================================*/
.footer{
    background:#161616;
    color:#fff;
    padding-top:90px;
    position:relative;
}

.footer-logo{
    width:50px;
    margin-bottom:25px;
}

.footer h5{
    margin-bottom:30px;
    color:var(--secondary);
    font-size:22px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:15px;
}

.footer a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.35s;
}

.footer a:hover{
    color:var(--secondary);
    padding-left:6px;
}

.footer-social{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#222;
    color:#fff;
    transition:.35s;
}

.footer-social a:hover{
    background:var(--secondary);
    transform:translateY(-6px);
}

.footer-contact li{
    display:flex;
    gap:15px;
}

.footer-contact i{
    color:var(--secondary);
    margin-top:5px;
}

.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 0;
}

@media(max-width:991px){
    .footer{
        text-align:center;
    }
    .footer-contact li{
        justify-content:center;
    }
    .footer-social{
        justify-content:center;
    }
    .footer h5{
        margin-top:40px;
    }
}