.our-video-display-section {
    width: 100%;
    padding: 60px 0px 70px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.our-video-display-section::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 400px;
    background: #01155A;
}

.our-video-display-section .our-video-display-section__title {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto 40px;
    font-weight: bold;
    color: #01155A;
    text-align: center;
}

.our-video-display-section .our-video-display-section__content {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.our-video-display-section .our-video-display-section__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.our-video-display-section .our-video-display-section__item {
    width: 170px;
    height: 46px;
    line-height: 46px;
    border-radius: 25px;
    cursor: pointer;
    background: #01155A;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}

.our-video-display-section .our-video-display-section__item:hover,
.our-video-display-section .our-video-display-section__item.active {
    background: #FF5E16;
}

.our-video-display-section .our-video-display-section__video {
    width: 100%;
    margin: 50px auto 0px;
    position: relative;
}

.our-video-display-section .video-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.our-video-display-section .video-package {
    width: 60%;
    max-width: 940px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    min-width: 320px;
    margin: 0 auto;
}

.our-video-display-section .video-package video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.our-video-display-section .video-icon {
    width: 60px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
}

.our-video-display-section .video-list {
    width: 38%;
    max-width: 440px;
    background: #FF5E16;
    border-radius: 20px;
    padding: 25px;
    box-sizing: border-box;
}

.our-video-display-section .video-list-item {
    border-bottom: 2px solid #FFFFFF;
    padding: 0 15px;
    box-sizing: border-box;
}

.our-video-display-section .video-list-item:last-child {
    border-bottom: none;
}

.our-video-display-section .video-item-value {
    font-weight: bold;
    font-size: 48px;
    color: #FFFFFF;
    margin-top: 5px;
}

.our-video-display-section .video-item-text {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 15px;
}


@media screen and (max-width:760px) {
    .our-video-display-section .our-video-display-section__item {
        width: auto;
        padding: 0px 15px;
    }

    .our-video-display-section .video-item {
        flex-direction: column;
        align-items: center;
    }

    .our-video-display-section .video-package {
        width: 100%;
    }

    .our-video-display-section .video-list {
        width: 100%;
    }
}

@media screen and (min-width:760px) and (max-width:1020px) {

    .our-video-display-section .video-item {
        flex-direction: column;
        align-items: center;
    }

    .our-video-display-section .video-package {
        width: 100%;
    }

    .our-video-display-section .video-list {
        width: 100%;
    }
}


@media screen and (min-width:1020px) and (max-width:1380px) {
    .our-video-display-section .video-item {
        flex-direction: column;
        align-items: center;
    }
}