.logo_mobile-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-self: flex-start;
    gap: 12px;
    text-decoration: none;
    color: var(--color-black);
    max-width: 250px;

    img {
        max-width: 100%;
        max-height: 100%;
    }

    @media (max-width: 1023px) {
        max-width: 200px;
    }

    @media (max-width: 575px) {
        max-width: 150px;
    }

    @media (max-width: 375px) {
        gap: 8px;
    }
}
