header {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    transition: ease-in-out .3s;
    border-bottom: 1px solid transparent;
    padding: 35px 0;

    &.not-home {
        padding: 20px 0;
        position: sticky;
        background: white;
        border-color: #e8e8ec;
    }

    &.scrolled {
        padding: 20px 0;
        background: white;
        border-color: #e8e8ec;
    }
}

header .container {

}

.header_menu .menu-item a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #0074bb;
    transition: ease-in-out .3s;
}

.header_menu .menu-item.current-menu-item a {
    color: #c48730;
}

@media screen and (max-width: 767px) {
    header {
        padding: 20px 0;
        position: sticky;
        background: white;
        border-color: #e8e8ec;
    }
}