/* Fancybox CSS */
.fancybox-slide--iframe .fancybox-content {
    width  : 600px;
    height : 600px;
    max-width  : 80%;
    max-height : 80%;
    margin: 0;
}
.fancybox img {
    display: block;
    margin: 0 auto;
}
/* end Fancybox CSS */

.item-row {
    display: flex;
    margin: 0 -15px;
}
.item-col {
    width: 50%;
    padding: 0 15px;
    text-align: center;
}
.item-image {
    position: relative;
}
.item-image:before {
    content: '';
    background-image: url('../images/TransparentPlayBtn.png');
    width: 100px;
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    margin: -46px auto;
    height: 99px;
    background-repeat: no-repeat;
    background-size: contain;
}
.item-image img {
    display: block;
    width: 100%;
}
.item-desc {
    text-align: center;
}
.loadmore-btn {
    padding: 10px;
    width: 200px;
    display: block;
    text-align: center;
    border-radius: 8px;
    margin: 20px auto;
}

/*
* -------------------------------
* Media Screens CSS
* -------------------------------
*/

@media screen and (max-width: 768px) {
    .item-row {
        display: block;
    }
    .item-col {
        width: 100%;
    }
}

/*
* -------------------------------
* end Media Screens CSS
* -------------------------------
*/

