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

.footer{

    background:#111321;

    color:white;

    padding:90px 0 40px;

}

.footer-grid{

    display:grid;

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

    gap:60px;

    margin-bottom:60px;

}

.footer-about img{

    height:48px;

    margin-bottom:25px;

}

.footer-about p{

    color:#c9c9d8;

    line-height:1.9;

}

.footer h4{

    margin-bottom:25px;

    font-size:20px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:15px;

    color:#c9c9d8;

}

.footer a{

    color:#c9c9d8;

    text-decoration:none;

    transition:.30s;

}

.footer a:hover{

    color:white;

}

.footer-bottom{

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

    padding-top:35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.socials{

    display:flex;

    gap:16px;

}

.socials a{

    width:44px;

    height:44px;

    border-radius:50%;

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

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.30s;

}

.socials a:hover{

    background:linear-gradient(135deg,#ff4eb8,#6d46ff);

}