/**
 * Advices Item
 */

.advices-slider {
  max-width: 450px;
  margin: 0 auto;
}
.advices-item__wrapper {
  padding-left: 15px;
}
.advices-item__image img{
  margin: 0 auto;
  border-radius: 100%;
  filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.1));
}
.advices-item__content {
  position: relative;
}
.advices-item__content::before {
  content: "";
  display: block;
  position: absolute;
  left: -12px;
  top: -12px;
  height: 27px;
  width: 32px;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../../images/quote.svg');
}
@media all and (min-width: 750px) {
  .advices-slider {
    max-width: none;
  }
  .advices-item__wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 0;
  }
  .advices-item__image {
    width: 156px;
  }
  .advices-item__content {
    width: calc(100% - 156px);
  }
  .advices-item__content::before {
    left: -29px;
    top: -7px;
    height: 52px;
    width: 45px;
  }
}