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

.vs-footer{

    position:relative;

    background:#0B132B;

    color:#CBD5E1;

    padding:90px 0 0;

    overflow:hidden;

}

/*=========================================================
                    BACKGROUND
=========================================================*/

.vs-footer::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-220px;

    left:-220px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(29,78,216,.18),
        transparent 70%
    );

}

.vs-footer::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    bottom:-180px;

    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,194,255,.15),
        transparent 70%
    );

}

.vs-footer .container{

    position:relative;

    z-index:2;

}

/*=========================================================
                    GRID
=========================================================*/

.vs-footer-grid{

    display:grid;

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

    gap:60px;

    padding-bottom:60px;

}

/*=========================================================
                    LOGO
=========================================================*/

.vs-footer-logo img{

    width:170px;

    margin-bottom:22px;

}

.vs-footer-text{

    color:#94A3B8;

    line-height:1.9;

    margin-bottom:30px;

    max-width:380px;

}

/*=========================================================
                    SOCIAL
=========================================================*/

.vs-footer-social{

    display:flex;

    gap:15px;

}

.vs-footer-social a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#16213F;

    color:#FFFFFF;

    text-decoration:none;

    transition:.35s;

}

.vs-footer-social a:hover{

    background:#00C2FF;

    transform:translateY(-6px);

}

/*=========================================================
                    HEADINGS
=========================================================*/

.vs-footer h4{

    color:#FFFFFF;

    font-size:1.2rem;

    margin-bottom:25px;

    position:relative;

}

.vs-footer h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:50px;

    height:3px;

    border-radius:10px;

    background:linear-gradient(
        90deg,
        #1D4ED8,
        #00C2FF
    );

}

/*=========================================================
                    LINKS
=========================================================*/

.vs-footer-links ul{

    list-style:none;

    padding:0;

    margin:0;

}

.vs-footer-links li{

    margin-bottom:14px;

}

.vs-footer-links a{

    color:#94A3B8;

    text-decoration:none;

    transition:.3s;

}

.vs-footer-links a:hover{

    color:#38BDF8;

    padding-left:8px;

}

/*=========================================================
                    CONTACT
=========================================================*/

.vs-footer-contact ul{

    list-style:none;

    padding:0;

    margin:0;

}

.vs-footer-contact li{

    display:flex;

    gap:15px;

    margin-bottom:18px;

    align-items:flex-start;

}

.vs-footer-contact i{

    color:#00C2FF;

    margin-top:4px;

}

.vs-footer-contact a{

    color:#94A3B8;

    text-decoration:none;

}

.vs-footer-contact a:hover{

    color:#38BDF8;

}

/*=========================================================
                    BOTTOM
=========================================================*/

.vs-footer-bottom{

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

    padding:28px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.vs-footer-bottom p{

    color:#94A3B8;

    margin:0;

}

.vs-footer-bottom-links{

    display:flex;

    gap:30px;

}

.vs-footer-bottom-links a{

    color:#94A3B8;

    text-decoration:none;

    transition:.3s;

}

.vs-footer-bottom-links a:hover{

    color:#38BDF8;

}

/*=========================================================
                    RESPONSIVE
=========================================================*/

@media(max-width:992px){

    .vs-footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .vs-footer{

        padding-top:70px;

    }

    .vs-footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .vs-footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}

@media(max-width:576px){

    .vs-footer-bottom-links{

        flex-direction:column;

        gap:12px;

    }

    .vs-footer-social{

        flex-wrap:wrap;

    }

}