*, *:before, *:after {box-sizing: border-box;}
body {
	margin: 0;
	padding: 0;
	font-family: 'Helvetica', sans-serif;
	color: #282828;
}

header {
	z-index: 5;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: #fff;
	display: flex;
	align-items: center;
	padding: 0 20px;
	box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.30);
}


header img {
	box-shadow: 0 2px 3px 3px rgba(0, 0, 0, 0.15);
	margin-left: -35px;
	width: 100px;
	height: 100px;
	border-radius: 50%;

}
/*
header img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
*/
header h1 {
	margin: 0 0 0 15px;
}

section {
	width: 100%;
}
.stand {
	z-index: 2;
	position: relative;
	box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.30);
}
#hero {position: relative;}
#hero .image-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	text-align: center;
}
#hero .image-wrapper:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.6)
}

#hero .image-wrapper img {
	width: 1600px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	display: block;
}
#hero .text-wrapper {
	position: absolute;
	top: 50%;
	left: 100px;
	transform: translateY(-50%);
	color:white;
}

#about {
	display: flex;
	justify-content: center;
}

#about .column {
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
	padding: 30px 15px;
}

#about .column i {
	font-size: 48px;
}
#about .column h2 {
	font-size: 24px;
	margin-bottom: 0;
}

#portfolio {
	background: #f0f0f0;
	overflow: hidden;
}
#portfolio h1 {
	text-align: center;
	font-size: 38px;
}
#portfolio ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	list-style: none;
	padding: 0;
}

#portfolio .project-card {
	text-align: center;
	width: 25%;
	margin: 15px;
	background: #fff;
	box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.10);
	transition: all .2s ease-out;
}
#portfolio .project-card:hover {
	transform: scale(1.05);
	box-shadow: 0 1px 7px 4px rgba(0, 0, 0, 0.10);
}

#portfolio .project-card .image-wrapper,
#portfolio .project-card .image-wrapper img {
	width: 100%;
}

#portfolio .project-card .text-wrapper {
	padding: 10px 20px;
}

#portfolio .project-card h2 {
	margin: 0;
	font-size: 18px;
}
#portfolio .project-card p {
	text-align: left;
}

@media screen and (max-width: 1024px) {
	#portfolio .project-card {
		width: calc(100% / 3)
	}
}
@media screen and (max-width: 768px) {
	#portfolio .project-card {
		width: calc(100% / 2)
	}
}

footer {
	text-align: center;
}