.step-list {
	padding: 100px 0;

	font-size: 22px;
	line-height: 32px;
}

.step-list h2 {
	margin-bottom: 0;
	padding-bottom: 0;
}

.step-list h3 {
	font-size: 32px;
}

ol.step-list{
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: step;
  font-size: 22px;
  line-height: 32px;
}

ol.step-list > li {
  counter-increment: step;
  position: relative;
  padding-left: 0; /* room for "Step 10" etc */
  margin: 0 0 1rem;
}

ol.step-list > li::before{
  display: block;
  font-weight: bold;
  content: "Step " counter(step);
  margin: 0;
  padding: 0;
  
  background: linear-gradient(90deg, rgb(243, 148, 45) 0%, rgb(233, 67, 98) 65%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-family: 'Raleway',sans-serif;
  
}

ol.step-list > li h4 {
	font-size: 30px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

ol.step-list > li h4 +p {
	margin-top: 0;
	padding-top: 0;
}

.step-wrapper {
	margin-top: .5em;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: flex-start;
	align-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	gap: 10px;
}

.step-wrapper .step-icon {
	-webkit-order: 0;
	order: 0;
	-webkit-flex: 0 1 10%;
	flex: 0 1 10%;
	-webkit-align-self: auto;
	align-self: auto;
}

.step-wrapper .step-icon img {
	width: 100%;
	height: auto;
}

.step-wrapper .step-content {
	-webkit-order: 0;
	order: 0;
	-webkit-flex: 0 1 100%;
	flex: 0 1 100%;
	-webkit-align-self: auto;
	align-self: auto;
}

.step-wrapper .step-icon +  .step-content {
	-webkit-flex: 0 1 90%;
	flex: 0 1 90%;
}

.step-list h2 + .description p:nth-child(1) {
	margin-top: 1em;
}

.step-content p:nth-child(1) {
	padding-top: 0;
	margin-top: 0;
}

.grid-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

ol.grid-steps > li {
	border-radius: 1em;
	padding: 1em;
	background-color: #EAF3FA;
}

ol.grid-steps > li::before {
	display: block;
	position: relative;
	top: auto;
	left: auto;
	font-size: 1.25em;
	line-height: 1.4;
	text-align: center;
}

.step-list-wrapper + .conclusion {
	margin-top: 2em;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-content: center;
	align-content: center;
	-webkit-align-items: center;
	align-items: center;
	gap: 2em;
}

.step-list-wrapper + .conclusion  .conclusion-thumb {
	display: block;
	margin: 0 auto .25em;
	text-align: center;	
}

.conclusion-thumb {
	-webkit-order: 0;
	order: 0;
	-webkit-flex: 0 1 15%;
	flex: 0 1 15%;
	-webkit-align-self: auto;
	align-self: auto;
}

.conclusion-content {
	-webkit-order: 0;
	order: 0;
	-webkit-flex: 0 1 50%;
	flex: 0 1 50%;
	-webkit-align-self: auto;
	align-self: auto;
}

.step-list-wrapper + .conclusion .conclusion-content a.button.button--gradient {
	font-size: 20px;
	display: block;
	text-align: center;
}

.step-list-wrapper + .conclusion  .col {
  flex: 0 0 100%;
  text-align: center;
}

.step-list-wrapper + .conclusion .conclusion-thumb {
	margin: 0 0 .25em;
}

@media screen and (min-width: 768px) {
		
	.step-list-wrapper + .conclusion {
		-webkit-flex-direction: row;
		flex-direction: row;
	}
}

.col .conclusion-thumb {
}
	
	
@media (max-width: 760px) {
  ol.step-list li {
	text-align: center;
  }
  .step-wrapper {
	  margin-top: .5em;
	  -webkit-flex-direction: column;
	  flex-direction: column;
	  -webkit-justify-content: center;
	  justify-content: center;
	  -webkit-align-content: center;
	  align-content: center;
	  -webkit-align-items: center;
	  align-items: center;
	  gap: 10px;
  }
  
  .step-wrapper img {
	  max-width: 100px;
	  height: auto;
  }
  
  .step-list p {
	  font-size: 14px;
	  line-height: 20px;
  }
  
  .step-list h3 {
	  font-size: 18px;
  }
  ol.step-list > li h4 {
  	font-size: 16px;
  }
  ol.step-list > li::before {
		font-size: 16px;
  }
}