.anthemeblocks-staticblockcategory {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 42px;
}

.staticblockcategory-item{
  position: relative;
  margin: 0 0 30px;
  max-width: 540px;
  overflow: hidden;
}

.staticblockcategory-item img {
  transition: opacity .35s;
  max-width: 100%;
}
.staticblockcategory-item .anthemeblocks-staticblockcategory-desc {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  padding: 15px 37px;
  justify-content: center;
  align-items: center;
}
.staticblockcategory-item.text-white .anthemeblocks-staticblockcategory-content p,
.staticblockcategory-item.text-white .anthemeblocks-staticblockcategory-desc h3 {
  color: #fff;
}
.anthemeblocks-staticblockcategory-desc h3 {
  line-height: 1;
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 5px;
}


.anthemeblocks-staticblockcategory-content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 7px;
}

@media (max-width: 1200px) {
  .anthemeblocks-staticblockcategory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .staticblockcategory-item.staticblockcategory-item-big,
  .staticblockcategory-item.staticblockcategory-item-small {
    margin: 0 15px 30px;
  }
}
@media (max-width: 480px) {
  .staticblockcategory-item.staticblockcategory-item-big,
  .staticblockcategory-item.staticblockcategory-item-small {
    margin: 0 0 30px;
  }
  .staticblockcategory-item img {
    width: 100%;
  }
  .staticblockcategory-item .anthemeblocks-staticblockcategory-desc {
    padding: 10px;
  }
  .anthemeblocks-staticblockcategory-desc h3 {
    font-size: 30px;
  }
  .anthemeblocks-staticblockcategory-content p {
    margin-bottom: 0;
  }
}


.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%;
  }
}