/*================================================
Video Area CSS
=================================================*/
.video-area {
	position: relative;
	z-index: 1;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 220px;
	padding-bottom: 220px;
}
.video-area::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: var(--blackColor);
	opacity: 0.5;
	z-index: -1;
}
.video-content {
	text-align: center;
}
.video-content h2 {
	font-size: 36px;
	margin-bottom: 12px;
	color: var(--whiteColor);
}
.video-content p {
	color: var(--whiteColor);
	max-width: 610px;
	opacity: 0.9;
	margin-left: auto;
	margin-right: auto;
}
.video-content .video-btn {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: relative;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	background-color: rgba(255, 255, 255, 0.65);
	font-size: 60px;
	display: inline-block;
	margin-top: 10px;
}
.video-content .video-btn i {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: -1px;
}
.video-content .video-btn:hover {
	color: var(--whiteColor);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
    .video-area {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .video-content h2 {
        font-size: 24px;
    }
    .video-content p {
        max-width: 100%;
    }
    .video-content .video-btn {
        width: 60px;
        height: 60px;
        font-size: 50px;
    }
    .video-content .video-btn i {
        margin-top: 0;
    }
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video-area {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.video-content h2 {
		font-size: 30px;
	}
	.video-content .video-btn {
		width: 70px;
		height: 70px;
		font-size: 55px;
	}
}
