.background {
  /* background-color: #f9f4f1; */
  width: 100%;
  /* padding: 72px 0; */
}

.container {
  max-width: 1560px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 48px;
  /* flex-wrap: wrap; */
}

.testimonialCard {
  width: 684px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.imageContainer {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 26px;
}

.imageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quoteContainer {
  margin: 20px 0;
}

.quote {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25em;
  font-style: italic;
  line-height: normal;
  color: #262f40;
  text-align: center;
  margin: 0;
}

.author {
  font-family: 'Open Sans', sans-serif;
  font-size: .75em;
  /* line-height: 36px; */
  color: #262f40;
  text-align: center;
  margin: 0;
}

@media (max-width: 1440px) {
  .testimonialCard {
    width: 100%;
    max-width: 684px;
  }
  
  .quote {
    font-size: 1.25em;
    line-height: normal;
  }
}

@media (max-width: 768px) {
  .quoteContainer {
    margin: 0px 0 20px 0;
}
  .quote {
    font-size: 18px;
    line-height: 1.5 !important;
  }
  .testimonialCard {
    padding: 0 0px;
  }
  .container {
    max-width: 1560px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  
  .author {
    font-size: 16px;
    line-height: 28px;
  }
  .button {
    height: auto;
    font-size: 12px !important;
  }
}


.button {
  background-color: #fec91a;
  border: none;
  height: 2.75em;
  border-radius: 15px;
  color: #262f40;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  /* line-height: 33px; */
  padding: 0px 25px;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: auto;
  height: 2.75rem;
}
.buttondv{
  display: flex;
  justify-content: center;
}
.button:hover {
  background-color: #ffd234;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
