.catalog__box {
	margin-bottom: 100px;
}
.catalog__row {
	margin: 0;
}
.catalog__image {
	background: #eceaea;
	display: flex;
	justify-content: center;
	height: 350px;
	padding: 0;
}
.catalog__cover {
	width: 100%;
	object-fit: cover;
}
.catalog__about {
	background: #fff;
	display: flex;
	align-items: center;
	text-align: left;
	height: 350px;
	padding-left: 50px;
}
.catalog__about p {
	color: #000;
	line-height: 24px;
	font-size: 20px;
	font-weight: 500;
}
.catalog__download-btn, .catalog__download-btn:visited {
	display: inline-block;
	color: #fff;
	background: #e42127;
	border: 1px solid transparent;
	padding: 0 30px;
	font-size: 18px;
	font-weight: 500;
	line-height: 40px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}
.catalog__download-btn:hover {
	background: #fff;
	color: #e42127;
	border: 1px solid #e42127;
}
@media (max-width: 767px) {
	.catalog__about {
		height: 200px;
		align-items: start;
		padding-top: 50px;
		padding-left: 0;
	}
}