.anthemeblocks-staticblockcategory {
    margin: 0 -15px 30px;
    display: flex;
    justify-content: center;
}

.staticblockcategory-item{
  position: relative;
  overflow: hidden;
}
.staticblockcategory-item.staticblockcategory-item-big {
    max-width: 442px;
    position: relative;
    margin: 0 15px 30px;
    width: 100%;
}
.satitblock-image {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.staticblockcategory-item img {
  transition: opacity .35s;
    max-width: 100%;
}
.staticblockcategory-item .anthemeblocks-staticblockcategory-desc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anthemeblocks-staticblockcategory-desc h2 {
    max-width: 100%;
    width: 250px;
    min-height: 63px;
    padding: 10px 15px 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-size: 11px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}
.staticblockcategory-item:hover .anthemeblocks-staticblockcategory-desc h2 {
    color: #fff;
    background: #000;
}


@media (max-width: 1200px) {
  .anthemeblocks-staticblockcategory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .staticblockcategory-item.staticblockcategory-item-big {
    margin: 0 15px 30px;
  }
}
@media (max-width: 600px) {
  .staticblockcategory-item.staticblockcategory-item-big {
    margin: 0 15px 30px;
  }

}
@media (max-width: 440px) {
    .anthemeblocks-staticblockcategory {
        margin: 0 0 30px;
    }
    .staticblockcategory-item.staticblockcategory-item-big {
        max-width: 100%;
        margin: 0 0 30px;
    }
    .staticblockcategory-item img {
        width: 100%;
    }
}
.staticblockcategory-item {
    position: relative;
    overflow: hidden;
}

.staticblockcategory-item::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);
}

.staticblockcategory-item:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}