.wrapper__primary_brochure {
  display: block;
  overflow: hidden;
  height: 300px;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.wrapper__primary_brochure:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(#000000)
  );
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.wrapper__primary_brochure-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.wrapper__primary_brochure-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  width: 85%;
  z-index: 1;
}
.title-primary_brochure_medium {
  text-transform: uppercase;
}
.wrapper_img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
  max-width: 100%;
  display: none;
}
.wrapper__primary-bg:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
