.ip-videos-item {
	margin-bottom: 30px;
}

.ip-videos-item a {
	display: block;
	position: relative;
}

.ip-videos-item a .canvas-img {
    position: relative;
}

.ip-videos-item a .canvas-img canvas {
    display: block;
    width: 100%;
}

.ip-videos-item a .canvas-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.ip-videos-item a .canvas-img::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: 0;
    z-index: 5;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ip-videos-item a:hover .canvas-img::before {
    opacity: 0.3;
}

.ip-videos-item a .canvas-img::after {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 90px;
    height: 90px;
    background: url(../../images/play-icon.png) no-repeat center center / contain;
    z-index: 5;
    margin: auto;
}

.ip-videos-item a span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	font-size: 15px;
	color: #000000;
	line-height: 1.1;
	letter-spacing: 0.02em;
	text-align: center;
}

.ip-videos-item a:hover img+img {
	transform: scale(1.2);
}