.highlights {
    margin-bottom: 4px;
}

.highlights .item-cont {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: 87.5vw 4px 62.5vw 4px 62.5vw 4px 62.5vw 4px 62.5vw 4px 62.5vw;
    grid-template-rows: 87.5vw 62.5vw 62.5vw 62.5vw 62.5vw 62.5vw;
    grid-gap: 4px;
}
.highlights.five .item-cont {
    -ms-grid-rows: 87.5vw 4px 62.5vw 4px 62.5vw 4px 62.5vw 4px 62.5vw;
    grid-template-rows: 87.5vw 62.5vw 62.5vw 62.5vw 62.5vw;
}
.highlights.four .item-cont {
    -ms-grid-rows: 87.5vw 4px 62.5vw 4px 62.5vw 4px 62.5vw;
    grid-template-rows: 87.5vw 62.5vw 62.5vw 62.5vw;
}
.highlights.three .item-cont {
    -ms-grid-rows: 87.5vw 4px 62.5vw 4px 62.5vw;
    grid-template-rows: 87.5vw 62.5vw 62.5vw;
}
.highlights.two .item-cont {
    -ms-grid-rows: 87.5vw 4px 62.5vw;
    grid-template-rows: 87.5vw 62.5vw;
}
.highlights.one .item-cont {
    -ms-grid-rows: 87.5vw;
    grid-template-rows: 87.5vw;
}

.highlights .item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.highlights .item:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.highlights .item:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

.highlights .item:nth-child(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    grid-row: 4 / 5;
    grid-column: 1 / 2;
}

.highlights .item:nth-child(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
    grid-row: 5 / 6;
    grid-column: 1 / 2;
}

.highlights .item:nth-child(6) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
    grid-row: 6 / 7;
    grid-column: 1 / 2;
}

.highlights .item .item-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
    background-color: #35280e;
}

