#about {
	background-color: #F5F5F5;
	text-align: center;
}
@media (min-width: 900px) {
	#about {
		padding: 30px;
		border-radius: 40px;
	}
}
@media (max-width: 899.99px) {
	#about {
		padding: 25px;
		border-radius: 30px;
	}
}

/*----------------------------------------------------------------------------------------------------*/

#about > .title {
	max-width: 300px;
	margin: 0 auto 30px;

	text-transform: uppercase;
	line-height: normal;
	font-family: 'Stretch Pro';
	font-size: 18px;
}

/*----------------------------------------------------------------------------------------------------*/

#about > .content { margin-bottom: 30px; }

/*----------------------------------------------------------------------------------------------------*/

#about > .cta-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#about > .cta-wrapper > .about-btn {
	position: relative;
	display: block; overflow: hidden;
	padding: 0 30px 0 65px;
	
	background-color: #FFF;
	border-radius: 25px;
	
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 50px;
	font-size: 14px;
	font-weight: 700;
	font-style: italic;
	color: #000;
	
	cursor: pointer;
	transition:
		background-color .2s ease-out,
		color			 .2s ease-out;
}
#about > .cta-wrapper > .about-btn:hover {
	background-color: #000;
	color: #FFF;
}
#about > .cta-wrapper > .about-btn:before {
    content: '';
    position: absolute; top: 50%; left: 30px; transform: translateY(-50%);
	display: block; height: 20px; width: 20px;
	
	background-image: url("../../images/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
	
	pointer-events: none;
}