/*

---------------
Für Kreisbilder
---------------

https://github.com/gudh/ihover
http://gudh.github.io/ihover/dist/index.html

*/


h3 /* für Titel im KreisBild */
	{
	font-family:      'Baloo 2', Verdana, Arial, sans-serif;
	font-size:        38px;
	letter-spacing:   0px;
	line-height:      75%;
	text-shadow:      0px -5px 15px #000;
	font-weight:      600;
	color:            #fff;
	text-align:       center;
	margin:           50px 0px 0px 0px; /* top right bottom left */
	padding:          0;
	hyphens:          none;  /* Verhindert jeden Wortumbruch */
	}

h4 /* für Text im KreisBild */
	{
	font-family:      'Baloo 2', Verdana, Arial, sans-serif;
	font-size:        20px;
	letter-spacing:   0px;
	line-height:      100%;
	text-shadow:      0px -5px 15px #000;
	font-weight:      500;
	color:            #eee;
	text-align:       center;
	padding:          10px 5px 10px 5px; /* top right bottom left */
	margin:           10px;
	hyphens:          none;  /* Verhindert jeden Wortumbruch */

	visibility: hidden;
	border-top: 1px solid #eee;
	}




.ih-item {
  position: relative;
  -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,
.ih-item * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ih-item a {
  color: #333;
}
.ih-item a:hover {
  text-decoration: none;
}
.ih-item img {
  width: 100%;
  height: 100%;
}

.ih-item.circle {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
}
.ih-item.circle .img {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
}
.ih-item.circle .img:before {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px #eeeeeeff, 0 0 10px #00000033;
  -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.circle .img img {
  border-radius: 50%;
}
.ih-item.circle .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* --------------------  Effekt 13 Rund  --------------------  */


.ih-item.circle.effect13.colored .info {
  background: #333333;
  background: #33333399;  /* Alpha in HEX (60% Deckkraft = 153/255 = 99) */
}
.ih-item.circle.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.circle.effect13 .info h3 {
  visibility: hidden;
  position: relative;
  margin: 0 30px;
  padding: 45px 0 0 0;
}
.ih-item.circle.effect13 .info h4 {
  -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.circle.effect13 a:hover .info {
  opacity: 1;
}
.ih-item.circle.effect13 a:hover h3 {
  visibility: visible;
}
.ih-item.circle.effect13 a:hover h4 {
  visibility: visible;
}

.ih-item.circle.effect13.top_to_bottom .info h3 {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ih-item.circle.effect13.top_to_bottom .info h4 {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ih-item.circle.effect13.top_to_bottom a:hover h3 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.ih-item.circle.effect13.top_to_bottom a:hover h4 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}


