.solution-contact-btn {
    text-decoration: none;
    display: inline-block;
    width: 200px;
    height: 50px;
    background-color: #ffe300;
    font-size: 18px;
    color: #000;
    text-align: center;
    line-height: 48px;
    margin: 0 20px;
    transition: all 0.5s;
    font-weight: 300;
    
}
.work-list {
  display: flex;
  flex-wrap: wrap;
}
.work-list-item {
  width: 33.333%;
  position: relative;
  overflow: hidden;
}
.work-list-item img {
  display: block;
  width: 100%;
}
.work-list-item .mask {
  position: absolute;
  z-index: 9;
  background-color: #fff;
  width: 101%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.work-list-item .text {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: hidden;
  text-align: center;
  background: rgba(0, 0, 0, 0);
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  transition: background 0.5s; 
}
.work-list-item .text h2 {
  opacity: 0;
  color: #fff;
  border: 4px solid #fff;
  width: 60%;
  padding: 0 15px;
  font-size: 18px;
  line-height: 45px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -moz-binding: url(ellipsis.xml#ellipsis);
  transform: scale(1.5);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.61s ease;
}
.work-list-item .img {
  overflow: hidden;
}
.work-list-item .img img {
  transition: transform 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.work-list-item:hover .text h2 {
  transform: scale(1);
  opacity: 1;
}
.work-list-item:hover .text {
  background: rgba(0, 0, 0, 0.5);
}
.work-list-item:hover .img img {
  transform: scale(1.2);
}