.highlights-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(3, 450px);
    -ms-grid-rows: 450px 450px 450px;
    margin-bottom: 50px;
}
.hightlights-grid .item {
    overflow: hidden;
}
.hightlights-grid .item .img-cont::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    transition: opacity 0.5s;
    opacity: 0;
}
.highlights-grid .item:first-child {
    position: relative;
    grid-column: 3 / 5;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-row: 2 / 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    padding: 100px 0 0 60px;
    background-color: #204a59;
}
.highlights-grid .item:first-child .img-cont {
    background:url('/includes/public/assets/images/highlight-lg.png') center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}
.highlights-grid .item:nth-child(2) {
    position: relative;
    grid-column: 1 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-row: 1 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
}
.highlights-grid .item:nth-child(2) .img-cont {
    background:url('/includes/public/assets/images/highlight-lg.png') center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}
.highlights-grid .item:nth-child(3) {
    position: relative;
    grid-column: 1 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-row: 1 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
}
.highlights-grid .item:nth-child(3) .img-cont {
    background:url('/includes/public/assets/images/highlight-lg.png') center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}
.highlights-grid .item:nth-child(4) {
    position: relative;
    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-grid .item:nth-child(4) .img-cont {
    background:url('/includes/public/assets/images/highlight-lg.png') center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}
.highlights-grid .item:nth-child(5) {
    position: relative;
    grid-column: 4 / 5;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-row: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
}
.highlights-grid .item:nth-child(5) .img-cont {
    background:url('/includes/public/assets/images/highlight-lg.png') center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}
.highlights-grid .item:nth-child(6) {
    position: relative;
    grid-column: 1 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-row: 3 / 4;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
}
.highlights-grid .item:nth-child(6) .img-cont {
    background:url('/includes/public/assets/images/highlight-lg.png') center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}
.highlights-grid .item:last-child {
    position: relative;
    grid-column: 3 / 5;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-row: 3 / 4;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
}
.highlights-grid .item:last-child .img-cont {
    background:url('/includes/public/assets/images/highlight-lg.png') center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}
.highlights-grid .item {
    overflow: hidden;
}
.highlights-grid .item .img-cont {
    position: relative;
    transition: transform 0.5s;
}
.highlights-grid .item .img-cont::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    transition: opacity 0.5s;
    opacity: 0;
}
.highlights-grid .item:hover .img-cont {
    transform: scale(1);
}
.highlights-grid .item .img-cont::after {
    opacity: 1;
}
.highlights-grid .item .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    padding: 5px;
}
.highlights-grid .item .content h5 {
    font-family: var(--proxima-nova-bold-font-family);
    font-weight: var(--proxima-nova-bold-font-weight);
    font-style:  var(--proxima-nova-bold-font-style);
    text-align: center;
    font-size: 26px;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 4px;
    transition: transform 0.5s;
}
.highlights-grid .item:hover .content h5 {
    transform: translateY(-25px);
}
.highlights-grid .item .content .text-cont {
    position: relative;
    padding: 10px;
    text-align: center;
    border: 1px solid white;
    width: 95%;
    max-width: 300px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s, opacity 0.3s;
}
.highlights-grid .item:hover .content .text-cont {
    transform: translateY(-20px);
    opacity: 1;
}
.highlights-grid .item .content .text-cont::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.15;
    z-index: -1;
}
.highlights-grid .item .content .text-cont p {
    color: white;
    font-size: 15px;
    line-height: 19px;
}
.highlights-grid .item .content .text-cont span {
    font-family: var(--proxima-nova-bold-font-family);
	font-weight: var(--proxima-nova-bold-font-weight);
	font-style:  var(--proxima-nova-bold-font-style);
    color: white;
    font-size: 15px;
    text-transform: uppercase;
}
.highlights-grid .item:first-child .copy {
    width: 100%;
    max-width: 580px;
}
.highlights-grid .item:first-child .copy h3 {
    color: white;
    margin: 0 0 25px;
}
.highlights-grid .item:first-child .copy p {
    font-size: 16px;
    line-height: 21px;
    color: white;
}
.highlights-grid .item:first-child .copy a {
    color: #eaa21b;
}
@media (max-width: 1350px) {
    .highlights-grid {
        grid-template-rows: repeat(3, 335px);
        -ms-grid-rows: 335px 335px 335px;
    }
    .highlights-grid .item:first-child {
        padding: 50px 0 0 30px;
    }
    .highlights-grid .item:nth-child(4):hover .content h5, .highlights-grid .item:nth-child(4):hover .content .text-cont, .highlights-grid .item:nth-child(5):hover .content h5, .highlights-grid .item:nth-child(5):hover .content .text-cont {
        transform: translateY(-50px);
    }
}
@media (max-width: 1150px) {
    .highlights-grid {
        grid-template-rows: repeat(3, 285px);
        -ms-grid-rows: 285px 285px 285px;
    }
    .highlights-grid .item:first-child {
        padding: 30px 0 0 20px;
    }
    .highlights-grid .item:nth-child(4):hover .content h5, .highlights-grid .item:nth-child(4):hover .content .text-cont, .highlights-grid .item:nth-child(5):hover .content h5, .highlights-grid .item:nth-child(5):hover .content .text-cont {
        transform: translateY(-100px);
    }
}
@media (max-width: 1024px) {
    .highlights-grid .item:nth-child(6):hover .content h5, .highlights-grid .item:nth-child(6):hover .content .text-cont, .highlights-grid .item:last-child:hover .content h5, .highlights-grid .item:last-child:hover .content .text-cont {
        transform: translateY(-100px);
    }
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        -ms-grid-columns: 1fr 1fr;
        grid-template-rows: auto 250px 250px 250px;
        -ms-grid-rows: auto 250px 250px 250px;
    }

    .highlights-grid .item:first-child {
        grid-column: 1 / 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-row: 1 / 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        padding: 25px;
    }
    .highlights-grid .item:nth-child(4) {
        grid-column: 1 / 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-row: 3 / 4;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
    }
    .highlights-grid .item:nth-child(5) {
        grid-column: 2 / 3;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-row: 3 / 4;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
    }
    .highlights-grid .item:nth-child(3) {
        grid-column: 1 / 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-row: 2 / 3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
    }
    .highlights-grid .item:nth-child(6) {
        grid-column: 1 / 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-row: 4 / 5;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
    }
    .highlights-grid .item:last-child {
        grid-column: 2 / 3;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-row: 4 / 5;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
    }
}
@media (max-width: 640px) {
    .highlights-grid {
        display: flex;
        flex-direction: column;
    }
    .highlights-grid .item {
        min-height: 180px;
    }
    .highlights-grid .item:nth-child(6):hover .content h5, .highlights-grid .item:nth-child(6):hover .content .text-cont, .highlights-grid .item:last-child:hover .content h5, .highlights-grid .item:last-child:hover .content .text-cont, .highlights-grid .item:nth-child(4):hover .content h5, .highlights-grid .item:nth-child(4):hover .content .text-cont, .highlights-grid .item:nth-child(5):hover .content h5, .highlights-grid .item:nth-child(5):hover .content .text-cont {
        transform: translateY(0);
    }
    .highlights-grid .item:hover .content h5 {
        transform: translateY(0);
    }
    .highlights-grid .item .content {
        transform: translate(-50%, -50%);
        width: 90%;
    }
    .highlights-grid .item .content h5 {
        font-size: 21px;
        line-height: 24px;
    }
    .highlights-grid .item .content .text-cont {
        display: none;
    }
    .highlights-grid .item:first-child {
        order: 1;
        width: 100%;
        padding: 25px 15px;
    }

    .highlights-grid .item:nth-child(4) {
        order: 3;
        width: 100%;
    }
    .highlights-grid .item:nth-child(3) {
        order: 2;
        width: 100%;
    }
    .highlights-grid .item:nth-child(5) {
        order: 5;
        width: 100%;
    }
    .highlights-grid .item:nth-child(6) {
        order: 6;
        width: 100%;
    }
    .highlights-grid .item:last-child {
        order: 7;
        width: 100%;
    }
}
