.picture_block_container .center {
	max-width: 100%;
}
.picture_block_container .title {
	display: none;
}
.block {
	margin-bottom: 50px;
}
.block .center .title {
	padding: 0 0 0 18px;
	border-left: 6px solid var(--primary-color);
	text-align: left;
	font-size: 26px;
	margin-bottom: 50px;
}
.block .center .title span {
	line-height: 36px;
}
.picture_block img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.image_text_block {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.image_text_block img {
	width: 50%;
	height: 100%;
	object-fit: contain;
}
.image_text_item_content {
	width: calc(50% - 30px);
	font-size: 18px;
	line-height: 38px;
	display: grid;
	grid-template-columns: 1fr;
    justify-content: start;
	align-items: center;
}
.image_text_item_content ul {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr;
    justify-content: start;
	align-items: center;
	padding-left: 20px;
}
.image_text_item_content li {
	list-style:outside;
}
.block:nth-child(odd) .image_text_block img {
    order: 2;
}
.block:nth-child(odd) .image_text_block .image_text_item_content {
    order: 1;
}
.block:nth-child(odd) .image_text_block .image_text_item_content p {
	height: 100%;
	display: flex;
	align-items: center;
    border-bottom: 1px solid #999;
}
.block:nth-child(even) .image_text_block img {
    order: 1;
}
.block:nth-child(even) .image_text_block .image_text_item_content {
    order: 2;
}
.rich_text_item_content {
	font-size: 18px;
	line-height: 45px;
}
.rich_text_item_content ol, .rich_text_item_content li {
	list-style:decimal;
}


@media screen and (max-width: 1100px) {
	.block {
		margin-bottom: 10px;
	}
	.block .center .title {
		padding: 0 0 0 10px;
		border-left: 6px solid var(--primary-color);
		text-align: left;
		font-size: 18px;
		margin-bottom: 10px;
	}
	.image_text_block {
		display: block;
	}
	.image_text_block img {
		width: 100%;
	}
	.image_text_item_content {
		width: 100%;
		margin-top: 10px;
		padding: 0 20px;
		font-size: 16px;
	}
	.rich_text_item_content {
		font-size: 16px;
		padding-right: 20px;
		line-height: 35px;
	}
}