/*************************************************
	Devize hero video
*************************************************/
.dvz-video-hero {
   height: 43vw; 
   max-height: 720px; 
   position: relative;   
}

.dvz-video-hero-control {
   position: absolute; 
   bottom: 0px; 
   right: 2rem; 
   z-index: 1;
}

.dvz-video-hero-control-button {
   margin-bottom: 2rem;
   z-index: 20;
   height: 45px;
   width: 45px;
   border: .063rem solid black;
   border-radius: 50%;
   background-color: rgba(255, 255, 255, 0.50); 
   transition: background-color .3s;
}

.dvz-video-hero-control-button:hover {
   cursor: pointer;
   background-color: white;
}

.dvz-video-hero-video {
   width: 100%;
   object-fit:cover;
   height: 43vw;
   max-height: 720px;
   display: flex;
   margin-right: auto; 
   margin-left: auto;
}


@media (max-width: 994px) {
  .dvz-video-hero, .dvz-video-hero-video {
     max-height: 480px; 
     height: 480px;
   }
   
  	.dvz-video-hero-control {
      right: 20px
   }
}
