/*  Global Helpers Start */
/* Welcome Container Start */
.block-welcome .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 10;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 60%, black 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 60%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, 0)), to(black));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 60%, black 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 60%, black 100%); }

.block-welcome .item {
  position: relative; }
  .block-welcome .item h2 {
    font-family: "Bebas Neue", cursive;
    position: absolute;
    font-size: 40px;
    color: #fff;
    bottom: 20px;
    left: 20px;
    z-index: 40; }
  .block-welcome .item .desc {
    position: absolute;
    font-family: "Source Sans Pro", sans-serif;
    background-color: rgba(255, 255, 255, 0.9);
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 25px;
    opacity: 0;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    z-index: 60; }
    .block-welcome .item .desc:hover {
      opacity: 1;
      -webkit-transition: 1s;
      -o-transition: 1s;
      transition: 1s; }
      .block-welcome .item .desc:hover h2 {
        color: #FEA528; }

/* Welcome Container End */
