.footer {
    background: linear-gradient(rgba(42,54,63,0.8), rgba(42,54,63,0.8)),
                url('/i/footer.webp') no-repeat center center;
    background-size: cover;
    color: #fff;
	font-size: 14px;
}

.footer a {
    color: #ff6b6b;
    transition: 0.3s;
}

.footer a:hover {
    color: #ff3b3b;
    text-decoration: none;
}

.footer-menu li {
    list-style: none;
    display: inline-block;
    margin: 0 10px;
}

.footer-menu li a {
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.footer-menu li a:hover {
    color: #ff6b6b;
}
/* --- MOBILE VERSION --- */
@media (max-width: 768px) {
    .footer .row > div {
        text-align: center !important;
        margin: 20px 0;
    }

    .footer {
        font-size: 13px;
    }

    .footer .footer-menu li {
        display: block;
        margin: 5px 0;
    }

    .footer .container-fluid {
        padding: 0 20px;
    }
}