@charset "utf-8";
/* CSS Document */

/*sets color for links*/
a {
  color: #64408C;
}

/* NAVIGATION HEADER LAYOUT */

.header-left {
  background-color:#f2f4f0;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
 /* position: fixed;*/
  width: 100%;
  z-index: 3;
  margin-bottom:20px;
}
/*ADJUST MARGIN % TO ACCOUNT FOR MORE NAV*/
.header-left ul {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color:#f2f4f0;
}
/*SETS NAVIGATION LINKS LOOK*/
.header-left li{
	margin-right:15px;
	background-color:white;}
	
.header-left li a {
  display: block;
  padding: 5px 5px;
  text-decoration: none;
  border:2px solid #4b306a; border-radius:5px;
}

.header-left li a:hover,
.header-left .menu-btn:hover {
  color: #016934;
}

/* ACUTAL MENU */

.header-left .menu {
  clear:both;
  max-height: 0;
  transition: max-height .2s ease-out;
}


/* MENU HAMBURGER LOCATION */

.header-left .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: left;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

/*CREATES THE STYLE FOR CENTER LINE*/
.header-left .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}
/*CREATES THE STYLES FOR TOP AND BOTTOM LINE*/
.header-left .menu-icon .navicon:before,
.header-left .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

/*CREATES BOTTOM LINE*/
.header-left .menu-icon .navicon:before {
  top: 5px;
}
/*CREATES TOP LINE*/
.header-left .menu-icon .navicon:after {
  top: -5px;
}

/* HIDES HAMBURGER UNTIL NEEDED */

.header-left .menu-btn {
  display: none;
}
/*ACTIVATES MENU ON CLICK*/

.header-left .menu-btn:checked ~ .menu {
  max-height: 240px;
}
/*ROTATES HAMBURGER AND EASES IN MENU*/

.header-left .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header-left .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header-left .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header-left .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header-left .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */
/*CREATES SMALLER VIEW CONDITIONS*/

@media screen and (min-width:767px) {
  .header-left li {
    float: left;
  }
  .header-left li a {
    padding: 20px 30px;
  }
  .header-left .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header-left .menu-icon {
    display: none;
  }


}
