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

.footer{

    padding:90px 0 40px;

    border-top:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.02);

}

.footer-logo{

    font-size:2rem;

    font-weight:700;

    margin-bottom:20px;

}

.footer-text{

    max-width:420px;

    color:var(--muted);

    line-height:1.8;

}

.footer h5{

    margin-bottom:20px;

    font-weight:700;

}

.footer-links{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:var(--muted);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

}

.footer-divider{

    margin:50px 0 25px;

    border-color:rgba(255,255,255,.08);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:var(--muted);

    font-size:.9rem;

}

@media (max-width:768px){

    .footer-bottom{

        flex-direction:column;

        gap:12px;

        text-align:center;

    }

}

@media (max-width:576px){

    .footer-bottom{

        flex-direction:column;

        gap:10px;

        text-align:center;

    }

}

@media (max-width:576px){

    .footer-links{

        text-align:center;

    }

}

@media (max-width:576px){

    .footer-logo{

        text-align:center;

    }

    .footer-text{

        text-align:center;

    }

}