/* ==========================================
   GWALNET Student Footer
========================================== */

.footer{

    position:fixed;

    left:250px;          /* Sidebar Width */

    right:0;

    bottom:0;

    height:55px;

    background:#1f2a44;

    border-top:3px solid #2563eb;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 25px;

    z-index:999;

}

.footer-left{

    color:#fff;

    font-size:15px;

}

.footer-left strong{

    color:#fff;

}

.footer-right{

    display:flex;

    align-items:center;

    gap:22px;

}

.footer-right a{

    color:#fff;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}

.footer-right a i{

    margin-right:6px;

}

.footer-right a:hover{

    color:#60a5fa;

}

/* Responsive */

@media(max-width:992px){

.footer{

    left:0;

    height:auto;

    padding:15px;

    flex-direction:column;

    gap:15px;

}

.footer-right{

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

}