.content-steps__header {
	padding: 89px 0;
	background-size: cover;
	color: white;
	margin: 0 -30px 40px;
	background-position: center center;
	background-repeat: no-repeat;
}

@media (min-width: 1200px) {
	.content-steps__header {
		margin: 0 -45px 40px;
	}
}

@media (min-width: 1600px) {
	.content-steps__header {
		margin: 0 -115px 40px;
	}
}

@media (min-width: 1200px) and (max-width: 2200px) {
	.content-steps__header {
		background-size:  contain;
	}
}

.content-steps__card {
	position: relative;
	margin-bottom: 30px;
}

.content-steps__card .link-over-item {
	position:  absolute;
	width:  100%;
	height:  100%;
	display: block;
	z-index: 1;
}

.content-steps__image {
	position: relative;
}

.content-steps__image img {
	width: 100%;
}

.content-steps__default-image {
	position: relative;
	z-index: 1;
	opacity: 1;
	-webkit-transition: opacity ease 200ms;
	transition: opacity ease 200ms;
}

.content-steps__hover-image {
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: opacity ease 200ms;
	transition: opacity ease 200ms;
}

.content-steps__card:hover .content-steps__default-image {
	opacity: 0;
}

.content-steps__card:hover .content-steps__hover-image {
	opacity: 1;
}

.content-steps__content {
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	padding: 30px;
}

.content-steps__content-title {
	margin: 0 0 15px;
}

.content-steps__text {
	margin: 0 auto 20px;
	max-width: 320px;
}

.content-steps-module .flexi-item-edit {
	-webkit-box-flex: 0;
			-ms-flex: none;
				flex: none;
}