#pushcategory .element .caption {
  display: block;
  position: absolute;
  z-index: 3;
  color: #fff;
  top: 40px;
  left: 35px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

#pushcategory .element {
  position: relative;
  overflow: hidden;
  /*height: 556px;*/
  background-size: 100%;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

#pushcategory .element:first-child {
  padding-left: 0;
}

#pushcategory .element:last-child {
  padding-right: 0;
}

#pushcategory .element a {
  display: block;
}

#pushcategory .element .caption .title{
  position: relative;
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  font-weight: 400;
}

#pushcategory .element .caption .description {
  font-size: 1.1rem;
  line-height: 1.2rem;
  letter-spacing: 0.05rem;
  font-weight: 300;
}

/*#pushcategory .element img {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#pushcategory .element:hover img {
  transform: scale(1.02);
}*/

#pushcategory .element::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background: rgba(0, 0, 0, 0);
  mix-blend-mode: hard-light;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;

}
/*#pushcategory .element:hover {
  background-size: 110%;
}*/

#pushcategory .element:hover::before {
  opacity: 100;
  background: rgba(0, 0, 0, 0.2);
}

#pushcategory .element .btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  padding: 10px 22px;
  width: 70%;
}


