@charset "utf-8";
/*steps*/
.steps{display:grid;grid-template-columns:repeat(5, 1fr);justify-content:space-between;}
.steps > div{text-align:center;position:relative;}
.steps > div:not(:last-child)::after{content:'';width:61px;height:61px;background-image:url(/tmp/img/global/steps/arrow.svg);background-size:contain;position:absolute;top:calc(50% - (70px / 2));right:-30.5px;transform:translateY(-50%);}

.steps > div img{display:block;width:87px;height:87px;margin:0 auto 50px;}
.steps > div p{color:#323131;font-size:18px;font-weight:500;}

@media (max-width: 1030px){
	.steps{grid-template-columns:repeat(3, 1fr);justify-content:start;grid-gap:20px;}
	.steps > div:nth-child(3n)::after{display:none;}
}

@media (max-width: 600px){
	.steps{grid-template-columns:repeat(2, 1fr);justify-content:start;gap:20px;}
	.steps > div:nth-child(odd):last-child{grid-column-start:1;grid-column-end:3;}
	
	.steps > div:nth-child(3n)::after{display:block;}
	.steps > div:nth-child(2n)::after{display:none;}
	
	.steps > div:not(:last-child)::after{width:38px;height:38px;top:calc(50% - (38px / 2));right:-24px;}
	
	.steps > div img{width:60px;height:60px;margin-bottom:30px;}
	.steps > div p{font-size:15px;}
}
/*-*/