.bar {
    top: -220px;
    width: 100%;
    position: fixed;
    z-index: 1000;
    padding: 10px 0;
    height: 56px;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--bar-color);
    display: flex;
    gap: 10px;
    transition: all .7s;
}

.bar-text {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    align-items: center;
    display: flex;
}

.bar-btn {
    color: white;
    background-color: var(--bar-color);
    padding: 0 27px;
    border-radius: 58px;
    border: 2px solid #FFF;
    height: 36px;
    align-items: center;
    display: flex;
    box-sizing: border-box;
    cursor: pointer;
}

.bar-btn:hover {
    color: var(--bar-color);
    background-color: white;
    border-color: var(--bar-color);
}

.bar-btn:focus {
    outline: none;
}

.text-bar-btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
}

.bar-btn-link:hover {
    text-decoration: none;
}

@media only screen and (max-width: 826px) {
    .bar-btn-link {
        margin: 0 24px;
        width: 100%;
    }
    .bar-btn {
        width: 100%;
        justify-content: center;
    }

    .bar-none {
        display: none;
    }
}