.component-title-sliding-images-texts__qualities-slider {
  .component-title-sliding-images-texts--wrapper {
    padding: 2.5rem 1rem 0;
    .component-title-sliding-images-texts--head {
      display: flex;
      flex-direction: column;
      align-items: center;

      .component-title-sliding-images-texts--title {
        color: var(--grey);
        font-family: var(--font-family-poppins);
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 600;
        line-height: 2rem; /* 150% */

        strong {
          color: var(--blue);
        }
      }

      .component-title-sliding-images-texts--description p {
        color: var(--grey);
        text-align: justify;
        font-family: var(--font-family-poppins);
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2rem;

        em {
          color: var(--blue);
        }
      }
    }
  }

  .component-title-sliding-images-texts--slides {
    max-width: 100%;

    .swiper-slide {
      border-radius: 1rem;
      background: var(--white);
      box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
      margin-bottom: 2rem;
      height: auto;
    }

    .swiper-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
    }

    .swiper-arrow {
      display: none;
    }

    .swiper-pagination-bullet {
      background-color: var(--blue);
      opacity: 1;
      height: 0.5rem;
      width: 0.5rem;
      margin: 0;
    }

    .swiper-pagination-bullet-active {
      height: 0.75rem;
      width: 0.75rem;
    }

    .component-title-cta-images-caption {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      .component-title-cta-images-caption--image-wrapper {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0.5rem 1.5rem;

        border-radius: 3.75rem;
        background: rgba(0, 128, 200, 0.25);

        display: flex;
        align-items: center;
        justify-content: center;

        img {
          width: auto;
          height: 2rem;
        }

        .component-title-cta-images-caption--image-wrapper-description {
          display: none;
        }
      }

      .component-title-cta-images-caption--title {
        color: var(--blue);
        font-family: var(--font-family-poppins);
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 500;
        line-height: 1.563rem;
        margin: 0 1.5rem;
      }

      .component-title-cta-images-caption--description {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
        margin: 0 1.5rem 1.5rem;
        p {
          color: var(--grey);
          font-family: var(--font-family-poppins);
          font-size: 0.875rem;
          font-style: normal;
          font-weight: 400;
          line-height: 1.5rem;
        }
      }
    }

    .component-title-cta-images-caption:first-of-type {
      .component-title-cta-images-caption--image-wrapper {
        img {
          width: auto;
          height: 1.75rem;
        }
      }
    }
  }
}

@media screen and (min-width: 64rem) {
  .mobile-tablette-only {
    display: none;
  }

  .component-title-sliding-images-texts__qualities-slider {
    max-width: 75rem;
    margin: 0 auto;

    .component-title-sliding-images-texts--wrapper {
      padding: 4.31rem 1rem 0;
      gap: 3rem;

      .component-title-sliding-images-texts--head {
        .component-title-sliding-images-texts--title {
          text-align: center;
          font-size: 3.75rem;
          line-height: 4.5rem;
        }

        .component-title-sliding-images-texts--description p {
          text-align: center;
          font-size: 1.5rem;
          line-height: 2.5rem;
        }
      }
    }

    .component-title-sliding-images-texts--slides {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;

      .component-title-cta-images-caption {
        border-radius: 1rem;
        background: var(--white);
        box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
        height: auto;
      }
    }
  }
}
