.SL_2ProductsComponent {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .SL_2ProductsComponent .order-type-1 .order-1 {
    width: 60%;
  }
  .SL_2ProductsComponent .order-type-1 .order-2 {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .SL_2ProductsComponent .order-type-1 .order-1, .SL_2ProductsComponent .order-type-1 .order-2 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .SL_2ProductsComponent .order-type-2 .order-2 {
    width: 59%;
    margin-left: 1%;
  }
  .SL_2ProductsComponent .order-type-2 .order-1 {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .SL_2ProductsComponent .order-type-2 .order-1, .SL_2ProductsComponent .order-type-2 .order-2 {
    width: 100%;
  }
}
.SL_2ProductsComponent .box {
  width: 100%;
  margin: 5px 0;
  overflow: hidden;
  border-radius: 5px;
  -moz-border-radius: 5px;
  transition: all 0.8s ease-out;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}
.SL_2ProductsComponent .box > a {
  position: relative;
  display: block;
  height: 10rem;
}
.SL_2ProductsComponent .box > a::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.SL_2ProductsComponent .box > a > .image {
  width: 100%;
  height: 100%;
  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;
  -moz-border-radius: 5px;
  transform: scale(1.01);
}
.SL_2ProductsComponent .box > a > .text {
  position: absolute;
  bottom: 2rem;
  top: 2rem;
  left: 2rem;
  right: 20%;
  color: #FFFFFF;
  z-index: 10;
  font-size: 0.9rem;
  font-weight: 200;
}
.SL_2ProductsComponent .box > a > .text > p {
  font-weight: 200;
  font-size: 1rem;
}
.SL_2ProductsComponent .box > a > .text > h4 {
  font-weight: 400;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.SL_2ProductsComponent .box:hover {
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.2);
}
.SL_2ProductsComponent .box:hover > a > .image {
  transform: scale(1.06);
}
.SL_2ProductsComponent.is-bg:before {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  content: " ";
  background-color: #F3F4FA;
}
