header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 200px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-bottom: 1px solid black;
	padding-bottom: 20px;
}

header img {
	height: 100%;
}

.section_title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-top: 20px;
	padding-bottom: 50px;
}

.section_title h1 {
	margin-left: 20px;
}

.projects-container {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}

.project {
	width: 25%;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0, .7);
	        box-shadow: 0 0 10px rgba(0,0,0, .7);
	padding: 15px;
	border: 1px solid black;
	margin-bottom: 50px;
}

.border_elemt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 95%;
	height: 50px;
	margin: auto;
	border-bottom: 1px solid black;
	padding-top: 10px;
}

.project h3 {
	margin: 0 0 10px 0;
	font-size: 1.5em;
}

.project p {
	margin: auto;
}

.bold_font {
	font-weight: bold;
}

.p_title {
	padding-bottom: 5px;
}

.slideshow-container {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	margin-top: 10px;
}

.slideshow-container img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	opacity: 0;
}

.slideshow-container img.active {
	opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
	.project {
		width: 95%;
	}
}