/* .media-choice {
position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 500px;
    overflow: hidden;
    width: 100%;
}

.media-choice video {
  /* Make video to at least 100% wide and tall */
 /* min-width: 100%; 
  min-height: 100%; 
  max-width: 100%; */

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
/* width: auto;
  height: auto; 

  /* Center the video */
/* top: 50%;
    transform: translateY(-50%) !important;
    position: relative;
} */


.main-header {
 padding: 0 2rem; 
}

.video-wrap {
  width: 100%;
  z-index:0 !important;
}

.media-choice {
  height:500px !important;
}

.video-wrap::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  /*background: rgba(0, 0, 0, 0.5);*/
  z-index: 10;
}

.video-wrap video {
  width: 100%;
  height: 100%;
}


.hero-container {
  position:relative;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.home-hero {
  position:relative;
    max-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.home-hero .overlay {
  background:rgb(190, 157, 35, 0.5);
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  overflow:hidden;
  z-index: 1;
}

.heroItem {
  background-size:cover;
  background-position:center;
position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.header-text {
      position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  flex-direction: column;
  z-index:1;
  text-align: center;
}

.header-text h1 {
  color:#FFF !important;
  font-size:55px; 
}
.header-text p {
 font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.home-button {
  display: flex;
    gap: 20px;
}


span {
  font-family: 'Figtree';
}


.btn-anim {
      position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 40px;
    max-width: 250px;
    margin: 1rem auto;
    text-transform: uppercase;
/*     border: 1px solid #4eace1; */
    align-items: center;
    padding: 20px 40px;
    background-color: #c3a228;
  white-space: nowrap;
    font-family: 'Figtree' !important;
    font-weight: regular;
    font-size: 14px;
    letter-spacing: 1px;
  justify-content: center;
  color: #FFF;
  text-decoration:none;
z-index: 1;
  transition: color 150ms ease-in-out;
  border-radius: 8px;
}


.btn-anim:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background-color: rgba(24, 42, 84, 0.4);
  z-index: -1;
  transition: width 150ms ease-in-out;
}
.btn-anim:hover a,
.btn-anim:hover span {
  color: #fff;
}
.btn-anim:hover:after {
  width: 110%;
}

.btn-anim:hover {
  background:transparent !important;
}


@media only screen and (max-width:767px) {
  .home-hero .overlay {
   background: linear-gradient(to bottom, #000, rgba(195, 162, 40, 1)) !important; 
  opacity: .9;
  }
  .heroItem {
    background-size: cover;
    background-position: center;
    height: 500px;
}

.media-choice {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
}
  
.home-button {
    gap: 0px;
    flex-direction: column;
}

.home-hero {
    position: relative;
    max-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    flex-wrap: wrap;
    height: 500px;
} 
  
.header-text h1 {
    color: #FFF !important;
    text-align: center;
    font-size: 36px;
    padding: 0 20px;
}
  
.media-choice video {
  max-width: none;
  height: -webkit-fill-available;
}

  
}

@media only screen and (min-width:1100px) and (max-width:1349px) {
.media-choice {
    height: 1000px !important;
}
}

@media only screen and (min-width:1350px) and (max-width:1680px) {
.media-choice {
    height: 800px !important;
}
}

@media(max-width: 425px) {
 .home-hero {
   max-height: 400px;
  }
}