/*================================================
Restaurant Video Style
==================================================*/
.nm-video-area {
	background-image: url(../../assets/img/video-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
}
.nm-video-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #131313;
	opacity: 0.5;
	z-index: -1;
}
.nm-video-btn {
	display: inline-block;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 0;
	color: var(--whiteColor);
	position: relative;
	top: 3px;
	z-index: 1;
	background-color: var(--mainColor);
	border-radius: 50%;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.nm-video-btn i {
	font-size: 55px;
	color: var(--whiteColor);
	position: absolute;
	top: 0;
	left: 3px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
}
.nm-video-btn::after,
.nm-video-btn::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	bottom: 0;
	left: 0;
	border-radius: 0;
	border-radius: 50%;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	-webkit-animation: ripple 1.6s ease-out infinite;
	animation: ripple 1.6s ease-out infinite;
	background-color: var(--mainColor);
}
.nm-video-btn:hover {
	background-color: #111111;
}
.nm-video-btn:hover::before,
.nm-video-btn:hover::after {
	background-color: #111111;
}
@-webkit-keyframes ripple {
	0%, 35% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0.8;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		transform: scale(2);
	}
}
@keyframes ripple {
	0%, 35% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0.8;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		transform: scale(2);
	}
}
.nm-top-video-area .nm-widget-area .widget_guto_posts_thumb {
	margin-bottom: 0 !important;
}