.video-top {
    position: relative;
    padding: 80px 60px;
    margin: -10px -60px 30px;
}

img.video-top-blur {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    filter: blur(8px);
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.video-top-left {
    display: inline-block; 
    width: 50%;
    position: relative;
}
.video-top-left:before {
    content: "";
    background-image: url(../../../img/frontend/home-overlay.png);
    position: absolute;
    left: 0;
    right: -1px;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.8; 
}
.video-top-left img {
    width: 100%;
}

.video-top-right {
    display: inline-block;
    width: 33%;
    vertical-align: top;
    padding: 0px 50px;
}
.video-top-right p {
    color: #f9f9f9;
    font-size: 18px;
}
.video-top-play {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-top-play i {
    background: rgba(255, 255, 255, 0.8);
    color: rgba(0, 0, 0, 0.8);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 28px 0 0;
    text-align: center;
    font-size: 36px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.video-top-right .popup-video {
    background: #f5ca2a;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 500;
    color: #000;
}


.video-top:hover .video-top-play i {
	background: rgba(245, 202, 42, 0.8);
}



.video-main {
    margin: 0 -15px;
}

.video-list {
    display: inline-block;
    width: 49.8%;
    vertical-align: top;
    padding: 15px 15px;
}
.video-list-inner {
    position: relative;
    overflow: hidden;
    display: block;
}

.video-list-img {
    position: relative;
}
.video-list-img:before {
    content: "";
    background-image: url(../../../img/frontend/home-overlay.png);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.8;
}
.video-list-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.video-list-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px;
}
.video-list-caption h3 {
    margin: 0;
    position: relative;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.video-list-caption p {
    margin: 0;
    color: #e6dede;
    position: relative;
    top: -10px;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.video-list-play {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-list-play i {
    background: rgba(255, 255, 255, 0.8);
    color: rgba(0, 0, 0, 0.8);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 28px 0 0;
    text-align: center;
    font-size: 36px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}


.video-list-inner:hover .video-list-play i {
	background: rgba(245, 202, 42, 0.8);
}
.video-list-inner:hover .video-list-caption h3 {
	bottom: 10px;
	opacity: 1;
}
.video-list-inner:hover .video-list-caption p {
	top: 0;
	opacity: 1;
}









@media only screen and (min-width:100px) and (max-width:767px)
{



.video-top-left {
    width: 100%;
}
.video-top-right {
    width: 100%;
    padding: 15px 0 0;
}
.video-top-play i {
    width: 60px;
    height: 60px;
    padding: 15px 0 0;
}
.video-list {
    width: 100%;
}
.video-list-img img {
    height: 260px;
}
.video-list-caption {
    padding: 15px 0;
    position: relative;
}
.video-list-caption h3 {
    opacity: 1;
}
.video-list-caption p {
    opacity: 1;
    color: #fff;
    top: 0;
}
.video-list-play {
    top: 100px;
    bottom: auto;
}
.video-list-play i {
    width: 60px;
    height: 60px;
    padding: 15px 0 0;
}



}