/* USED FOR ADA - ALLOW USERS TO PAUSE/PLAY VIDEO BACKGROUNDS */
.video-container {
    position: relative;
    width: 100%;
}

.videoControlToggle {
    background-color: rgba(255, 255, 255, 0.7);
		border-radius: 50%; /* Make the entire button a circle */
		border: none;
		bottom: 20px;
		cursor: pointer;
		height: 40px;
		line-height: 0;
		padding: 10px;
		position: absolute;
		right: 20px;
		transition: background-color 0.3s ease; /* Add transition effect */
		width: 40px;
		z-index: 3; /* Set z-index to 3 above video, overlay and text */
}

.videoControlToggle:hover {
    background-color: rgba(255, 255, 255, 1); /* Change background to 100% opacity on hover */
}