/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 18 2025 | 08:55:06 */
/* Team Showcase Custom Styles */
.ts-container {
    display: flex;
    gap: 0;
    height: 600px;
    max-width: 1200px;
    width: 100%;
}

.ts-section {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
	margin-left: -6px;
    margin-right: -6px;
}

.ts-section:nth-child(1) {
    transform: translateY(-30px);
}

.ts-section:nth-child(2) {
    transform: translateY(30px);
}

.ts-section:nth-child(3) {
    transform: translateY(-30px);
}

.ts-section:nth-child(4) {
    transform: translateY(30px);
}

.ts-scroll-wrapper {
    display: flex;
    flex-direction: column;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
	animation-duration: 20s; /* Adjust Speed Here */
    gap: 0;
}

.ts-section:nth-child(1) .ts-scroll-wrapper {
    animation-name: ts-scrollUp;
}

.ts-section:nth-child(2) .ts-scroll-wrapper {
    animation-name: ts-scrollDown;
}

.ts-section:nth-child(3) .ts-scroll-wrapper {
    animation-name: ts-scrollUp;
}

.ts-section:nth-child(4) .ts-scroll-wrapper {
    animation-name: ts-scrollDown;
}

.ts-images-set {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0;
    box-sizing: border-box;
    padding-top: 0px;
    padding-bottom: 0;
}

.ts-profile-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-top: -6px;
    margin-bottom: -6px;
}

.ts-profile-image {
    width: 80%;
    height: 80%;
    background-color: #D9D9D9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.ts-profile-image:hover {
    filter: grayscale(0%);
}

.ts-profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 20px;
}

/* Ensure consistent spacing */
.ts-images-set:first-child {
    padding-top: 28px;
}

.ts-images-set:last-child {
    padding-bottom: 28px;
}

/* Adding fade in effect on top and bottom of slider */

.ts-section {
  position: relative;
  overflow: hidden; /* Ensure fades don’t overflow */
  -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%,   /* fade in at top */
    rgba(0,0,0,1) 15%,  /* fully visible */
    rgba(0,0,0,1) 85%,  /* fully visible */
    rgba(0,0,0,0) 100%  /* fade out at bottom */
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,1) 15%, 
    rgba(0,0,0,1) 85%, 
    rgba(0,0,0,0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

/* Adding fade in effect on top and bottom of slider */


/* Seamless Animation keyframes */
@keyframes ts-scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 14px));
    }
}

@keyframes ts-scrollDown {
    0% {
        transform: translateY(calc(-50% - 14px));
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .ts-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .ts-section {
        height: 300px;
        transform: none !important;
    }

    .ts-profile-card {
        min-height: 80px;
    }

    .ts-scroll-wrapper {
        animation-duration: 12s;
    }
}