#testimonials .k-testimonials {
  position: relative;
}

#testimonials .k-testimonials .k-testimonials__container {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 30px 40px;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  min-height: 220px;
  z-index: 1;
}

#testimonials .k-testimonials .k-testimonial-nav-button {
  /* 	position: absolute; */
  /* 	top: 120px; */
  /* 	transform: translateY(-50%); */
  display: flex;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  border-radius: 10px;
  background-color: #a86b49;
  z-index: 2;
  cursor: pointer;
}

/* #testimonials .k-testimonials .k-testimonial-nav-button.k-testimonial__prev-button {
	left: -15px;
}
#testimonials .k-testimonials .k-testimonial-nav-button.k-testimonial__next-button {
	right: -15px;
} */

#testimonials .k-testimonials .k-testimonial-nav-button svg {
  fill: #ffffff;
  width: 30px;
  height: 30px;
  padding: 6px;
}

#testimonials .k-testimonials .shape {
  position: absolute;
  left: -60px;
  top: 60%;
  display: flex;
  width: 100px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(168, 107, 73, 0.2);
  z-index: 0;
}

#testimonials .k-testimonials .shape-2 {
  right: -60px;
  left: unset;
  top: 20%;
}

#testimonials .k-testimonials .k-testimonial-card {
  display: none;
  flex-direction: column;
}

#testimonials .k-testimonials .k-testimonial-card.current-slide {
  display: flex;
  animation: testimonial-fadein 0.4s ease-in;
}

#testimonials .k-testimonials .k-testimonial-card .k-testimonial-author {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
#testimonials .k-testimonials .k-testimonial-card .k-testimonial-author:before {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background-color: #43312d;
  transform: translateY(12px);
}

#testimonials .k-testimonials .k-testimonial-card p {
  margin: 12px auto 12px 0;
}

#testimonials .k-testimonials .k-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0px;
}
#testimonials .k-testimonials .k-testimonial-dots button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0;
  background: rgba(67, 49, 45, 0.4);
  border: none;
  outline: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease-in;
}
#testimonials .k-testimonials .k-testimonial-dots button.current-slide {
  background: #a86b49;
}

@keyframes testimonial-fadein {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* @media (max-width: 650px) {	
	#testimonials .k-testimonials .k-testimonials__container {
		padding: 30px 20px 30px 10px;
	}
	
	#testimonials .k-testimonials .k-testimonials__container span.quote-icon {
		padding: 0px 25px;
	}
	
	#testimonials .k-testimonials .k-testimonials__container .k-testimonial-card {
		height: 220px;
		overflow-y: auto;
		padding: 0px 20px 0px 30px;
	}
} */

.k-testimonial-quote-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.k-testimonial-quote-header .k-buttons {
  display: flex;
  column-gap: 16px;
}
