:root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.header {
background: #E3BF73; /*  ****COLOR CUSTOM**** */
position: static;
top: 0;
left: 0;
width: 100%;
height: auto;
z-index: 100;
margin: 0 auto;
}
.header .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
background: transparent;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 auto;
}
.header .menu>.menu-item {
position: relative;
display: inline-block;
width:auto;
}
#navbar{padding: 0;}
.header .menu>.menu-item>a {
display: block;
font-family: inherit;
font-size: inherit;
line-height: inherit;
padding: 12px 9px;
border: none;
outline: none;
color: #000; /*  ****COLOR CUSTOM**** */
-webkit-transition: all .35s ease;
transition: all .35s ease;
}
.header .menu>.menu-item:hover>a {color: #fff;} /*  ****COLOR CUSTOM**** */
.header .menu>li.active>a {
color: #000; /*  ****COLOR CUSTOM**** */
border: 1px #CC9728 solid; /*  ****COLOR CUSTOM**** */
}

.header .menu>.menu-item>a .expand {
position: relative;
display: inline-block;
width: .75rem;
height: .75rem;
margin-left: .35rem;
pointer-events: none;
border: none;
outline: none;
}
.header .menu>.menu-item>a .expand:before,
.header .menu>.menu-item>a .expand:after {
position: absolute;
-webkit-box-sizing: inherit;
box-sizing: inherit;
content: "";
top: 50%;
left: 50%;
width: 100%;
height: 2px;
background: #111; /*  ****COLOR CUSTOM**** */
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
-webkit-transition: all .35s ease;
transition: all .35s ease;
}
.header .menu>.menu-item:hover>a .expand::before,
.header .menu>.menu-item:hover>a .expand::after {background: #333;} /*  ****COLOR CUSTOM**** */
.header .menu>.menu-item>a .expand::after {
-webkit-transform: translate(-50%, -50%) rotate(-90deg);
transform: translate(-50%, -50%) rotate(-90deg)
}

/*LEVEL2*/
.header .menu>.menu-item>.sub-menu {
background: #555; /*  ****COLOR CUSTOM**** */
position: absolute;
top: 100%;
left: 0;
z-index: 999;
width: 250px;
height: auto;
padding: 9px;
border: none;
outline: none;
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(1rem);
transform: translateY(1rem);
-webkit-transition: all .35s ease;
transition: all .35s ease;
}
.header .menu>.menu-item>.sub-menu>.menu-item {display: block;}
.header .menu>.menu-item>.sub-menu>.menu-item>a {
display: block;
font-family: inherit;
font-size: 14px;
/*line-height: 15px;*/
padding:3px 9px;
color: #fff; /*  ****COLOR CUSTOM**** */
-webkit-transition: all .35s ease;
transition: all .35s ease;
}
.menu > .menu-item > .sub-menu > .menu-item > a:hover {color: #E3BF73 !important;}
.menu > .menu-item > .sub-menu > .active.menu-item > a {color: #E3BF73 !important; font-weight: bold;}

.header .burger {
position: relative;
cursor: pointer;
display: none;
width: 30px;
height: 18px;
margin:9px 0;
outline: none;
/*outline: green solid 1px;*/
opacity: 0;
visibility: hidden;
background: none;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: all .35s ease;
transition: all .35s ease;
}
.header .burger-line {
background: #000; /*  ****COLOR CUSTOM**** */
position: absolute;
display: block;
width: 100%;
height: 2px;
left: 0;
border: none;
outline: none;
opacity: 1;
/*border-radius: .25rem;*/
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: all .25s ease;
transition: all .25s ease;
}
.header .burger-line:nth-child(1) {top: 0}
.header .burger-line:nth-child(2),
.header .burger-line:nth-child(3) {top: .5rem}
.header .burger-line:nth-child(4) {top: 1rem}
.header .overlay {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 100;
opacity: 0;
visibility: hidden;
background: rgba(0, 0, 0, .65);
-webkit-transition: all .35s ease;
transition: all .35s ease
}


/*@media only screen and (min-width: 769px) PTR BURGER small devices*/
@media only screen and (min-width: 993px) {
    .header .menu>.menu-item-child:hover>.sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    .header .menu>.menu-item-child:hover>a .expand::after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg)
    }
}

/*@media only screen and (max-width: 768px) PTR BURGER small devices*/
@media only screen and (max-width: 992px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible
    }
    .header .navbar {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: #fff;
        -webkit-box-shadow: var(--shadow-medium);
        box-shadow: var(--shadow-medium);
        -webkit-transition: all .5s ease;
        transition: all .5s ease
    }
    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
        padding: 25px !important;
    }
    .header .menu {
        width: 100%;
        height: auto;
        margin: 20px 0;
    }
    .header .menu>.menu-item {
        display: block;
        margin: 0;
        padding: 0;
    }
    .header .menu>.menu-item-child>a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header .menu>.menu-item>a {
        padding: 7px 15px;
        color: #000;
    }
    .header .menu>.menu-item>a:hover {color: #E3BF73;} /*  ****COLOR CUSTOM**** */
    .header .menu>.active.menu-item>a {
        color: #E3BF73; /*  ****COLOR CUSTOM**** */
        border: none;
    }
    .header .menu>.menu-item>a .expand::before,
    .header .menu>.menu-item>a .expand::after {background: #000;}
    .header .menu>.menu-item-child.active>a .expand:after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .header .menu>.menu-item>.sub-menu {
        position: relative;
        top: auto;
        left: 15px;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    .header .menu>.menu-item>.sub-menu>.menu-item>a {
        padding:7px 0 7px 25px;
        color: #000;
        font-size: 14px;
    }
    .header .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}