@charset "UTF-8";
/* ********************************************************************************** */
/* (c) designschmiede - www.wirschmiedendesign.de                                       
/* ********************************************************************************** */		

/* basic adjustments
---------------------------------------------------------------------------------------------- */ 
#imageRowThree {
  position: relative;
	padding: 0;}	

/* image
---------------------------------------------------------------------------------------------- */
#imageRowThree .image {
	position: relative;
  overflow: hidden;
	border-radius: 5px;}

#imageRowThree .itemContainer img {
	-webkit-transition: transform 0.5s ease-in;
	        transition: transform 0.5s ease-in;
	-webkit-transform: scale3d(1.05,1.05,1.05) rotate(0deg);
  		-ms-transform: scale3d(1.05,1.05,1.05) rotate(0deg);
          transform: scale3d(1.05,1.05,1.05) rotate(0deg);}

.no-touchevents #imageRowThree .itemContainer .image.loaded:hover img {
  -webkit-transform: scale3d(1.1,1.1,1.1) rotate(1deg);
      -ms-transform: scale3d(1.1,1.1,1.1) rotate(1deg);
	        transform: scale3d(1.1,1.1,1.1) rotate(1deg);	
	-webkit-transition-timing-function: ease-in;
					transition-timing-function: ease-in;}

/* overlay
---------------------------------------------------------------------------------------------- */
#imageRowThree .itemContainer .item-overlay {
	position: absolute;
	border-radius: inherit;
  top: 0;
	left: 0;
  height: 100%;
  width: 100%;
	background: radial-gradient(transparent, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-in;
	        transition: opacity 0.4s ease-in;}

.no-touchevents #imageRowThree .itemContainer .image.loaded:hover .item-overlay {
	opacity: 1;
	-webkit-transition-timing-function: ease-in;
					transition-timing-function: ease-in;}

/* zoom-icon
---------------------------------------------------------------------------------------------- */
#imageRowThree .zoomicon {
	position: absolute;
	z-index: 1;
	right: 14px;
	width: 41px;
	height: 41px;
	opacity: 0.95;
	background-color: transparent;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../images/zoom.svg);}

#imageRowThree .zoomicon.up {
	top: 15px;}

#imageRowThree .zoomicon.down {
	bottom: 15px;}

/* brand-logo/s
---------------------------------------------------------------------------------------------- */
#imageRowThree .brand {
	position: absolute;
	bottom: 15px;
	left: 0px;
	width: 80px;
	height: 90px;
	z-index: 1;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;}

#imageRowThree .brand.fj {
	background-image: url(../images/fj_logo.svg);}
