/* Investors V2 Block CSS */

.investors-v2-block {
    width: 100%;
    overflow: hidden; /* Hide anything outside the container */
    position: relative;
    background: linear-gradient(180deg, #252742 0%, #1e1f3a 50%, #1a1b35 80%, #16172f 100%);
}

section.investors-v2-block {
    padding-top: 32px !important;
    padding-bottom: 112px !important;
}

.investors-v2-pcb-bg {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.investors-v2-gradient-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 101%;
    height: 60%;
    background: linear-gradient(180deg, rgba(71, 57, 234, 0.00) 22.52%, rgba(71, 57, 234, 0.35) 121.1%);
    z-index: 0;
}

.investors-v2-pcb-bg img {
    width: 100%;
    height: 284px;
}

.investors-v2-container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.investors-v2-gallery {
    display: flex;
    animation: slide 17s linear infinite backwards; /* Infinite sliding animation */
}

.investors-v2-member { 
   width: calc(1240px / 4);
    box-sizing: border-box;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investors-v2-gallery-container {
    position: absolute;
    display: flex;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    overflow: hidden;
    -webkit-mask: linear-gradient(to right, transparent 0px, black 120px, black calc(100% - 120px), transparent 100%);
    mask: linear-gradient(to right, transparent 0px, black 120px, black calc(100% - 120px), transparent 100%);
}

.investors-v2-member img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 80px;
}

.investors-v2-team-background-title-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 50px;
    background-color: #23263A;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(
      5% 0%,
      95% 0%,
      100% 100%,
      0% 100%
    );
    border-radius: 32px 32px 0 0;
    overflow: hidden;
  }
  
  .investors-v2-team-background-title-text {
    color: #fff;
    text-align: center;
    font-family: "Bai Jamjuree";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 32.5px */
    letter-spacing: 0.26px;
  }

/* Slide animation */
@keyframes slide {
    0% {
        transform: translate(0);
    }
    100% {
        transform: translate(-100%);
    }
}

.investors-v2-block-item {
    position: relative;
    margin-top: 50px;
    max-width: 100%;
    width: 100%;
    padding-bottom: 100px;
}


/* Pause animation on hover */
.investors-v2-block-item:hover .investors-v2-gallery {
    animation-play-state: paused;
}

/* Mobile responsive styles */
@media (max-width: 968px) {
    .investors-v2-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .investors-v2-gallery-container {
        max-width: 100%;
    }
    
    .investors-v2-block-item {
        max-width: 100%;
    }

    .investors-v2-team-background-title-container {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 50px;
        background-color: #23263A;
        display: flex;
        align-items: center;
        justify-content: center;
        clip-path: polygon(
          5% 0%,
          95% 0%,
          100% 100%,
          0% 100%
        );
        border-radius: 32px 32px 0 0;
        overflow: hidden;
      }
    
      .investors-v2-team-background-title-text {
        color: #fff;
    
        text-align: center;
        font-family: "Bai Jamjuree";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 125%; /* 20px */
        letter-spacing: 0.16px;
      }

      .investors-v2-member { 
        width: calc(968px / 4) ;

    }
          .team-v2-member { 
        width: calc(968px / 4) !important;


}


}