@charset "utf-8";
/*steps_doc*/
.steps_doc{display:grid;grid-template-columns:repeat(7, 1fr);justify-content:space-between;margin-bottom:200px;}
.steps_doc > div{text-align:center;position:relative;}
.steps_doc > 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% - (40px / 2));right:-30.5px;transform:translateY(-50%);}

.steps_doc > div img{display:block;width:80px;height:80px;margin:0 auto 23px;}
.steps_doc > div:hover img{animation:swing 720ms ease-in;}
.steps_doc > div p{color:#323131;font-size:16px;font-weight:500;line-height:1;}

@media (max-width: 1220px){
	.steps_doc{grid-template-columns:repeat(4, 1fr);justify-content:start;grid-gap:20px;}
	.steps_doc > div:nth-child(4n)::after{display:none;}
}
@media (max-width: 1030px){
	.steps_doc{grid-template-columns:repeat(3, 1fr);}
	.steps_doc > div:nth-child(3n)::after{display:none;}
}

@media (max-width: 600px){
	.steps_doc{grid-template-columns:repeat(2, 1fr);justify-content:start;grid-gap:20px;margin-bottom:130px;}
	.steps_doc > div:nth-child(odd):last-child{grid-column-start:1;grid-column-end:3;}
	
	.steps_doc > div:nth-child(3n)::after{display:block;}
	.steps_doc > div:nth-child(2n)::after{display:none;}
	
	.steps_doc > div:not(:last-child)::after{width:38px;height:38px;top:calc(50% - (38px / 2));right:-24px;}
	
	.steps_doc > div img{width:60px;height:60px;margin-bottom:30px;}
	.steps_doc > div p{font-size:15px;}
}
/*-*/