:root {
	--display-font-family: Bevan;
	--body-font-family: Roboto;

	--font-size: 15px

	--logo-padding: 23px;
	--logo-height: 132px;

	--header-width: 1366px;
	--header-border-position: top;
	--header-border-size: 0;
	--header-bg-color: 255 255 255;
	--header-border-color: 255 255 0;

	--brand-color: 47 69 91;
	--brand-color-inverted: 255 255 255;

	--background-color: 255 15 ;
	--text-color: 61 61 61;
	--link-color: 0 0 0;

	--action-color: 232 77 86;
	--action-color-inverted: 255 255 255;

	--announcement-bar-bg-color: 255 233 232;
	--announcement-bar-text-color: 236 75 67;
	--announcement-bar-link-color: 47 69 91;

	--main-navigation-bg-color: 255 255 255;
	--main-navigation-link-color: 66 100 132;
	--main-navigation-link-color-hover: 66 100 132;
	--main-navigation-link-bg-color: 255 255 255;
	--main-navigation-link-font-size: 18px;
	--main-navigation-link-alignment: center;

	--auxiliary-bg-color: transparent;
	--auxiliary-border-color: transparent;
	--auxiliary-link-color: 0 0 0;

	--order-status-bg-color: 237 237 237;
	--order-status-color: 55 55 55;

	--store-menu-bg_color: 247 247 247;
	--store-menu-color: 108 108 108;

	--footer-bg-color: 0 0 0;
	--footer-color: 255 255 255;
	--footer-link-color: 255 255 255;
}

/*Custom Styles*/
/*chatgpt testing*/

.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 7%;
}

.testimonial {
  width: 30%;
  margin-bottom: 50px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.testimonial img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.testimonial p {
  margin: 0;
  position: relative;
}

.testimonial .quote {
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-in-out;
}

.testimonial .quote:hover {
  /* Increase the height of the quote when hovered */
  height: 250px;
  width: 100%;
  /* Add a higher z-index to the quote to make sure it overlaps the other content */
  z-index: 1;
  /* Add a background color to the quote to fill the expanded area */
  background-color: #fff;
  /* Add a box-shadow to create the illusion of the quote being on top of the card */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0);
  /* Change the position of the quote to absolute so it overlaps the card */
  position: center;
  /* Make the quote fill the entire width of the card */
  left: 0;
  right: 0;
  /* Make sure the quote stays within the bounds of the card */
  padding: 20px;
  box-sizing: border-box;
  /* Set a higher line height to make sure there's enough space between lines */
  line-height: 1.5;
  -webkit-line-clamp: unset;
}

@media screen and (max-width: 767px) {
  .testimonial {
    width: 100%;
  }
}
