section.d_printing {
    width: 100%;
    padding-top: 80px;
}

section.d_printing .page_title {
    margin-bottom: 20px;
}

section.d_printing .intro {
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    max-width: 850px;
    margin-bottom: 80px;
    text-align: center;
    line-height: 1.5em;
}

.d_intro_wrapper {
    background: var(--black);
    color: var(--white);
}

.d_intro_list {
    display: flex;
    flex-wrap: wrap;
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    gap: 50px 30px; /* Space between items */
    justify-items: stretch;
    width: 100%;
    max-width: 1490px;
    padding: 70px 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.d_intro_list .intro_item {
    text-align: center;
    max-width: 315px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.d_intro_list .intro_item .title {
    color: var(--green);
    font-size: var(--font-title);
    margin-bottom: 10px;
    line-height: 1em;
}

html[lang=en-us] .d_intro_list .intro_item .title {
    font-family: 'OpenSans-Bold';
}

.d_intro_list .intro_item .description ul {
    list-style-type: disc;
    list-style-position: outside;
    text-align: left;
}

.d_intro_list .intro_item .description ul li:not(:last-child) {
    margin-bottom: 10px;
}

html[lang='zh-hk'] .d_intro_list .intro_item .description ul {
    text-align: center;
    list-style-position: inside;
}

.d_printing .video_list_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.d_printing .video_item {
    width: 50%;
    position: relative;
    height: 0;
    padding-bottom: 28.125%;
}

.d_printing .video_item video {
    width: 100%;
}

.d_printing .video_item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* .d_printing  */
.video_item:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background-color: var(--black);
    opacity: 0.5;
    cursor: pointer;
}

/* .d_printing  */
.video_item.playing:before {
    display: none;
}

/* .d_printing  */
.video_item:after {
    content: '';
    background-image: url('./../../../images/icon_play.svg');
    /* background-image: var(--icon-play); */
    background-size: contain;
    background-position: center;
    z-index: 8;
    display: block;
    top: 0;
    left: 0;
    margin: auto;
    position: absolute;
    width: 70px;
    height: 70px;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
}

/* .d_printing  */
.video_item.playing:after {
    display: none;
}

@media (max-width: 968px) {
    .d_printing .video_item {
        width: 100%;
        padding-bottom: 56.25%;
    }
}