.article__wrap h5 {
	margin: 0;
}

.article-wrapper {
	position: relative;
	width: 100%;
	height: fit-content;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 24px;
}

.article-header {
	position: relative;
	width: 100%;
	height: fit-content;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 16px;
	gap: 12px;

	background: rgba(51, 203, 102, 0.1);
	border-radius: 16px;
}

.article-header__image {
	position: relative;
}

.article-block {
	position: relative;
	width: 100%;
	height: fit-content;
	padding: 32px;

	display: flex;
	flex-direction: column;
	gap: 8px;

	border: 2px dashed #C2F0D2;
	border-radius: 16px;
}

.article-block--2 {
	width: calc(50% - 12px);
	height: auto;
	padding: 24px;
	gap: 24px;
}

.article-block--3 {
	width: calc(50% - 12px);
	height: auto;
	padding: 24px;
	gap: 24px;
}

.article-block--4 {
	flex-direction: row;
	padding: 20px 40px;
    align-items: center;
	gap: 40px;
}

.article-block--5 {
	flex-direction: row-reverse;
	gap: 24px;
	padding: 40px;
}

.article-block--6 {
	flex-direction: row;
	gap: 24px;
	padding: 20px 40px;
}

.article-block__title {
	position: relative;
	font-family: "RotonBol", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	margin: 0;

	color: #183B8F;
}

.article-block__title-nubmer {
	position: relative;
	font-family: "RotonBol", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	margin: 0;
	padding-left: 27px;

	color: #183B8F;
}

.article__wrap .article-block__text {
	position: relative;
	padding-left: 27px;
	font-family: "RotonReg", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	margin: 0;
	color: #444444;
}

.article-block__image {
	position: relative;
	width: 100%;
	height: auto;
	max-width: 315px;
	margin-left: auto;
	margin-right: auto;
}

.article-block__image--block-3 {
	order: -1;
}

.article-block__text-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.article-footer {
	position: relative;
	width: 100%;
	height: fit-content;
}

.article__wrap .article-footer__text {
	position: relative;

	font-family: "RotonReg", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	margin: 0;
	text-align: justify;

	color: #444444;
}

@media (max-width: 659px) {
	.article-block--4 {
		flex-direction: column;
	}

	.article-block--5 {
		flex-direction: column;
	}

	.article-block--6 {
		flex-direction: column;
	}
}

@media (max-width: 559px) {

	.article-header {
		margin-left: -20px;
		margin-right: -20px;
		width: calc(100% + 40px);
		border-radius: 0;
	}

	.article-header__image--desktop {
		display: none;
	}

	.article-block {
		padding: 20px;
	}

	.article-block__title {
		font-size: 14px;
		line-height: 130%;
	}

	.article-block__title-nubmer {
		padding-left: 20px;
	}

	.article__wrap .article-block__text {
		font-size: 12px;
		line-height: 130%;
		padding-left: 0;
	}

	.article-block--2 {
		width: 100%;
		gap: 8px;
	}

	.article-block--3 {
		width: 100%;
		gap: 8px;
	}

	.article-block--4 {
		gap: 12px;
	}

	.article-block--5 {
		gap: 12px;
	}

	.article-block__image--block-2 {
		margin-top: 16px;
	}

	.article-block__image--block-3 {
		order: 0;
		margin-top: 16px;
	}

	.article-footer__text {
		font-size: 10px;
	}
}