#footer-mobile {
    width: 100%;
    z-index: 2;
    position: relative;
}

.footer-mobile {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-mobile-top {
    width: 100%;
    background: #444444;
}

.footer-mobile-info {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.footer-mobile-list-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-mobile-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    row-gap: 20px;
}

.footer-mobile-list li a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-mobile-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background: #333;
}

.footer-mobile-bottom-text {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.footer-mobile-bottom-text a {
    color: #fff;
    text-decoration: underline;
}

.footer-mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.navigation-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    overflow: hidden;
    padding: 10px 20px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.navigation-icon {
    width: 26px;
    height: 26px;
    fill: #999;
    box-sizing: border-box;
    pointer-events: none;    
    transition: .25s ease;
}

.navigation-icon-arrow {
    fill: none;
}

.navigation-btn:active {
    background: #fff;
    transform: scale(1.02);
}

.navigation-btn:active .navigation-icon {
    fill: #ea0000;
}

.navigation-text {
    width: 100%;
    color: #999;
    font-size: 16px;
    user-select: none;
    transition: .25s ease;
}

.navigation-btn:active .navigation-text {
    color: #111;
}

.footer-mobile-line {
    width: 90%;
    height: 2px;
    fill: #999;
    margin: 0 auto;
}

.footer-mobile-copyright {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.footer-mobile-copyright-row-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}