@charset "utf-8";
/* CSS Document */

.headerabout{
	width: 100%;
	height: 230px;
	background-image: url(../img/imgabout.jpeg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
}
.headerabout .logoside{
	background: #fff;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	transform: translateY(-20px);
}
.bodyabout{
	min-height: 50vh;
	width: 100%;
	display: flex;
	justify-content: center;
	background: rgba(241,241,241,1.00);
}
.bodyabout .contentabout{
	width: 90%;
	height: auto;
	min-height: 200px;
	border-radius: 10px;
	background: #fff;
	margin-bottom: 100px;
	transform: translateY(-50px);
	box-shadow: 0 0 8px 3px rgba(0,0,0,0.5);
}
.bodyabout .contentabout h1{
	margin: 50px 30px;
	color: rgba(156,156,156,1.00);
}
.bodyabout .contentabout h2{
	margin: 50px 30px 20px;
	color: rgba(156,156,156,1.00);
}
.bodyabout .contentabout pre{
	white-space: pre-line;
	margin: 20px 40px 100px;
	text-align: justify;
}
@media screen and (max-width:600px){
	.headerabout{
		background-size: cover;
	}
}