.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(Peizometer.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .slide.active {
    opacity: 1;
  }

  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    height: 40vh;
    border-radius: 10px;
    width: 35%;
    padding: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
  }

  .slide-text h2 {
    padding: 0 5px;
  }

  .slide-text p {
    font-size: .8em;
    text-align: justify;
  }

  h2 {
    font-family: sans-serif;
  }

  .Card-wrapper .product-cards {
    height: 80vh;
  }

  .Card-wrapper .product-cards .Title {
    margin-top: 10%;
  }

  .Prod-Container {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 20px;
  }

  .Prod-Container p {
    padding: 5px;
  }

  @media (max-width:800px) {
    .slider-container {
      height: 50vh;
    }

    .slide-text {
      bottom: 10px;
      left: 5%;
      height: 35vh;
      width: 90%;
      padding: 15px;
      color: white;
      background-color: rgba(0, 0, 0, 0.5);
    }
  }

  @media (max-width:480px) {
    .Card-wrapper .product-cards {
      width: 90vw;
      height: 65vh;
    }

    .Prod-Container {
      margin-top: 20vh;
    }

    h2#Stack,
    #Water {
      margin-top: 10vh;
    }

    .slide-text {
      bottom: 10px;
      left: 5%;
      height: 15vh;
      width: 90%;
      padding: 15px;
      color: white;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .footer-distributed {
      margin-top: 0;
    }

    .slide-text h2 {
      font-size: .9em;
    }

    .slide-text p {
      font-size: .6em;
    }
  }