@charset "UTF-8";
/* CSS Document */
	
.main-about{
	display:flex;
	flex-direction: row;
}

.about-info, .about-image{
	width: 46%;
	margin: 0 1%;
	height: auto;
}

.about-image{
		
}

.about-image img{
	width: 100%;
	background-color: #FAF3DF;
	border-radius: 6px;
}

.about-info{

}

.about-info p{
	font-size: 20px;
	line-height: 130%;
}

@media only screen and (max-width: 800px) {

	.main-about{
		flex-direction: column;
	}
	
	.about-info, .about-image{
		width: 80%;
		margin: 0 auto;
		height: auto;
	
	}
	
	.about-image{
		margin-top: 5%;
		margin-bottom: 0%;
	}
	
	.about-info{
		margin-top: 2%;
		margin-bottom: 5%;
	}
	
	
	
}