html {
    scroll-behavior: smooth;
}

.header-container {
    display: flex;
    padding: 6px 0px;
    align-items: center;
    gap: 24px;
    background: #FFF;
}

.header-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
}

.header-lang {
    display: flex;
    align-items: center;
    display: flex;
    padding: 4px;
    justify-content: center;
    color: #32100F;
    font-family: "Futura PT", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.header-navigate {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-navigate-button {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 0;
    color: #32100F!important;
    font-family: "Open Sans Hebrew", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.header-button {
    display: flex;
    width: 130px;
    height: 58px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    border-radius: 32px;
    background: #95332F;
    color: #FEFEFD;
    text-align: center;
    font-family: "Futura PT", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight:  400;
    line-height: 140%;
    text-decoration: none;
}

.header-container-mob, .open-mob, .close-mob, .header-menu-mob, .header-button-mob {
    display: none;
}

@media (max-width: 991.97px) {
    .header-button, .header-menu {
        display: none;
    }

    .hero-text-top-mob-1 {
        margin-right: -25px;
    }

    .hero-text-top-mob-2 {
        margin-left: -25px;
    }

    .header-container-mob {
        position: absolute;
        top: 115px;
        right: 0;
        width: 100%;
        background: #FFF;
        flex-direction: column;
        gap: 24px;
        justify-content: center;
        align-items: center;
        display: none;
        z-index: 9999;
        padding: 20px;
    }

    .header-menu-mob {
        flex-direction: column;
    }

    .header-container {
        justify-content: space-between;
    }

    .open-mob, .header-menu-mob, .header-button-mob {
        display: flex;
    }

    .header-button-mob {
        display: flex;
        width: 100%;
        max-width: 450px;
        height: 58px;
        padding: 12px 16px;
        justify-content: center;
        align-items: center;
        gap: 0;
        flex-shrink: 0;
        border-radius: 32px;
        background: #95332F;
        color: #FEFEFD;
        text-align: center;
        font-family: "Futura PT", sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight:  400;
        line-height: 140%;
        margin-bottom: 32px;
        text-decoration: none;
    }

}