.threesteps {
display: grid;
grid-template-columns: repeat(9, 1fr);
grid-template-rows: 35px 4rem 35px 1fr;
grid-column-gap: 15px;
grid-row-gap: 15px;

}

.arrow1 { grid-area: 1 / 3 / 3 / 5; }
.step1 { grid-area: 2 / 2 / 3 / 3; }
.step2 { grid-area: 2 / 5 / 3 / 6; }
.step3 { grid-area: 2 / 8 / 3 / 9; }
.arrow2 {
	grid-area: 2 / 6 / 4 / 8;
	display: flex;
  height: 100%; width: 100%;
  justify-content: flex-end;
  align-items: flex-end;
}
.text1 { grid-area: 4 / 1 / 5 / 4; }
.text2 { grid-area: 4 / 4 / 5 / 7; }
.text3 { grid-area: 4 / 7 / 5 / 10; }


.threesteps .number {
	font-size: var(--step-7);
	font-family: 'TheSerif';
	font-weight:bold;
	color: #E94F35;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 0.6;
}

.threesteps svg {
	max-width: 100%;
}


@media screen and (max-width: 768px) {
.threesteps {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 40px auto 140px auto 140px auto;
grid-column-gap: 15px;
grid-row-gap: 15px;
}

.step1 { grid-area: 1 / 2 / 2 / 3; text-align: center;}
.text1 { grid-area: 2 / 1 / 3 / 4; }
.step2 { grid-area: 3 / 2 / 4 / 2; }
.text2 { grid-area: 4 / 1 / 5 / 4; }
.step3 { grid-area: 5 / 2 / 6 / 2; }
.text3 { grid-area: 6 / 1 / 7 / 4; }

.arrow1 {
	grid-area: 3 / 3 / 4 / 4;
	transform:translateY(-50px)  rotate(120deg) ;
}
.arrow2 {
		grid-area:6 / 1 / 5 / 2;
	transform: translateY(-30px)  rotate(50deg);
}

.threesteps .number {
	align-items: flex-end;
}
}