/* ===========================
   FOOTER
=========================== */

.footer{
    margin-top:26px;
    padding:16px;
    margin-bottom:100px;
    text-align:left;
    border-top:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    position:relative;
}

/* Gradient line */
.footer::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:2px;
    border-radius:999px;
    background:none;
}

/* Logo */

.footer-logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.footer-logo h2{
    margin:0;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    color:#2d3748;
}

/* Description */

.footer-desc{
    max-width:100%;
    margin-bottom:10px;
    font-size:11px;
    line-height:1.7;
    color:#6b7280;
}

/* Links */

.footer-links{
    display:flex;
    justify-content:left;
    flex-wrap:wrap;
    gap:11px;
    margin-bottom:8px;
}

.footer-links a{
    color:#4b5563;
    text-decoration:none;
    font-size:11px;
    font-weight:500;
    opacity:.8;
    transition:.25s;
}

.footer-links a:hover{
    opacity:1;
}

/* Social */

.footer-social{
    display:flex;
    justify-content:flex-start;
    gap:11px;
    margin-bottom:8px;
}

.footer-social a{
    width:25px;
    height:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    color:#fff;
    background:#9ca3af;
    transition:.25s;
}

.footer-social a:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.15);
}

.footer-social i{
    font-size:14px;
}

/* Copyright */

.footer-copy{
    margin-top:14px;
    font-size:11px;
    color::#4b5563;
    font-weight:600;
}

/* Copyright */

.footer-contact{
    margin-bottom:8px;
    font-size:11px;
    color::#4b5563;
    font-weight:600;
}

/* Disclaimer */

.footer-disclaimer{
    max-width:100%;
    margin-bottom:11px;
    font-size:11px;
    line-height:1.6;
    color:#9ca3af;
}