.index_catalog .catalog {
	display: flex;
	gap: 50px;
	margin-bottom: 50px;
}

.right_sections {
	display: flex;
	flex-wrap: wrap;
}

.right_sections .section {
	width: 25%;
	border: 1px solid #eee;
	padding: 15px 10px;
}

.main_section {
	width: 33%;
}

.right_sections .section_image {
	height: 100px;
	text-align: center;
}

.right_sections .section_image img {
	max-height: 100%;
}

.section {
	position: relative;
}

a.section_link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.main_section .section {
	height: 100%;
	background-image: url(/img/bg.jpg);
	background-size: auto 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 30px;
	border: 1px solid #eee;
}
.section_name {text-align: center;}
.main_section .section img {
}
@media (max-width: 767px) {

	.index_catalog .catalog {
		flex-direction: column;
	}

	.main_section {
		width: 100%;
	}

	.right_sections .section {
		width: 50%;
	}

}