.hover_image {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.hover_image > a {
  display: block;
  height: 100%;
  width: 100%;
}

.hover_image > a > .hover_image_wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.hover_image > a > .hover_image_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.hover_image > a > .hover_image_wrapper .hover_image_title {
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 51, 91, 0.75);
  color: #fff;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  word-wrap: break-word;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
}

.hover_image:hover > a > .hover_image_wrapper > .hover_image_title {
  opacity: 1;
}
/*# sourceMappingURL=hover-image.css.map */