/**********************************************************************/
/**********************************************************************/
.home-descr {
	display: flex;
	justify-content: space-between;
	margin: 0 0 120px;
}
.home-descr__img {
	width: 40%;
	margin-bottom: auto;
	border-radius: 185px;
}
.home-descr__txt {
	width: 50%;
	margin-top: 30px;
}

/**********************************************************************/
.home-advantages {
	position: relative;
	padding: 45px 0;
	margin-bottom: 120px;
}
.home-advantages:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	background-image: url(../img/home-advantages.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}
.home-advantages__items {
	justify-content: center;
	width: calc(820px + 32px);
}
.home-advantages__item {
	display: flex;
	flex-direction: column;
	width: 180px;
	height: 180px;
	margin: 20px 0;
	border: 2px solid #B0B0B0;
	border-radius: 50%;
}
.home-advantages__item .advantage__img {
	display: flex;
	flex-direction: column;
	width: 70px;
	height: 70px;
	margin: auto auto 15px;
}
.home-advantages__item .advantage__img img {
	margin: auto;
}
.home-advantages__item p {
	max-width: 140px;
	margin: 0 auto auto;
	font-weight: bold;
	font-size: 15px;
	line-height: 20px;
	color: #3F3F3F;
	text-align: center;
}


/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1024px) {
	/******************************************************************/
	.home-descr {
		margin: 0 0 80px;
	}
	.home-descr__img {
		width: 45%;
	}
	.home-descr__txt {
		margin-top: 0;
	}
	
	/******************************************************************/
	.home-advantages__items {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	/******************************************************************/
	.home-descr {
		flex-direction: column;
		margin: 0 0 40px;
	}
	.home-descr__img {
		width: 450px;
		max-width: 100%;
		margin: 0 auto 20px;
	}
	.home-descr__txt {
		width: 450px;
		max-width: 100%;
		margin: 0 auto;
	}

	/******************************************************************/
	.home-advantages {
		padding: 30px 0;
		margin-bottom: 60px;
	}
	.home-advantages__item {
		width: 135px;
		height: 135px;
		margin: 8px 0;
	}
	.home-advantages__item .advantage__img {
		width: 45px;
		height: 45px;
		margin-bottom: 10px;
	}
	.home-advantages__item p {
		max-width: 120px;
		font-size: 13px;
		line-height: 16px;
	}
}