
.endorsement-panel{
  background: #f8f8f8f8;
  padding: 100px 0;
  text-align: center;
}
.endorsement-panel__title h2{
  margin-bottom: 70px;
  color: var(--primary);
}
.endorsement-panel__item-img{
  position: relative;
  height: 216px;
  width: 100%;
}
.endorsement-panel__item-background{
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  text-align: center;
  z-index: -1;
  transform: translateX(-50%);
}
.endorsement-panel__item-img:not(.is-background) img {
  width: 200px;
  height: auto;
  object-fit: cover;
}
.endorsement-panel__item-title h5{
  margin: 24px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.endorsement-panel__item-text{
  max-width: 280px;
  margin: 0 auto;
}
.endorsement-panel__item-text p{
  font-size: 16px;
}

@media(max-width: 575px) {
  .endorsement-panel_items {
    flex-wrap: unset;
  }

  .endorsement-panel .arrow{
    display: none;
  }
  .endorsement-panel .dots{
    display: flex;
    gap: 16px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
  }
  .endorsement-panel .dot{
    width: 12px;
    height: 12px;
    border: 1px solid var(--primary);
    border-radius: 50%;
  }
  .endorsement-panel .dot.dot--active{
    background: var(--primary);
  }
}