/*********************************************************** small screen */
	

/*********************************************************** medium screen */
@media screen and (min-width: 800px) {
	
}

/*********************************************************** large screen */
@media screen and (min-width: 1250px) {
	
}


#DynamicImageWrapper {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	max-width: 1250px;
	height: 100px;
	background: transparent;
	margin: auto;
}

#DynamicImageLoaderWrapper {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 100px;
}

#DynamicImageLoader {
	position: relative;
	top: 25px;
	left: 0px;
	width: 30px;
	height: 30px;
	margin: auto;

	opacity: 0.5;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/loading-icon.gif");
}

.DynamicImageBox {
	position: absolute;
	overflow: hidden;
	cursor: pointer;
	opacity: 0;
}

.DynamicImageOffset {
	position: absolute;
	top: 40px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.DynamicImageInner {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	transform: scale(1.005);

	-webkit-transition: transform 0.5s;
	transition: transform 0.5s;
}
.DynamicImageBox:hover > .DynamicImageOffset > .DynamicImageInner {
	transform: scale(1.05);
}

.DynamicImageBoxFront {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: transparent;
	pointer-events: none;

	-webkit-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
.DynamicImageBox:hover > .DynamicImageOffset > .DynamicImageBoxFront {
	background-color: rgba(0, 0, 0, 0.4);
}

.DynamicImageTitleBoxHolder {
	position: absolute;

	width: 100%;

	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.DynamicImageBox:hover > .DynamicImageOffset > .DynamicImageBoxFront > .DynamicImageTitleBoxHolder {
	opacity: 1.0;
}

.DynamicImageTitleBox {
	position: relative;
	width: calc(100% - 20px);
	margin: auto;
}

.DynamicImageTitle {
	position: relative;
	width: 100%;
	
	font-family: ebgaramond;
	font-size: 28px;
	line-height: 36px;
	font-style: normal;
	font-weight: 400;
	text-align: center;
	color: white;
}

.DynamicImageNature {
	position: relative;
	width: 100%;
	margin: 10px 0px 0px 0px;
	
	font-family: gothamlight;
	font-size: 16px;
	line-height: 20px;
	font-style: normal;
	font-weight: 400;
	text-align: center;
	color: white;
}

.DynamicImageTextBar {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 15px;
	height: 5px;
	background-color: white;
}