@media only screen and (max-width: 750px){
.menu {
    height: 100%;
    background: url(../images/nav-bg.png) left bottom repeat-x;
    position: relative;
    width: 100%;
	background: #f3f3f3;
}


.menu > ul {
    float: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 10;
}


.menu > ul > li {
    float: left;
}

.menu > ul > li.current > ul{
position: fixed;
    top: 8.4%;
    left: 0;
    width: 100%;
    z-index: 12;
}

.menu > ul > li.current > ul {
	background: #df8547 !important;
	height: auto;
	position: absolute !important;
	left: 0 !important;         /* Align submenu directly under parent */
	top: 100% !important;       /* Push below parent menu */
	min-width: 180px;           /* Prevent collapsing */
	z-index: 9999999;      
}

.menu > ul > li > ul > li:hover > ul {
    left: 0px;
    top: 27px;
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 99999;
}

}