@charset "utf-8";
/*************************************
  HAMBURGER MENU - For smaller screens
*************************************/
.header {
	position: fixed;
	width: 100%;
	z-index: 100;
}
.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	background-color: transparent;
}
.header li a {
	display: block;
	padding: 16px 16px;
	padding: 1rem 1rem;
	margin: 8px;
	margin: .5rem;font-variant-caps: small-caps;
	font-weight: 700;
	font-size: 32px;
	font-size: 2rem;
	color: saddlebrown;
	background-color: gold;
 	border: thick solid white;
	border-radius: 4rem;
 	text-decoration: none;
}
.header li a:hover, .header li a:active,
.header .menu-btn:hover {
	background-color: gold;
	color: midnightblue;
}

/* menu */
.header .menu {
	max-height: 0;
	-webkit-transition: max-height .7s ease-out;
	transition: max-height .7s ease-out;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: column;
	    flex-flow: column;
}

/* menu icon */
.header .menu-icon {
	background-color: gold;
	border-top-left-radius: 100%;
	border-top-right-radius: 0%;
	border-bottom-right-radius: 0%;
	border-bottom-left-radius: 100%;
	cursor: pointer;
  	float: right;
  	padding: 20px 18px;
  	position: relative;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.header .menu-icon .nav-icon {
	background: white;
	display: block;
	height: 8px;
	height: 0.5rem;
	width: 40px;
	width: 2.5rem;
	position: relative;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
	border-radius: 30rem;
}
.header .menu-icon .nav-icon:before,
.header .menu-icon .nav-icon:after {
	background: white;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
	border-radius: 30rem;	
}
.header .menu-icon .nav-icon:before {top: 12px;}
.header .menu-icon .nav-icon:after {top: -12px;}

/* menu btn */
.header .menu-btn {display: none;}
.header .menu-btn:checked ~ .menu {max-height: 600px;}
.header .menu-btn:checked ~ .menu-icon .nav-icon {background: transparent;}
.header .menu-btn:checked ~ .menu-icon .nav-icon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top:0;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top:0;
}
@media only screen and (min-width: 555.1px) {
.header {display: none;}
}
