.slider-wrapper {
  margin: 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slides-container {
  height: 100%;
  width: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: scroll;
  scroll-behavior: smooth;
}

.slide {
  width: 100%;
  height: 100%;
  flex: 1 0 45%;
  padding: 15px;
  margin: auto;
  max-width: 475px;
}

.slide .section__item {
  position: relative;
}

.slide .category__title {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.25s ease-in;
  margin: 0;
}

.section__menu-categories {
  margin-bottom: 20px;
}

#slide-arrow-prev,
#slide-arrow-next {
  background: transparent;
  border: none;
  font-size: 50px;
  position: absolute;
  color: var(--light-green);
}

#slide-arrow-prev {
  left: 0;
}

#slide-arrow-next {
  right: 0;
}

.slide__body {
  padding: 90px 140px;
  box-shadow: 0px 0px 7px rgb(100 58 28 / 25%);
  border-radius: 22px;
  border: 1px solid rgb(100 58 28 / 25%);
  gap: 50px;
}

.review__customer {
  display: flex;
  align-items: center;
  gap: 30px;
}

.review__customer img {
  width: 75px;
  border-radius: 100%;
}

.review__customer span {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: var(--black);
}

.review__body {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
}
@media only screen and (max-width: 870px) {
  .slide__body {
    padding: 10px 15px;
    gap: 10px;
  }
  .review__customer {
    gap: 15px;
  }
  .philosophy__title {
    font-size: 35px;
    line-height: 45px;
  }
  .philosophy__subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  .review__body span {
    font-size: 15px;
    line-height: 20px;
  }
  .review__customer-name {
    font-size: 30px !important;
    line-height: 35px !important;
  }
}