.marqueeslider {
    background-color: #f6faf8;
    padding: 50px 0;
    /* margin-top: 35px; */
    margin-bottom:120px;
    width:100%;
  }

  .marqueeslider  h1 {
    width: 200px;
    font-size: 48px;
    font-weight: 400;
    color: #00321d;
    font-family: var(--font-family-newsreader);
    text-align: justify;
    margin-bottom: -40px;
}
.marqueeslider  p {
    text-align: justify;
    margin-bottom: 0px;
    font-family: var(--font-family-inter);
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
}

.left-section{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.left-section a button {
    display: flex;
    max-width: 170px;
}
  
  .container-custom {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .marqueeslider .content h1 {
    font-size: 48px;
    color: #00321d;
    font-family: var(--font-family-newsreader);
  }
  
  .content p {
    color: #222222;
    margin: 10px 0 20px;
    font-size: 24px;
    /* padding-right: 30%; */
    font-family: var(--font-family-inter);
    line-height: 30px;
  }
  
  .marqueeslider .content button {
    color: #00321d;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #00321d;
    margin-top: 40px;
  }
  
  .marqueeslider .btn img {
    padding-left: 12px;
  }
  
  .image-container {
    overflow: hidden;
    position: relative;
    height: 300px; /* Adjust based on your preference */
  }
  
  .image-wrapper {
    display: flex;
    flex-direction: column;
    animation: scroll-up 20s linear infinite;
  }
  
  .image-wrapper:hover {
    animation-play-state: paused;
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
    margin: 15px 0px;
  }
  
  /*  */
  
  @keyframes scroll-up {
    0% {
      transform: translateY(0%);
    }
    100% {
      transform: translateY(-50%); /* Adjust to scroll exactly half the length */
    }
  }
  
  .marqueeslider button {
    border: 1px solid #00321d;
    font-size: 20px;
    background: #ebefed;
    padding: 5px 18px;
    border-radius: 8px;
    align-items: center;
    display: flex;
    font-family: var(--font-family-inter);
  }
  .leftGradient {
    border-top-right-radius: 15px;
    background: linear-gradient(
      103deg,
      #f6faf8 0%,
      rgba(217.48, 228.75, 224.13, 0.6) 42%,
      #d4deda 100%
    );
  }
  .rightGradient {
    border-top-left-radius: 15px;
    background: linear-gradient(
      303deg,
      #f6faf8 0%,
      rgba(217.48, 228.75, 224.13, 0.6) 42%,
      #d4deda 100%
    );
  }
  

  .marqueeslider .btn:hover {
    border: 1px solid #00321d!important;
    font-size: 20px;
    background: #ebefed!important;
    padding: 5px 18px;
    border-radius: 8px;
    align-items: center;
    color: var(--dark-green)!important;
    display: flex;
    font-family: var(--font-family-inter);
}


  @media (max-width: 768px) {
    .marqueeslider {
        background-color: #f6faf8;
        padding: 0px 0;
        margin-top: 0px;
        margin-bottom: 80px;
  }
  .left-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0px 50px 0px;
    padding: 20px 0px;
}

  .marqueeslider h1 {
    width: 100%;
    font-size: 36px;
    color: #00321d;
    font-family: var(--font-family-newsreader);
    text-align: center;
    margin-bottom: 0px;
    padding: 0px 0px 10px 0px;
}

.marqueeslider p {
    text-align: center;
    margin-bottom: 0px;
    font-size: 16px;
}

.left-section a button {
    display: flex;
    width: 178px;
    margin: 0 auto;
    margin-bottom: 50px;
}

section.marqueeslider.aboutpage {
    padding-top: 50px;
}
  
  
  
  
  
  
  
    .team-member img {
      border-radius: 50%;
      width: 150px;
      height: 150px;
      object-fit: cover;
      margin-bottom: 15px;
    }
  
   
    .marqueeslider .content button {
      color: #00321d;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      border: 2px solid #00321d;
      margin-top: 0px;
      margin: 50px auto;
    }
  
    .content p {
      color: #666666;
      margin: 10px 0 0px;
      font-size: 16px;
      padding: 0px 0% 0px 0px;
      font-family: var(--font-family-inter);
      line-height: 25px;
      text-align: left;
    }
  
    .marqueeslider .content h1 {
      font-size: 36px;
      color: #00321d;
      font-family: var(--font-family-newsreader);
      text-align: center;
    }
  
    .image-wrapper {
      flex-direction: row;
      animation: scroll-left 15s linear infinite;
    }
  
   
  

  
    /* marquee */
  
    .marqueeslider .content h1 {
      font-size: 36px;
    }
  
    .content p {
      font-size: 12px;
      padding-right: 0px;
    }
  
    .image-wrapper {
      flex-direction: row; /* Change to horizontal scrolling */
      animation: scroll-left 5s linear infinite;
      height: auto;
    }
  
    .image-wrapper .image-group {
      flex-direction: row;
    }
  
    .image-wrapper img {
      height: 70%;
    }
  
    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
  
      100% {
        transform: translateX(-100%);
        /* Adjust to scroll exactly the full length */
      }
    }

    .marqueeslider p {
        text-align: center;
        margin-bottom: 0px;
        font-family: var(--font-family-inter);
        line-height: 25px;
        padding-bottom: 50px;
    }
  
  
   
  }
  