

/*--------------------- menu ---------------------*/
.submenuArrow
{
border:1px solid #d7d7d7;
display:inline-block;
width:30px;
height:30px;
line-height:30px;
text-align:center;
margin-right:5px;
margin-left:5px;
background-color:#eeeded;
color:#8b8b8b;

}

#menuToggle {
direction:ltr;
    display: block;
    position: fixed;
    top: 32px;
    left: 30px;
    z-index: 100000;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 0;
    padding: 0;
}
#menu .mainMenuMobile {
    border-bottom: 1px solid #ccc;
padding-top:5px;
padding-bottom:5px;
}

#menu .hasSubmenu:before {
    content: "+";
}

#menu .submenuMobileContainer {
    padding-top: 6px;
    padding-bottom: 6px;
    margin-left: 7%;
    margin-right: 7%;
}
#menu .submenuMobile {
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #ccc;
}
#menu .mainMenuMobile * {
    font-size: 100%;
}

#menu .submenuMobile *{
    font-size: 100%;
}


#menu .submenuMobileContainer li {
    padding: 0;
}
#menu .mainMenuMobile li {
    padding: 0;
}

#menu .companytext {
    font-size: 80% !important;
    opacity: .9 !important;
    color: #ffffff !important;
}

#menu .logoMobile {
    width: 100%;
    text-align: center;
}

#menu .logoMobile img {
        width: auto;
        height: 100px;
    }

.menu_interior li {
    list-style-type: none;
    direction:ltr;                                       
    text-align: left;
}
.menu_interiorPE li {
    list-style-type: none;
    direction: rtl;
    text-align: right;
}


#menuToggle ul a {
        color: #000000;
        text-decoration: none !important;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
}

#menuToggle ul a:hover {
            color: #ff5c35 !important;
}

#menuToggle ul {
            padding: 0;
}

        #menuToggle input {
            display: block;
            width: 40px;
            height: 32px;
            padding: 10px;
            position: absolute;
            top: -7px;
            left: -5px;
            cursor: pointer;
            opacity: 0;
            z-index: 2000000000000;
            -webkit-touch-callout: none;
        }

        #menuToggle span {
            display: block;
            width: 33px;
            height: 4px;
            margin-bottom: 5px;
            position: relative;
            background: #ff5c35;
            border-radius: 3px;
            z-index: 999999;
            transform-origin: 4px 0px;
            transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
        }


            #menuToggle span:first-child {
                transform-origin: 0% 0%;
            }

            #menuToggle span:nth-last-child(2) {
                transform-origin: 0% 100%;
            }

        #menuToggle input:checked ~ span {
            opacity: 1;
            transform: rotate(45deg) translate(-2px, -1px);
            background: #ffffff;
        }

            #menuToggle input:checked ~ span:nth-last-child(3) {
                opacity: 0;
                transform: rotate(0deg) scale(0.2, 0.2);
            }

            #menuToggle input:checked ~ span:nth-last-child(2) {
                transform: rotate(-45deg) translate(0, -1px);
            }

#menu {
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    background: #f6f9fc;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(0%, -150%);
    transition: transform 0.8s cubic-bezier(0.77,0.2,0.05,1.0);
    left: 0;
    top: 0;
    overflow: auto;
    z-index: 100000 !important;
}

    .menu_header {
        background-color: #ff5c35;
        padding-top: 80px;
        padding-bottom: 20px;
        text-align: center;
    }

    .menu_interior {
        padding-left: 5%;
        padding-right: 10%;
        padding-top: 20px;
        padding-bottom: 20px;
    }






    #menu li {
        padding: 10px 0;
        font-size: 22px;
    }

    #menuToggle input:checked ~ ul {
        transform: none;
    }




@media all and (max-width: 1000px)
{
	.desktopMenu
	{
	  display:none;
	}

	.mobileMenu
	{
          display:block;
	}
}
@media all and (min-width: 1000px)
{
	.desktopMenu
	{
          display:block;	
	}

	.mobileMenu
	{
	 display:none;
	}
}

