/**
 * Vars / Import
 */
@keyframes growWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/**
 * Structure
 */
.block-introduction-columns .introduction {
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  padding: 20px 25px;
  text-decoration: none;
  min-height: 200px;
}
.block-introduction-columns .introduction::before {
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.block-introduction-columns .introduction h2 {
  color: #00ae84;
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
  position: relative;
  top: 0;
  padding: 0 5px;
  -webkit-transition: top 0.3s ease;
  -moz-transition: top 0.3s ease;
  -ms-transition: top 0.3s ease;
  -o-transition: top 0.3s ease;
  transition: top 0.3s ease;
  background-color: #fff;
  -moz-box-shadow: 10px 0 0 #fff, -10px 0 0 #fff;
  -webkit-box-shadow: 10px 0 0 #fff, -10px 0 0 #fff;
  box-shadow: 10px 0 0 #fff, -10px 0 0 #fff;
  display: inline;
}
@media screen and (min-width: 768px) {
  .block-introduction-columns .introduction:hover::before {
    opacity: 1;
  }
  .block-introduction-columns .introduction:hover h2 {
    top: 15px;
  }
}

/*# sourceMappingURL=block-introduction-columns.css.map */
