.highlights {
    position: relative;
    margin-bottom: 35px;
    overflow: hidden;
}

.highlights .doubles {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bcb948;
}

.highlights .title-cont {
    text-align: center;
    padding: 0 15px 15px;
}

.highlights .title-cont h2 {
    color: #d74262;
    font-family: ff-ernestine-pro, serif;
    font-weight: 600;
    font-size: 33px;
    margin: 0;
    text-transform: uppercase;
}

.highlights .title-cont .desc {
    display: inline;
    font-size: 15px;
    margin: 0;
}

.highlights .title-cont .desc.has-link::after {
    content: "|";
    margin: 0 8px;
    font-weight: 400;
    color: #a98c91;
}

.highlights .title-cont-bottom .see-more {
    display: inline-flex;
    color: #893b3b;
    font-size: 16px;
}

.highlights .title-cont-bottom .see-more .doubles {
    margin-left: 5px;
}

.highlights .inner-panel {
    position: relative;
}

.highlights .item {
    position: relative;
    border: 10px solid #f7f5f0;
    overflow: hidden;
}

.highlights .item::before,
.highlights .item::after {
    display: none;
}

.highlights .inner-panel .item:first-child {
    border: 0;
}

.highlights .inner-panel .item:nth-child(2),
.highlights .inner-panel .item:nth-child(3),
.highlights .inner-panel .item:nth-child(4) {
    border-bottom: 0;
}

.highlights .item .img-cont img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights .item .img-cont .borders {
    display: none;
}

.highlights .item .img-cont::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.highlights .item .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 15px 20px;
    z-index: 3;
}

.highlights .item .slide-content h4 {
    color: white;
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    display: inline;
}

.highlights .inner-panel .item:first-child .slide-content h4 {
    font-size: 23px;
    line-height: 26px;
}



