.about {
	margin-bottom: 40px;
}

.about .text,
.about .image {
	float: left;
	width: calc(50% - 20px);
}

.about .image {
	margin-top: 32px;
	margin-left: 40px;
	object-position: center;
	object-fit: cover;
}

.about button {
	margin-top: 18px;
	width: 134px;
	height: 33px;
	background-color: #fff;
	border: 1px solid #000;
	text-transform: uppercase;
	font-size: 13px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
	
}	
	
@media (hover:hover) {
	.about button:hover {
		background-color: #000;
		color: #fff;
	}	
}

@media (max-width: 1200px) {
	.about {
		margin-bottom: 30px;
	}
	.about .inner {
		width: calc(100% - 50px);
		padding-inline: 25px;
	}
	.about .text,
	.about .image {
		float: none;
		width: 100%;
	}
	.about .image {

		margin-top: 28px;
		margin-left: 0;
	}
}