.ih-item {
  position: relative;
}

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

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


.ih-item.circle {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.ih-item.circle .img {
  position: relative;
  width: 130px;
  height: 130px;
  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 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease-in-out;
}

.ih-item.circle .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 50%;
  backface-visibility: hidden;
}

.ih-item.circle.effect2 .img {
  opacity: 1;
  transform: scale(1);
  transition: all 0.35s ease-in-out;
}

.ih-item.circle.effect2 .info {
  background: #333333;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease-in-out;
}

.ih-item.circle.effect2 .info h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0px;
    font-size: 18px;
    margin: 0 30px;
    padding: 55px 0 0 0;
    height: 110px;
    text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ih-item.circle.effect2.left_to_right .info {
  transform: translateX(-100%);
}
.ih-item.circle.effect2.left_to_right:hover .img {
  transform: rotate(-180deg);
}

.ih-item.circle.effect2.left_to_right:hover .info {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (max-width:1050px){
    .ih-item.circle {
        position: relative;
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
        margin-right: 20px;
        margin-left: 20px;
        border-radius: 50%;}

    .ih-item.circle .img {
        width: 120px;
        height: 120px;}
}
