#daily_life .swiper-slide {
  filter: drop-shadow(10px 10px 0 hsla(var(--accent)));
}
#daily_life .swiper-slide img.guimauve {
  filter: drop-shadow(5px 5px 0 hsla(var(--accent)));
}
#daily_life .swiper-slide img.citron {
  filter: drop-shadow(5px 5px 0 hsla(var(--secondary)));
}
#daily_life .swiper-slide img.lac {
  filter: drop-shadow(5px 5px 0 hsla(var(--tertiary)));
}

/* New design */
.testimonials {
  padding: 50px 0;
}
.testimonials .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.testimonials .top div {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  flex-direction: column;
  gap: 20px;
}
.testimonials .swiper-slide {
    border-radius: 20px;
    position: relative;
    width: 420px;
    height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.testimonials .swiper-slide .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonials .swiper-slide .infos {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50.13%);
    padding: 30px;
}
.testimonials .swiper-slide .infos > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonials .swiper-slide .infos .right {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    flex-direction: column;
}
.testimonials .swiper-slide hr {
    opacity: 0.4;
    border: 0.5px solid var(--white);
    margin: 20px 0;
}
.testimonials .swiper-slide blockquote p {
    font-family: 'New Garet';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: var(--white);
}
.testimonials .swiper-slide blockquote p:before {
    content: "“";
}
.testimonials .swiper-slide blockquote p:after {
    content: "”";
}
.testimonials .swiper-slide .infos img {
    max-width: 90px;
}
.testimonials .swiper-slide .name {
    font-family: 'New Garet';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    color: var(--white);
}
.testimonials .swiper-slide .job {
    font-family: 'New Garet';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    color: var(--white);
    opacity: 0.8;
}

.testimonials .button-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  flex: none;
  border: 1px solid var(--text);
  position: relative;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  margin-top: 0 !important;
}
.testimonials .swiper-button-prev svg,
.testimonials .swiper-button-next svg {
  width: 20px;
  height: 20px;
  color: var(--myrtille200);
}

@media screen and (max-width: 1024px) {
  .testimonials .top {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .testimonials .top .new-h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .testimonials .top div {
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .testimonials .top div p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  .testimonials .swiper-slide {
    width: 100%;
    height: 500px;
  }
}