/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 10-mrt-2016, 9:25:59
    Author     : Mees Verberne
*/
.defaultFont {
  font-size: 14px;
  font-weight: 500;
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.quick-steps {
  width: 100%;
  height: 155px;
}
.quick-steps .step {
  width: 33.3333%;
  display: inline-block;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.quick-steps .step .overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.quick-steps .step .content {
  display: table;
  width: 100%;
  height: 100%;
}
.quick-steps .step .content .container {
  position: relative;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  padding-top: 10px;
}
.quick-steps .step .content .container .subtitle {
  font-weight: 300;
}
.quick-steps .step .content .container .title {
  font-weight: 700;
}
.quick-steps .step:hover .overlay {
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 767px) {
  .quick-steps {
    height: 495px;
  }
  .quick-steps .step {
    display: block;
    width: 100%;
    height: 165px;
  }
}
/*# sourceMappingURL=quicksteps.css.map */