#about {
	width: 100%;
	height: auto;
	overflow: hidden;
}


/* About Us */
.about-wrapper {
	padding: 50px 270px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.about-content {
	margin-top: 10px;
}
.about-content p {
	margin-bottom: 15px;
}
.about-wrapper img {
	float: left;
	width: 600px;
	height: auto;
	margin: 0 20px 10px 0;
}


/**
 * ----------------------------------------
 * Media Breakpoints
 * ----------------------------------------
 */
@media only screen and (max-width: 600px) {
.about-wrapper {
	padding: 20px 30px;
}
.about-wrapper img {
	width: 100%;
}
}
@media screen and (min-width : 601px) and (max-width : 900px) {
.about-wrapper {
	padding: 40px 50px;
}
.about-wrapper img {
	width: 100%;
}
}
@media screen and (min-width : 901px) and (max-width : 1200px) {
.about-wrapper {
	padding: 50px 100px;	
}
.about-wrapper img {
	width: 400px;
}
}
@media screen and (min-width : 1201px) and (max-width : 1500px) {
.about-wrapper {
	padding: 50px 200px;
}
.about-wrapper img {
	width: 550px;
}
}