
.menu-toggle {
  position: absolute;
  padding: 0.8em;
  top: 1em;
  right: 0;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  background: #fff;
  height: 3px;
  width: 2em;
  border-radius: 3px;
  -webkit-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
}

.hamburger::before {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.hamburger::after {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.open .hamburger {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.open .hamburger::before {
  display: none;
}

.open .hamburger::after {
  -webkit-transform: translateY(-1px) rotate(-90deg);
          transform: translateY(-1px) rotate(-90deg);
}

/*.site-nav--open {
  -webkit-clip-path: circle(150% at top right);
          clip-path: circle(150% at top right);
}
*/





nav {
    margin: 0;
    padding: 0;
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
}

nav ul.opening {
   display: block;
	height: 30px;
	position: absolute;
	z-index: 99;
	width: 100%;
	left: 0;

}

nav li {
  border-bottom: 1px solid #33373d;
}
/*nav li:last-child {
  border-bottom: none;
}
*/nav a {
  color: #fff;
  background: #000;
  display: block;
  padding: 1.5em 4em 1.5em 3em;
  text-transform: uppercase;
  text-decoration: none;
}

nav a:hover,
nav a:focus {
  background: #b70f0a; color:#fff
  
}

.site-nav--icon {
  font-size: 1.4em;
  margin-right: 1em;
  width: 1.1em;
  text-align: right;
  color: rgba(255,255,255,.4);
}

/* flex styles */


/*
nav {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: #e7a119;
  -webkit-clip-path: circle(0px at top left);
          clip-path: circle(0px at top left);
  -webkit-transition: -webkit-clip-path ease-in-out 700ms;
  transition: -webkit-clip-path ease-in-out 700ms;
  transition: clip-path ease-in-out 700ms;
  transition: clip-path ease-in-out 700ms, -webkit-clip-path ease-in-out 700ms;
  text-align: left;
}
*/




/*@media (min-width: 768px) {*/

@media (min-width: 768px) {

  .menu-toggle {
    display: none;
  }

	.site-nav { border-bottom:1px solid #4e4e4e}

  nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
/*	width: 60%;*/
	width: 90%;
	margin: 0 auto;

  }
  nav li {
     flex: 1 1 auto;
     border: none;
 }

   nav li a {
        color:#fff; text-transform:uppercase; font-size:18px; font-weight:400; padding:18px 25px 18px 25px; display:inline-block; background-color:transparent
    }
    nav a:hover,
    nav a:focus {
      color:#fff; background:#272727
    }




    nav {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
	  text-align: center;
    
    }
  /* nav {
      flex: 1 1 0;
      -webkit-clip-path: none;
            clip-path: none;

      border: 3px solid purple;
  }
*/

  /*.site-nav a:hover,
  .site-nav a:focus {
    background: transparent;
  }
*/
  .site-nav--icon {
    display: none;
  }

}


@media (max-width:1200px) {
nav ul {width: 80%;}
}

@media (max-width:992px) {
nav ul { margin-right:0}
}

@media (max-width:767px) {
header .head .container { position:relative}
.menu-toggle {top: 2em;}	
nav ul.opening {margin-top: 57px;}
}

@media (max-width:479px) {
nav ul.opening { margin-top: 77px;}

}

