header#myHeader{
	padding:10px 40px 0 40px;
	position: fixed;
	width: 100%;
	z-index: 999;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
#myHeader.sticky{
box-shadow: 1px 6px 17px -9px rgba(0,0,0,0.73);
border-bottom: 2px solid #4c51e0;
background: #000;
padding-top: 0;
-webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
.headerInnerwrap{
	background: #000000;
	width: 100;
	height: 92px;
	border-radius: 100px;
	padding: 0 30px;
	position: relative;
}
.headerInner{
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
.menu-header-menu-container ul{
	display: flex;
	column-gap: 35px;
}

.menu-header-menu-container ul li a{
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
nav{
	    height: 100%;
    display: flex;

    align-items: center;
}
.headerdesignitem{
	position: absolute;
    left: 19%;
}

.ExpertiseWrapleft{
	position: relative;
}

.hamburger{
	   display: none;

    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 25px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1101;

}
.hamburger span{
	display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    margin: 3px 0;
    border-radius: 3px;
    transition: .3s;
}
.hamburger span:nth-of-type(2){
	    width: 22px;
    margin-right: 0;
    margin-left: auto;
}

.MainNavigation li.menu-item-has-children>a::after{
	    content: "▸";
    float: right;
    font-size: 14px;
    transition: transform .3s ease;
}
.MainNavigation ul .sub-menu{
	display: none;
    flex-direction: column;
    padding-left: 15px;
    background: #f9f9f9;
    margin: 0;
}
.MainNavigation li.menu-item-has-children.open>.sub-menu{
	display: flex;
}

.hamburger.active span:first-child{
        transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2){
    opacity: 0;
}
.hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(6px, -6px);
}

