/* Enter Your Custom CSS Here */


/*center growing underline in header menu
.x-navbar .desktop .x-nav>li a {
   	position: relative;
		color: #fff;
  	text-decoration: none;
}

.x-navbar .desktop .x-nav>li a:hover {
  	color: #fff;
}

.x-navbar .desktop .x-nav>li a:before {
	content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.x-navbar .desktop .x-nav>li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*end center growing underline in header menu*/


