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

.miniFooter{
    margin-top:auto;

    width:100%;

    min-height:58px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding:14px 28px;

    background:
    linear-gradient(
        90deg,
        rgba(8,8,15,.94),
        rgba(18,10,30,.95),
        rgba(8,8,15,.94)
    );

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

    color:#bdbdbd;

    font-size:13px;

    backdrop-filter:blur(10px);
}

.footerCenter{
    display:flex;
    align-items:center;
    gap:12px;
}

.footerCenter a{
    text-decoration:none;
    color:#d6d6d6;

    transition:.25s ease;
}

.footerCenter a:hover{
    color:#00ffff;
}

.footerRight{
    opacity:.7;
}


/* =========================
   MOBILE
========================= */

@media(max-width:800px){

    .miniFooter{
        flex-direction:column;
        text-align:center;

        padding:20px;
    }

    .footerCenter{
        flex-wrap:wrap;
        justify-content:center;
    }
}@media(max-width:1100px){

footer,
.siteFooter{

    margin-left:0;
    width:100%;

}

}