@charset "utf-8";
h4 {
	border: none;
	margin: 15px 0;
	padding: 0;
}
a {
	text-decoration: none;
}
li, ol {
	list-style: none;
}

i {
	font-style: normal;
}

.flow-container {
	max-width: 900px;
	margin: 50px auto 0;
}

.step-body {
	display: flex;
	height: 100%;
	padding-bottom: 4rem;
	position: relative;
	gap: 30px;
}

.step-body:last-child {
	padding-bottom: 2rem;
}

.step-number {
	position: relative;
	background: #ed7895;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	width: 70px;
	height: 70px;
	font-size: 20px;
	font-weight: bold;
	line-height: 20px;
	align-content: center;
	flex-shrink: 0;
}

.step-number .small {
	display: block;
	font-size: 13px;
}

.step-body:not(:last-child):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #ed7895;
  top: 0;
  left: 35px;
  z-index: -1;
  transition: height 1.5s ease-out;
}
.step-body.animate:not(:last-child):before {
  height: 100%;
}


.link-list {
	margin: 20px 0 0;
}
.link-list li {
	padding-bottom: 5px;
}

.link-list a {
	transition: 0.3s;
}
.link-list a:hover {
	opacity: .6;
	transition: 0.3s;
}

.step-text {
	line-height: 1.6;
}

.btn-box {
	text-align: center;
}
.btn-box .btn {
	background: #ed7895;
	color: #fff;
	border-radius: 5px;
	padding: 10px;
	display: block;
	width: 350px;
	max-width: 90%;
	text-align: center;
	margin: 30px auto 0;
	transition: .5s;
}

.btn:hover {
	transition: .5s;
	opacity: .6;
}



@media(max-width:550px){
	.step-body {
		gap: 20px;
	}
	.step-text {
		font-size: 14px;
	}
	.step-number {
		width: 65px;
		height: 65px;
		font-size: 18px;
		line-height: 18px;
	}
	.step-number .small {
		font-size: 12px;
	}

}