@media (min-width: 40.063em) {
    .highlights .item .img-cont {
        max-height: 600px;
    }

    .highlights .item .img-cont .borders {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .highlights .item .img-cont .borders .left-top {
        position: absolute;
        top: -45px;
        left: -8px;
        width: 0; 
        height: 0; 
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent; 
        border-right:40px solid #f7f5f0; 
        transform: rotate(45deg);
    }

    .highlights .item .img-cont .borders .right-top {
        position: absolute;
        top: -45px;
        right: -8px;
        width: 0; 
        height: 0; 
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent; 
        border-left: 40px solid #f7f5f0; 
        transform: rotate(-45deg);
    }

    .highlights .item .img-cont .borders .right-bottom {
        position: absolute;
        bottom: -45px;
        right: -8px;
        width: 0; 
        height: 0; 
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent; 
        border-right:40px solid #f7f5f0; 
        transform: rotate(225deg);
    }

    .highlights .item .img-cont .borders .left-bottom {
        position: absolute;
        bottom: -45px;
        left: -8px;
        width: 0; 
        height: 0; 
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent; 
        border-left:40px solid #f7f5f0; 
        transform: rotate(-225deg);
    }

    .highlights .item .slide-content {
        width: 70%;
        margin-left: 15px;
    }
}

@media (min-width: 64.063em) {
    .highlights {
        margin-bottom: 135px;
    }
    
    .highlights .inner-panel {
        max-height: 750px;
        max-width: 2000px;
        margin: 0 auto;
        height: 100%;
        display: grid;
        display: -ms-grid;
        grid-template-columns: 2fr 1fr 1fr;
        -ms-grid-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        -ms-grid-rows: 1fr 1fr;
    }

    .highlights .inner-panel::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 75%;
        transform: translate(-50%, -50%) rotate(45deg);
        width: 30px;
        height: 30px;
        background-color: #bfb74c;
        z-index: 10;
    }
    .highlights .doubles {
        font-size: 25px;
    }
    .highlights .doubles.item-1 {
        font-size: 35px;
    }
    .highlights .inner-panel .item  {
        border: 6px solid #f7f5f0 !important;
    }

    .highlights .inner-panel .item:first-child {
        grid-column: 1/2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-row: 1/3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
    }

    .highlights .inner-panel .item:nth-child(2) {
        grid-column: 2/3;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-row: 1/2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
    }

    .highlights .inner-panel .item:nth-child(3) {
        grid-column: 3/4;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        grid-row: 1/2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
    }

    .highlights .inner-panel .item:nth-child(4) {
        grid-column: 2/3;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-row: 2/3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
    }

    .highlights .inner-panel .item:last-child {
        grid-column: 3/4;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        grid-row: 2/3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
    }

    .highlights .item .img-cont {
        padding: 0 !important;
        height: 100%;
    }

    .highlights .item:first-child .img-cont img {
        height: unset;
    }

    .highlights .item .img-cont .borders {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .highlights .item .img-cont .borders .left-top {
        position: absolute;
        top: -45px;
        left: -8px;
        width: 0; 
        height: 0; 
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent; 
        border-right:40px solid #f7f5f0; 
        transform: rotate(45deg);
    }

    .highlights .item .img-cont .borders .right-top {
        position: absolute;
        top: -45px;
        right: -8px;
        width: 0; 
        height: 0; 
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent; 
        border-left: 40px solid #f7f5f0; 
        transform: rotate(-45deg);
    }

    .highlights .item .img-cont .borders .right-bottom {
        position: absolute;
        bottom: -45px;
        right: -8px;
        width: 0; 
        height: 0; 
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent; 
        border-right:40px solid #f7f5f0; 
        transform: rotate(225deg);
    }

    .highlights .item .img-cont .borders .left-bottom {
        position: absolute;
        bottom: -45px;
        left: -8px;
        width: 0; 
        height: 0; 
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent; 
        border-left:40px solid #f7f5f0; 
        transform: rotate(-225deg);
    }

    .highlights .item .slide-content {
        padding: 0 40px 45px 40px;
        width: 100%;
    }

    .highlights .inner-panel .item:first-child .slide-content {
        padding: 0 40px 75px 40px;
    }

    .highlights .inner-panel .item:first-child .slide-content h4 {
        font-size: calc(23px + (48 - 23) * ((100vw - 1025px) / (1920 - 1025)));
        line-height: calc(26px + (50 - 26) * ((100vw - 1025px) / (1920 - 1025)));
    }

    .highlights .inner-panel .item .slide-content h4 {
        font-size: calc(18px + (30 - 18) * ((100vw - 1025px) / (1920 - 1025)));
        line-height: calc(22px + (36 - 22) * ((100vw - 1025px) / (1920 - 1025)));
    }

    .highlights .inner-panel .item:nth-child(2) .img-cont .borders .right-top {
        display: none;
    }

    .highlights .inner-panel .item:nth-child(3) .img-cont .borders .left-top {
        display: none;
    }

    .highlights .inner-panel .item:nth-child(4) .img-cont .borders .right-bottom {
        display: none;
    }

    .highlights .inner-panel .item:last-child .img-cont .borders .left-bottom {
        display: none;
    }

    .highlights .inner-panel .item::before {
        display: block;
        content: "";
        position: absolute;
        top: 45%;
        left: 0;
        width: 125%;
        height: 100%;
        background: rgba(106, 142, 179, 0.6);
        z-index: 1;
        transition: transform 0.45s cubic-bezier(.16,.62,0,1.28);
        transform-origin: top left;
        transform: rotateZ(90deg);
    }

    .highlights .inner-panel .item::after {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 125%;
        height: 100%;
        background: rgba(106, 142, 179, 0.6);
        z-index: 2;
        transition: transform 0.45s 0.15s cubic-bezier(.16,.62,0,1.28);
        transform-origin: top right;
        transform: rotateZ(-90deg);
    }

    .highlights .inner-panel .item:hover::before {
        transform: rotateZ(25deg);
    }

    .highlights .inner-panel .item:hover::after {
        transform: rotateZ(-25deg);
    }

    .highlights .title-cont h2 {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 5px;
    }

    .highlights .title-cont .desc,
    .highlights .title-cont-bottom .see-more {
        font-size: 20px;
    }

    .highlights .title-cont {
        padding-bottom: 30px;
    }
}