.el-box .box-wrapper {
	width: 100%;
	height: auto;
	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: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
/* IMG */
.el-box .box-img {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	max-height: 40rem;
}
.el-box .box-img.bhe-state-property-empty {
	position: relative;
	background-color: var(--primary-color-15);
}
.el-box .box-img.bhe-state-property-empty:after {
	content: "\e966";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: var(--primary-color-60);
	font-size: 48px;
	font-family: 'bakehouse-iconset' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.el-box .box-img-inner {
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 68%;
	pointer-events: none;
}

/* CONTENT */
.el-box .box-content {
	/* position: relative;
	z-index: 1; */
	padding: 4rem 0 0;
	box-sizing: border-box;
}

/* TEXT */
.el-box .box-headline h3 {
	font-size: 2.8rem;
}
.el-box .box-text {
	margin-bottom: 2.5rem;
}


/* IMG BOTTOM */
@media only screen and (min-width:961px) {
	.el-box.img-bottom .box-wrapper {
		flex-direction: column-reverse;
	}
	.el-box.img-bottom .box-content {
		padding-top: 0px;
		padding-bottom: 4rem;
	}
}