.topbar-wrapper {
    background: transparent;
    width: 100%;
    min-height: 2.4375rem;
    border-bottom: 1px solid #FFF;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;

    padding: 0.625rem 1.5rem;
    max-width: 90rem;
    box-sizing: content-box;
    margin: auto;

    color: #FFF;
}

.topbar-container, .topbar-left p, .topbar-right p {
    font-family: "Bebas Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%; /* 21.6px */
    text-transform: uppercase;
    margin: auto;
}

.topbar-right {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.topbar-container a {
    color: #FFF;
    text-transform: uppercase;
}

.topbar-container a:hover {
    text-decoration: underline;
}

@media(max-width:1200px) {
    .topbar-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0.9375rem;
        text-align: center;
    }
}