.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--dark);
    padding: 40px 0;
    color: var(--light);
}
.footer {
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    border-top: 1px solid var(--text-faded);
    padding-top: 30px;
}

.footer-logo {
    height: 40px;
    -webkit-user-drag: none;
    user-select: none;
}

.footer-bracket {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 100px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.footer-links h3 {
    font-size: 15px;
    color: var(--text-faded);
}

.footer-links a {
    font-size: 13px;
    color: var(--light);
    font-weight: 500;
    text-decoration: none;
}
.footer-links a:hover {
    opacity: 0.5;
}

@media (max-width: 500px) {
    .footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer-links {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        height: auto;
    }
}

.foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 20px 40px;
    background: var(--text-dull);
    color: var(--bg-dark);
}

.foot-promo {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.foot-promo a {
    color: var(--primary);
    text-decoration: none;
}

.foot p {
    font-size: 13px;
    color: var(--bg-dark);
}

@media (max-width: 700px) {
    .foot {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .foot-promo {
        font-size: 11px;
    }

    .foot p {
        font-size: 11px;
    }
}
