.advantages_section .container,
.advantages_section {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.advantages_section .item{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	margin: 40px 20px 50px;
	width: calc(50% - 70px);
}
.icon_wrap{
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
@media(min-width: 1025px){
	.advantages_section .item {
		width: calc(25% - 70px);
	}
}
@media(min-width: 1200px){
	.advantages_section .container,
	.advantages_section {
		justify-content: space-between;
	}
	.advantages_section .item {
		width: calc(25% - 80px);
	}
}