.testimonial-section {
  position: relative;
  /* padding: 90px 0px 131px; */

  .section-title {
    text-align: center;
    font-family: var(--font-source-serif-4);
    font-size: var(--font-9-2);
    line-height: 1;
    font-weight: 700;
    color: rgba(var(--text-color-6));
    margin-bottom: 43.2px;
  }

  .testimonial-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 25.74px;
    max-width: 800.7px;
    margin: auto;
  }

  .left-slider {
    width: 259.92px;
    flex-shrink: 0;
    position: relative;

    .image-box {
      position: relative;
      max-width: 259.92px;
      height: 309.6px;

      .blue-shape {
        position: absolute;
        max-width: 216.72px;
        height: 199.44px;
        width: 100%;
        background: rgba(var(--bg-color-10));
        right: 0;
        bottom: 0;
        z-index: 1;
      }
    }

    .image-box img {
      max-width: 235.44px;
      width: 100%;
      height: 285.84px;
      object-fit: cover;
      border-radius: 216px;
      position: relative;
      z-index: 1;
    }
  }

  .right-content-wrapper {
    overflow: hidden;
    position: relative;

    .quote-top {
      height: 50px;

      svg {
        width: 50px;
        height: 50px;
      }
    }

    .quote-bottom {
      position: absolute;
      right: 0;
      bottom: 90px;

      svg {
        width: 50px;
        height: 50px;
      }
    }

    .right-content {
      flex: 1;
      position: relative;
      padding: 0 60px;
      overflow: hidden;
      width: 100%;

      .testimonial-text {
        font-size: var(--font-24);
        line-height: 1.3;
        color: rgba(var(--text-color-6));
        max-width: 356.4px;
        font-weight: 400;
      }

      .author {
        margin-top: 24px;
        font-size: var(--font-24);
        line-height: 1.3;
        color: rgba(var(--text-color-6));
        font-weight: 700;
      }

      .custom-dots {
        margin-top: 24px;
        display: flex;
        align-items: center;
        gap: 8px;

        .slick-dots {
          position: relative;
          bottom: auto;
          width: auto;
          display: flex !important;
          gap: 8px;

          li {
            width: 28px;
            height: 4px;
            margin: 0;

            button {
              width: 28px;
              height: 4px;
              padding: 0;

              &::before {
                content: "";
                width: 28px;
                height: 4px;
                background: rgba(var(--bg-color-20));
                opacity: 1;
                display: block;
              }
            }
          }

          .slick-active button::before {
            background: rgba(var(--bg-color-6));
          }
        }
      }

      /* ARROWS */
      .slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 31px;

        .custom-arrow {
          width: 36px;
          height: 36px;
          border: 1px solid rgba(var(--border-color-6));
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          color: rgba(var(--text-color-6));
          transition: 0.3s;

          &:hover {
            background: rgba(var(--bg-color-6));
            color: rgba(var(--text-color-1));

            svg {
              path {
                fill: rgba(var(--text-color-1));
              }
            }
          }

          svg {
            width: 14px;
            height: 21px;
          }
        }

        .line-between-arrows {
          height: 2.16px;
          width: 18px;
          background-color: rgba(var(--bg-color-20));
        }
      }
    }
  }
}

.dark_testimonial_slider {
  background-color: rgba(var(--bg-color-6));

  .section-title,
  .testimonial-text,
  .author {
    color: rgba(var(--text-color-1)) !important;
  }

  .right-content-wrapper {
    .right-content {
      .custom-dots {
        .slick-dots {
          .slick-active button::before {
            background: rgba(var(--bg-color-12));
          }
        }
      }

      .slider-controls {
        .custom-arrow {
          border: 1px solid rgba(var(--border-color-1));

          svg {
            path {
              fill: rgba(var(--text-color-1));
            }
          }

          &:hover {
            background: rgba(var(--bg-color-1));

            svg {
              path {
                fill: rgba(var(--text-color-6));
              }
            }
          }


        }
      }

    }
  }

  .section__wave {
    path {
      fill: rgba(var(--bg-color-6));
    }
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center !important;

    .left-slider {
      width: 200px !important;

      .image-box {
        max-width: 100% !important;
        height: 240px !important;

        img {
          max-width: 200px !important;
          height: 240px !important;
          border-radius: var(--border-radius-2) !important;
        }
      }

      .blue-shape {
        display: none !important;
      }
    }

    .right-content-wrapper {
      width: 100%;
      position: relative;

      .quote-top {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;

        svg {
          width: 40px;
          height: 40px;
        }
      }

      .right-content {
        padding: 0 !important;

        .custom-dots {
          .slick-dots {
            display: none !important;
          }
        }


        .content-slider {
          padding: 73px 25px 25px;
          background-color: rgba(var(--bg-color-26));
          border-radius: var(--border-radius-4);

        }

        .testimonial-text {
          max-width: 100% !important;

        }

        .slider-controls,
        .custom-dots {
          justify-content: center !important;
          margin-top: 0;
        }
      }

      .quote-bottom {
        display: none !important;
      }
    }
  }

  .dark_testimonial_slider {
    background-color: rgba(var(--bg-color-6));


    .testimonial-text,
    .author {
      color: rgba(var(--text-color-6)) !important;
    }
  }
}