.container-fluid {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .image-container {
        display: inline-block;
        position: relative;
    }

    .image-container img {
        display: inline-block;
        max-width: 180px;
               max-height: 150px;
        margin-right: 10px;
        
    }



    .video-container {
        position: relative; 
        display: flex;          
        align-items: center;    /* Vertical centering */
        justify-content: center; /* Horizontal centering */
      }
      
    .video-container video {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      object-fit: cover !important;
      inset: 0;
      
  }
      .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; 
        display: flex;
        align-items: center; 
        justify-content: center; 
      }
      
      .play-button { 
        background: none;
        border: none;
        cursor: pointer;
      }
      
      .play-button svg {
        width: 80px; /* Adjust the size of the icon */
        height: 80px;
        fill: #fff;   /* Example color */
      }
.playbuttonholder { height: 80px;}
      #div1 { 
        position: fixed;  /* Position the video container */
        top: 0;
        left: 0;
        width: 100%; 
        height: 100%;  /* Make video take up the entire viewport */
      }
      
      body.video-active {
        overflow: hidden; /* Prevent scrolling on body */
      }

      .mute-button {
        position: absolute;
        bottom: 100px; /* Adjust position as needed */
        right: 100px; /* Adjust position as needed */
        background: none; /* Remove default button styles */
        border: none;
        cursor: pointer;
        z-index:5000;
      }

      .mute-button svg {
        width: 40px;
        height: 40px;
        fill: #fff; /* Example color */
      }

      .skip-text {
        position: absolute;
        bottom: 30px; /* Adjust position as needed */
        left: 50%;
        transform: translateX(-50%); /* Center horizontally */ 
        cursor: pointer;
        color:#fff;
        z-index: 1000;
      }


      #div1 video[poster] {  /* Adjust the selector if needed */
        object-fit: cover;  /* Main property for fitting */
        width: 100%;        /* Fill the container's width */
        height: 100%;       /* Fill the container's height */ 
     }
     #div1 video:before {
     content: "";
     background: rgba(var(--background-color-rgb), 0.5);
     position: absolute;
     inset: 0;
     z-index: 2;
    }

    :root {
        --shadow: #00636563;
        --scrollbarBG: #f4f4f4;
        --thumbBG: #153334;
    }
    ::-webkit-scrollbar {
      width: 16px;
    }
    ::-webkit-scrollbar-track {
      background: var(--scrollbarBG);
    }
    ::-webkit-scrollbar-thumb {
      background-color: var(--thumbBG);
      box-shadow: 0 -100vh 0 100vh var(--shadow), 0 0 15px 5px black;
    }
    
    /* Standard stuff, if you care to do that.
    body {
      scrollbar-width: thin;
      scrollbar-color: var(--thumbBG) var(--scrollbarBG);
    } */
    
    .side-scroll {
      display: flex;
      overflow: auto;
      padding-bottom: 5px;
      z-index:5000;
    }
    .side-scroll > div {
      flex: 1;
      margin-right: 20px;
      flex: 0 0 100px;
      height: 100px;
      background: #ccc;
    }
    .side-scroll::-webkit-scrollbar-thumb:horizontal {
      background-color: var(--thumbBG);
      box-shadow: -100vh 0 0 100vh var(--shadow), 0 0 15px 5px black;
    }

span.red {color:#dc143c !important}

.text-lines .line { 
  display: none;
}

#div2 #hero video {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover !important;
 height: 100vh;
     margin-top: -89px;
}

#div2 #stats video {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover !important;
  inset: 0;
}


#scroll-animation-container {
  position: fixed;  /* Keep animation in the same position */
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100; /* Ensure the animation is on top */
}

#scroll-animation-container svg {
  width: 30px;
  height: 30px;
  fill: #fff; /* Or your desired color */
}

p.small {
  font-size: smaller;
}




