.testimonios-title {
    font-size: 48px;
    color: #4194f3;
    font-weight: 700;
    font-family: "Poppins";
}

.testimonios-title-highlight {
    font-size: 48px;
    color: #4194f3;
    font-weight: 400;
    font-family: "Poppins";
}

.testimonios {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.testimonioCard {
    background-color: #dde6ed;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    position: relative; /* Para posicionar las comillas correctamente */
    height: 90%;
}

.testimonioCardPersona {
    font-size: 21px;
    color: #4194f3;
    font-weight: 500;
    font-family: "Poppins";
}

.testimonioCardPersonaSub {
    font-size: 16px;
    color: #8e8e8e;
    font-weight: 300;
    font-family: "Poppins";
}

.testimonioCardTexto1 {
    width: 311px;
    height: 179px;
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    font-family: "Poppins";
    text-align: center;
}

.testimonioCardImg {
    border: 5px solid transparent; /* borde transparente */
    border-image: linear-gradient(to right, #2bb8fb, #5c7cf2); /* degradado */
    border-image-slice: 1; /* ajuste para navegador */
    border-image-width: 5px; /* grosor del borde degradado */
}

.quote-container {
    position: relative;
    display: inline-block;
    text-align: center; /* Para alinear correctamente el texto y las comillas */
}

.quote-marks {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none; /* Para asegurar que no interfiera con el contenido clicable */
}

.quote-mark {
    font-family: Arial, sans-serif;
    font-size: 15rem;
    color: #0067b8;
    position: absolute;
}
.left-quote {
    top: calc(-250px + (-10vh + 10vw));
    left: calc(-5.7rem + (-2vh + 2vw));
}

.right-quote {
    top: calc(250px + (10vh - 10vw));
    right: calc(-5.7rem + (-2vh + 2vw));
}

/* Media queries para ajustar las posiciones en diferentes tamaños de pantalla */
@media (max-width: 768px) {
    .left-quote {
        top: calc(-100px + (-8vh + 8vw));
        left: calc(-3rem + (-1.5vh + 1.5vw));
    }

    .right-quote {
        top: calc(120px + (8vh - 8vw));
        right: calc(-3rem + (-1.5vh + 1.5vw));
    }
}


.testimonios-button {
    width: 291px;
    height: 42px;
    border-radius: 10px;
    background-color: #002140;
    border: none;
}

.testimonios-button-text {
    font-size: 29px;
    color: #ebebeb;
    font-weight: 700;
    font-family: "Poppins";
}

.d-md-none {
    display: none;
  }
  
  @media (max-width: 767.98px) {
    
    .d-md-none {
      display: block;
    }
  
    .d-md-flex {
      display: none !important;
    }

    .testimonios-title {
        font-size: 24px;
    }

    .testimonios-title-highlight {
        font-size: 24px;
    }

    .testimonioCardTexto1 {
        font-size: 15px;
        color: #000000;
        font-weight: 300;
        font-family: "Poppins";
        text-align: center;
    }

    .testimonioCardPersona {
        font-size: 18px;
        color: #4194f3;
        font-weight: 500;
        font-family: "Poppins";
    }

    .testimonioCardPersonaSub {
        font-size: 14px;
        color: #8e8e8e;
        font-weight: 300;
        font-family: "Poppins";
    }

    .quote-mark {
        font-size: 10rem;
    }

  }
  
  /* CSS */
.swiper-container {
    position: relative;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px; /* Ajusta esto según sea necesario */
    left: 0;
    width: 100%;
    text-align: center;
}

  