.elementor-15 .elementor-element.elementor-element-63a6ad1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5e0e2f4 */.animated-hero {
  position: relative;
  height: 140vh;    
  /* full viewport height */
  width: 100vw;       /* full viewport width */
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.animated-hero .scroll-region {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.animated-hero .media {
  position: fixed;    /* fix to viewport */
  top: 0;
  left: 0;
  width: 100vw;       /* full width */
  height: 100vh;      /* full height */
  z-index: -1;        /* behind text */
  overflow: hidden;
}

.animated-hero .media canvas,
.animated-hero .media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;        /* fill frame width */
  height: auto;       /* maintain aspect ratio */
  max-width: 100vw;
  max-height: 100vh;
  transform: translate(-50%, -50%);
  background-color: black;
  object-fit: cover;  /* cover the container */
}

.animated-hero .media video {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* smoother fade */
}

.animated-hero .media.show-video canvas {
  opacity: 0;
}

.animated-hero .media.show-video video {
  opacity: 1;
}

.animated-hero .text-pane {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 1320px;
  margin-top: 15vh;
  padding: 20px;
  text-align: center;
  font: var(--font-copy-lg);
  /* removed translateY, so text centers naturally */
}

.animated-hero .text-pane h1 {
  font-family: Poppins, arial, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  color: rgb(255, 255, 255);
}

.animated-hero .text-pane p {
  font-family: Inter, arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  color: rgb(229, 229, 229);
}

.animated-hero .text-pane a {
  font-family: Inter, arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: rgb(248, 248, 249);
  background-color: #AF3000;
  text-decoration: none;
  border-radius: 4px;
}

/* Responsive adjustments (optional) */
@media screen and (max-width: 768px) {
  .animated-hero .text-pane {
    padding: 10px;
  }
  .animated-hero .text-pane h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .animated-hero .text-pane p {
    font-size: 16px;
    line-height: 24px;
  }
  
    .animated-hero .media canvas,
  .animated-hero .media video {
    width: 100vw !important;
    height: 100vh !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    object-fit: cover !important;
  }
}/* End custom CSS */
/* Start custom CSS *//* Make whole page background black */
.elementor-page {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

/* Make all text white */
.elementor-page, 
.elementor-page * {
  color: #FFFFFF !important;
}/* End custom CSS */