/* RESILIENT VALIDATOR - Footer V1 */

.rv-footer{
    margin-top:48px;
    border-top:1px solid rgba(32,184,255,.25);
    background:#050c16;
}

.rv-footer__inner{
    max-width:1660px;
    margin:0 auto;
    padding:22px 32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
}

.rv-footer__brand{
    color:#fff;
    font-size:15px;
}

.rv-footer__brand span{
    color:#8ca3b8;
}

.rv-footer__links{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.rv-footer__links a{
    color:#b8c7d7;
    text-decoration:none;
    transition:.2s;
}

.rv-footer__links a:hover{
    color:#20b8ff;
}

.rv-footer__copy{
    color:#8ca3b8;
    font-size:13px;
}

@media(max-width:900px){
    .rv-footer__inner{
        flex-direction:column;
        text-align:center;
    }
}