/*background-color: rgba(0, 0, 0, 0.65);*/
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

.menu_main {
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}

.menu_mb {
    position: fixed;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 1px 15px;
    border-bottom: 1px solid #e1e1e1;
}

/* Content wrapper */
.wrapper {
    margin: 0 auto;
}

.wrapper-small {
    max-width: 728px;
}

.wrapper-flush {
    width: 100%;
}

.nav {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.nav-container {
    position: fixed ;
    top: 70px;
    left: 0;
    z-index: 22222 !important;
    overflow-y: auto;
    visibility: hidden;
    width: 300px;
    max-width: 70%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    /*background-color: #c0c0c0;*/
    -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 992px){
    .nav-container {
        position: fixed !important;;
    }
}
.nav-container.is-visible {
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.nav-toggle {
    line-height: 1;
    display: inline-block;
    /*padding: 1.25rem 1rem;*/
    border: 0;
    background-color: #fff;
    float: left;
    width: 60px;
    position: fixed;
    outline: none;
    z-index: 99;
    top: 15px;
}

.nav-toggle .icon-menu {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    vertical-align: middle;
    fill: none;
}

.icon-menu .line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: #0261bd;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.icon-menu .line-1 {
    top: 0;
}

.is-active .icon-menu .line-1 {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    -ms-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
}

.icon-menu .line-2 {
    top: 50%;
    margin-top: -2px;
}

.is-active .icon-menu .line-2 {
    opacity: 0;
}

.icon-menu .line-3 {
    bottom: 0;
}

.is-active .icon-menu .line-3 {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu {
    background-color: #3271b1;
    /* 1 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* 2 */
}

.nav-menu .menu-item {
    border-top: 1px solid #4382c2;
}

.nav-menu > .menu-item.is-active {
    background: #4382c2;
}

.nav-menu > .menu-item:hover {
    background: #4382c2;
}

.nav-menu > .menu-item.is-active.has-dropdown:after,
.nav-menu > .menu-item:hover.has-dropdown:after {
    color: #ffffff;
}

.nav-dropdown > .menu-item {
    padding-left: 10px;
    border-color: #3271b1;
}

.nav-dropdown > .menu-item:hover {
    background: #3271b1;
}

.nav-dropdown > .menu-item:hover {
    opacity: 0.85;
}

.nav-menu .menu-link {
    color: #fff;
    font-size: 14px;
    display: block;
    /* 1 */
    text-decoration: none;
    padding: 8px 15px;
}

.has-dropdown {
    position: relative;
    cursor: pointer;
}

.has-dropdown > .menu-link {
    display: inline-block;
}

.has-dropdown:after {
    padding-top: 3px;
    font-size: 24px;
    position: absolute;
    top: 0;
    right: 1rem;
    content: "+";
    color: #fff;
    line-height: 32px;
}

.has-dropdown.is-active:after {
    content: "\2013";
    /* 1 */
}

.nav-dropdown {
    display: none;
    background-color: #4382c2;
}

.has-dropdown.is-active > .nav-dropdown {
    display: block;
    /* 1 */
}

.nav-dropdown .nav-dropdown {
    background-color: #aaa;
}

.nav-dropdown .nav-dropdown .menu-item {
    background-color: #0f9ba3 !important;
}

.logo_mobile {
    text-align: center;
}

.logo_mobile img {
    width: 180px;
    height: auto;
}

.nav-menu > .menu-item > .menu-link {
    padding: 8px 15px;
}

@media (min-width: 992px) {
    .nav {
        background-color: rgba(0, 0, 0, 0.65);
    }

    .nav,
    .nav-container,
    .nav-container.is-visible {
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .nav-container,
    .nav-container.is-visible {
        visibility: visible;
        height: auto;
        min-height: 0;
        overflow-y: visible;
        width: 100%;
        max-width: 100%;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu > .menu-item:hover,
    .nav-menu > .menu-item.is-active {
        background-color: transparent;
    }

    .nav-menu .menu-item {
        -webkit-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
        -o-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
        transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
    }

    /*******************************************myConfig*******************************************/
    .nav-menu > .menu-item {
        position: relative;
    }

    .nav-menu > .menu-item:after {
        content: url(../img/menu-bder.png);
        position: absolute;
        top: 0px;
        right: 1px;
        width: 1px;
        height: 12px;
        background: #fff;
    }

    .nav-menu > .menu-item.is-active a,
    .nav-menu > .menu-item:hover a {
        color: #000;
    }

    /************************************myConfig *****************************************/
    .has-dropdown:after {
        font-family: FontAwesome;
        content: "";
        position: absolute;
        right: 5px;
        top: 3px;
        font-size: 12px;
        padding-top: 0;
    }

    .nav-menu > .menu-item:hover.has-dropdown:after {
        border-color: transparent transparent transparent transparent !important;
    }

    .menu-item:hover.has-dropdown:after {
        border-color: #75ad21 transparent transparent transparent !important;
    }

    .has-dropdown > .menu-link {
        padding-right: 2rem;
    }

    .nav-dropdown {
        text-align: left;
        left: 0px;
        display: block;
        opacity: 0;
        position: absolute;
        top: 100%;
        width: 200px;
        margin: 0;
        background-color: transparent;
        -webkit-border-radius: 0px;
        border-radius: 0px;
        -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
        visibility: hidden;
        -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s linear;
        -o-transition: visibility 0s linear 0.25s, opacity 0.25s linear;
        transition: visibility 0s linear 0.25s, opacity 0.25s linear;
    }

    .has-dropdown:hover > .nav-dropdown {
        visibility: visible;
        opacity: 1;
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    .nav-dropdown .menu-item {
        border: none;
        border-bottom: 1px solid #003e7e;
        margin-top: 0px;
    }

    .nav-dropdown .menu-item:last-child {
        border-bottom: none;
    }

    .nav-dropdown .menu-item:hover,
    .nav-dropdown .nav-dropdown .menu-item:hover {
        background-color: #afafaf;
    }

    .nav-dropdown .nav-dropdown,
    .nav-dropdown .nav-dropdown .menu-item {
        background-color: #dedede;
    }

    .nav-dropdown .nav-dropdown {
        z-index: 998;
        top: 0;
        left: 100%;
    }

    .content {
        margin-top: 0;
    }

    /*=======new======*/
    .nav-menu > .menu-item > .menu-link {
        display: block;
        line-height: 20px;
        font-size: 15px;
        color: #fff;
        text-transform: uppercase;
        font-weight: normal;
        -webkit-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear;
        padding: 12px 17px 10px 16px;
    }

    .nav-menu > .menu-item:first-child > .menu-link {
        position: relative;
        padding: 12px 18px 10px 37px;
    }

    .nav-menu > .menu-item:first-child > .menu-link:before {
        content: url(../img/i-home.png);
        position: absolute;
        left: 10px;
        top: 13px;
    }

    .nav-menu > .menu-item:last-child > .menu-link {
        background-image: none;
    }

    .nav-menu > .menu-item.active .nav-menu > .menu-item:hover {
        background: #0098da;
    }

    .nav-menu > .menu-item {
        position: relative;
        display: inline-block;
        padding: 0px 0px 0px 0px;
        border-top: 0px;
    }

    .nav-menu,
    .nav:not(.nav-dropdown) {
        background: none;
        text-align: left;
        font-size: 0;
    }

    /*------------------*/
    .nav-menu > .menu-item.active > .menu-link {
        color: #fff;
    }

    .nav-menu > .menu-item:hover > .menu-link {
        color: #fe6500;
    }

    /*-----------------*/
    .nav-menu > .menu-item > a:hover {
        color: #fe6500;
    }

    .nav-dropdown > .menu-item {
        padding: 0;
        background: rgba(255, 255, 255, 0.99);
    }

    .nav-menu .menu-link {
        padding: 8px 15px 8px 15px;
    }

    .nav-dropdown > .menu-item > .menu-link {
        color: #ffffff;
    }
}

/*# sourceMappingURL=menu-2.css.map */