@import url('https://fonts.googleapis.com/css?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css?family=Indie+Flower|Pacifico|Righteous&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	width: 100%;
}
nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	min-height: 5vh;
	background-color: black;
	font-family: 'Anton', sans-serif;
}
.nav {
	position: fixed;
	width: 100%;
	 z-index: 1;
}
.logo a { 
	color: rgb(226, 226, 226);
	font-size: 14px;
	letter-spacing: 0.5px;
	font-family: 'Anton', sans-serif;
	display: flex;
 	align-items: center;
 	cursor: pointer;
 	text-decoration: none;
 }
 .logo img {
 	width: 8.5%;
 }
 .logo p {
 	padding-left: 5px;
 }
 .e {
 	color: #28cad6;
}
.me {
	color: #28cad6;
	font-size: 10px;
	font-family: 'Righteous', cursive;

}
.nav-links {
	display: flex;
	justify-content: space-around;
	width: 15%;
	margin-left: 40%;
}
.nav-links li{
	list-style: none;
}
.nav-links a {
	color: rgb(226,226,226);
	text-decoration: none;
	font-size: 13px;
}
.nav-links a:hover {
	color: white;
}
.burger div {
	width: 25px;
	height: 2px;
	background-color: rgb(226, 226, 226);
	margin: 5px;
	transition: all 0.3s ease;
}
.burger {
	display: none;
	cursor: pointer;
	 }

/*responsive */

@media screen and (max-width: 1024px){
	.nav-links{
		width: 60%;
	}
	.nav-links a:hover{
		color: white;
	}
	.logo {
		cursor: pointer;
	}
	.scrolldown {
		width: 15px;
		height: 15px;
	}
}
@media screen and (max-width: 768px){
	body {
		overflow-x: hidden;
	}
	.nav-links {
		position: absolute;
		right: 0px;
		height: 20vh;
		top: 5vh;
		background-color: black;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 50%;
		transform: translateX(100%);
		transition: transform 0.5s ease-in;
	}
	.logo {
		cursor: pointer;
	}
	.nav-links a {
		font-size: 15px;
	}
	.nav-links a:hover{
		color: white;
	}
	.nav-links li {
		opacity: 0;
	}
	.burger {
		display: block;
	}
	.nav-active {
		transform: translateX(0%);
	}
	.scrolldown {
		width: 15px;
		height: 15px;
	}
	
}
@media screen and (max-width: 375px) {
  .scrolldown {
		width: 15px;
		height: 15px;
	}
	
}


/*burger menu*/
	@keyframes navLinkFade{
		from{
			opacity: 0;
			transform: translateX(50px);
		}
		to{
			opacity: 1;
			transform: translateX(0px);
		}
	}
	.toggle .line1 {
		transform: rotate(-45deg) translate(-5px,6px);
	}
	.toggle .line2 {
		opacity: 0;
	}
	.toggle .line3 {
		transform: rotate(45deg) translate(-5px,-6px);
	}

/*parallax image*/
	.parallax {
		width: 100%;
		height: 3vh;
		background: url('');
		background-position: center;
		
		display: flex;
		justify-content: center;
		align-items: center;
	}
/* social menu*/
	.social {
		position: fixed;
		top: 45%;
		right: 20px;
		transform: translateY(-50%);
		 z-index: 1;
	}
	.social ul {
		margin: 0;
		padding: 0;
	}
	.social ul li {
		list-style: none;
		margin: 20px 0;
	}
	.social ul li a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 17px;
		color: black;
		border-color: black;
		border: 0.5px solid black;
		background: white;
		opacity: 0.7;
		display: block;
		text-align: center;
		border-radius: 50px;
	}
	.social ul li a:hover {
		background-color: #28cad6;
		color: #fff;
		border-color: #28cad6	;
		 box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.04);

	}
	

/* sections projects*/
h3 {
		font-family: 'Anton', sans-serif;
		font-weight: 400;
		font-size: 15px;
		margin-top: 5%;
		margin-bottom: 2%;
		
		text-align: center;
}
h4 {
		font-family: 'Anton', sans-serif;
		font-weight: 400;
		font-size: 15px;
		margin-left: 8%;
		margin-top: 10%;
		margin-bottom: 3%;
		text-align: left;
}
.about {
	 font-family: 'Roboto Condensed', sans-serif;
	margin:0 20% 20% 20%;
	 text-align: center;
	 

}
.container a  {
	padding-top: 8%;
	padding-left: 3%;
 	
}
.container a img {
	width: 60px;
}

.container a img:hover {
	opacity: 0.7;
}
.container {
	width: 80%;
	min-height: 70%;
	margin: 0 0 0 14%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap; 
}
.container .box {
	position: relative;
	width: 250px;
	height: 250px;
	background-color: #fff;
	margin: 13px;
	box-sizing: border-box;
	display: inline-block;
	 box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
}
.imgBox img {
	width: 250px;
	height: 250px;
	transition: transform 2s;
}
.container .box .imgBox {
	position: relative;
	overflow: hidden;
}
.container .box:hover .imgBox img {
	transform: scale(1.2);

}
.container .box .details {
	position: absolute;
	top: 22%;
	left: 22%;
	bottom: 25%;
	right: 25%;
	background: rgba(0,0,0,0.5);
	transform: scaleY(0);
	transition: transform 0.5s;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	align-content: center;
}
.container .box:hover .details{
	transform: scaleY(1);
	cursor: pointer;

}
.container .box .details .content   {
	position: absolute;
	top: 50%;
    left: 50%;
    margin-right: -50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
}
.container .box .details .content h2 {
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	
}
.container .box .details .content p {
	margin: 10px 0 0;
	padding: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 10px;
}


/*footer*/

/* social menu*/
	.socialF {
		position: relative;
		
	
		
	}
	.socialF ul {
		margin: 0;
		padding: 0;
	}
	.socialF ul li {
		list-style: none;
		margin:  0;
		display: inline-block;
		padding: 2px;
	}
	.socialF ul li a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 17px;
		color: #fff;
		border: 0.5px solid black;
		display: inline-block;
		text-align: center;
		border-radius: 2px;
	}
	.socialF ul li a:hover {
		background-color: black;
		color: #fff;
		border-color: #fff;
	

	}


.footer {
	width: 100%;
	height: 100px;
	background-color: black;
	color: black;
	text-align: center;
	padding-top: 1%;
	margin-top: 10%;
}
.footer p {
	color: #fff;
	font-family: 'Righteous', cursive;
	font-size: 11px;

}