/*GLOBAL STYLES*/
h1 {
	margin-bottom: 30px;
}
 h2, h3 {
	color: #006A96;
}
 h3 {
	padding-bottom: 0.4em;
}
 h4 {
	font-weight: 800;
}
 h5 {
	font-weight: 600;
}

footer {margin-top: 20px;}

.center {text-align: center;}

.btn-internal-toggle {display: block;}

/*HOMEPAGE Specific*/
.center-tidy {margin: 0px auto; width: 70%;}
@media (max-width: 1024px) {
  .center-tidy {width: 100%;}
}
#home-video {margin: 10px 0px 40px 0px;}

/*Bios*/
.photos > img {margin: 0px auto; padding-bottom: 5px;}

/*Jumbo Video*/
/*#jumbo-video {
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: 50%;
    background-color: #f5f0e6;
    color: inherit;
}*/

#jumbo-video {
  position: relative; /* Establish positioning context for the iframe */
  width: 100%;
  height: 100vh; /* Or a specific height for your container */
  overflow: hidden; /* Hide overflow from the scaled iframe */
}

#jumbo-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw; /* Ensure it's wider than the container */
  height: 100vh; /* Ensure it's taller than the container */
  transform: translate(-50%, -50%) scale(1.5); /* Center and scale to cover */
  min-width: 100%;
  min-height: 100%;
  pointer-events: none; /* Prevent interaction with the iframe */
}