#section-pathers-v1 {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

#section-pathers-v1 .container-pathers {
    height: max-content;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.principal-pathers-title h2 {
    font-size: 40px;
    /* color: var(--color-black); */
    color: #fff;
    font-weight: 700;
    padding-bottom: 20px;
    text-transform: capitalize;
}

.slider {
    background: rgba(255, 255, 255, 0);
    height: 120px;
    margin: auto;
    overflow: hidden; 
    position: relative;
    width: 100%; 
}

.slider .carousel.basic {
    animation: scroll 35s linear infinite; 
    display: flex;
    width: calc(375px * 6); 
    justify-content: space-between;
}

.slider .carousel.basic .card {
    height: 112px;
    width: 250px; 
    flex-shrink: 0; 
    border: none;
    box-shadow: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slider .carousel.basic .card img {
    height: 85%;
    width: 100%;
    object-fit: contain; 
    padding: 0 10px;
}

.slider .carousel.basic .card:hover img {
    transform: scale(1.04); 
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(127, 127, 127, 0) 0%, rgba(255,255,255,0) 100%);
    content: "";
    height: 100%; 
    position: absolute;
    width: 150px; 
    z-index: 2; 
    pointer-events: none; 
}

.slider::after {
    right: -1px;
    top: 0;
    transform: rotateY(180deg); 
}

.slider::before {
    left: -1px;
    top: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); } 
}


@media (max-width: 768px) {
    .slider::before,
.slider::after {
    background: unset;
}
    .slider .carousel.basic .card {
    height: 80px;
    width: 230px; 
    flex-shrink: 0; 
    border: none;
}
.principal-pathers-title h2 {
    font-size: 20px;
}
} 