.advantages-layout{
	position: relative;
	z-index: -1;
	padding-bottom: 60px;
	margin-bottom: 20px;
}

.advantages-layout:before{
	background: #ECF7FB;
	position: absolute;
	content: '';
	top: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	min-width: 320px;
}

.advantage__image{
	margin: 70px 0;
	position: relative;
	width: 50px;
	height: 50px;
	min-width: 50px;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	display: inline-flex;
	margin-left: 35px;
	position: relative;
	z-index: 1;
}

.advantage__image svg {
	position: relative;
	z-index: 3
}

.advantage__image:before {
	content: '';
	position: absolute;
	width: 117px;
	height: 117px;
	background: #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	z-index: 2
}

.advantage__image:after {
	content: '';
	position: absolute;
	width: 335px;
	height: 335px;
	background: #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	z-index: 1;
	opacity: 0.4;
}

.advantages-layout {
	font-weight: 300;
}

.advantage__title{
	font-size: 22px;
	line-height: 32px;
	color: #798DA2;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.advantage__text{
	color: #000000;
	font-size: 14px;
	line-height: 21px;
	position: relative;
	z-index: 2;
}

@media (max-width: 992px) {
	.advantage__title{
		font-size: 22px;
		line-height: 32px;
	}


	.advantage__image:after {
		width: 225px;
		height: 225px;
	}

	.advantage{
		display: flex;
	}

	.advantage__row{
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
	}

	.advantage__image{
		margin-right: 50px;
	}
	

}

@media (max-width: 576px) {
	.advantage{
		flex-direction: column;
	}

	.advantage__image:after {
		display: none;
	}

	.advantage__image{
		margin: 70px auto;
	}

	.advantage__row{
		align-items: center;
		text-align: center;
	}

	.advantage__text{
		text-align: center;
		display: none;
	}

	.advantages-layout:before{
		left: 0;
	}
}