.banner-wr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px; 
	margin-bottom: 76px;
}
.banner-wr .product-banner {
    position: relative;
    background-color: #f8f9fc;
    overflow: hidden;
}
.banner-wr .product-banner::before {
  position: absolute;
  top: 0;
  left: -85.5%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
          background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.banner-wr .product-banner:hover::before {
  -webkit-animation: shine .75s;
          animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.banner-wr .product-banner img {
    height: auto;
    max-width: 100%;
}
.banner-wr .product-banner .banner-text-bl {
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
}
@media (max-width: 1200px) {
    .banner-wr .product-banner {
       margin-right: auto;
       margin-left: auto;
       margin-bottom: 20px;
    }
}