.usp, .usp .fallback {
    position: fixed;
    width: 100%;
    justify-content: space-between;
    background: var(--blue);
    color: var(--white);
    z-index: 10;
    padding: 0;
    height: 50px;
}

.usp .visually-hidden {
    display: none;
}

.usp .fallback {
    display: grid;
    width: 100%;
    gap: 20px;
    justify-items: center;
}

.usp .fallback li {
    color: var(--white);
    list-style: none;
    line-height: 3rem;
}

@media (min-width: 1200px) {
    .usp .fallback {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .usp .fallback {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 648px) {
    .usp .fallback {
        grid-template-columns: 1fr;
    }
}