.video-wrapper-container {
	margin-left: -30px;
    margin-right: -30px;
	margin-top: -40px;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77%; /* 16:9 ratio width */
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  z-index: 1;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

.video-overlay {
  position: absolute;
  top: 30px;
  right: 60px;
  z-index: 10;
  pointer-events: auto; /* allow clicking on buttons */
  color: white;
  max-width: 80vw;
  text-align: right;
}

.video-title {
  font-size: 4rem !important;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  color: white;
  font-family: Roboto !important;
}

.video-button {
  display: inline-block;
  background-color: rgb(1, 84, 160);
  color: white;
  padding: 20px 30px;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.video-button:hover {
  background-color: rgb(0, 173, 239);
  color: white !important;	
}

@media screen and (max-width: 1000px) {
   /* CSS rules for screens wider than 768px */
  .video-overlay {
	top: -30px;
    right: 0px;	
  }
	
  .video-title {
  	font-size: 1rem!important;
  }

  .video-button {
	font-size: .75rem;
	padding: 5px 10px;	
  }
}
