/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./stylesheets/basic.scss ***!
  \**************************************************************************/
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #fff;
    overflow: hidden; /* Hide the overflowing video */
  }

  video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the entire viewport */
    z-index: -1; /* Place the video behind other content */
  }

  .video-div {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999; /* Adjust the z-index as needed to ensure it's on top of other elements */
    visibility: hidden;
    
  }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #914031; 
        z-index: 1; 
        opacity: 50%;
      }

      .top-left-image {
        position: absolute;
        top: 10px;
        left: 10px;
        color: white;
        z-index: 3;
      }

      .top-left-image img {
        transform: scale(0.7); /* Scale the image to 70% of its actual size */
        max-width: 70%; /* Ensure the image doesn't exceed its container */
        height: auto; /* Maintain the aspect ratio */
      }


      .major-content{
        display: flex;
        align-items: end;
      }
  
      .content-container {
        position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
        z-index: 2;
        display: flex; 
        align-items: center; /* Center vertically */
      justify-content: center; /* Center horizontally */
      flex-direction: column; /* Stack child elements vertically */
      }
      
      .up-button {
        position: fixed;
        top: 20px; /* Adjust the distance from the bottom as needed */
        right: 20px; /* Adjust the distance from the right as needed */
        border-radius: 25px;
        height: 45px;
        width: 45px;
        cursor: pointer;
        /* Add any other desired button styles */
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0ibTEyLjQ1IDM3LjY1LTIuMS0yLjFMMjEuOSAyNCAxMC4zNSAxMi40NWwyLjEtMi4xTDI0IDIxLjlsMTEuNTUtMTEuNTUgMi4xIDIuMUwyNi4xIDI0bDExLjU1IDExLjU1LTIuMSAyLjFMMjQgMjYuMVoiLz48L3N2Zz4=);
        background-size: cover;
        border: none; /* Remove the border */
        outline: none; /* Remove the outline */
        background-color: #fff;
      }


      .content-container-general
      {
        display: flex; 
        align-items: center; 
        justify-content: center; 
      }
  
      .content {
        text-align: left;
        border-radius: 10px;
        width: 100%; 
        box-sizing: border-box; 
      }

      .content h1 {
        font-weight: lighter;
        font-size: 4em; 
        margin-bottom: 10px;
        white-space: nowrap;
      }

      .content h2 {
        font-weight: bolder;
        font-size: 3em;
        margin-top: 0px;
      }

      .image-container {
        width: 80%;
        margin-left: 20px; 
      }
  
      .image-container img {
        max-width: 90%; 
    
      }

      .below-container {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: space-between; 
      }
  
      .text-container {
        text-align: left;
      }

      .button-explore {
        background-color: #fff; /* Example button color */
        color: #d86450;
        padding: 10px 20px;
        border: none;
        border-radius: 7px;
        cursor: pointer;
        height: 40%;
        width: 150px;
        margin-top: 10px;
        margin-right: 10%;
        
      }

      @media (max-width: 768px) {
        .content h1 {
          font-size: 10vw; /* Adjust font size for smaller screens */
          margin-bottom: 1vw;
        }
      
        .content h2 {
          font-size: 8vw; /* Adjust font size for smaller screens */
        }
      
        .image-container {
          width: 100%; /* Adjust width for smaller screens */
          margin-left: 0; /* Remove margin for smaller screens */
          flex-direction: row; 
        }
      
        .below-container p {
          font-size: 4vw; /* Adjust font size for smaller screens */
        }

        .below-container{
          flex-direction: column; 
          justify-content: center; 
          align-items: center; /* Center vertically */
          margin-left: 50px;
        }
      
        .button-explore {
          font-size: 3.5vw; /* Adjust font size for smaller screens */
          width: 70%;
          margin-left: 20px;
        }

        .content-container-general{
          margin-left: 50px;
          flex-direction: column; 
          justify-content: center; 
          align-items: center; /* Center vertically */
        }

      }

      @media (max-height: 460px)
      {
        .content h1 {
          font-size: 4vw; /* Adjust font size for smaller screens */
        }
      
        .content h2 {
          font-size: 3vw; /* Adjust font size for smaller screens */
        }
      
        .image-container {
          width: 100%; /* Adjust width for smaller screens */
          margin-left: 0; /* Remove margin for smaller screens */
          flex-direction: column; 
        }
      
        .below-container p {
          font-size: 2vw; /* Adjust font size for smaller screens */
          margin-left: 22px;
        }

        .below-container{
          flex-direction: row; 
          justify-content: center; 
          align-items: center; /* Center vertically */
          margin-left: 50px;
        }
      
        .button-explore {
          font-size: 1.5vw; /* Adjust font size for smaller screens */
          width: 40%;
          margin-left: 20px;
        }

        .content-container-general{
          
          flex-direction: row; 
          justify-content: center; 
          align-items: center; /* Center vertically */
        }

      }

