*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Lato', sans-serif;
}

body{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0072ff;  
   

}
ul{
 	float: right;
 	margin-right: 10px;
 	list-style: none;
 	padding-top: 40px;
 }
 
 ul li{
 	display: inline-block;
 		
}

 ul li a{
 	color: #fff;
 	text-decoration: none;
 	padding: 5px 100px;
 	transition: 0.6s ease;

 	
 }

 ul li a:hover{
 	background-color: #fff;
 	color: #000;
 }

 .container{
 	width: 1100px;
 	display: flex;
 	justify-content: space-between;
 	flex-wrap: wrap;
 	position: absolute;
 	top: 25%;
 	padding: 5px 20px;
 	left: 10%;


 }

 .container .card{
 	position: relative;
 	max-width: 300px;
 	height: 215px;
 	background: #fff;
 	margin: 30px 10px;
 	padding: 20px 15px;
 	display: flex;
 	flex-direction: column;
 	box-shadow: 0 5px 20px rgba(0,0,0,0.5);
 	transition: 0.3s ease-in-out;
 }

.container .card:hover{
	height: 550px;

}

 .container .card .imgBx{
 	position: relative;
 	width: 260px;
 	height: 260px;
 	top: -60px;
 	left: 20px;
 	z-index: 1;
 	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
 }

 .container .card .imgBx img{
 	max-width: 100%;
 	border-radius: 5px;
 }

 .container .card .content{
 	position: relative;
 	margin-top: -140px;
 	padding: 10px 15px;
 	text-align: center;
 	color: #111;
 	visibility: hidden;
 	opacity: 0;
 	transition: 0.3s ease-in-out;

 }

 .container .card:hover .content{
 	visibility: visible;
 	opacity: 1;
 	margin-top: -40px;
 	transition-duration: 0.3s;
 }

 .logo{
	color: #fff;
	padding-top: 20px;
	width: 200px;
	height: auto;
	padding-left: 120x;
	position: absolute;
	left: 1%;
}

.checkbtn{
	font-size: 30px;
	color: white;
	float: right;
	line-height: 60px;
	margin-right: 0px;
	padding-left: 400px;
	cursor: pointer;
	display: none;
}

#check{
	display: none;
}





@media (max-width: 960px){


	.logo{
		position: absolute;
		float: none:;
		padding-top: 5px;
		padding-left: 1px;
		width: 100%;
		width: 150px;
		max-width: 150px;
	}

	.container{
		width: 100%;
		height: 100vh;
		font-size: 24px;
		justify-content: center;

	}

	.card{
		
		top: 80px;
		height: 100vh;
		width: 100%;
		min-width: 400px;
		margin: 5px ;
		padding-left: 5px;
		text-align: center;
	}

	.imgBx{
		position: absolute;

	}

	.content p{
		position: absolute;
		font-size: 19px;		
	}

	.checkbtn{
		display: block;
	}

	ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background-size: cover;
	    background-position: center;
		background: #0072ff;  
		top: 50px;
		left: -100%;
		text-align: center;
		transition: all 0.5s;
	}

	nav ul li{
		display: block;
		margin: 60px 0;
		line-height: 50px;
	}

	nav ul li a{
		font-size: 24px;
	}

	a:hover,a.active{
		background: none;
		color: #fff;
	}

	#check:checked ~ ul{
		left: 0;
		z-index: 2;
		

	}


	
		
}

