.videoContainer {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flext-start;
	gap: 35px;
}
.video {
	width: 31%;
	padding: 0;
	background-color: #ffffff;
}
.video:hover {
	opacity: .5;
}
.video .videoDetails {
	padding: 20px;
}
.video .videoImg {
	width: 100%;
}
.video .videoTitle {
	background-color: transparent;
	text-transform: capitalize;
	font-weight: 700;
	text-decoration: none;
	font-size: 16px;
	color: #000000;
	text-align: left;
	padding: 0;
}
.video .videoDate {
	color: #000000;
	font-size: 14px;
	opacity: .7;
	margin: 0;
}
.video a {
	text-decoration: none;
}

@media screen and (max-width: 1075px) {
	.videoContainer {
		justify-content: center;
	}
	.video {
		width: 45%;
	}
}

@media screen and (max-width: 700px) {
	.videoContainer {
		justify-content: center;
	}
	.video {
		width: 100%;
	}
}