.stsm-testimonial-slider {
  width: 1290px;
  max-width: 100%;
  display: flex;
  margin: 0 auto;

  &:hover {
    .nav-btn {
      opacity: 1;
    }
  }

  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
    outline: none;
  }

  .image {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  &.style-1 {
    .stsm-testimonial {
      background-color: #ddd;
      border-radius: 5px;
      padding: 30px 20px;
      height: 100%;
    }

    .qoute-img {
      padding-bottom: 40px;

      img {
        max-width: 60px;
        height: auto;
      }
    }

    .reviewer-info {
      gap: 5px;
      display: flex;
      align-items: center;
      margin-top: auto;
    }

    .image {
      flex-basis: 60px;

      img {
        width: 100%;
        height: auto;
      }
    }

    .info {
      flex: 1;

      p {
        font-size: 16px;

        br {
          display: none;
        }
      }

      .name {
        font-size: 18px;
        font-weight: 500;
        padding-bottom: 2px;
      }
    }

    .feedback {
      padding-top: 8px;
      padding-bottom: 40px;
      font-size: 18px;
    }

    .nav-btn {
      color: #fff;
    }

    .swiper-pagination-bullet-active {
      background: #000;
    }

    .swiper-pagination {
      bottom: 10px;
    }

  }

  &.style-2 {
    .stsm-testimonial {
      overflow: hidden;
      border-radius: 5px;
      background-color: #111;
      height: 100%;
    }

    .qoute-img img {
      max-width: 60px;
      height: auto;
    }

    .reviewer-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #000;
      padding: 15px;
    }

    .info {
      text-align: center;

      p {
        color: #fff;
        font-size: 16px;
      }
    }

    .name {
      color: #fff;
      font-size: 20px;
      font-weight: 500;
      text-transform: capitalize;
    }

    .image {
      width: 60px;
      height: 60px;

      img {
        border-radius: 100%;
      }
    }

    .content {
      padding: 30px;
      text-align: center;
    }

    .feedback {
      padding-bottom: 10px;

      p {
        font-size: 16px;
      }
    }

    .reviewer-rating {
      gap: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swiper-pagination-bullet {
      background: #ddd;
    }

    .swiper-pagination-bullet-active {
      background: #fff;
    }
  }


}