@charset "utf-8";
/* CSS Document */

body {padding-top: 270px}

.header {
  background-color: #7B7B7B;
  width: 100%;
  z-index: 3;
	position: fixed;
	top: 0;
	box-shadow: 1px 1px 4px 0}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #7B7B7B;}

.header li a {
  display: block;
  padding: 20px;
  border-right: 1px solid black;
  text-decoration: none;
	color: black;}


.header li a:hover,
.header .menu-btn:hover {
  background-color: #DDD4DD;}



.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;}


.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 40px;}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;}

.header .menu-icon .navicon:before {
  top: 5px;}

.header .menu-icon .navicon:after {
  top: -5px;}

.header .menu-btn {
  display: none;}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;}


@media (min-width: 950px) {
  .header li {
    float: left; }
  .header li a {
    padding: 20px 30px;}
  .header .menu {
    clear: none;
    float: right;
    max-height: none;}
  .header .menu-icon {
    display: none;}}