.module {
  width: 100%;
  height: 100%;
}
.module > .promoImg {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding-top: 85%;
  /* For Safari 3.1 to 6.0 */
  -webkit-transition: background-size 1.5s ease-in-out;
  /* For Mozilla 16.0*/
  -moz-transition: background-size 1.5s ease-in-out;
  /*all*/
  transition: background-size 1.5s ease-in-out;
  
}
.module:hover > .promoImg {
  background-size: 105% 105%;
  //background-position: -2% -2%;
}
.module > .promoImg > header {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: rgba(34, 34, 35, 0.8);
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 2%;
  padding-right: 2%;
  -webkit-transition: padding-bottom 0.5s;
  /* For Safari 3.1 to 6.0 */
  transition: padding-bottom 0.5s;
}
.module:hover > .promoImg > header {
  padding-bottom: 10%;
}
.module > .promoImg > header > h3 {
  font-size: 36px;
  font-family: 'speak_bold', arial;
  line-height: 36px;
  color: #fff;
}
.module > .promoImg > header > h4 {
  font-size: 22px;
  font-family: 'speak_bold', arial;
  line-height: 22px;
  color: #fff;
}
.module > .promoImg > header > .promoButton {
  position: absolute;
  right: 5%;
  top: 35%;
}
@media screen and (max-width: 1285px) {
  .module > .promoImg > header > h3 {
    font-size: 28px;
    font-family: 'speak_bold', arial;
    line-height: 28px;
    color: #fff;
  }
  .module > .promoImg > header > h4 {
    font-size: 16px;
    font-family: 'speak_bold', arial;
    line-height: 16px;
    color: #fff;
  }
  .module > .promoImg > header > .promoButton {
    display: none;
  }
}
* {
  box-sizing: border-box;
}
