/* FOOTER */
footer {
    background: #000d1f;
    padding: 0 5%;
    text-align: center
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem
}

.footer-text,
.footer-inner .nav-links a {
    color: #6D7F95;
    font-size: 10px;
    line-height: 17px;
    font-weight: 400;
}

.footer-inner .nav-links a {
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-inner .nav-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-inner .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
    transform: none;
}

.footer-inner .nav-links a:hover::after {
    width: 100%;
}