.link-grid {
  display: flex;
  flex-wrap: wrap;
}
.hover-box {
  position: relative;
  min-height: 250px;
  width: 23%;
  overflow: hidden;
  margin: 1%;
  cursor: pointer;
}
.hover-box__content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 5%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
  align-items: center;
  justify-content: center;
}
.hover-box__title {
  margin: 0;
  color: #fff;
  width: 100%;
  text-align: center;
}
.hover-box__desc {
  display: none;
  padding-top: 25px;
  color: #fff;
  text-align: center;
}
.hover-box:hover .hover-box__desc {
  display: block;
  font-size: 20px;
  line-height: 1.4;
}
/* .hover-box__desc .hover-box__desc_text {
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition: 0.5s cubic-bezier(0.2, 1, 0.7, 1);
}
.hover-box:hover .hover-box__desc .hover-box__desc_text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
} */

.hover-box__image01,
.hover-box__image02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: all .5s ease-in-out;
}
.hover-box__image02 {
  opacity: 0;
  transform: scale(1.1);
}
.hover-box__overlay:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  opacity: 0.3;
}
.hover-box:hover .hover-box__image01 {
  transform: scale(1.3);
}
.hover-box:hover .hover-box__image02 {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1139px) {
  .hover-box {
    width: 31.33%;
  }
  .hover-box__title {
    font-size: 28px !important;
  }
}

@media (max-width: 767px) {
  .hover-box__content {
    padding: 15% 30px;
  }
  .hover-box {
    width: 48%;
  }
}

@media (max-width: 500px) {
  .hover-box {
    width: 100%;
  }
}
