/* image tiles */
.tile-wrap {
    position: relative;
    color: #fff;
}

.tile-wrap a {
    display: block;
    color: #fff;
    text-decoration: none;
}

.tile-wrap h3 {
    font-weight: bold;
    margin: 0 0 10px;
    font-size: 130%;
}

.tile-wrap:after {
    content: '';
    position: absolute;
    z-index: 1;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(29, 57, 96, 0.7);
    transition: background 0.3s ease-in;
}

.tile-wrap:hover:after {
    background: rgba(29, 57, 96, 1);
}

.tile-text {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 15px 45px 15px 15px;
    overflow: hidden;
}

.tile-icon {
    position: absolute;
    right: 10px;
    bottom: 15px;
    font-size: 30px;
    z-index: 9;
}

.tile-body {
    transition: transform 0.3s ease-in;
    transform: scaleY(0);
}

.tile-wrap:hover .tile-body {
    transform: scaleY(1);
}

.tile-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.frame-310 .tile-wrap:after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .tile-wrap {
    margin: 10px 0;
  }
}

