/*** 

====================================================================
	News One
====================================================================

***/
.video-one {
	position: relative;
	display: block;
	background-color: var(--color-two);
	padding: 125px 0 233px;
	z-index: 1;
}

.video-one__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.video-one__bg:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(var(--color-two-rgb), .96);
	z-index: -1;
}

.video-one__inner {
	position: relative;
	display: block;
	text-align: center;
}

.video-one__play {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 110px;
	font-weight: 800;
	line-height: 110px;
	text-align: center;
	border-radius: 50%;
	color: var(--main-color);
	font-size: var(--font-35);
	font-family: 'Font Awesome 5 Pro';
	background-color: var(--white-color);
	margin: 0 auto 0;
	z-index: 1;
}

.video-one__play:hover {
	color: var(--white-color);
	background-color: var(--main-color);
}

.video-one__play:before {
	content: "";
	position: absolute;
	top: -13px;
	left: -13px;
	right: -13px;
	bottom: -13px;
	border: 13px solid rgba(var(--white-color-rgb), .20);
	border-radius: 50%;
}

.video-one__play:after {
	content: "";
	position: absolute;
	top: -26px;
	left: -26px;
	right: -26px;
	bottom: -26px;
	border: 13px solid rgba(var(--white-color-rgb), .13);
	border-radius: 50%;
}

.video-one__play .ripple,
.video-one__play .ripple:before,
.video-one__play .ripple:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
	-webkit-animation: ripple 3s infinite;
	-moz-animation: ripple 3s infinite;
	-ms-animation: ripple 3s infinite;
	-o-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.video-one__play .ripple:before {
	-webkit-animation-delay: .9s;
	-moz-animation-delay: .9s;
	-ms-animation-delay: .9s;
	-o-animation-delay: .9s;
	animation-delay: .9s;
	content: "";
	position: absolute;
}

.video-one__play .ripple:after {
	-webkit-animation-delay: .6s;
	-moz-animation-delay: .6s;
	-ms-animation-delay: .6s;
	-o-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
	position: absolute;
}

@-webkit-keyframes ripple {
	70% {
		box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
	}
}

@keyframes ripple {
	70% {
		box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
	}
}

.video-one__title {
	font-size: var(--font-45);
	font-weight: 700;
	color: var(--white-color);
	line-height: 60px;
	margin-top: 62px;
}









/* End */