header.header_relative{
	position: relative;
}

header.header_fixed{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

header.customize_header{
	z-index: 9999;
	display: none;
}

header.customize_header .header-wrapper .header-nav ul li a{
	color: #000;
	text-decoration: none;
}

header.customize_header .header-wrapper .header-nav ul li.menu-item-has-children{
	position: relative;
	padding-right: 10px;
}

header.customize_header .header-wrapper .header-nav ul li.menu-item-has-children:after{
	position: absolute;
	top: 0;
    right: -5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 12px;
    color: #000;
}

header.customize_header .header-wrapper .header-nav ul li.menu-item-has-children ul.sub-menu{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 150px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 20px 10px;
	visibility: hidden;
	transition: all 0.5s;
}

header.customize_header .header-wrapper .header-nav ul li.menu-item-has-children ul.sub-menu:before{
	position: absolute;
	top: -10px;
    left: 25px;
    width: 20px;
    height: 11px;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	content: " ";
}

header.customize_header .header-wrapper .header-nav ul li.menu-item-has-children:hover ul.sub-menu{
	top: 40px;
	opacity: 1;
	visibility: visible;
	transition: all 0.5s;
}

.custom-container{
	width: 80%;
	margin: 0 auto;
}

header.customize_header .header-wrapper .header-nav ul{
	list-style: none;
}

.custom_mobilenav_style{
	display: block;
}

@media (min-width: 992px){
	header.customize_header{
		display: block;
	}
	.custom_mobilenav_style{
		display: none;
	}
}



.mainMenu ul.sub-menu{
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.mbl-menu-list .menu-item-has-children > a{
  position: relative;
}

.mbl-menu-list .menu-item-has-children > a:after{
  position: absolute;
  top: 3px;
  right: -20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  font-size: 12px;
}

.mbl-menu-list .open-submenu .sub-menu{
  opacity: 1;
  padding-top: 10px;
  height: 100%;
  transition: all 0.5s;
  padding-left: 20px;
}
.mbl-menu-list .sub-menu{
  opacity: 0;
  padding-top: 0px;
  height: 0;
  transition: all 0.5s;
  overflow: hidden;
}