#ozx-static-header {
    background: var(--ozarks-blue);
    color: var(--white);
    width: 100%;
    position: relative;
}

#ozx-static-header,
#ozx-static-header * {
    box-sizing: border-box;
}

.content-skip {
    position: absolute;
    left: -9999px;
}

.content-skip:focus {
    left: 8px;
    top: 8px;
    z-index: 1000;
    background: var(--white);
    color: var(--black);
    padding: 8px 10px;
}

#ozx-static-header .ozx-static-header__inner {
    max-width: 1320px;
    margin: 0 auto;
    min-height: 84px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#ozx-static-header .ozx-static-header__logo img {
    height: 34px;
    width: auto;
    display: block;
}

#ozx-static-header .ozx-static-header__primary ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
}

#ozx-static-header .ozx-static-header__primary a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--montserrat);
}


#ozx-static-header .ozx-static-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

#ozx-static-header .navbar-toggler-icon,
#ozx-static-header .navbar-toggler-icon::before,
#ozx-static-header .navbar-toggler-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease;
}

#ozx-static-header .navbar-toggler-icon {
    position: relative;
}

#ozx-static-header .navbar-toggler-icon::before,
#ozx-static-header .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

#ozx-static-header .navbar-toggler-icon::before {
    top: -7px;
}

#ozx-static-header .navbar-toggler-icon::after {
    top: 7px;
}

@media (max-width: 1024px) {
    #ozx-static-header .ozx-static-header__toggle {
        display: block;
    }

    #ozx-static-header .ozx-static-header__nav-wrap {
        display: none;
        position: absolute;
        left: 0;
        top: 84px;
        width: 100%;
        background: var(--deep-blue);
        padding: 18px 20px;
    }

    #ozx-static-header .ozx-static-header__nav-wrap.is-open {
        display: block;
    }

    #ozx-static-header .ozx-static-header__primary ul {
        flex-direction: column;
        gap: 14px;
    }
}



#ozx-header-primary-list
{
    min-height:40px;
}

#ozx-header-primary-list li
{
    display:flex;
    align-items:stretch;
    min-height:40px;
}

#ozx-header-primary-list li a
{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    width:100%;
    padding:0 14px;
    line-height:1.2;
    border-radius:4px;
    transition:background-color 0.2s ease, color 0.2s ease;
}

#ozx-header-primary-list li:hover > a,
#ozx-header-primary-list li:focus-within > a,
#ozx-header-primary-list li a:hover,
#ozx-header-primary-list li a:focus-visible
{
    background-color:var(--deep-blue);
}