.SL_3ProductsComponent {
  padding: 3rem 0;
}
.SL_3ProductsComponent .box {
  height: 28rem;
  position: relative;
  display: block;
  border-radius: 5px;
  -moz-border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.44);
}
@media (max-width: 767px) {
  .SL_3ProductsComponent .box {
    margin-bottom: 2rem;
  }
}
.SL_3ProductsComponent .box::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.SL_3ProductsComponent .box > .image {
  width: 100%;
  height: 22rem;
  transform: translate(0);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.8s ease-out;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
  transition-delay: 0s;
}
.SL_3ProductsComponent .box > .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7rem;
  color: #FFFFFF;
  z-index: 10;
  background-color: #113A4E;
  text-align: center;
}
.SL_3ProductsComponent .box > .text > h4 {
  font-weight: 400;
  color: #FFFFFF;
}
.SL_3ProductsComponent:hover > a > .image {
  transform: scale(1.06);
}
