.main,
.container > header {
	margin: 0 auto;
	padding: 2em;
}
.mobile-menu {
	display:block;
	line-height: 1.6em;
	font-weight: 400;
	width:100%;
	text-align:center;
	  position: relative;
	margin-top:20px;
  }
  .mobile-menu ul {
	  list-style-type:none;
	margin: 0 auto;
	margin-bottom: 20px;
	padding-left:0;
	text-align:center;
	width:100%;
  }
  .mobile-menu li {
	  display:inline-block;
  }
  .mobile-menu li a {
	  display:block;
	  text-align: center;
	  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	  color: #fff;
	text-transform:uppercase;
	  text-decoration: none;
	margin-left:0px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  }
  .mobile-menu li:hover ul a {
	  background: #f3f3f3;
	  color: #2f3036;
	  height: 40px;
	  line-height: 40px;
  }
  .mobile-menu li ul {
	  display: none;
  }
  .mobile-menu li ul li {
	  display: block;
	  float: none;
  }
  .mobile-menu li ul li a {
	  width: auto;
	  min-width: 100px;
	  padding: 0 20px;
  }
  .mobile-menu .show-menu {
	  text-decoration: none;
	  color: #fff;
	  text-align: center;
	  padding: 10px 15px;
	  display: none;
	cursor: pointer;
	text-transform: uppercase;
	background-color: #0000009d;
  }
  .mobile-menu .show-menu span{
	 padding-left: 25px;
  }
  .mobile-menu input[type=checkbox]{
	  display: none;
  }
  .mobile-menu input[type=checkbox]:checked ~ #menu{
	  display: block;
  }
  
  
  @media screen and (max-width : 800px){
	.mobile-menu .lines {
	  border-bottom: 15px double #f8f8f8; 
	  border-top: 5px solid #f8f8f8; 
	  content:"";
	  height: 4vh; 
	  width:20px;
	  padding-right:15px;
	float: right;
  }
	  .mobile-menu ul {
		  position: static;
		  display: none;
	  }
	  .mobile-menu li {
		  margin-bottom: 1px;
	  }
	  .mobile-menu ul li, .mobile-menu li a {
		  width: 100%;
	  }
	  .mobile-menu .show-menu {
		  display:block;
	  }
  }
  .nav {
	height: 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  @media screen and (max-width: 768px) {
	.nav_menu {
	  position: fixed;
	  top: 3rem;
	  right: -200%;
	  width: 100%;
	  height: 100%;
	  padding-top: 2rem;
	  box-shadow: -10px 0px 30px -15px rgba(2, 12, 27, 0.7);
	  transition: 0.5s;
	  z-index: 1;
	}
  }
  .nav_item {
	margin-bottom: 2rem;
	list-style: none;
  }
  .nav_link {
	cursor: pointer;
	color: rgb(255, 255, 255);
	position: relative;
	padding: 10px 16px;
	background: rgba(0, 0, 0, 0.685);
	font-size: 15px;
	font-weight: 700;
	transition: all 1s;
	text-decoration: none;
	border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .nav_link:after, .nav_link:before {
	content: " ";
	width: 10px;
	height: 10px;
	position: absolute;
	border: 0px solid rgb(255, 255, 255);
	transition: all 1s;
  }
  .nav_link:after {
	top: -1px;
	left: -1px;
	border-top: 2px solid rgb(255, 255, 255);
	border-left: 2px solid rgb(255, 255, 255);
  }
  .nav_link:before {
	bottom: -1px;
	right: -1px;
	border-bottom: 2px solid rgb(255, 255, 255);
	border-right: 2px solid rgb(255, 255, 255);
  }
  .nav_link:hover {
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .nav_link:hover:before, .nav_link:hover:after {
	width: 100%;
	height: 100%;
	border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  @media screen and (min-width: 768px) {
	body {
	  margin: 0;
	}
	.nav {
	  height: 4rem;
	  margin-right: 1rem;
	}
	.nav_list {
	  display: flex;
	  justify-content: center;
	}
	.nav_item {
	  margin-left: 1rem;
	  margin-bottom: 0;
	}
  }
  
  @media screen and (min-width: 1024px) {
	.nav_menu {
	  position: relative;
	  width: 100%;
	  padding-top: 30px;
	  padding-bottom: 10px;
	}
	}
	.nav_item {
	  padding-right: 1rem;
	  font-size: 1.1rem;
	}
	.container > header {
		text-align: center;
		background: rgba(0,0,0,0.01);
	}
	.container > header h1 {
		font-size: 2.625em;
		line-height: 1.3;
		margin: 0;
		font-weight: 600;
	}
	.container > header span {
		display: block;
		font-size: 60%;
		color: #694050;
		padding: 0 0 0.6em 0.1em;
		font-weight: 500;
	}