.breadcrumbs {
	border-radius: 10px;
	display: inline-flex;
	overflow: hidden;
}

.breadcrumbs__item {
	color: white;
	padding: 50px;
	position: relative;
	width: 300px;
	font-weight: bold;
}

.breadcrumbs__item.is-one:after,
.breadcrumbs__item.is-one:before {
	background: #570000;
    top: 0;
	bottom: 0;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	content: "";
	left: 100%;
	position: absolute;
	width: 30px;
	z-index: 1;
}
.breadcrumbs__item.is-two:after,
.breadcrumbs__item.is-two:before {
	background: #730000;
	top: 0;
	bottom: 0;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	content: "";
	left: 100%;
	position: absolute;
	width: 30px;
	z-index: 1;
	margin-right: 10px;
}
.breadcrumbs__item.is-three:after,
.breadcrumbs__item.is-three:before {
	background: #940000;
	top: 0;
	bottom: 0;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	content: "";
	left: 100%;
	position: absolute;
	transition: background 0.2s linear;
	width: 30px;
	z-index: 1;
}
.breadcrumbs__item.is-four:after,
.breadcrumbs__item.is-four:before {
	background: #bf0202;
	top: 0;
	bottom: 0;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	content: "";
	left: 100%;
	position: absolute;
	width: 30px;
	z-index: 1;
}

.breadcrumbs__item.is-one{
	background: #570000;
	z-index: 5;
}
.breadcrumbs__item.is-two{
	background: #730000;
	z-index: 4;
}
.breadcrumbs__item.is-three{
	background: #940000;
	z-index: 3;
}
.breadcrumbs__item.is-four{
	background: #bf0202;
	z-index: 2;
}
.process{
	width: 100%;
	text-align: center;
	padding: 100px 50px 50px 50px;
}
.process .body{
	max-width: 1500px;
	margin: 0 auto;
}
.process .body h1{
	padding-bottom: 50px;
}
.process .body h2{
	padding: 75px 0 50px 0;
}
.process .body p{
	max-width: 1000px;
	margin: 0 auto;
}