/* 
******************************
******************************
FUELING THE FUTURE CSS
******************************
******************************
*/

.fuel-container {
    position: relative;
  }
  
  .fuel-svg {
    margin-top: 76px;
    width: 100vw;
    height: 567px;
    object-fit: cover;
    display: block;
  }
  
  .fuel-text-container {
    position: absolute;
    top: 120px;
    left: 240px;
    max-width: 31.25rem;
  }
  
  .fuel-heading {
    font-size: 3.125rem;
    margin: 0px;
    color:#fff;
  }

  
  .fuel-para {
    font-size: 3.125rem;
    font-weight: 100;
    margin: 0px;
    color:#fff;
  }
  
  @media (max-width: 1080px) {
    .fuel-text-container {
      left: 100px;
    }
  }
  
  @media (max-width: 768px) {
    .fuel-text-container {
      left: 20px;
    }
  }
  
  /* 
  ******************************
  ******************************
  FUEL CELL SYSTEM CSS
  ******************************
  ******************************
  */
  
  .system-container {
    background: radial-gradient(
      ellipse at 15% 90%,
      #8097a5 0%,
      #030405 45%,
      #000000 100%
    );
    width: 100vw;
  
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 0px;
  }
  
  .system-content {
    max-width: 1300px;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  
  .system-image img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  }
  
  .system-text {
    max-width: 600px;
  }
  
  .system-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
  }
  
  .system-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #d0d4d8;
    margin-bottom: 20px;
    font-weight: 200;
  }
  
  .system-text .system-highlight {
    color: white;
  }
  
  @media (max-width: 1080px) {
    .system-content {
      flex-direction: column;
    }
    .system-image img {
      width: 450px;
    }
  
    .system-image img {
      padding-left: 50px;
    }
  }
  
  @media (max-width: 1080px) {
    .system-content {
      gap: 30px;
    }
  }
  
  /* 
  ******************************
  ******************************
  WORKING ARCHITECTURE CSS
  ******************************
  ******************************
  */
  
  .work-container {
    width: 100vw;
    background-color: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 62px;
    align-items: center;
    justify-items: center;
    padding-top: 65.5px;
    padding-bottom: 150px;
  }
  
  .work-container h2 {
    margin: 0px;
    font-size: 50px;
    font-weight: 500;
    text-align: center;
  }
  
  .arch-image-container {
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    scrollbar-width: none; /* hide scrollbar in Firefox */
  }
  
  .arch-image-container::-webkit-scrollbar {
    display: none; /* hide scrollbar in WebKit browsers */
  }
  
  .arch-img {
    height: 534px;
    width: auto;
    display: block;
  }
  
  @media (min-width: 1000px) {
    .arch-image-container {
      width: auto;
    }
  }
  