@font-face {
  font-family: poppins;
  src: url('./Poppins/Poppins-Medium.ttf');
}
body {
	padding: 0;
	margin: 0;
  font-family: poppins;
}
.container {
	position: relative;
	margin-top: 100px;
}
.container img {
	display: block;

}
nav {
	position: fixed;
	z-index: 10;
	left: 0;
	right: 0;
	top: 0;
  font-family: poppins;
	padding: 0 3%;
	height: 100px;
	background-color: #191818;
  z-index: 999;
}
nav .logo {
    float: left;
    width: 156px;
    height: 107px;
    display: flex;
    align-items: center;
 
}
nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 72%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .links li {
	list-style: none;
}
nav .links a {
	display: block;
	padding: 1em;
	font-size: 16px;
	font-weight: bold;
	color: #A9A896;
	text-decoration: none;
}
.links2{
  float: right;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* margin-right: 16%; */
  color: #9B8762;
}
.links2 li {
	list-style: none;
  line-height: 40px;
  cursor: pointer;
 
}
.active{
  color: #717168;;
}
 .links2 a {
	display: block;
	padding: 1em;
	font-size: 16px;
	font-weight: bold;
	
	text-decoration: none;
}
#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: #fff;
	margin: 5px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}
.bars{
    margin-left: 8%;
	float: inline-end;
}
@media screen and (max-width: 800px) {
	nav .logo {
		float: none;
		width: 100px;
		justify-content: center;
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 100px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		background-color: rgba(0,0,0,.8);
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
	}
  .links2{
   
    width: 89%;
    height: 10%;
    display: grid;
    justify-content: space-around;
    align-items: center;
    margin-right: 4%;
    color: #9B8762;
    grid-template-columns: auto auto auto auto;
    grid-gap: 10px;
  }
  .links2 li {
    list-style: none;
    line-height: 40px;
    cursor: pointer;
   
  }
	nav .links a {
		font-size: 20px;
	}
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}

	
}

