
.ih-item{
	position: relative;
	float:left;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
    
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* background-color:blue; */
	height:72px;
}

.ih-item a {
  color: #333;
}

.ih-item a:hover {
  text-decoration: none;
}

.ih-item img {
  width: 60%;
  height: auto;
  background-color:red;
}



/* Viereck */


.ih-item.square {
  position: relative;
  /* width: 140px; */
  /* height: 140px; */
}
.ih-item.square .img {
  position: relative;
/*   width: 100%;
  height: 100%; */
  /* border-radius: 50%; */
}
.ih-item.square .img:before {
  position: absolute;
  display: block;
  content: '';
  width: 60%;
  height: auto;
  /* border-radius: 50%; */
  /* box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.3); */
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;

}
.ih-item.square .img img {
  /* border-radius: 50%; */
}
.ih-item.square .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* margin-left:20%; */
  text-align: center;
  width:60%;
  height:auto;
  /* border-radius: 50%; */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

}

.ih-item.square.effect13.colored .info {
  background: #1a4a72;
  background: rgba(26, 74, 114, 0.6);
}

.ih-item.square.effect13 .info {
  background: #333333;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;

  pointer-events: none;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect13 .info h3 {
  visibility: hidden;
  text-align:center;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.5px;
  font-size: 0.6em;
  margin: 10px 4px;
  line-height:1.2em;
  padding: 5px 5px 0 0;
  height: 20px;
  text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect13 .info p {
  visibility: hidden;
  color: #bbb;
  padding: 1px 5px;
  font-style: italic;
  margin: 0 5px;
  font-size: 0.6em;
  line-height:1.2em;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect13 a:hover .info {
  opacity: 1;
}
.ih-item.square.effect13 a:hover h3 {
  visibility: visible;
}
.ih-item.square.effect13 a:hover p {
  visibility: visible;
}

.ih-item.square.effect13.from_left_and_right .info h3 {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.ih-item.square.effect13.from_left_and_right .info p {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.ih-item.square.effect13.from_left_and_right a:hover h3 {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.ih-item.square.effect13.from_left_and_right a:hover p {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
