.tiles {
    margin-bottom: 35px;
}
.tiles .inner{
    width: 100%;
    max-width: 1432px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.tiles .item {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 10px 50px;
}
.tiles .img-cont {
    border: 25px solid var(--off-white-25);
}
.tiles .img-cont img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.tiles .content {
    position: absolute;
    width: 90%;
    max-width: 300px;
    right: -2px;
    bottom: -30px;
    padding: 15px 25px;
    background-color: var(--red);
    box-shadow: 0 0 38px rgba(0,0,0,0.13);
}

.tiles .content .title{
    font-family: var(--font-display-alt);
    font-weight: 700;
    font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1025 - 320)));
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 5px;
}

.tiles .content .title a{
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.tiles .content .link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1025 - 320)));
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--off-white);
}

@media only screen and (min-width: 641px) {
    .tiles .item {
        width: calc(50% - 20px);
    }
}

@media only screen and (min-width: 1025px) {
    .tiles {
        width: calc(100% - 110px);
        margin-left: auto;
        margin-bottom: 60px;
        display: flex;
        justify-content: center;
    }
    
    .tiles .item {
        margin: 0 14px 50px;
        width: calc(33% - 28px);
    }
    .tiles .content {
        right: -10px;
    }

    .tiles .content .title{
        font-size: calc(20px + (24 - 20) * ((100vw - 1025px) / (1600 - 1025)));
        line-height: 1.2;
    }
    .tiles .content .link {
        font-size: calc(16px + (18 - 16) * ((100vw - 1025px) / (1600 - 1025)));
    }
}

@media only screen and (min-width: 1600px) {
    .tiles .item {
        margin: 0 31px 50px;
    }

    .tiles .content .title{
        font-size: 24px;
    }

    .tiles .content .link {
        font-size: 18px;
    }
}

.tiles .video-cont .play-btn {
    position: absolute;
    z-index: 10;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background-color: rgba(5, 7, 8, 0.8);
    display: block;
    opacity: 0.8;
}
.tiles .video-cont .play-btn i {
    color: var(--off-white);
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}
@media(min-width: 640px){
    .tiles .video-cont .play-btn {
        width: 73px;
        height: 73px;
    }
}