/* 
 Features
----------------------------------------------------------- */ 
.p-features-flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.p-features-flex__text{
	width: 54%;
}
.p-features-flex__img{
	width: 40%;
}
.p-features-flex__img > img{
	width: 100%;
	height: auto;
}
.p-features-flex__box{
	background-color: var(--bg-color);
	border-radius: 5px;
	padding: 14px 25px;
	margin-block: 15px;
}
.p-features-suggest__img{
	filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.p-features-suggest__img > img{
	width: min(100%,440px);
	margin-left: auto;
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1024px){
	.p-features-flex{
		display: flow-root;
	}
	.p-features-flex__img{
		float: right;
		margin: 0 0 20px 20px;
	}
	.p-features-flex__text{
		width: 100%;
	}
}
@media screen and (max-width: 767px){
	.p-features-flex{
		display: flex;
		flex-direction: column-reverse;
	}
	.p-features-flex__text{
		width: 100%;
		margin-bottom: 20px;
	}
	.p-features-flex__img{
		width: 100%;
		margin: 0;
	}
	.p-features-suggest__img > img{
		margin-inline: auto;
	}
}
@media screen and (max-width: 480px){
}