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

.footer{

    padding:100px 0 40px;

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

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    margin-bottom:60px;

}

.footer-brand img{

    width:180px;

    margin-bottom:28px;

}

.footer-brand p{

    max-width:420px;

    color:var(--text-muted);

}

.footer-column h4{

    margin-bottom:24px;

    font-size:1rem;

}

.footer-column ul{

    display:grid;

    gap:16px;

}

.footer-column a{

    color:var(--text-muted);

    transition:var(--transition);

}

.footer-column a:hover{

    color:#fff;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:30px;

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

    color:var(--text-muted);

    font-size:.9rem;

}

@media(max-width:900px){

    .footer-grid{

        grid-template-columns:1fr;

    }

    .footer-bottom{

        flex-direction:column;

        gap:20px;

        text-align:center;

    }

}