.categories-promoblocks {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 33px;
}
.categories-promoblocks .product-banner {
    position: relative;
    max-width: 540px;
    overflow: hidden;
    border: 2px solid transparent;
    margin-bottom: 30px;
}
.categories-promoblocks .product-banner img {
    height: auto;
    max-width: 100%;
}
.categories-promoblocks .product-banner .banner-text-bl {
    position: absolute;
    top: 120px;
    left: 45px;
    max-width: 270px;
    text-transform: uppercase;
    z-index: 2;
}
.categories-promoblocks .product-banner::before {
    position: absolute;
    top: 0;
    left: -75%;
    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);
}
.categories-promoblocks .product-banner:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
@media (max-width: 480px) {
    .categories-promoblocks .product-banner .banner-text-bl {
        left: 10px;
    }
}
.categories-promoblocks .product-banner .banner-text-bl h2 {
    margin-bottom: 13px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
}
.categories-promoblocks .banner-text-bl p {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
}
@media (max-width: 1200px) {
    .categories-promoblocks {
      justify-content: center;
    }
    .categories-promoblocks .product-banner {
       margin-right: auto;
       margin-left: auto;
       margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .categories-promoblocks .product-banner .banner-text-bl {
        max-width: 185px;
    }
    .categories-promoblocks .product-banner .banner-text-bl h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .categories-promoblocks .banner-text-bl p {
        font-size: 12px;
        line-height: 18px;
    }
    .categories-promoblocks .product-banner .banner-text-bl {
        left: 20px;
        top: 15px;
    }
}