.highlights .item .img {
    position: relative;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.highlights .item .img::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.highlights .item .content {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    right: 0;
    width: 100%;
    transform: translateY(20px);
    text-align: center;
    transition: 0.3s transform ease;
    pointer-events: none;
}

.highlights .item .content .inner {
    position: relative;
}

.highlights .item .content .inner .bg {
    position: absolute;
    z-index: -1;
    opacity: 0.4;
    left: 0;
    top: -22px;
    width: 50%;
    height: 50px;
    background-size: auto;
    background-repeat: repeat;
    transition: 0.3s top ease;
}

.highlights .item .content .title {
    position: relative;
    padding: 0 15px;
}
.highlights .item .content .title,
.highlights .item .content .title a {
    pointer-events: all;
    font-family: "canada-type-gibson", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 28px;
    border-bottom: none;
    text-decoration: none;
    text-transform: uppercase;
}

.highlights .item .content .title .icon,
.highlights .item .content .title .desc .icon {
    margin-left: 5px;
    color: #feb747;
}

.highlights .item .desc {
    opacity: 0;
    transition: 0.3s opacity ease;
}

.highlights .item .lg-icon {
    margin-bottom: 50px;
    opacity: 0;
    transition: 0.3s opacity ease;
}

.highlights .item .lg-icon img {
    height: 92px;
    width: auto;
}

/* used for screen sizes > 1024 */
@keyframes highlightanimation {
    0% {
        filter: blur(0);
        opacity: 1;
        transform: scale(1.0)
    }

    100% {
        filter: blur(3px);
        opacity: 0.2;
        transform: scale(1.1)
    }
}

@keyframes reversehighlightanimation {
    0% {
        filter: blur(3px);
        opacity: 0.2;
        transform: scale(1.1)
    }

    100% {
        filter: blur(0);
        opacity: 1;
        transform: scale(1.0)
    }
}

@media only screen and (min-width: 768px) {
    .highlights {
        margin-bottom: 4px;
    }

    .highlights .item-cont {
        -ms-grid-columns: calc(40.7% - 4px) 4px calc(9.3% - 4px) 4px calc(20% - 4px) 4px 30%;
        grid-template-columns: calc(40.7% - 4px) calc(9.3% - 4px) calc(20% - 4px) 30%;
        -ms-grid-rows: 25.7vw 4px 31.7vw 4px 28.5vw;
        grid-template-rows: 25.7vw 31.7vw 28.5vw;
        grid-gap: 4px;
    }
    .highlights.four .item-cont {
        -ms-grid-rows: 25.7vw 4px 31.7vw;
        grid-template-rows: 25.7vw 31.7vw;
    }
    .highlights.three .item-cont {
        -ms-grid-rows: 25.7vw 4px 31.7vw;
        grid-template-rows: 25.7vw 31.7vw;
    }
    .highlights.two .item-cont {
        -ms-grid-rows: 25.7vw 4px 31.7vw;
        grid-template-rows: 25.7vw 31.7vw;
    }
    .highlights.one .item-cont {
        -ms-grid-rows: 25.7vw 4px 31.7vw;
        grid-template-rows: 25.7vw 31.7vw;
    }

    .highlights .item .content {
        bottom: 30px;
    }

    .highlights .item:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 3;
        grid-row: 1 / 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1 / 2;
    }
    .highlights.one .item:nth-child(1) {
        -ms-grid-column-span: 4;
        grid-column: 1 / 5;
    }

    .highlights .item:nth-child(1) .bg,
    .highlights .item:nth-child(2) .bg,
    .highlights .item:nth-child(3) .bg {
        width: 160px;
    }

    .highlights .item:nth-child(4) .bg,
    .highlights .item:nth-child(5) .bg,
    .highlights .item:nth-child(6) .bg {
        width: 200px;
    }

    .highlights .item:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
        -ms-grid-column: 3;
        -ms-grid-column-span: 3;
        grid-column: 2 / 4;
    }
    .highlights.three .item:nth-child(2) {
        -ms-grid-row-span: 2;
        grid-row: 1 / 3;
    }
    .highlights.two .item:nth-child(2) {
        -ms-grid-row-span: 2;
        grid-row: 1 / 3;
        -ms-grid-column-span: 4;
        grid-column: 2 / 5;
    }

    .highlights .item:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
        -ms-grid-column: 7;
        -ms-grid-column-span: 1;
        grid-column: 4 / 5;
    }
    .highlights.three .item:nth-child(3) {
        -ms-grid-row-span: 2;
        grid-row: 1 / 3;
    }

    .highlights .item:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3;
        -ms-grid-column: 3;
        -ms-grid-column-span: 5;
        grid-column: 2 / 5;
    }

    .highlights .item:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-row-span: 1;
        grid-row: 3 / 4;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1 / 3;
    }

    .highlights.five .item:nth-child(5) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-column: 1 / 3;
    }

    .highlights .item:nth-child(6) {
        -ms-grid-row: 5;
        -ms-grid-row-span: 1;
        grid-row: 3 / 4;
        -ms-grid-column: 5;
        -ms-grid-column-span: 3;
        grid-column: 3 / 5;
    }
}

@media only screen and (min-width: 1025px) {
    .highlights .item .img {
        animation-name: reversehighlightanimation;
        animation-duration: 0.3s;
        animation-fill-mode: forwards;
    }

    .highlights .item:hover .img {
        animation-name: highlightanimation;
        animation-duration: 0.3s;
        animation-fill-mode: forwards;
    }

    .highlights .item:hover .content {
        transform: translateY(0);
    }

    .highlights .item:hover .desc {
        opacity: 1;
    }

    .highlights .item .desc {
        max-width: 400px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .highlights .item .desc {
        color: #fff;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 1px;
        border-bottom: none;
        text-decoration: none;
    }

    .highlights .item .desc .icon {
        color: #feb747;
    }

    .highlights .item:hover .lg-icon {
        opacity: 1;
    }

    .highlights .item .content .title {
        max-width: 400px;
        margin: 0 auto 15px;
    }
    .highlights .item .content .title,
    .highlights .item .content .title a {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .highlights .item:hover .content .title,
    .highlights .item:hover .content .title a {
        color: #feb747;
    }

    .highlights .item .content .title .icon {
        display: none;
    }

    .highlights .item .content .inner .bg {
        top: -60px;
        width: 200px;
        height: 112px;
    }

    .highlights .item:hover .content .inner .bg {
        top: -152px;
        transform: scale(1.2);
    }
}