.videobox {
    margin-bottom: 30px;
    padding: 30px 35px 0;
}

.videobox h2 {
    margin-bottom: 24px;
    font-weight: 100;
}

.videobox .img-container {
    position: relative;
    overflow: hidden;
}

.videobox .img-container img,
.videobox .img-container picture {
    display: block;
    width: 100%;
}

.videobox .img-container picture { transition: transform 400ms cubic-bezier(0,0,0.3,1); }

.videobox .img-container:hover picture { transform: scale(1.05); }

.videobox .img-container::after {
    content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 130px;
	height: 130px;
	background-image: url(/includes/public/assets/shared/svg/icon-play-large.svg);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%,-50%);
	pointer-events: none;
}