.author {
	font-family: "Nunito Sans", sans-serif;
}

.testimonials {
	background-color: #e6e6e6;
	display: flex;
    padding: 80px 50px;
    width: 100%;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Container holds two columns side by side */
.cb_review_container {
	display: flex;
    max-width: 1350px;
    align-items: flex-start;
    flex-direction: column;
	gap: 40px;
}


/* Each column of testimonials */
.cb_testimonial_div {
  justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    align-items: flex-start;
    align-content: flex-start;
    gap: 45px 30px;
    flex-wrap: wrap;
    align-self: stretch;
}

/* Headings in each column */

.cb_testimonial_heading {
	display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.cb_testimonial_heading h2 {
    margin: 0px;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    font-family: "Nunito Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Each testimonial card */
.testimonial-card {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 30px 20px 20px;
  margin-bottom: 40px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  float: left;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Quote icon circle */
.quote-icon {
  width: 60px;
  height: 60px;
  background: black;
  color: white;
  font-size: 40px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  margin-top: -60px;
}

/* Testimonial title */
.testimonial-card h3 {
    margin: 0px;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    font-family: "Nunito Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 31px;
    width: 100%;
    min-height: 35px;
	text-align: right;
}

/* Testimonial paragraph */
.testimonial-card p, .author {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Author name */
.testimonial-card .author {
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.about_ask_link {
background: #b18f84;
color: #fff;
font-size: 14px;
font-family: "Poppins", sans-serif;
padding: 10px 25px;
border-radius: 30px;
text-decoration: none;
}

/* Responsive layout */


@media screen and (min-device-width: 320px) and (max-device-width: 768px) { 
	.testimonial-card {
		width: 47%;
	}
	
}

@media screen and (min-device-width: 768px) and (max-device-width: 1199px) { 
	.testimonial-card {
		width: 47%;
	}


}