/* pageHeader */
.pageHeader{
	width: 100%;
	position: fixed;
	z-index: 999;
}

.pageHeader .forDeskTop{
	display: none;
}


.pageHeader .forMobile{
	display: block;
/*
	height: 70px;
	width: 100%;
	justify-content: space-between;
	align-items: center; 
	padding: 0px 30px;
*/
}




.pageHeader .forMobile .mbileMenuHambuger {
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.2rem;
	background: #fff;
	position: relative;
	box-sizing: border-box;
}


.pageHeader .forMobile .mbileMenuHambuger a.logoLink{
	width: fit-content;
	height: auto;
	display: flex;
}

.pageHeader .forMobile .mbileMenuHambuger a.logoLink img{
	width: auto;
	height: 45px;
}


.mobileSpaceBlock{
	width: 100%;
	height: 60px;
	display: block;
}

#nav-icon{
  width: 30px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}


#nav-icon span{
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #6ba3a0;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 12px;
}

#nav-icon span:nth-child(4) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}



.pageHeader .forMobile .rowMenu{
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #fff;
	
	transition: all .3s;
	-webkit-transition: all .3s;
	transition-timing-function: cubic-bezier(.1,-1,.1,1.5);
	border-bottom: 2px solid #6ba3a0;

}


.pageHeader .forMobile .rowMenu.showMenu{
	height: 50%;
}

.pageHeader .forMobile .rowMenu ul{
	display: block;
	margin-bottom: 0;
	margin-left: 0;
	padding-left: 0;
}

.pageHeader .forMobile .rowMenu ul li{
	margin-right:5vw;
	margin-left:5vw;
	/* height: 70px; */
	padding: .38rem 0 .38rem 0;
	display: flex;
	align-items: center; 
	justify-content: center;
}

.pageHeader .forMobile .rowMenu ul li a:after{
	content: "-";
	height: 3px;
	color: #e7e5e6;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pageHeader .forMobile .rowMenu ul li:last-child{
	padding: .38rem 0 .8rem 0;
}

.pageHeader .forMobile .rowMenu ul li a:last-child:after{
	display: none;
}

.pageHeader .forMobile .rowMenu ul li a:link, .pageHeader .forMobile .rowMenu ul li a:visited{
	width: 100%;	
	height: auto;
	display: block;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	line-height: 40px;
	color: #000;
	/* border-top:1px solid #000; */
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	padding-top: 0;
	border-radius: 5px;
}

.pageHeader .forMobile .rowMenu ul li a.current{
	color: #17a2b8;
	/* border-top:1px solid #ae9861; */
	background: #d7eeee;
}

.pageHeader .forMobile .rowMenu ul li a.current:after{
	display: none;
}

.pageHeader .forMobile .rowMenu ul li a:hover{
	color: #17a2b8;
}
