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

.site-footer{

    margin-top:90px;

    background:linear-gradient(
        180deg,
        #1c1c55 0%,
        #171344 100%
    );

    color:#fff;

}

.site-footer__links a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
    transition: color .2s ease;
}

.site-footer__links a:hover {
    color:#fff;
}

.site-footer__top{

    text-align:center;

    padding:80px 0 60px;

}

.site-footer__logo{

    width:200px;
    display:block;

    margin:0 auto 26px;

}

.site-footer__top h2{

    font-size:42px;
    line-height:1.08;

    font-weight:900;

    margin-bottom:22px;

}

.site-footer__top p{

    max-width:620px;

    margin:0 auto;

    color:rgba(255,255,255,.74);

    line-height:1.8;

}

.site-footer__cta{

    display:flex;
    justify-content:center;
    gap:14px;

    margin-top:34px;

    flex-wrap:wrap;

}

.site-footer__links{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    padding:60px 0;

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

}

.site-footer__links h4{

    font-size:15px;

    margin-bottom:18px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.site-footer__links a{

    display:block;

    margin-bottom:12px;

}

.site-footer__bottom{

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

    text-align:center;

    padding:22px 0;

    font-size:14px;

    color:rgba(255,255,255,.60);

}

@media(max-width:900px){

    .site-footer__links{

        grid-template-columns:1fr;

        text-align:center;

    }

    .site-footer__top h2{

        font-size:34px;

    }

}