
.stats {
  margin: 40px 0;
}

.stats li {
  display: inline-block;
  padding-left: 64px;
  margin: 0 50px 0 0;
  height: 50px;
  font-size: 16px;
  line-height: 22px;
  position: relative;
}

.stats span {
    display: block;
    font-size: 30px;
    position: relative;
    top: 3px;
}

.stats li:nth-child(1) {
    background: url(../images/ico-6.png) no-repeat 0 center;
}

.stats li:nth-child(2) {
    background: url(../images/ico-8.png) no-repeat 0 center;
}

.stats li:nth-child(1) span {
    color: rgb(8, 112, 223);
}

.stats li:nth-child(2) span {
    color: rgb(8, 112, 223);
}

.case {
    display: inline-block;
    margin: 0 -2px;
    margin-bottom: 40px;
    position: relative;
}

.case-hover {
    position: absolute;
    z-index: 55;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.case-wp {
    text-align: center;
    display: flex;
    justify-content: center;
}

.case-wp img {
    transition: 0.5s;
    max-width: 100%;
    height: auto;
}

.case-open {
  position: absolute;
  bottom: -5px;
  left: 0px;
  right: 0px;
  font-size: 16px;
  font-family: ExoSoftMedium;
  color: rgb(8, 112, 223);
  text-align: center;
  opacity: 0;
  transition: 0.5s;
  transform: translate3d(0, 40px, 0);
  z-index: 33;
  font-weight: bold;
}

.case-name {
  text-align: center;
  font-size: 20px;
  font-family: ExoSoftMedium;
  color: rgb(8, 112, 223);
  overflow: hidden;
  padding: 0 25px;
  transition: 0.5s;
  font-weight: bold;
}

.case:hover .case-wp img {
  transform: translate3d(0, 10px, 0);
}

.case:hover .case-name {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}

.open-case:hover .case-name {
  opacity: 1;
  transform: translate3d(0, 0px, 0);
}

.open-case:hover .case-wp img {
  transform: translate3d(0, 0px, 0);
}

.case:hover .case-open {
  opacity: 1;
  transform: translate3d(0, 0px, 0);
}