
/* Carrusel Comentarios */

.swiper {
    width: 100%;
    min-height: 280px;
}


.swiper2 {
    width: 100%;
    height: 400px;
    
}

.comment-box {
    display: flex;
    flex-direction: row;
    padding: 16px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #E4EAF2;
    box-shadow: 0px 2px 16px -3px rgba(65.37, 96.70, 127.05, 0.20);
    align-items: center;
    gap: 20px;
    min-height: 240px;
    margin: 20px 10px 40px 10px;
}

.comment-box hr {
    border: none;
    height: 1px;
    background: #E9EEF5;
    margin: 0px 0px 0px 0px;
}

.comment-box img {
max-width: 50px;
}

.comment-title {
        text-align: left;
    color: #0E2536;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 8px;
    margin-top: 8px;
    font-family: 'Nunito-Bold', 'Arial', sans-serif;
}


.comment-paragraph {
    color: #2F5776;
    font-size: 14px;
    line-height: 20px;
    word-wrap: break-word;
    margin-top: 8px;
    font-family: 'Nunito-Regular', 'Arial', sans-serif;
}

.comment-text {

    display: flex;
    justify-content: flex-start;
    text-align: left;
    flex-direction: column;
}


/* Navegacion */

.flechits {
    position: absolute;
      display: flex;
      bottom: 0px;
      right: 50px;
      gap: 8px;
      z-index: 99;
  }
  .swiper-button-prev {
    transform: scaleX(-1);
  }
  .swiper-button-prev,
  .swiper-button-next {
      background-color: #F6F9FC;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 100vh;
      cursor: pointer;
  }
  .swiper-button-prev svg,
  .swiper-button-next svg {
    color: #587592;
  }

