@charset "utf-8";

#title {
	background-image: url(../images/title_bg.jpg);
}

.unit {
	margin-bottom: 100px;
	margin-top: -84px;
	padding-top: 84px;
}

.unit_head {
	background: #F4F4F4;
}
.unit_head>div {
	max-width: 1044px;
	padding: 60px 22px;
	margin: auto;
	line-height: 1.9;
	margin-bottom: 60px;
}
.unit_head h2 {
	font-size: 24px;
	margin-bottom: 30px;
}

.steps {
	max-width: 1044px;
	padding: 0 22px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.steps>div {
	width: 30%;
	margin-bottom: 70px;
	position: relative;
	background: #D9F3FC;
}
.steps>div:not(:nth-child(3n)) {
	margin-right: 5%;
}

.steps>div:nth-child(n+4) {
	display: none;
}

.steps>div:not(:nth-child(3n))::after {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	border-top: 8px solid #CCE5F3;
	border-right: 8px solid #CCE5F3;
	transform: rotate(45deg);
	right: -11%;
	top: 0;
	bottom: 0;
	font-size: 20px;
	margin: auto;
}
.steps>div:last-child::after {
	display: none;
}


.steps_image img {
	width: 100%;
}

.steps_step {
	position: absolute;
	top: -20px;
	left: -10px;
	width: 80px;
	height: 80px;
	background: #007DC5;
	font-weight: bold;
	color: #fff;
	border-radius: 40px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
.steps_step>div {
	font-weight: bold;
}

.steps_step em {
	display: block;
	font-weight: bold;
	font-size: 30px;
	line-height: 1.1;
}
.steps_text {
	padding: 20px;
	line-height: 1.6;
}

.unit_more {
	max-width: 1000px;
	text-align: center;
	margin: auto;
}
.unit_more a {
	display: block;
	width: 30%;
	margin: auto;
	padding: 20px 60px;
	color: #fff;
	background: #007DC5;
	border: none;
}
.unit_more a:hover {
	opacity: .8;
}





@media screen and (max-width: 765px) {

	.unit {
		margin-bottom: 60px;
		margin-top: -60px;
		padding-top: 60px;
	}

	.unit_head>div {
		max-width: none;
		padding: 30px 20px;
		margin-bottom: 50px;
	}
	.unit_head h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.steps {
		max-width: none;
		padding: 0 20px;
		display: block;
	}
	.steps>div {
		width: 100%;
		margin-bottom: 50px;
		position: relative;
		background: #D9F3FC;
	}
	.steps>div:not(:nth-child(3n)) {
		margin-right: 0;
	}

	.steps>div:not(:nth-child(3n))::after {
		display: none;
	}



	.steps_step {
		position: absolute;
		top: -40px;
		left: 50%;
		margin-left: -40px;
	}

	.unit_more a {
		width: 70%;
	}


}