/* 2 COLUMN */

section.x2column{
	padding:0;
	margin: 45px 0;
	width: 100%;
	overflow: hidden;
}
section.x2column p{
	font-weight:500;
}
section.x2column p.subtitle{
	color: #fff;
	font-size: 1.5em;
}
section.x2column h2{
	position: relative;
	margin-bottom: 0;
	font-size: 3em;
	text-transform: none;
	font-weight: 500;
	color: var(--dark-blue-color);
}
section.x2column h3{
	color:var(--dark-blue-color);
	font-size:2em;
	margin-bottom:25px;
	margin-top:0;
}

section.x2column h2 strong{
	color: var(--cyan-color);
	font-weight: 700;
}

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% - 40px) 0, 100% 40px, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);*/
	background-size: cover;
	background-position: center center;
	max-width: 800px;
	border-radius:0 40px 40px 0;
}

section.x2column .col .image:before{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background:var(--cyan-color);
	background:#fff;
	clip-path: polygon(calc(100% - 50px) 0, 100% 0,50px 100%, 0 100%);
	clip-path: polygon(100% calc(100% - 120px),100% calc(100% - 80px), calc(100% - 80px) 100%, calc(100% - 120px) 100%);
	opacity: 1;
	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: 10px 0;
	line-height: 1.3em;
	font-weight: 500;
	font-size:1.175em;
	padding-left:28px;
	position:relative;
}
section.x2column li:before{
	content:'\f00c';
	position:absolute;
	top:0;
	left:0;
	font-family:'Font Awesome 5 Pro';
}
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%, 0 100%);
	clip-path: polygon(40px 0, 100% 0, 100% 100%, 40px 100%,0 calc(100% - 40px), 0 40px);*/
	border-radius:40px 0 0 40px;
	left:auto;
	right:0;
}


section.x2column .wrapper.reverse .col .image:before{
	clip-path: polygon(80px 0, 120px 0, 0 120px, 0 80px);
}

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

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