.highlights {
    padding: 0 15px;
    margin-bottom: 20px;
}

.highlights .inner {
    display: flex;
    flex-direction: column;
}

.highlights .tile {
    margin: 0 0 7px;
    position: relative;
    height: 100%;
}

.highlights .tile .img-cont {
    position: relative;
}

.highlights .tile .img-cont img {
    display: block;
    width: 100%;
}

.highlights .tile .img-cont::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0,0,0,0.5);*/
    transition: background 0.4s ease-in-out;
}

.highlights .tile .img-cont::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1px solid #413e3b;
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.highlights .tile .slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.highlights .tile .slide-content h3 {
    /*font-size: 24px;*/
    font-size: calc(24px + (32 - 24) * ((100vw - 320px) / (1024 - 320)));
    line-height: 30px;
    margin: 0;
    color: white;
    transition: color 0.4s ease-in-out;
}

.highlights .tile .desc {
    color: #413e3b;
    transition: margin 0.4s ease-in-out, opacity 0.4s ease-in-out;
    display: none;
}

@media (min-width: 641px) {
    .highlights .inner {
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0 -6px;
    }
    .highlights .tile {
        margin: 0 3px 6px;
        width: calc(50% - 6px);
    }
}

@media (min-width: 1025px) {
    .highlights {
        padding: 0;
        overflow: hidden;
        margin-bottom: 60px;
    }
    .highlights .tile {
        width: calc(33.3333% - 6px);
    }
    .highlights .tile .slide-content {
        padding: 15px 20px;
    }

    .highlights .tile .slide-content h3 {
        font-size: calc(30px + (34 - 30) * ((100vw - 1025px) / (1200 - 1025)));
        line-height: 1.1;
        margin: 0;
        transition: all .4s ease-in-out;
    }
    .highlights .tile .slide-content .inner-conner{
        height: 100%
    }

    .highlights .tile .slide-content h3.has-description {
        top: 50%;
        position: relative;
        transform: translateY(-50%);
        text-shadow: 2px 2px 2px rgba(0,0,0,0.53);
    }
    .highlights .tile .desc {
        display: block;
        opacity: 0;
        position: relative;
        transform: translateY(500%);
        padding: 0 25px;
        text-align: center;
        transition: all .4s ease-in-out;
        font-size: calc(16px + (20 - 16) * ((100vw - 1025px) / (1200 - 1025)));
        line-height: 1.5;
    }
    .highlights .tile:hover .img-cont::before {
        background-color: rgba(255,255,255,0.85);
    }
    .highlights .tile:hover .slide-content h3 {
        color: #413e3b;
        transition: all .4s ease-in-out;
    }
    .highlights .tile .slide-content .inner-conner {
        height: auto;
    }
    .highlights .tile:hover .slide-content h3.has-description {
        top: 0;
        transform: translateY(0%);
        margin-bottom: 3%;
        text-shadow: none;
    }

    .highlights .tile:hover .desc {
        transform: translateY(0);
        opacity: 1;
        transition: all .4s ease-in-out;
    }
    .highlights .tile:hover .img-cont::after {
        opacity: 0.7;
    }
}

@media (min-width: 1200px) {
    .highlights .tile .slide-content h3 {
        font-size: 34px;
    }
    .highlights .tile .desc {
        font-size: 20px;
    }
}