*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;

} 
img {
  max-width: 100%;
  height: auto;
}
nav{
  display: flex;
  height: 50px;
  width: 100%;
  background: #1b1b1b;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}
~nav .logo{
  align-items: left;
  width: 350px;
  justify-content: space-between;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: #fff;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 1080px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 50px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 50%;
    text-align: right;
    display: block;
    transition: all 0.3s ease;
	opacity: 0.90;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 20px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: cyan;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}
.content div{
  font-size: 40px;
  font-weight: 700;
}

#content {
	border-top: 2px solid #303030;
	padding-top: 35px;
	min-height:calc(100vh-500px);
}

.container {
	padding-bottom:20px
}

footer {
	margin-top: 30px;
	background:#6e6e76;
	box-shadow:0 0 30px 0 #000000;
	font-size: 15px;
	color:#e0e0e0;
}
footer ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
footer ul li a{
	color: #f2f2f2;
	text-decoration: none;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 5px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}
footer ul li a.active,
footer ul li a:hover{
	color: #111;
}
.footer-nav{
	display: flex;
	width: 100%;
	align-items: right;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.row {
  display: flex;
}

.column {
  flex: 50%;
}

img.responsive {
	max-width:100%;
	height: auto;
}

#post-header {
	margin:50px 0 50px 0;
}
#post-team ul li {
	list-style: none;
}
#post-contact ul li {
	list-style: none;
}

.social
{
  position: relative;
  z-index: 10;
  bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}