#about{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#about-inner{
	display: flex;
	width: 80%;
	color: #fff;
	box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

#about-inner > img{
	display: flex;
	height: 460px;
	border-radius: 5px 0 0 5px;
}

#about-text{
	display: flex;
	flex-direction: column;
	background-color: #fff;
	color: #1c1c1c;
	border-radius: 0 5px 5px 0;
	padding: 20px;
}

@media only screen and (max-width: 960px){
	#about-inner{
		flex-direction: column;
	}

	#about-inner > img{
		border-radius: 5px 5px 0 0;
	}

	#about-text{
		border-radius: 0 0 5px 5px;
	}
}