
.video-section{
	position: relative;
	z-index: 1;
}

.video-section .inner-container{
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	padding: 250px 0px;
	border-radius: 30px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.video-section .inner-container:before{
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	border-radius: 30px;
	opacity: 0.5;
}

.video-section .inner-container .shape{
	position: absolute;
	right: -124px;
	bottom: -107px;
	width: 293px;
	height: 293px;
	background-repeat: no-repeat;
	z-index: -1;
}

.video-section .inner-container .video-btn a{
	position: relative;
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 104px;
	text-align: center;
	font-size: 30px;
	color: #fff;
	border-radius: 50%;
}

.video-section .inner-container .video-btn a:before,
.video-section .inner-container .video-btn a:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(135, 195, 50, 0.2);
  box-shadow: 0 0 0 0 rgba(135, 195, 50, 0.2);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.video-section .inner-container .video-btn a:after{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}