.container-hilton-page-links {
    padding: 64px 75px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
}

.container-hilton-page-links .col-buttons {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.container-hilton-page-links .button a {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 5px;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 8px 32px;
    border-radius: 4px;
    flex-direction: column;
}

.container-hilton-page-links .button a .title {
    font-size: 18px;
    font-weight: 500;
}

.container-hilton-page-links .button a:hover {
    opacity: .7;
}

.container-hilton-page-links .button a:active {
    opacity: .5;
}

.container-hilton-page-links .media {
    max-width: 573px;
    height: 322px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin: 64px auto 0;
}

.container-hilton-page-links .layer-content {
    position: absolute;
    bottom: 20px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    cursor: pointer;
}

.container-hilton-page-links .col-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    flex-wrap: nowrap;
}

.container-hilton-page-links .col-content .icon {
    background-image: url('../images/icon--play.png');
    background-repeat: no-repeat;
    background-position: top 18px left 20px;
}

.container-hilton-page-links .col-content.active .icon {
    background-image: url('../images/icon--pause.png');
    background-position: top 20px left 20px;
}

.container-hilton-page-links .col-content .title {
    color: #ffffff;
    font-weight: 700;
    font-size: 15.32px;
    line-height: 36.04px;
    letter-spacing: 0px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    width: 140px;
}

@keyframes slide-left-in {
    0% {
        width: 140px;
    }
    100% {
        width: 0px;
    }
}

.container-hilton-page-links .slide-left-in {
    animation-name: slide-left-in;
    animation-duration: 3s;
    animation-iteration-count: 1;
}

@keyframes slide-left-out {
    0% {
        width: 0px;
    }
    100% {
        width: 140px;
    }
}

.container-hilton-page-links .slide-left-out {
    animation-name: slide-left-out;
    animation-duration: 3s;
    animation-iteration-count: 1;
}

.container-hilton-page-links .media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-hilton-page-links .overlayer {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.06%, rgba(3, 1, 13, 0.5) 100%);
    z-index: 1;
    top: 0;
    cursor: pointer;
}

@media(max-width: 767px) {
    .container-hilton-page-links {
        padding: 64px 16px;
    }

    .container-hilton-page-links .button a .title {
        font-size: 16px;
    }

    .container-hilton-page-links .button a .description {
        font-size: 14px;
    }

    .container-hilton-page-links .media {
        height: 185px;
    }
}