.anthemeblocks-staticblockcategory {
    margin-bottom: 52px;
    display: flex;
    justify-content: center;
}

.staticblockcategory-item{
  position: relative;
  overflow: hidden;
}
.staticblockcategory-item.staticblockcategory-item-big {

    position: relative;

}

.staticblockcategory-item img {
  transition: opacity .35s;
    width: 100%;
}
.staticblockcategory-item .anthemeblocks-staticblockcategory-desc { 
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    bottom: 50px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(0,0,0,.6);
}

.anthemeblocks-staticblockcategory-desc h2 {
    margin: -6px 0 8px;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    color: #fff;
}
.anthemeblocks-staticblockcategory-desc p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.anthemeblocks-staticblockcategory-desc span {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 1px;
}
.anthemeblocks-staticblockcategory-desc span:hover {
    text-decoration: none;
}
@media (max-width: 640px) {
  .anthemeblocks-staticblockcategory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .staticblockcategory-item img {
    width: 100%;
  }
}

.staticblockcategory-item {
    position: relative;
    overflow: hidden;
}

.staticblockcategory-item::before {
    position: absolute;
    top: 0;
    left: -85%;
    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%;
	}
}