.full-content.hidden {
    display: none;
}
.hidden-review-item {
    display: none;
}
.hidden-content {
    display: none;
}
.view-more {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    text-decoration: none;
}
  .ksm-testimonial-wrapper {
    max-width: 1600px;
    width:100%;/* Adjust as needed */
    margin: 0 auto;
    padding: 15px;
    background-color: #f9f9f9; /* Light gray background */
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adjust the space between reviews */
}
.testimonial-top-wrapper {
  display: flex;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.hidden-review {
    display: none;
}
.testimonial-single {
    flex: 1 0 calc(50% - 15px); /* Two columns */
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Separator line */
}
.ksm-star {
    display: inline-block;
    width: 30px;  /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    background-size: cover;
}

.ksm-full-star {
    background-image: url('full-star.svg');
}

.ksm-empty-star {
    background-image: url('empty-star.svg');
}

.ksm-testimonial-latest-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust the gap as needed */
}
.testimonial-latest-name {display:block;}
.testimonial-latest-single {
     flex: 1 1 calc(33.333% - 20px);
  width: 100%;
  background-color: #0c0c39;
  color:#fff !important;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2); /* Adjust values as needed */
}
.testimonial-latest-avatar
{
  width: 50%;
}
.testimonial-latest-single {
    position: relative;
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #2980b9;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: var(--accent);
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font-size:1.4rem;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
}

/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}
.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.testimonial-tagline {
    font-style: italic;
    color: #666;
  display: block;
}
.testimonial-avatar {
  width: 30%;
}
  .testimonial-details {
  width: 70%;
}
.testimonial-rating .ksm-stars {
    color: #d68126; /* Star color */
    font-size: 20px;
}

.testimonial-date {
    font-size: 14px;
    color: #999;
}

.testimonial-content {
    margin-top: 10px;
    font-size: 16px;
}
  .top-two-reviews .ksm-stars {
  height: 30px !important;
  width: 30px !important;
  font-size: 30px !important;
}
  .ksm-testimonial-wrapper [class^="ksm-icon-"]::before, .ksm-testimonial-wrapper [class*=" ksm-icon-"]::before {
  display: inline-block;
  width: auto;
  margin: 0;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  speak: none;
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ksm-testimonial-wrapper .ksm-icon-star-empty::before {
  content: 'ee';

}
.ksm-reviews-summary-wrapper {
  background-color: #0c0c39;
  padding: 2rem;
  border-radius: 20px;
} 
.quote-button {
  width: 100%;
  background-color: var(--secondary);
  color: #fff !important;
  padding: 2rem;
  display: block;
  text-transform: uppercase;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
/* Styles for screens smaller than 992px */
@media (max-width: 992px) {
    .testimonial-single {
        flex-basis: 100%; /* One column */
    }
}
@media (max-width: 992px) {
    .testimonial-latest-single {
        flex-basis: 100%; /* One column */
    }
}