.cms-feature-banner-wrap{
	@media (min-width: 577px){
		@include transform(translateX(110px));
		[dir="rtl"] &{
			@include transform(translateX(-110px));
		}
	}
	@media (max-width: 576px){
		top: 0;
		bottom: 0;
		.cms-octagon-clippath-bg.cms-overlay{
			//opacity: 0;
		}
		.cms-feature-banner.cms-octagon-clippath{
			height: 100%;
			object-fit: cover;
			clip-path: polygon(50% 0, 100% 13%, 100% 87%, 50% 100%, 0 87%, 0 13%);
		}
	}
}
.cms-feature-item{
	&:first-child{
		@include transform(translate(85px, 50px));
		[dir="rtl"] &{
			@include transform(translate(-85px, 50px));
		}
	}
	&:last-child{
		@include transform(translate(85px, -50px));
		[dir="rtl"] &{
			@include transform(translate(-85px, -50px));
		}
	}
}
.cms-feature-item-inner{
	width: 175px;
	height: 200px;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	align-items:center;
	> *{
		flex: 0 0 100%;
		width: 100%;
	}
}