.glide {

    max-width: 100%;
    margin: 0px;
    position: relative;
}

.glider-track {
    margin: auto;
    min-height: 300px !important;

}

/* fondo */
.glide__slides {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 30px;
}

/* tarjeta */
.glide__slide {
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    box-sizing: border-box;
    transition: transform 0.4s ease, z-index 0.4s ease;
    opacity: 0.8;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-height: 200px !important;
}

@media screen and (min-width:1200px) {
    .glide__slide {
        transform: scale(0.8);
    }
}

.glide__arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.glide__arrow {
    /* background: #007bff; */
    color: rgb(10, 0, 0);
    font-size: 50px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    padding: 20px;
    background-color: transparent;
}

.glide__arrow:hover {
    /* background: #0056b3; */
}

.glide__bullets {
    display: flex;
    gap: 10px;
    margin: 10px 20px;
}

.glide__bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    transition: background 0.1s ease;
    cursor: pointer;
}

.glide__bullet--active {
    background: #007bff;
}

.glide__slide.is-center {
    transform: scale(1);
    /* Scales the center slide slightly */
    z-index: 100;
    /* Ensures it's in front of others */
    opacity: 1;
    /* Make the center slide fully visible */
}

.testimonial-name {
    width: 100%;
    color: #191e4e;
    margin: 4px;
    padding: 0px;
    font-size: 33px;
}

.testimonial-job-title {
    width: 100%;
    color: #646464;
    margin-bottom: 0px;
}

.testimonial-job-place {
    width: 100%;
    color: #8c8d93;
    margin: 0px;
}

.testimonial-content {
    color: #1f2352;
    margin: 0px;
    padding: 20px 40px;
    font-size: 18px;
}

.toggle-btn {
    color: #007BFF;
    cursor: pointer;
    font-weight: bold;
    margin-left: 5px;
}

.qoute-icon {
    width: 20px;
    height: 20px;
}

/* @media (max-width: 768px) {
            .glide__slide {
                margin: 0 5px;
            }
        }

        @media (max-width: 600px) {
            .glide__slide {

                font-size: 0.95rem;
            }
        } */
@media screen and (min-width: 700px) and (max-width: 1200px) {
    .glide__slide {
        padding: 60px;
    }
}

@media screen and (max-width: 700px) {


    .glide__arrow {
        margin-top: -20px;
        /* display: none; */
    }

    .glide__slides {
        align-items: center;
        padding: 10px 0px;
    }

    .glide__slide {
        padding: 10px;
        margin-top: 10px;
        margin-right: 10px;
    }

    .glide__bullets {
        gap: 2px;
        display: none;
    }

    .testimonial-name {

        font-size: 22px;
    }

    .testimonial-job-title {
        font-size: 12px;
    }

    .testimonial-job-place {
        font-size: 12px;
    }

    .testimonial-content {
        padding: 10px;
        font-size: 14px;
    }

    .quote-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}