a{color: #333;}

/* header */
.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: relative;
  width: 100%;
  z-index: 9998 !important; 
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}
.header li a {
  display: block;
  padding: 13px 10px;	
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}
.header li a:hover,
.header .menu-btn:hover {
 background-color: #f4f4f4;
}
.header .logo {
  display: block;
  clear: none;
  float: left;
  text-decoration: none;
  border-radius: 0%;
  margin-left: 1%;
  padding: 0px 10px;	
  }	

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.btnTOP{ cursor: pointer;  float: left; padding: 20px 10px 20px;  text-decoration: none;  user-select: none; font-size: 24px; line-height: 10px !important;}
.btnTOP:hover{background-color: #e7e7e7;}


.header .menu-icon {
  cursor: pointer;
  float: left;
  padding: 31px 20px 31px; 
  user-select: none;
  background-color: #f4f4f4;	
}

.header .menu-icon .nav-icon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .nav-icon:before,
.header .menu-icon .nav-icon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .nav-icon:before {
  top: 5px;
}

.header .menu-icon .nav-icon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 60vh;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top:0;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top:0;
}


/* 48em = 768px @ 16pt font */

@media (min-width: 768px) {
	
.header {
  background-color: white;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: relative;
  width: 100%;
  z-index: 3; 
  padding-bottom: 0%;
}
	
.btnTOP{ cursor: pointer;  float: left; padding: 30px 30px 30px; text-decoration: none;  user-select: none; font-size: 24px; line-height: 10px !important;}
.btnTOP:hover{background-color: #e7e7e7;}
	
.header .logo {
  width: auto;
  height: 100%;
  display: block;
  clear: none;
  float: left;
  text-decoration: none;
  padding: 0;
  padding: 15px 15px 0px;
} 
	
  .header li {
    float: left;
  }
  .header li a {
   padding: 30px 30px 30px;
  }
	
  .header .menu {
    clear: none;
    float: left;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}