.clients-history {

}

.clients-history .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients-history .text-content .clients-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 8px;
  background: #F2F5F6;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.04), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 44px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #3B4348;
}

.clients-history .text-content .clients-title {
  width: 359px;
  font-family: 'Avenir';
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 125%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #3B4348;
  margin: 24px 0 16px;
}

.clients-history .text-content .clients-description {
  width: 359px;
  font-family: 'Avenir';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  /* or 24px */
  text-align: center;
  letter-spacing: 0.01em;
  color: #272E35;
  opacity: 0.7;
}

.clients-history .text-content .opinion-box {
  width: 306px;
  height: 80px;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.04)) drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.clients-history .text-content .opinion-box .opinion-box-top {
  display: flex;
  gap: 7px;
}

.clients-history .text-content .opinion-box .opinion-box-top .opinion-box-top__title {
  font-weight: 800;
  font-size: 15px;
  line-height: 150%;
  color: #000000;
}

.clients-history .text-content .opinion-box .opinion-box-bottom {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #000000;
  opacity: 0.7;
}

.clients-history .opinions-content {
  margin: 60px 0 100px;
  overflow: hidden;
}

.clients-history .opinions-content .opinion-box {
  background: #F2F5F6;
  border: 1px solid #D4DDE5;
  /* Shadow pill */
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.04), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 35px;
  width: 386px;
  margin-right: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.clients-history .opinions-content .opinion-box .opinion-box__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 150%;
  /* or 30px */
  color: #435768;
  opacity: 0.9;
  text-wrap: auto;
}

.clients-history .opinions-content .opinion-box .opinion-text {
}

.clients-history .opinions-content .opinion-box .opinion-text .opinion-image {
  width: 48px;
  height: 48px;
  margin: 40px 0 16px;
}

.clients-history .opinions-content .opinion-box .opinion-text .opinion-title {
  font-weight: 900;
  font-size: 14px;
  line-height: 150%;
  color: #435768;
  opacity: 0.9;
}

.clients-history .opinions-content .opinion-box .opinion-text .opinion-description {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #435768;
  opacity: 0.7;
}

@media screen and (min-width: 1024px) {
  .clients-history .text-content .clients-title {
    width: 539px;
    font-size: 40px;
  }
  
  .clients-history .text-content .clients-description {
    width: 539px;
  }
}