input[type=text] {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
}

p {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

ul li, ol li {
    line-height:160%; /*or whatever height you like*/
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.is-required:after {
    content: '*';
    margin-left: 3px;
    color: red;
    font-weight: bold;
}

.video-background {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    }
    
    .video-foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevents interaction with the video */
}
    
.video-foreground iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents interaction with the iframe */
}

/* Semi-transparent overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    z-index: 1;
}
    
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 20vh;
}

.headerTextOrange {
    color: #BE4F3F;
    font-size:30px;
    font-weight:regular;
    padding-top: 30px;
    padding-left: 60px;
}

.subHeaderWhite {
    color:white;
    font-weight:regular;
    padding-top: 5px;
    padding-left: 60px;
}

.borderDiv {
    
    -webkit-box-shadow:inset 0px 0px 0px 10px #ffffff;
    -moz-box-shadow:inset 0px 0px 0px 10px #ffffff;
     box-shadow:inset 0px 0px 0px 10px #ffffff;
}

#map { height: 620px }