.video-banner .video-slider {
    position: relative;
    overflow: hidden;
    max-height: 700px;
    margin-top: -5.5%;
}

@media only screen and (max-width: 1366px) {

    .video-banner .video-slider {
        overflow: hidden;
        max-height: 630px;
    }

}

.video-banner .video-slider video {}

.video-slider .navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .video-slider .navigation {
        padding: 0;
        bottom: 20px;
    }
}

.video-slider .navigation .notice {
    position: absolute;
    top: -30px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.425);
    padding: 2px 5px;
    opacity: 0;
    transition: .4s;
    border-radius: 10px;
}

.video-slider .navigation li {
    list-style: none;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 4px;
    background-color: white;
    padding: 3px;
    opacity: .7;
    transition: .2s;
}

.video-slider .navigation li:hover {
    opacity: 1;
}

.video-slider .navigation .notice.active {
    top: -35px;
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    .video-slider .navigation .notice {
        font-size: 12px;
    }
}

.video-slider .navigation li .progress {
    height: 10px;
    width: 120px;
}

@media only screen and (max-width: 768px) {
    .video-slider .navigation li .progress {
        width: 100px;
    }
}

.video-slider .navigation li img {
    width: 120px;
    transition: .5s;
}

.video-slider .navigation li img:hover {
    width: 180px;
}


/* Section P20S */

section.produk-p20s {
    padding: 50px 0;
}

@media only screen and (max-width: 768px) {
    .produk-p20s .row .col-xs-6 {
        width: 50%;
    }
}

section.produk-p20s .header p {
    font-size: 26px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}


/* Card */
section.produk-p20s .items {
    padding: 10px;
    transition: background-color .4s;
    border-radius: 20px;
}

section.produk-p20s .activity-card {
    max-height: 550px;
    overflow: hidden;
}

section.produk-p20s .items:hover {
    background-color: rgba(255, 166, 0, .3);
}

section.produk-p20s .activity-card p {
    font-size: 14px;
    transition: .3s;
    margin: 5px 0 0 0;
}

@media only screen and (max-width: 768px) {
    section.produk-p20s .activity-card p {
        font-size: 16px;
    }
}


section.produk-p20s .activity-card img {
    width: 100%;
    transform: scale(1);
    transition: .4s;
    /* animation: scale 2000ms ease-in-out forwards; */
}

section.produk-p20s .item-link {
    color: black;
    text-decoration: none;
}

section.produk-p20s .item-link:hover>.activity-card .header h1 {
    color: rgb(249, 160, 27);
}

section.produk-p20s .image {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    max-height: 410px;
    overflow: hidden;
}

section.produk-p20s .item-link:hover>.activity-card img {
    transform: scale(1.2);
}


/* Akhir Section P20S */