
div#lbh-question-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: -20px;
}
.video {
    width: 31%;
    margin: 1.1%;
}
.popup {
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.23), 0 3px 6px 0 rgba(0,0,0,0.16);
}
.popup:hover{
    cursor:pointer;
    background: #ffffff;
    box-shadow:0 6px 7px 0 rgba(0, 0, 0, 0.23), 0 6px 7px 0 rgba(0, 0, 0, 0.16);
}
.image-main {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    display: flex;
    background: #fff;
    align-items: center;
    padding-bottom: 60%;
}
.image-main img{
    width:100%;
}
.image-main .main-img {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.image-main img.play-btn {
    position: absolute;
    width: 25%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video .video-title {
    padding: 0 20px;
    text-align: center;
    color: #fff;
    background: #9754a8;
    font-size: 12pt;
    border-radius: 0 0 10px 10px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video .video-title p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}
@media only screen and (max-width: 768px){
    .faqs-index-index #maincontent{
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .video {
        width: 47%;
        margin: 1.5%;
    }
}
@media only screen and (max-width: 991px) and (min-width: 768px){
    .faqs-index-index .container {
        max-width: unset;
    }
}
@media only screen and (max-width: 480px){
    div#lbh-question-list {
        justify-content: center;
    }
    .video {
        width: 90%;
        margin-bottom: 25px;
    }
}