.blue-star {
    color: #224095;
    font-size: 20px;
}

section.testimonial-slider-wrapper {
    padding: 85px 0px;
}
.testimonial-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.testimonial-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
	    gap: 20px;
	    width: 100%;
	    justify-content: space-between;
}
.testimonial-author {
    font-size: 18px;
    font-weight: 600;
}
blockquote {
    font-size: 16px;
    line-height: 26px;
    padding-left: 0px;
    border-left: 0px;
}
.testimonial-logo {
    padding: 30px 16px;
    background-color: #f1f9fc;
    border-radius: 16px;
	    display: flex;
	    align-items: center;
}
.testimonial-photo {
    width: 59%;
}

.testimonial-content {
    background-color: #f1f9fc;
    padding: 30px 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	    width: 20%;
}
.testimonial-photo img {
    width: 100% !important;
    max-width: 100% !important;
    height: 226px;
    object-fit: cover;
    border-radius: 16px;
}
.testimonial-logo img {
    height: 147px;
	width: 188px;
}
.testimonial-nav {
    position: absolute;
    top: 12%;
    right: 1%;
}
button.prev {
    padding: 20px;
    border-radius: 50px;
    border: 1px solid #E6E6E6;
	    cursor: pointer;
}
button.next {
    padding: 20px;
    border: 1px solid #E6E6E6;
    border-radius: 50px;
	    cursor: pointer;
}
.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
}
button.prev:before {
    content: "";
    background-image: url(https://jobadder.com/wp-content/uploads/2025/07/icon.svg);
    width: 23%;
    height: 17px;
    position: absolute;
    background-repeat: no-repeat;
    top: 13px;
    left: 12px;
}
button.next:after {
    content: "";
    background-image: url(https://jobadder.com/wp-content/uploads/2025/07/v6-icon-1.svg);
    width: 22%;
    height: 20px;
    position: absolute;
    top: 9px;
    right: 11px;
    background-repeat: no-repeat;
}

/* Fix: remove hidden slider on mobile */
@media only screen and (max-width:767px) {
  .testimonial-slider-wrapper {
    display: block !important;
  }
}

@media only screen and (max-width:767px) {
	.testimonial-nav {
    position: absolute;
    top: 64.6%;
    right: 13%;
}
	button.prev {
    padding: 9px;
    border-radius: 50px;
    border: 1px solid;
}
button.next {
    padding: 9px;
    border: 1px solid;
    border-radius: 50px;
}
	.testimonial-slider-wrapper {
    display: none !important;
}
}