/*==============================
            FOOTER
==============================*/

.footer{

    padding:80px 0 40px;

}

.footer-cta{

    text-align:center;

    max-width:700px;

    margin:0 auto;

}

.footer-cta h2{

    color:var(--white);

    font-family:var(--title);

    font-size:2rem;

    margin-bottom:16px;

}

.footer-cta p{

    color:var(--text-light);

    margin-bottom:32px;

}

.footer-divider{

    width:100%;

    height:1px;

    background:var(--border);

    margin:60px 0;

}

.footer-bottom{

    display:flex;

    flex-direction:column;

    gap:32px;

    align-items:center;

}

.footer-brand{

    display:flex;

    align-items:center;

    gap:14px;

}

.footer-brand img{

    width:48px;

}

.footer-brand span{

    color:var(--white);

    font-weight:700;

    font-size:1.2rem;

}

.footer-links{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:28px;

}

.footer-links a{

    color:var(--text-light);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--secondary);

}

.footer-copy{

    margin-top:48px;

    text-align:center;

    color:var(--text-light);

    font-size:.9rem;

}