.el-fiftyfifty .ffWrapper {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.el-fiftyfifty .ffWrapper .ffPicture {
	width: 50%;
	background-color: rgba(0,0,0,.04);
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
}
.el-fiftyfifty .ffWrapper .ffContent {
	background-color: #fafaf8;
    background-image: url(background-box.jpg);
    background-repeat: repeat;
    background-position: center center;
    background-size: 1920px 750px;
	width: 50%;
	box-sizing: border-box;
	padding-left: 100px;
	padding-right: 100px;
	padding-top: 40px;
	padding-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}
.el-fiftyfifty .ffWrapper .ffPicture .bhBackgroundImage {
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
}
.el-fiftyfifty .ffWrapper .ffContent > .bhContainer {
	width: 100%;
}
.el-fiftyfifty.contentLeft .ffWrapper .ffPicture {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}
.el-fiftyfifty.contentLeft .ffWrapper .ffContent {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

@media screen
	and (max-width : 1023px) {
		
		.el-fiftyfifty .ffWrapper {
			flex-direction: column;
		}
		.el-fiftyfifty .ffWrapper .ffPicture {
			width: 100%;
			border-top-left-radius: 0px;
			border-bottom-left-radius: 0px;
			height: 400px;
		}
		.el-fiftyfifty .ffWrapper .ffPicture .bhBackgroundImage {
			border-top-left-radius: 0px;
			border-bottom-left-radius: 0px;
		}
		.el-fiftyfifty .ffWrapper .ffContent {
			width: 100%;
			border-top-right-radius: 0px;
			border-bottom-right-radius: 0px;
			padding-left: 25px;
			padding-right: 25px;
		}	
}