/* SELECTED PAGE TESTIMONIALS*/

.header-middle li:nth-child(3) a::after {
    width: 110%; /* selected page highlighted underline */
}

.header-middle li:nth-child(3) a {
    color: #6164b8; /* selected page highlighted color */
}

/* ---------------- */

.left-frame {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.right-frame {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.testimonial-frame {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #ddd;
    border-radius: 10px;
    border-radius: 25px 7px 25px 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px;
    width: 50%;

}


.testimonial-frame img {
    border-radius: 50%;
    margin-top: -40px;
    border: solid #ddd 2px;
    width: 80px;
    height: 80px;
    background-color: var(--bg-color1);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 10px;

}

.testimonial-content p {
    text-align: center; /* Corrected property name */
    margin: 0;
    font-family: "Ink Free", Helvetica, Arial, Verdana, sans-serif;
    font-size: 1.2em;
    font-style: italic;
}

.testimonial-source p {
    text-align: center; /* Corrected property name */
    margin: 0;
    margin: 5px;
    font-weight: 700;
    font-style: italic;
    font-family: "Poppins", Helvetica, Arial, Verdana, sans-serif;
    font-family: "Roboto-Slab", Helvetica, Arial, Verdana, sans-serif;
    font-size: 0.9em;
}

.testimonial-divider {
    margin: 0 auto;
    width: 90%;
    padding: 0px;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    transform: rotate(180deg);
}

.testimonial-divider2 {
    margin: 0 auto;
    width: 90%;
    padding: 0px;

}


@media (max-width: 860px) {
    .testimonial-frame {
        width: 90%;
        margin: 5% 40px;
    }
    .left-frame {
      width: 100%;
      display: flex;
      justify-content: flex-start;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    .right-frame {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      margin-top: 20px;
      margin-bottom: 20px;
    }

  

}
