#section-pathers-v1 {
    height: 570px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #3d5245;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.tittle-information {
    width: 100%;
    height: max-content;
    justify-content: center;
    align-items: start;
}

#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 {
    /* color: var(--color-black); */
    color: #fff;
    font-weight: 700;
    padding-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: var(--letterSpacing);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.692);
    font-size: 2.85rem;
}

.slider {
    background: rgba(255, 255, 255, 0);
    height: 145px;
    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-p {
    position: relative;
    height: 112px;
    width: 250px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    overflow: visible; 

    --radius: 10px;
    --bg: white;
    background-color: var(--bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    transition: box-shadow 0.3s ease, transform 0.3s ease; 
}

.slider .carousel.basic .card-p::before {
    content: "";
    position: absolute;
    inset: calc(var(--radius) * -1); 
    pointer-events: none;
    
    background-image: 
        radial-gradient(
            var(--radius),
            transparent 98%,
            #fff 100%
        ),
        linear-gradient(#fff 0 0);
    
    background-repeat: round, no-repeat;
    
    background-position:
        calc(var(--radius) * -1.5) calc(var(--radius) * -1.5),
        50%;
        
    background-size:
        calc(var(--radius) * 3) calc(var(--radius) * 3),
        calc(100% - var(--radius) * 1.5) calc(100% - var(--radius) * 1.5);
    
    transition: all 0.3s ease; 
}

.slider .carousel.basic .card-p img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 1; 
}

.slider .carousel.basic .card-p:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.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);
}

.click-cert {
    height: 50px;
    width: 50px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    border-radius: var(--border-radius);
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.click-cert i {
    font-size: 20px;
    color: #3d5245;
    animation: bounce 2s infinite;
}


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

.bubble {
    position: absolute;
    bottom: 4px;
    right: 0px;
    /* background: var(--berry-crush-light); */
    background: var(--tr-primary);
    color: white;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 10;
}

.card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.show-bubble .bubble {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@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-p {
        height: 80px;
        width: 190px;
        flex-shrink: 0;

    }

    .principal-pathers-title h2 {
        font-size: 20px;
    }
   

    .bubble {
        bottom: 10px;
opacity: 1;
        padding: 4px 10px;

    }
}