/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
.steps {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 1160px;
	max-width: 100%;
	padding: 35px 0 55px;
	margin: 0 auto;
}
.steps:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 100%;
	background-image: url(../../img/images/steps-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}
.steps:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: -1;
}

/**********************************************************************/
.steps__title {
	margin: 0 auto 70px;
	font: normal 700 52px / 75px "Oswald", sans-serif;
	color: #FFFFFF;
	text-align: center;
}

/**********************************************************************/
.steps__body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: calc(100% + 120px);
	margin: 0 -60px;
}
.steps__body .step {
	position: relative;
	display: flex;
	flex-direction: column;
	width: auto;
	max-width: calc(25% - 120px);
	margin: 0 60px;
}
.steps__body .step__num {
	position: absolute;
	left: -20px;
	top: -15px;
	width: 40px;
	background-color: #007EFF;
	font: normal 700 20px / 30px "Oswald", sans-serif;
	color: #FFFFFF;
	text-align: center;
}
.steps__body .step__icon {
	display: flex;
	flex-direction: column;
	width: 120px;
	height: 80px;
	margin-bottom: 25px;
}
.steps__body .step__icon img {
	max-width: 100%;
	max-height: 100%;
	margin: auto auto auto 0;
}
.steps__body .step__txt {
	width: 100%;
	max-width: 180px;
	font-size: 16px;
	line-height: 22px;
	color: #FFFFFF;
}
.steps__body .step__txt .open-popup {
	margin-bottom: 5px;
	border-bottom: 1px solid #007EFF;
	color: #FFFFFF;
	transition: color 0.3s;
}
.steps__body .step__txt .open-popup:hover {
	color: #007EFF;
}
.steps__body .step__txt .step__tel {
	margin-top: 5px;
	font-weight: 700;
	color: #FFFFFF;
	transition: color 0.3s;
}
.steps__body .step__txt .step__tel:hover {
	color: #007EFF;
}
.steps__body .step__arr {
	position: absolute;
	top: 40px;
	left: -80px;
	transform: translate(-50%, -50%);
	width: 50px;
}




/**********************************************************************/
/**********************************************************************/
@media screen and (max-width: 1024px) {
	/******************************************************************/
	/******************************************************************/
	.steps__body {
		width: calc(100% + 80px);
		margin: 0 -40px;
	}
	.steps__body .step {
		max-width: calc(25% - 80px);
		margin: 0 40px;
	}
	.steps__body .step__arr {
		left: -60px;
		width: 30px;
	}
}


/**********************************************************************/
/**********************************************************************/
@media screen and (max-width: 767px) {
	/******************************************************************/
	/******************************************************************/
	.steps {
		padding: 45px 0 75px;
	}

	/******************************************************************/
	.steps__title {
		font-size: 42px;
		line-height: 52px;
	}

	/******************************************************************/
	.steps__body {
		flex-direction: column;
		width: 100%;
		margin: 0;
	}
	.steps__body .step {
		max-width: 100%;
		margin: 0 auto 60px;
	}
	.steps__body .step:last-child {
		margin-bottom: 0;
	}
	.steps__body .step__icon {
		position: relative;
		width: 100px;
		margin-left: auto;
		margin-right: auto;
	}
	.steps__body .step__icon img {
		margin: auto;
	}
	.steps__body .step__txt {
		text-align: center;
	}
	.steps__body .step__arr {
		display: none;
	}
}