.single-column {
	position: relative;
	width: 100%;
	padding: 0 4%;
	display: flex;
	justify-content: center;
}

.single-column.centered h1:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 80px;
  left: 50%;
  bottom: -15px;
  background: linear-gradient(90deg, #3a54ac 0%, #438eef 100%);
  transform: translateX(-50%);
 }
 
 .single-column h1:after {
   content: '';
   position: absolute;
   height: 2px;
   width: 80px;
   left: 0;
   bottom: -15px;
   background: linear-gradient(90deg, #fcbb09 0%, #d74fa1 100%);
   transform: none;
  }

.single-column > .max-width {
	max-width: none;
	display: flex;
	justify-content: center;
}

.single-column .wrapper {
	position: relative;
	width: 100%;
	
}

.single-column.centered {
	text-align: center;
}

section.single-column ul{
	list-style:none;
	margin: 20px 0;
}

section.single-column li {
	margin: 10px 0;
	line-height: 1.5em;
	font-weight: 500;
	font-size:1em;
	padding-left:28px;
	position:relative;
}
section.single-column li:before{
	content:'\f00c';
	position:absolute;
	top:0;
	left:0;
	font-family:'Font Awesome 5 Pro';
}

section.single-column p{
	font-weight:400;
	font-size:1em;
}