/*=============================
	Video One Css
===============================*/
.video-one {
	position: relative;
	display: block;
	padding: 0px 0px 0px;
	margin-top: -525px;
	z-index: 2;
}

.video-one__img-box {
	position: relative;
	display: block;
	clip-path: polygon(16% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 29%);
}

.video-one__popup-btn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.video-one__popup-btn .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 170px;
	background: var(--thm-white);
	border-radius: 50%;
	transition: all 200ms linear;
	transition-delay: 0.1s;
	z-index: 2;
}

.video-one__popup-btn .icon:hover {
	background-color: #FD4A36;
}

.video-one__popup-btn .icon:after,
.video-one__popup-btn.icon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: transparent;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	-webkit-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	z-index: -1;
}

.video-one__popup-btn .icon:after {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.video-one__popup-btn .icon .video-popup {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
}

.video-one__popup-btn .icon .video-popup span::before {
	position: relative;
	color: #FD4A36;
	font-size: 40px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.video-one__popup-btn .icon:hover .video-popup span::before {
	color: var(--thm-white);
}


/* =============================================
	Video Two
============================================== */
.video-two {
	position: relative;
	display: block;
	background-color: var(--thm-black-bg3);
	padding: 0px 0px 100px;
	z-index: 10;
}

.video-two__shape-1 {
	position: absolute;
	top: -190px;
	right: 0;
	opacity: .10;
}

.video-two__shape-1 img {
	width: auto;
}

.video-two__top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.video-two__top-left {
	position: relative;
	display: block;
}

.video-two__top .sec-title-one {
	padding-bottom: 61px;
}

.video-two__top .sec-title-one .sub-title p {
	color: var(--thm-secondary);
}

.video-two__top .sec-title-one .sub-title .border-line {
	background: rgba(255, 255, 255, 0.20);
}

.video-two__top .sec-title-one .big-title h2 {
	color: var(--thm-white);
}

.video-two__top .sec-title-one .big-title p {
	color: rgb(255, 255, 255, 0.8);
}

.video-two__top-btn {
	position: relative;
	display: block;
	max-width: 200px;
	width: 100%;
}

.video-two__btn {
	color: var(--thm-primary-2);
}

.video-two__img-box {
	position: relative;
	display: block;
	overflow: hidden;
	border-top-left-radius: 35px;
	border-bottom-right-radius: 35px;
	margin-left: 70px;
}

.video-two__img-box img {
	width: 100%;
}

.video-two__shape1 {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.video-two__shape2 {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}

.video-two__popup-btn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.video-two__popup-btn .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 170px;
	background: var(--thm-primary-2);
	border-radius: 50%;
	transition: all 200ms linear;
	transition-delay: 0.1s;
	z-index: 2;
}

.video-two__popup-btn .icon:hover {
	background-color: #FD4A36;
}

.video-two__popup-btn .icon:after,
.video-two__popup-btn.icon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: transparent;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
	-webkit-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	z-index: -1;
}

.video-two__popup-btn .icon:after {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.video-two__popup-btn .icon .video-popup {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
}

.video-two__popup-btn .icon .video-popup span::before {
	position: relative;
	color: var(--thm-black);
	font-size: 35px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.video-two__popup-btn .icon:hover .video-popup span::before {
	color: var(--thm-white);
}

/* =============================================
	Video Three
============================================== */
.video-three {
	position: relative;
	display: block;
	z-index: 2;
}

.video-three__inner {
	position: relative;
	display: block;
	padding: 250px 10px 250px;
	text-align: center;
	z-index: 1;
}

.video-three__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.video-three__shape-1 {
	content: "";
	position: absolute;
	height: 397px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background-color: var(--thm-white);
	border-radius: 10px;
	z-index: -1;
}

.video-three__video-link {
	position: relative;
	display: block;
	z-index: 2;
}

.video-three__video-icon {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	font-size: 30px;
	color: var(--thm-black);
	background-color: var(--thm-primary-2);
	border-radius: 50%;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.video-three__video-icon:hover {
	background-color: var(--thm-black);
	color: var(--thm-white);
}

.video-three__video-link .ripple,
.video-three__video-icon .ripple:before,
.video-three__video-icon .ripple:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-ms-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
	-o-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
	-webkit-box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
	box-shadow: 0 0 0 0 rgba(var(--thm-black-rgb), 0.6);
	-webkit-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.video-three__video-icon .ripple:before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	content: "";
	position: absolute;
}

.video-three__video-icon .ripple:after {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	content: "";
	position: absolute;
}

@-webkit-keyframes ripple {
	70% {
		box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
	}
}

@keyframes ripple {
	70% {
		box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
	}
}












/* =============================================
	End
============================================== */