.news-ls .item {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-ls .col{
    margin-bottom: 20px;
}
.news-ls article{
    padding: 15px 20px;
}
.news-ls article h3{
    font-size: 18px;
    font-family: 'Roboto Condensed', 'Noto Sans TC', sans-serif;
}
.news-ls figure img{
    width: 100%;
}
.news-ls .item figure{
    flex: 0 0 auto;
}
.news-ls .item article{
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 0 1 auto;
}
.news-ls article p:last-child{
    margin-top: auto;
}
@media screen and (min-width: 512px){
    .news-ls.row{
        display: flex;
        flex-direction: row;
        margin-left: -12px;
        flex-wrap: wrap;
    }
    .news-ls .col{
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 12px;
    }
}
@media screen and (min-width: 768px){
    .news-ls .col{
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}
@media screen and (min-width: 1024px){
    .news-ls .col{
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.gallery-lightbox .items{
    position: relative;
    overflow: hidden;
}
.gallery-lightbox figure{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 60%;
    transition: all 0.4s;
    display: block;
}
.gallery-lightbox .col{
    margin-bottom: 20px;
}
.gallery-lightbox .three-col .col:last-child{
    margin-bottom: 0;
}
.gallery-lightbox article,
.gallery-lightbox .items:before,
.gallery-lightbox .full-btn{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #FFFFFF;
    display: block;
}
.gallery-lightbox h3{
    color: #FFFFFF;
    margin-bottom: 10px;
}
.gallery-lightbox hr{
    border-bottom: none;
    border-top: solid 1px #FFFFFF;
    padding: 0;
    margin: 0 0 10px 0;
}
.gallery-lightbox .full-btn{
    z-index: 2;
}
.gallery-lightbox h3,
.gallery-lightbox p{
    text-shadow:  1px 1px 1px rgba(0,0,0,0.5);
}
.gallery-lightbox p span{
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
}
.gallery-lightbox .items:before{
    content: '';
    background: linear-gradient(360deg, rgba(0,0,0, 0.5) 0%,
     rgba(38, 38, 38, 0.4) 20%, rgba(60, 60, 60, 0) 100%);
    z-index: 1;
}
.gallery-lightbox article{
    z-index: 1;
    padding: 24px;
}
.gallery-lightbox .items:hover figure{
    transform: scale(1.05);
}

@media screen and (min-width: 768px){
    .gallery-lightbox .row{
        display: flex;
        flex-direction: row;
    }
    .gallery-lightbox .col{
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 0;
        padding: 12px;
    }
    .gallery-lightbox .three-col .col{
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .gallery-lightbox .three-col .items:before{
        transform: rotate(180deg);
    }
    .gallery-lightbox .two-col article{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

.home.banner{
    box-shadow: none;
}
.home .slick-dots{
    bottom: -40px;
} 
.home .slick-prev{
    left: 20px;
}
.home .slick-next{
    right: 20px;
}
@media screen and (min-width: 768px){
    .banner.banner figure {
        padding-top: 34.5%;
    }
}
@media screen and (min-width: 1024px){
    .home .slick-prev{
        left: 120px;
    }
    .home .slick-next{
        right: 120px;
    }
    .home.banner figure{
        padding-top: 34.5%;
    }
}

section .container.py-6{
    padding-top: 20px;
    padding-bottom: 30px;
}
section .container.pb-6{
    padding-bottom: 30px;
}
@media screen and (min-width: 1024px){
    .home .slick-dots{
        bottom: -28px;
    }
    section .container.py-6{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    section .container.pb-6{
        padding-bottom: 60px;
    }
}
.video-wrapper{
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}
.video-wrapper video{
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.video-wrapper video.mobile{
    height: 100%;
}
.video-wrapper video.desktop{
    display: none;
}
.overlaylink{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
@media screen and (min-width: 768px){
    .video-wrapper{
        padding-top: 34.5%;
    }
    .video-wrapper video.desktop{
        display: block;
    }
    .video-wrapper video.mobile{
        display: none;
    }
}
