header {
    border-bottom: 1px solid #E0E0E0;
    background: #005587;
}

.header-main {
    height: 32px;
    display: flex;
    justify-content: space-between;
}

.header-left-item {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    color: #fff;
}

.header-left-item i {
    margin-right: 5px;
}

.header-icon {
    display: flex;
}

.header-icon a {
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.header-right-item {
    background: #f37026;

}

.header-right-item a {
    text-decoration: none;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo {
    margin-right: 50px;
}

.nav-logo a img {
    max-height: 60px;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
}

.nav-menu {
    flex: auto;
    margin-right: 50px;
}

.nav-menu>ul {
    justify-content: space-between;

}

.nav-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li ul li a {
    white-space: nowrap;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-size: 13px;
    line-height: 16px;
    text-transform: capitalize;
    color: #333333;
}

.nav-menu>ul>li>a {
    padding: 45px 5px;
    white-space: nowrap;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: #333333;
    position: relative;
}

.nav-menu>ul>li>a.active {
    color: #005587;
}

.nav-menu>ul>li>a.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #005587;
    bottom: 25px;
    left: 0;
}

.nav-menu>ul>li>ul {
    display: none;
    position: absolute;
    top: 100px;
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.3);
    z-index: 2;
    background: #fff;
    min-width: 180px;
}

.nav-menu>ul>li:hover>a {
    color: #005587;
}

.nav-menu>ul>li:hover>ul{
    display: block;
}

.nav-search-main {
    position: relative;
}

input.nav-search-input {
    border: 1px solid #E0E0E0;
    height: 32px;
    padding: 0 0 0 30px;
    width: 100%;
}

.nav-search-main i {
    position: absolute;
    top: 8px;
    left: 8px;
    color: #828282;
}

.nav-menu>ul>li>ul>li {

}

.nav-menu>ul>li>ul>li>a:hover {
    background: #eee;
}

.nav-menu>ul>li>ul>li>a {
    padding: 10px 15px;
    display: block;
}

.btn-1 {
    padding: 8px 36px;
    border: 1px solid #005587;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #005587;
    transition: 0.2s;
}

a.btn-1 {
    text-decoration: none;
    display: inline-block;
}

a.btn-1:hover {
    background-color: #005587;
    color: #fff;
    transform: translateY(-5px);
}

.text-orange {
    color: #F37026;
}

.text-line-through {
    text-decoration: line-through;
}

.nav-btn {
    display: none;
    background: #005587;
    cursor: pointer;
    color: #fff;
    padding: 5px 10px;
}

.nav-menu>ul>li .btn-dropdown i{
    display: none;
    cursor: pointer;
}

.responsive-768-show {
    display: none;
}

li.nav-menu-footer {
    padding: 5px 15px;
    justify-items: center;
    background: #3f7ea4;
    border-bottom: 1px solid #fff;
}

.nav-menu-footer-item {
    margin-right: 10px;
    align-items: center;
    display: flex;
    color: #fff;
}

.nav-menu-footer-item i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

@media only screen and (max-width: 992px) {
    .nav-logo {
        margin-right: 10px;
    }

    .nav-menu ul li a {
        font-size: 10px;
    }

    .nav-menu>ul>li>a {
        padding: 45px 2px;
    }

    .nav-menu {
        flex: auto;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .responsive-768 {
        display: none;
    }

    .responsive-768-show {
        display: block;
    }

    .nav-menu>ul>li:nth-child(6) .btn-dropdown i:last-child {
        display: none;
    }

    .nav-menu>ul>li:nth-child(7) .btn-dropdown i:last-child {
        display: none;
    }

    .nav-menu>ul>li:nth-child(6) .btn-dropdown i:first-child {
        display: block;
    }

    .nav-menu>ul>li:nth-child(7) .btn-dropdown i:first-child {
        display: block;
    }

    .nav-menu>ul>li>.btn-dropdown i:last-child {
        display: block;
    }

    .nav-menu>ul>li>ul {
        display: block;
    }

    .nav-menu>ul>li:nth-child(6)>ul {
        display: none;
    }

    .nav-menu>ul>li:nth-child(7)>ul {
        display: none;
    }

    /*header {*/
    /*    height: 50px;*/
    /*}*/

    .header-main {
        height: 30px;
    }

    .header-left {
        white-space: nowrap;
        overflow: hidden;
    }

    .header-left-item {
        margin-right: 5px;
        font-size: 10px;
    }

    .header-right-item a {
        padding: 5px 10px;
        white-space: nowrap;
        font-size: 12px;
    }

    .header-right {
        justify-content: flex-end;
    }

    .header-icon a {
        padding-right: 5px;
    }


    nav {
        position: sticky;
        z-index: 2;
        background-color: #fff;
        top: 0;
        left: 0;
        width: 100%;
    }

    .nav-main {
        height: 50px;

    }

    .nav-logo {
        height: 100%;
    }

    .nav-logo a {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .nav-logo a img {
        height: 40px;
    }


    .nav-menu {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(0deg, rgba(0, 85, 135, 0.8), rgba(0, 85, 135, 0.8));
        z-index: 2;
        overflow: auto;
        padding-bottom: 100px;
    }

    .nav-menu>ul {
        margin-top: 0px;
        flex-direction: column;
    }

    .nav-menu>ul>li {
        position: relative;
    }

    .nav-menu>ul>li>a {
        padding: 10px 2px 10px 15px;
        display: block;
        color: #fff;
        font-size: 12px;
        text-align: left;
        border-bottom: 1px solid #ccc;
        background: #005487;
    }

    .nav-menu>ul>li:hover>a {
        color: #fff;
    }

    /*.nav-menu>ul>li a:hover {*/
    /*    background: #f37026;*/
    /*}*/

    .nav-menu>ul>li>ul>li>a:hover {
         background: #3f7ea4;
    }

    .nav-menu>ul>li>ul>li>a {
        color: #fff;
        padding-left: 25px;
        text-transform: capitalize;
        background: #3f7ea4;
    }

    .nav-menu>ul>li>ul {
        position: unset;
        box-shadow: unset;
        background: transparent;
    }

    .nav-btn {
        display: block;
    }

    .nav-search {
        margin-right: 10px;
    }

    .nav-menu>ul>li>a.active {
        color: #FFF;
    }

    .nav-menu>ul>li>a.active::after {
        display: none;
    }

    .btn-dropdown {
        position: absolute;
        right: 0;
        top: 0;
        padding: 10px 15px 10px 15px;
        display: block;
        color: #fff;
    }
}


@media only screen and (max-width: 575px) {
    .responsive-575 {
        display: none;
    }
}
