/*******************************************************
 *
 * Videos V2
 *
 *******************************************************/


#inner-page-wrapper {
    margin-bottom: 0;
}
#inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}

.img-canvas {
    position: relative;
}
.img-canvas canvas {
    display: block;
    width: 100%;
    height: auto;
}
.img-canvas img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}


.ip-vv2-wrap {
    padding: 0 20px;
    background: linear-gradient(180deg, #fcb53b, transparent);
}
.ip-vv2-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 0;
}
.ip-vv2-intro h2 {
    font-family: var(--font-title);
    /* font-size: 75px; */
    font-size: 55px;
    line-height: 1;
    color: var(--primary);
    text-align: center;
    font-style: italic;
}
.ip-vv2-intro p {
    font-size: 19px;
    font-style: italic;
    text-align: center;
    width: 100%;
    max-width: 1080px;
    margin: 25px auto;
    line-height: 1.7;
    font-family: var(--font-family-default);
    letter-spacing: 0.05em;
}
.ip-vv2-feeds {
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}
.ip-vv2-feed {
    width: 33.33%;
    padding: 13px;
}
.ip-vv2-feed a {
    display: block;
    border: 3px solid #5d205d;
}

.ip-vv2-feed-title {
    font-style: italic;
    font-size: 22px;
    padding: 10px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-weight: 800;
    background: var(--secondary);
    min-height: 80px;
}
.ip-vv2-feed:hover .ip-vv2-feed-title {
    color: #fff;
}
.ip-vv2-playbtn {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #54a98e;
    font-size: 30px;
}
.ip-vv2-feed-preview img {
    filter: brightness(0.8);
    transition: 0.3s;
}
.ip-vv2-feed:hover .ip-vv2-feed-preview img {
    filter: brightness(1);
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/

 
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */ 
@media only screen and (max-width: 1199px) {
    .ip-vv2-feed-title {
        font-size: 17px;
    }
    .ip-vv2-feed-title {
        min-height: 70px;
    }
} 

/* iPad(portrait) | Galaxy Tab 4(portrait)  */ 
@media only screen and (max-width: 991px) {
	
    .ip-vv2-feed {
        width: 50%;
    }
    .ip-vv2-feed-title {
        min-height: 60px;
    }

} 

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */ 
@media only screen and (max-width: 767px) {
    .ip-vv2-playbtn {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }
    .ip-vv2-feed-title {
        font-size: 14px;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */ 
@media only screen and (max-width: 480px) {
    .ip-vv2-feed {
        width: 100%;
    }
    .ip-vv2-feed-title {
        min-height: auto;
    }
}
 
