.ot-video_popup_module .single-video .video-wrapper.ot-video{
	display: flex;
	justify-content: center;
}
.ot-video_popup_module .single-video .ot-video img{
	display: block;
}
.ot-video_popup_module .single-video .ot-video__container {
	display: inline-block;
	position: relative;
	z-index: 0;
	border-radius: 10px;
}
.ot-video_popup_module .single-video .overlay,
.ot-video_popup_module .video-boxes .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.ot-video_popup_module .ot-video__btn {
	border-radius: 50%;
	height: 60px;
	left: 50%;
	/*     padding: 13px 0 0 6px; */
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	z-index: 2;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
  transition: 0.9s;
  color: #FFFFFF;
}
.ot-video_popup_module .btn-with-title .ot-video__btn-icon {
	display: inline-block;
	width: 17px;
	height: auto;
	position: relative;
}
.ot-video_popup_module .btn-with-title .btn_bg{
	height: 60px;
	background: #3CB815;
	border-radius: 100%;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
  transition: 0.9s;
}
@media(max-width: 767px){
	.ot-video_popup_module .btn-with-title .btn_bg{
		margin: 0px auto 20px;
	}
	.ot-video_popup_module .video-wrapper .video_title_container .btn-with-title a{
		text-align: center;
	}
}
.ot-video_popup_module .ot-video__btn-icon svg path,
.ot-video_popup_module .btn-with-title .ot-video__btn-icon svg path{
	fill: #F75D5D;
}
.ot-video_popup_module .video-wrapper .video_title_container {
	align-items: center;
	position: static;
	justify-content: center;
}
.ot-video_popup_module .video-wrapper .video_title_container .btn-with-title a{
	align-items: center;
}

.ot-video_popup_module .single-video a:hover,
.ot-video_popup_module .video-boxes a:hover,
.ot-video_popup_module .single-video a:active,
.ot-video_popup_module .video-boxes a:active,
.ot-video_popup_module .single-video a:focus,
.ot-video_popup_module .video-boxes a:focus{
	color: transparent;
}
/* .video-image a{
color: #3CB815;
} */
/* .ot-video__btn-icon svg{
margin-bottom: 4px;
} */
/* .ot-video__btn-icon svg path{
	fill: #F75D5D;
} */
.ot-video_popup_module .ot-video__btn-icon {
	display: inline-block;
	width: 17px;
	height: auto;
}
.ot-video_popup_module .ot-video__btn::before,
.ot-video_popup_module .ot-video__btn::after {
	border: 8px solid;
}
.ot-video_popup_module .ot-video__btn::after {
	align-items: center;
	animation-delay: 0s;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-name: ripple;
	animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
	border-radius: 50%;
	bottom: 0;
	content: "";
	display: flex;
	flex-direction: row;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}
.ot-video_popup_module .ot-video__btn::before {
	align-items: center;
	animation-delay: 0.5s;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-name: ripple;
	animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
	border-radius: 100%;
	bottom: 0;
	content: "";
	display: flex;
	flex-direction: row;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}
@keyframes ripple {
	from {
		opacity: 1;
		transform: scale3d(0.75, 0.75, 1);
	}

	to {
		opacity: 0;
		transform: scale3d(1.5, 1.5, 1);
	}
}
.ot-video_popup_module .play-button-wrapper .ot-video__btn:hover{
	transform: translate(-50%,-50%) scale(1.25);
	transition: 0.9s;
}
.ot-video_popup_module .btn-with-title .btn_bg:hover{
	transform: scale(1.25);
}

/* box content */

.ot-video_popup_module .video-boxes .box_content{
  margin-top: 25px;
}
.ot-video_popup_module .single-video .ot-video__container,
.ot-video_popup_module .video-boxes .video_box .video_boxes_image{
  overflow: hidden;
}
.ot-video_popup_module .single-video .ot-video__container.video_title_container{
  overflow: visible;
}
.ot-video_popup_module .single-video .ot-video__container:hover img,
.ot-video_popup_module .video-boxes .video_box .video_boxes_image:hover img{
  transform: scale(1.1);
  object-fit: cover;
}

/**
* Simple fade transition,
*/
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.2s ease; 
	-moz-transition: all 0.2s ease; 
	transition: all 0.2s ease;
}
.mfp-fade.mfp-bg.mfp-ready {
	transform: scale(1); 
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	transform: scale(0.8); 
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out; 
	-moz-transition: all 0.2s ease-out; 
	transition: all 0.2s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
/* close btn */
.mfp-content button.mfp-close:hover {
    background: transparent;
    color: #FFFFFF;
}

/* style-2 */
