*{
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
	
}
body{
	font-family: helvetica;
}
nav{
	height: 150px;
	width: 100%;
}
label.logo{
	color: black;
	font-size: 50px;
	line-height: 150px;
	padding: 0 75px;
	font-weight: bold;
	text-align: center;
}
nav ul{
	float: right;
	margin-right: 100px;
	
}
nav ul li{
	display: inline-block;
	line-height: 150px;
	margin: 0 5px;
}
nav ul li a{
	color: black;
	font-size: 17px;
	padding: 7px 13px;
	border-radius: 3px;
	text-transform: uppercase;
}
nav label i{
	border-radius: 3px;
}
a.active,a:hover{
	background: #E3E3E3;
	transition: .5s;
}
.checkbtn{
	font-size: 40px;
	color: black;
	float: right;
	line-height: 150px;
	margin-right: 40px;
	cursor: pointer;
	display: none;
}
i.active,i:hover{
	background: #E3E3E3;
	transition: .5s;
}
#check{
	display: none;
}
@media (max-width: 1400px){
	label.logo{
		fonts-size: 30px;
		padding-left: 50px;
	}
	nav ul li a{
		font-size: 16px;
		
	}
}
@media (max-width: 1200px){
	.checkbtn{
		display: block;
	}
	ul{
		border-radius: 25px;
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #E3E3E3;
		top: 150px;
		left: -100%;
		text-align: center;
		transition: all .5s;
	}
	nav ul li{
		display: block;
		margin: 50px 0;
		line-height: 0px;
	}
	nav ul li a{
		font-size: 20px;
	}
	a:hover,a.active{
		background: none;
		color: #929292;
		
	}
	#check:checked ~ ul{
		left: 0;
	}
}

#gallery {
	
	padding-right: 70px;
	padding-left: 70px;
   	line-height: 0;
  	column-count: 3; 
   	column-gap: 40px;	
}

#gallery img {
	
   	width: 100% !important;
   	height: auto !important;
   	margin-bottom: 40px;
}

@media (max-width: 1000px) {
   	#gallery {
		padding-right: 20px;
		padding-left: 20px;
    	column-count: 2;
		column-gap: 7px;
   }
	#gallery img {
		margin-bottom: 7px;
}
}

@media (max-width: 400px) {
   	#gallery {
    	column-count: 1;
		column-gap: 3px;
		margin-bottom: 3px;
   }
	#gallery img {
		margin-bottom: 3px;
}
	
}