/**custom js menu **/

.js-header {
    display: inline-block;
    z-index: 999999;
    position: relative;
}

li {
    list-style: none;
}

.menu li  {
    line-height: 2;
    font-size: 15px;
}

a {
    text-decoration: none;
}


.navbar {
    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;
}


.hamburger {
    display: none;
	
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
}

.menu-main-container {
	width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.nav-menu {
    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;
}

.nav-item {
    margin-left: 5rem;
}

.nav-link{
    font-size: 0.8em;
    font-weight: 400;
    color: #475569;
}

.nav-link:hover{
    color: #d27c9c;
}

.nav-logo {
    font-size: 2em;
    font-weight: 500;
    color: #d27c9c;
}


@media only screen and (max-width: 8000px) {
    .nav-menu {
		line-height:3;
        position: fixed;
        left: -100%;
        top: 0rem;
		height:100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        background-color: #2c2c2c;
        width: 100%;
        text-align: center;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        -webkit-box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
                box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }
	
	.menu {
		margin-top:140px;
	}
	
	
	.nav-menu a {
		background-color:inherit;
		border-bottom:none;
	}

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }
   
	
	
    .hamburger {
        display: block;
        cursor: pointer;
		border-radius: 2px;
		padding: 6px;
    }
	
	   .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
            -ms-transform: translateY(8px) rotate(45deg);
                transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
            -ms-transform: translateY(-8px) rotate(-45deg);
                transform: translateY(-8px) rotate(-45deg);
    }
	
	
	
	/** sub-menu stuff**/
	
	/**hides all dropdown arrows except for li with sub menu items**/
	
	.menu-hide-me {
		display:none;
	}	
	
	.sub-menu li .menu-hide-me {
		display:none;
	}
	
	.menu-item-has-children .menu-hide-me {
        display: inline;
        width: 11px;
        margin-left: 10px;
    }
	
		
	/**hides sub-menu**/
	.sub-menu {
		display:none;
	}
	

	/**open sub-menu**/
	.sub-menu.sub-open {
		display:block;
		padding-left: 10px;
	}
	
	
	/**styling for links**/	
	.sub-menu a {
        color: #787474;
    }
	

}

