.driveVideos {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: top;
}
.driveVideos .singleVideo {
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	margin-bottom: 40px;
}
.driveVideos .btn-video-modal:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #a38689;
}
.driveVideos .btn-video-modal.left:before {
	transform: translate(-20px, -20px);
}
.driveVideos .btn-video-modal.right:before {
	transform: translate(20px, -20px);
}
.driveVideos .btn-video-modal {
	position: relative;
}
.driveVideos .btn-video-modal article {
	position: relative;
	z-index: 2;
}
.driveVideos .btn-video-modal:hover {
	cursor: not-allowed;
}
.driveVideos .btn-launch-video:hover {
	cursor: pointer;
}
.driveVideos .btn-video-modal:hover .icon-control-play {
	transform: translate(-50%,-55%) scale(1.2);
	background: rgba(255,255,255,0.5);
	transition: all 0.3s ease-in-out;
}
.driveVideos .btn-video-modal .icon-control-play {
	position: absolute;
	z-index: 2;
	color: black;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 1.2rem;
	border: 1px solid black;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
	background: rgba(255,255,255,0.3);
}
.driveVideos .btn-video-modal .icon-control-play:before {
	transform: translate(2px,0);
}
.driveVideos .btn-video-modal .watchCopy {
	position: absolute;
	z-index: 2;
	bottom: 0;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	left: 0;
	text-align: center;
	color: black;
	text-transform: uppercase;
	font-size: 0.5rem;
	letter-spacing: 0.5px;
	font-weight: bold;
}
.driveVideos img {
	max-width: 100%;
	width: 100%;
	min-width: 100%;
}
.driveVideos .videoLinks {
	margin-top: 10px;
}
.driveVideos .videoLinks a {
	display: block;
	text-align: center;
	/*text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.6rem;
	margin-top: 10px;*/
}

@media(min-width: 768px) {
	.driveVideos .singleVideo {
		width: 50%;
	}
}
@media(min-width: 1024px) {
	.driveVideos .singleVideo {
		width: 25%;
		margin-bottom: 0;
	}
}