/* 2 COLUMN */

section.x2column{
	padding:0 5%;
	margin: 0 0 0 0;
	width: 100%;
	overflow: hidden;
	display: flex;
	  justify-content: center;
}

section.x2column.white {
	background: var(--white-color);
}

section.x2column p.subtitle{
	color: #fff;
	font-size: 1.5em;
}
section.x2column h2{
	position:relative;
	margin-bottom: 25px;
	padding-bottom: 5px;
	font-size: 3em;
}


section.x2column .wrapper{
	display:flex;
	min-height:400px;
}

section.x2column .col{
	position: relative;
	width: 50%;
}

section.x2column .col .image{
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size:cover;
	background-position:center center;
	max-width: 800px;
}

section.x2column .col .image:before{
	position: absolute;
	content:'';
	border: 1px solid var(--second-color);
	margin: 20px;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	z-index: 2;
}


section.x2column .col .image img{
	width:100%;
	height:100%;
	object-fit:cover;

}

section.x2column .col .info{
	padding: 0 0 0 5%;
}

@media screen and (min-width:1200px){

	section.x2column .wrapper{
		display:flex;
		min-height:500px;
		max-width: 1200px;
		width: 100%;
	}
}

section.x2column ul{
	list-style:none;
}

section.x2column ol{
	list-style:none;
	margin: 30px 0;
}

section.x2column ul li {
	margin: 10px 0;
	line-height: 1.3em;
	font-weight: 600;
	font-size:1em;
	padding-left:32px;
	position:relative;
	margin: 30px 0;
	color: var(--main-color);
}

section.x2column ol li {
	margin: 10px 0;
	  line-height: 1.3em;
	  font-weight: 500;
	  font-size: 1em;
	  padding-left: 34px;
	  position: relative;
	  background: var(--lighter-gold);
	  padding: 20px 20px 20px 30px;
	  counter-increment: list-counter;
}

section.x2column ol li:before {
	font-family: var(--main-font);
	content: counter(list-counter);
	  background: var(--third-color);
	  position: absolute;
	  top: -8px;
	  left: -12px;
	  width: 35px;
	  height:35px;
	  border-radius: 50%;
	 border: 3px solid var(--white-color);
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: var(--white-color);
	  text-align: center;
	  font-size: 1em;
}

section.x2column ul li:before{
	content: '\f138';
	  position: absolute;
	  top: 0;
	  font-size: 1.5em;
	  left: 0;
	  font-family: 'Font Awesome 5 Pro';
	  color: var(--second-color);
	  font-weight: 300;
}

/* Reverse */

section.x2column .wrapper.reverse {
	flex-direction: row-reverse;
}

section.x2column .wrapper.reverse .col .info {
	padding: 0 5% 0 0;
}


@media screen and (max-width:880px){
	section.x2column .wrapper {
		flex-direction: column;
	}
	
	
	section.x2column .wrapper.reverse {
		flex-direction: column;
	}
	
	section.x2column .col {
		width: 100%;
	}
	
	section.x2column .col.image {
		min-height: 50vh;
		margin: 0 0 30px 0;
	}
	
	section.x2column .col.content {
		margin: 0;
	}
	
	section.x2column .col.content .info {
		padding: 0;
	}
}




/* purple styling */

section.x2column.purple {
	background: var(--lighter-purple);
}

section.x2column.purple h4 {
	color: var(--white-color);
}

section.x2column.purple p {
	color: var(--white-color);
}

section.x2column.purple ul li {
	color: var(--white-color);
	font-weight: 500;
}

section.x2column.purple ol li {
	background: var(--darker-purple);
	color:var(--white-color);
	font-weight: 400;
}

section.x2column.purple ul li:before { 

	color: var(--second-color);
	font-weight: 300;
}

section.x2column.purple ol li:before { 
	background: var(--second-color);
	color: var(--white-color);
	border: 3px solid var(--lighter-purple);
}


