
/* Video Gallery Start */
.video-img-box {
    position: relative;
}
.video-img-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.pulse-box {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.pulse-box a:focus{color:#fff;}
.pulse-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #fff;
    position: relative;
    text-align: center;
    line-height: 55px;
    padding-left: 5px;
    font-size: 25px;
    color: #fff;
}
.pulse-icon:before, .pulse-icon:after {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 25px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: scale(0.5);
    transform-origin: center center;
    animation: pulse-me 3s linear infinite;
}
.pulse-icon:after {
    animation-delay: 2s;
}
.pulse-icon:hover {
    color: #fff;
}
@keyframes pulse-me {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	50% {
		opacity: 0.1;
		background: #fff;
	}
	70% {
		opacity: 0.09;
		background: #fff;
	}
	100% {
		transform: scale(5);
		opacity: 0;
		background: #fff;
	}
}
.video-img-box h2{
	font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 15px 8px;
    margin: 0;
    white-space: nowrap;
    background: white;
    position: relative;
}
.video-img-box{
	border: 10px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
/* Video Gallery End */