/* BRAND FOOTER THEME */
.footer-brand{
    background:#0e1a0b;
    position:relative;
    color:white;
}

/* Gradient bottom highlight */
.footer-deco{
    height:6px;
    background:linear-gradient(90deg, var(--primary), var(--primary-dark));
    margin-top:35px;
}

/* Social icons */
.footer-social a{
    width:38px;
    height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
    background:rgba(255,255,255,0.06);
    color:var(--primary-light);
    border-radius:10px;
    transition:.3s;
}
.footer-social a:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);
}

/* Links */
.footer-links{
    list-style:none;
    padding-left:0;
}
.footer-links li{
    margin-bottom:8px;
}
.footer-links a{
    color:#d6e6c4;
    text-decoration:none;
    transition:.3s;
}
.footer-links a:hover{
    color:var(--primary-light);
    padding-left:4px;
}

/* Contact */
.footer-contact{
    list-style:none;
    padding-left:0;
}
.footer-contact li{
    margin-bottom:15px;
    color:#d6e6c4;
}
.footer-contact i{
    margin-right:10px;
    font-size:16px;
}
.footer-contact a{
    color:#d6e6c4;
    text-decoration:none;
}
.footer-contact a:hover{
    color:var(--primary-light);
}

/* Divider */
.footer-divider{
    border-color:rgba(255,255,255,0.08);
}

/* Colors */
.text-gray-light{color:#d6e6c4;}
.text-brand-light{color:var(--primary-light);}

/* Responsive */
@media(max-width:767px){
    .footer-brand{
        text-align:center;
    }
    .footer-social{
        justify-content:center;
    }
}
