.info-block {
  overflow: hidden;
  margin: 50px 0;
  display: block;
  cursor: pointer;
}
.info-block:hover {
  text-decoration: none;
}
.info-block h2 {
  margin: 10px 0 !important;
}
.info-block .row {
  min-height: 244px;
}
.info-block .row .image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding: 0;
  min-height: 200px;
  filter: grayscale(100%);
  transition: filter 200ms ease;
  will-change: filter;
}
.info-block:hover .row .image,
.info-block:focus-within .row .image {
  filter: grayscale(0%);
}
@media (prefers-reduced-motion: reduce) {
  .info-block .row .image {
    transition: none;
  }
}
.info-block .row .text-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 30px 0;
}
@media screen and (min-width: 992px) {
  .info-block .row .text-block {
    margin: 0;
  }
}
.info-block .row .text-block .text {
  font-size: 22px;
  line-height: 1.3;
  font-family: "OpenSans-Bold";
  color: #E74620;
}
.info-block .row .text-block a {
  width: 100%;
  text-align: left;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .info-block .row .text-block a {
    margin: 0;
  }
}