  .flex-image-container {
	margin: 0;padding:0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	height: 700px;
	/*justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;*/
}

.flex-image-container .fleximage {
/*	flex-grow:0;
	flex-shrink:0;*/
	width: 571px;
	height: 321px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 25px;
	color:#fff;
	font-weight: bold;
	font-size: 2.2em;
	text-align: center;
	margin:0;padding:0;
	position: relative;
  	display: block;
}

.flex-image-container .fleximage img {
	width: 100%;
}

.flex-image-container .fleximage span {
	position:absolute;
	color:#fff;
	bottom:0;
	left: 0;
	font-size: .6em;
	z-index: 3;
	font-family: jd_sans_probold, "Helvetica Neue", Helvetica, Arial !important;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 5px;
	width: 100%;
}

.flex-image-container .fleximage:after {
	content: '';
	position: absolute;
	left: 0;top:0;
	width: 100%;
	height: 100%;
	display: inline-block;
	cursor: pointer;
}



.flex-image-container .fleximage:hover {
	opacity: .8;
}


.flex-image-container .fleximage:first-child {width:785px; height: calc(326px * 2); margin-right: 10px;}
.flex-image-container .fleximage:nth-child(2) {margin-bottom: 10px;}

@media only screen and (max-width: 1366px) {
  .flex-image-container {
	flex-direction: row;
  	height: initial;
  }

  .flex-image-container .fleximage {
  	width: calc(50% - 5px);
  }
	.flex-image-container .fleximage:first-child {width:100%; margin: 0px 0px 10px 0px;}
    .flex-image-container .fleximage:nth-child(2) {margin-right: 10px;}
}

@media only screen and (max-width: 900px) {
  .flex-image-container {
	/*flex-direction: column;*/
  	height: initial;
  }
  .flex-image-container .fleximage {
  	font-size: 1.8em;
  	width: 100%;
    height: 275px !important;
    margin: 0px 0px 10px 0px !important;
  }
}







