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

.pix3ls-footer {
    position:relative;
    background:#0F172A;
    color:#F8FAFC;
    padding:50px 0 0px;
    overflow:hidden;
}

/* pixel glow */
.pix3ls-footer::before {
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    bottom:-300px;
    left:-250px;
    background:
    radial-gradient(
        circle,
        rgba(23,92,221,.16),
        rgba(23,92,221,.06) 35%,
        transparent 70%
    );

    filter:blur(70px);
    pointer-events:none;
}

.pix3ls-footer::after {
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        transparent 60%,
        rgba(23,92,221,.05)
    );

    pointer-events:none;
}

/* MAIN */

.footer-main {
    display:flex;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}

/* BRAND */
.footer-brand {
    max-width:350px;
}

.footer-brand h2 {
    font-size:35px;
    font-weight:800;
    letter-spacing:5px;
    margin-bottom:15px;
}

.footer-brand h2 span {
    color:#175CDD;
    text-shadow:
    0 0 25px rgba(23,92,221,.6);
}

.footer-brand p {
    color:#94A3B8;
    line-height:1.8;
    font-size:17px;
}

/* SOCIAL */
.footer-social {
    display:flex;
    gap:12px;
    margin-top:30px;
}

.footer-social a {
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#F8FAFC;
    transition:.3s ease;
}

.footer-social a:hover {
    background:#175CDD;
    transform:translateY(-3px);
}

/* LINKS */
.footer-links {
    display:flex;
    gap:70px;
}

.footer-links h5 {
    font-size:16px;
    margin-bottom:25px;
}

.footer-links ul {
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li {
    color:#94A3B8;
    margin-bottom:14px;
    font-size:15px;
    cursor:pointer;
    transition:.3s ease;
}

.footer-links li:hover {
    color:white;
    transform:translateX(5px);
}

/* BOTTOM */
.footer-bottom {
    margin-top:70px;
    padding:20px 0;
    border-top:
    1px solid rgba(255,255,255,.1);
    /*display:flex;
    justify-content:space-between;*/
    text-align: left;
    color:#64748B;
    font-size:14px;
}

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

@media(max-width:991px){

    .footer-main {
        flex-direction:column;
    }

    .footer-links {
        gap:40px;
        flex-wrap:wrap;
    }

}

@media(max-width:767px){
    
    .pix3ls-footer {
        padding:70px 0 25px;
    }

    .footer-brand h2 {
        font-size:40px;
    }

    .footer-links {
        flex-direction:column;
        gap:30px;
    }

    .footer-bottom {
        flex-direction:column;
        gap:10px;
    }

}


/* =====================================
   BACK TO TOP
===================================== */

.back-to-top {
    position:fixed;
    right:30px;
    bottom:90px;
    width:52px;
    height:52px;
    border-radius:50%;
    border:none;
    background:#175CDD;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
    z-index:999;
    box-shadow:
    0 15px 35px rgba(23,92,221,.35);
}

.back-to-top:hover {
    transform:
    translateY(-5px);
    box-shadow:
    0 20px 45px rgba(23,92,221,.45);
}

.back-to-top.show {
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

@media(max-width:767px){

    .back-to-top {
        width:46px;
        height:46px;
        right:20px;
        bottom:20px;
        font-size:18px;
    }

}

.back-to-top::before {
    content:"";
    position:absolute;
    inset:-5px;
    border-radius:50%;
    border:1px solid rgba(23,92,221,.35);
    opacity:0;
    transition:.3s ease;
}

.back-to-top:hover::before {
    opacity:1;
}