.top-bar {
    background: var(--colorYellow);
    padding: 10px 0px;
    text-align: center;
}

.top-bar h4, .top-bar p, .top-bar p span, .top-bar p b, .top-bar ul li {
    color: var(--colorBlack);
    margin: 0px;
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--font1);
}
.top-bar-mobile {display:none;}
@media (max-width: 767px) {
    .top-bar-mobile {
        display:block;
        background: var(--colorWhite);
        padding: 10px 0;
        position: relative;
        z-index: 9;
    }
    .top-bar h4, .top-bar p, .top-bar p span, .top-bar p b, .top-bar ul li {font-size: 1.5rem; text-align:center;}
}