/* 2 COLUMN */

section.x2column{
	padding:0;
	margin: 45px 0;
	width: 100%;
	overflow: hidden;
}
section.x2column p.subtitle{
	color: #fff;
	font-size: 1.5em;
}
section.x2column h2{
	position:relative;
	margin-bottom: 15px;
	padding-bottom: 5px;
	font-size: 2em;
}

section.x2column h3 {
	font-size: 1.25em;
	text-transform: none; 
	margin: 1.5em 0 0.25em 0;
	font-weight: 600;
}

section.x2column p {
	margin: 0 0 15px 0;
}

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

section.x2column .col{
	flex: 0 0 45%;
	position: relative;
	margin-right: 5%;
}

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{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 130px;
	height: 100%;
	background:var(--second-color);
	z-index: 10;
}

section.x2column .col .image:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 5%;
	width: 50%;
	height: 35%;
	opacity: 0.25;
}



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

}

section.x2column .col .info{
	max-width: 575px;
	padding: 90px 0;
}

@media screen and (min-width:1200px){
	section.x2column .col .info{
		margin-left:calc(575px / 100 * 5);
	}
	section.x2column .col .info{
		margin-left:calc(575px / 100 * 5);
	}
	section.x2column .wrapper{
		display:flex;
		min-height:500px;
	}
}

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

section.x2column li {
	margin: 10px 0;
	  line-height: 1.6em;
	  font-weight: 400;
	  font-size: 1em;
	  padding-left: 28px;
	  position: relative;
	  color: var(--main-color);
}
section.x2column li:before{
	content: '\f054';
	  position: absolute;
	  top: 0;
	  left: 0;
	  color: var(--second-color);
	  font-family: 'Font Awesome 5 Pro';
	  font-weight: 600;
	  font-size: 1.2em;
}

section.x2column .wrapper .col .image {
	clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0% 100%);
}
section.x2column .col .image:before {
clip-path: polygon(100% 0, 100% 50%, 100% 100%, 60% 100%, 81% 50%, 60% 0);
}

section.x2column .wrapper .col.content{
	display:flex;
	align-items: center;
}
section.x2column .wrapper.reverse{
	flex-direction:row-reverse;
}

section.x2column .wrapper.reverse .col{
	margin-left:5%;
	margin-right:0;
}

section.x2column .wrapper.reverse .col.content{
	justify-content:flex-end;
}
section.x2column .wrapper.reverse .col .image{
	margin-left:2.5%;
	flex:0 0 47.5%;
	clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
}

section.x2column .wrapper.reverse .col .image:before {
clip-path: polygon(44% 0, 19% 50%, 44% 100%, 0 100%, 0% 50%, 0 0);
}

section.x2column .wrapper.reverse .col .info{
	padding: 90px 0;
	width: 100%;
}

section.x2column .wrapper.reverse .col .image{
	left:auto;
	right:0;
}


section.x2column .wrapper.reverse .col .image:before{
	left:0;
	right:auto;
}

section.x2column .wrapper.reverse .col .image:after{
	right:5%;
	left:auto;
}

@media screen and (max-width:1300px){ 
	
	section.x2column .wrapper .col .image {
		clip-path: polygon(0% 0%, 86% 0, 100% 50%, 86% 100%, 0% 100%);
	}
	
	section.x2column .wrapper.reverse .col .image{
		clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 14% 100%, 0% 50%);
	}
}

@media screen and (max-width:880px){ 
	
	section.x2column .wrapper .col .image {
		clip-path: polygon(0% 0%, 84% 0, 100% 50%, 84% 100%, 0% 100%);
	}
	
	section.x2column .wrapper.reverse .col .image{
		clip-path: polygon(16% 0%, 100% 0%, 100% 100%, 16% 100%, 0% 50%);
	}
}

@media screen and (max-width:800px){
	section.x2column{
		padding:0;
	}
	section.x2column .wrapper, section.x2column .wrapper.reverse{
		flex-direction:column;
	}
	
	section.x2column .col{
		flex:0 0 90%;
		margin:0 5%;
		padding: 0 5% 0 0;

	}
	section.x2column .col.image{
		padding-bottom:60%;
		flex:0 0 95%;
		margin-left:0%;
	}
	section.x2column .wrapper.reverse .col.image{
		margin-left:5%;
	}
	section.x2column .col .info, section.x2column .wrapper.reverse .col .info{
		padding: 0;
		max-width: none;
		margin:45px 0 0 0;
	}
	
}