.video{
	width: 100%;
	height: 500px;
	align-items: center;
	display: flex;
	background-attachment: fixed;
	background-color: black;
	color: white;
	overflow: hidden;
}
.video video{
	width: 50%;
	height: 100%;
	object-fit: cover;
}

.video .services{
	width: 25%;
	position: relative;
	left: 4%;
	top: -30px;
}

.video .services table{
	width: 100%;
	height: 100%;
	display: block;
	margin: 0px;
}

.video .services table tr td{
	align-items: center;
	display: flex;
	margin: 15px;
	height: 50px;
	white-space: nowrap;
	background-color: #8a8a8a59;
	border-radius: 5px;
	font-size: 20px;
}
.video .services table tr td p{
	margin-left: 5px;
	text-align: center;
}
.video .services table tr td div{
	width: 5px;
	height: 100%;
	border-radius: 2px 0px 0px 2px;
	background-color: white;
}

.video .serviceimg{
	width: 25%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	line-height: 0px;
	border-radius: 5px 0px 0px 5px;
}

.video .serviceimg img{
	width: 100%;
	height: 50%;
	margin: 0px;
	border-radius: 5px 0px 0px 0px;
}

.video video, .video div{
	transform: scale(0.5);
	opacity: 5%;
}

.video video.animate, .video div.animate{
	animation: intro 2.5s ease-out forwards;
}

@keyframes intro{
	0%{transform: scale(0.5);opacity: 20%}
	50%{transform: scale(1.08);opacity: 50%}
	100%{transform: scale(1.0);opacity: 100%}
}