.cards .cards-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0 7px;
  margin: -7.5px -7.5px 0;
}

.cards__card {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
  width: 33.333%;
  position: relative;
  padding: 7.5px;
}

.cards__card > a {
  display: inherit;
  position: relative;
  width:100%;
}

.card__image {
  padding: 0;
  width: 100%;
  max-height: 277.5px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card__text {
  text-align: center;
  width: 100%;
  background-color: rgba(0,0,0,0.8);
  padding: 4%;
  position: absolute;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  bottom: 0;
  opacity: 0;
  transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.cards__card > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,0.3);
  opacity: 0;
  transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  margin: 0 auto;
}

.cards__card > a:hover .card__text,
.cards__card > a:hover:after{
  opacity: 1;
}

.card__text * {
  color: #fff;
}

.card__text h3 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding-bottom: 6px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Roboto", Tahoma, Geneva, sans-serif;
  font-weight: normal;
}

.card__text p {
  margin: 0;
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.cards__card.hidden {
  display: none;
}

.project-portfolio-wrapper .our-works-header {
  margin-bottom: 35px;
}

.project-portfolio-wrapper .our-works-header h1 {
  text-align: center;
  text-transform: uppercase;
  line-height: 34px;
  margin: 0;
}

div#filters {
  margin-bottom: 30px;
}

div#filters button.button {
  display: inline-block;
  text-decoration: none;
  padding: .25em 1em;
  border: none;
  outline: none;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #ffffff;
  background-color: #222222;
  line-height: 24px;
  margin: 6px 7px 6px 0;
  border-radius: 0;
}

div#filters button.button.is-checked {
  background-color: #a5d72e;
}

button#load-more {
  background-color: #222;
  color: #ffffff;
  -webkit-box-shadow: 1.5px 3px 0 0 #eee;
  box-shadow: 1.5px 3px 0 0 #eee;
  width: 100%;
  display: block;
  border-radius: 0px;
  padding: 12px 30px;
  font-size: 14px;
  line-height: 1;
}

.fancybox-button.fancybox-button--thumbs {
  display: none;
}

@media(max-width: 1060px){
  .cards__card {
    width: 50%;
  }
}

@media(max-width: 500px){
  .cards .cards-container {
    margin-left: 0;
    margin-right: 0;
  }
  .cards__card {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}