.general-grid .tile{
  position: relative;
    margin-bottom: 1em;
}

.general-grid .tile .tile-content{
  width: 100%;
  height: 100% !important;
  overflow: hidden;
  position: relative;

}

.general-grid .tile .tile-content .text{
  background: #fff;
  margin-left: 1em;
  padding: 1em;
}

.general-grid .tile a{
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #1d2231;
}

.general-grid .tile .tile-content h4{
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.8em;
  font-family: 'Roboto Slab';
  color: #1d2231;
}

.general-grid .tile .tile-content .text.hover h4{
  color: #ff6600;
}

.general-grid .tile .tile-content p{
  font-size: 1em;
  font-weight: 500;
  line-height: 1.6em;
}

.general-grid .tile .tile-content span{
  font-size: 1em;
  font-weight: 500;
  line-height: 1.6em;
  display: block;
  padding: 0 0 2em 0;
  color: #ff6600;
}


/* IN */
.general-grid .tile .tile-content .orange_shape{
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.2s linear;
  transition-delay: 0.25s;
  background: #ff6600;
  margin-left: 1em;
  transform: translateY(100%);
}


.general-grid .tile .tile-content:hover .orange_shape{
  transform: translateY(0);
  transition-delay: 0.2s;
  transition: all 0.2s linear;
}



.general-grid .tile .tile-content .text.hover{
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
  height: 100%;
  z-index: 9999;
}

/* OUT */
.general-grid .tile .tile-content:hover .text.hover{
  height: calc(100% - 10px);
  transform: translateY(10px);
  transition-delay: 0.2s;
}

.general-grid .tile .tile-content .text.initial{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1em;
}

.general-grid .tile .tile-content .text.initial h4{
  position: absolute;
  margin-left: -1em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .general-grid .tile .tile-content h4{
    font-size: 2em;
    font-weight: 600;
    line-height: 1.6em;
  }

  .general-grid .tile .tile-content p{
    font-size: 1em;
    font-weight: 500;
    line-height: 1.4em;
  }
}

@media (max-width: 768px) {
  .general-grid .tile .tile-content h4{
    font-size: 2em;
    font-weight: 600;
    line-height: 1em;
  }

  .general-grid .tile .tile-content p{
    font-size: 1em;
    font-weight: 500;
    line-height: 1.4em;
  }
}


.general-grid .tile .background{
  padding-bottom: 100%;
  background-position: center center;
  background-size: cover;
  transition: all 0.25s ease-in-out;
}
