/*Breakpoints & breakpoint mixin*/
.tileList {
    display: flex;
    flex-flow: row wrap;
    column-gap: 1%;
    align-items: stretch;
    justify-content: space-between;
    align-content: flex-start;
}
.tileList .tile-container {
    transition: all ease 0.3s;
    margin-bottom: 24px;
    /*determine width based on number of tiles*/
}
.tileList .tile-container:nth-last-child(n+3), .tileList .tile-container:nth-last-child(n+3) ~ * {
    width: 32%;
}
@media only screen and (max-width: 992px) {
    .tileList .tile-container:nth-last-child(n+3), .tileList .tile-container:nth-last-child(n+3) ~ * {
        width: 100%;
    }
}
.tileList .tile-container:nth-last-child(n+4), .tileList .tile-container:nth-last-child(n+4) ~ * {
    width: 24%;
}
@media only screen and (max-width: 992px) {
    .tileList .tile-container:nth-last-child(n+4), .tileList .tile-container:nth-last-child(n+4) ~ * {
        width: 49%;
    }
}
@media only screen and (max-width: 768px) {
    .tileList .tile-container:nth-last-child(n+4), .tileList .tile-container:nth-last-child(n+4) ~ * {
        width: 100%;
    }
}
.tileList .tile-container a {
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all ease 0.3s;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
}
.tileList .tile-container a .tile-content {
    background: #fff;
}
.tileList .tile-container a .tile-content .tile-image {
    transition: all ease 0.3s;
    padding: 24px;
    background-position: center;

    background-size: cover;
    background-repeat: no-repeat;
    min-height: 200px;
    position: relative;
}
.tileList .tile-container a .tile-content .tile-image h3 {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #e4032c;
    color: #fff;
    padding: 12px 24px;

    font-size: 16px;
    font-weight: normal;
    font-family: CabinSemi, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.tileList .tile-container a .tile-content .tile-text {
    padding: 12px 48px 12px 24px;
    color: #333;
    position: relative;

    font-family: OpenSans, "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*css chevron*/
}
.tileList .tile-container a .tile-content .tile-text:before {
    border-style: solid;
    border-width: 4px 4px 0 0;
    content: '';
    display: inline-block;
    height: 10px;
    right: 24px;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    vertical-align: top;
    width: 10px;
    transition: all ease 0.3s;

}
.tileList .tile-container a .tile-content .tile-text p:last-child {
    margin: 0;
}
.tileList .tile-container a:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.tileList .tile-container a:hover .tile-image {
    background-size: 110%;
}
.tileList .tile-container a:hover .tile-text:before {
    right: 12px;
}


.tileList.tile-style-2 .tile-container a .tile-content .tile-image:before {
    content: "";
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.tileList.tile-style-2 .tile-container a .tile-content .tile-image h3 {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: none;
}