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

.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: "Urbanist";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin: auto;
}

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

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

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

@media(max-width:1200px) {
    .topbar-wrapper {
        background: #323135;
    }
    .topbar-container {
        gap: 0.5rem;
        padding: 0.625rem 1.5rem;
        align-items: center;
    }
}