/* List Blocks */
.list-blocks {

}

.list-block {
	display: flex;
	margin-bottom: 40px;
	background: var(--light-blue-bg);
	border-radius: 20px;
	overflow: hidden;
	transform: translateZ(0);
}

.list-block:nth-child(even) {
	flex-direction: row-reverse;
}

.list-block__header {
	flex: 0 0 auto;
	width: 50%;
	display: flex;
	align-items: center;
	padding: 45px 55px;
	position: relative;
	z-index: 1;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--main-color);
	color: var(--white-color);
}

.list-block__header:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,.5);
	z-index: -1;
}

.list-block__title {
	margin: 0 auto;
	width: 100%;
	max-width: 440px;
}

.list-block__title h2 {
	margin: 0;
}

.list-block__content {
	flex: 0 0 auto;
	width: 50%;
	padding: 45px 55px 40px;
	display: flex;
	flex-direction: column;
}

.list-block__text {
	
}

.list-block__footer {
	padding-top: 16px;
}

@media (max-width: 1199.98px) {
	.list-block__header {
		padding: 40px;
	}

	.list-block__content {
		padding: 40px;
	}
}

@media (max-width: 767.98px) {
	.list-block {
		display: block;
		margin-bottom: 20px;
	}

	.list-block__header {
		width: auto;
		min-height: 250px;
	}

	.list-block__content {
		width: auto;
	}
}

@media (max-width: 575.98px) {
	.list-block__header {
		padding: 20px;
	}

	.list-block__content {
		padding: 20px;
	}

	.list-block__footer {
		padding-top: 0;
	}
}
/* ! List Blocks */