* {
    font-family: 'Battambang', cursive;
}


section.header-bottom {
    background-color: #343365;
}
.main-nav-inner ul li ul {
	background-color: #4267b2;
}
.main-nav-inner ul li ul li {
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
}
.footer {
	background-color: #343365;
}
.sidebar-item-head span:before {
	border-right: 40px solid #343365!important;
}
.sidebar-item-head {
    background-color: #343365;
}
/*
.subnav{
}
.subnav-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: red;
  width: 100%;
  z-index: 1;
}
.subnav:hover .subnav-content {
  display: block;
}*/

#menu-header-main-menu ul {
    position: absolute;
    padding: 0;
    left: 0;
    display: none;
    /* hides sublists */
}

#menu-header-main-menu li:hover ul ul {
    display: none;
}

/* hides sub-sublists */

#menu-header-main-menu li:hover ul {
    display: block;
}

/* shows sublist on hover */

#menu-header-main-menu li li:hover ul {
    display: block;
    /* shows sub-sublist on hover */
    margin-left: 200px;
    /* this should be the same width as the parent list item */
    margin-top: -35px;
    /* aligns top of sub menu with top of list item */
}
.multi-submenu {
    position: relative;
}

#menu-header-main-menu .multi-submenu:after {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome'; 
    content: '\f105';
    font-size: 16px;
    color: white;
}