/* 2 COLUMN */

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

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%;
	clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 50%, calc(100% - 80px) 100%,0 100%);
	background-size: cover;
	background-position: center center;
	max-width: 800px;
}

section.x2column .col .image::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	background: var(--orange-color);
	clip-path: polygon(0 0, 100% 0, 100% 100%,0 100%, 50% 50%);
	/* opacity: 0.25; */
	z-index: 10;
}

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: 8px 0;
	line-height: 1.5em;
	font-weight: 600;
	font-size: 0.875em;
	padding-left: 18px;
	position: relative;
	color: var(--dark-grey-color);
}

section.x2column li:before {
	content: '\f0c8';
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Font Awesome 5 Pro';
	color: var(--main-color);
	font-weight: 600;
	font-size: 0.5em;
}

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%;
}

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

section.x2column .wrapper.reverse .col .image{
	clip-path:polygon(80px 0, 100% 0, 100% 100%, 80px 100%, 0 50%);
	left:auto;
	right:0;
}


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

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

@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;
	}
	
}