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

.xfit-footer{
    background:#192235;
    padding:10px 0;
    border-top:1px solid #e5e7eb;
    margin-top: 40px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.footer-copyright{
    color:#f59e0b;
    font-size:15px;
}

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

.footer-links a{
    color:#f59e0b;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.footer-links a:hover{
    color:#f5a623;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid #f5a623;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f59e0b;
    transition:.3s;
}

.footer-social a:hover{
    background:#f5a623;
    border-color:#f5a623;
    color:#fff;
}

/* Mobile */

@media(max-width:768px){

    .footer-content{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px 25px;
    }

}
