.lp__testimonials {
  background-color: var(--ghost-grey);
  padding: 37px 0 41px 0;

  .title {
    h4 {
      font-size: 24px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: normal;
      letter-spacing: normal;
      text-align: center;
      color: var(--brand-grey-dark);
      margin: 0 0 27px 0;
    }
  }

  .arrows {
    display: block;
    z-index: 50;

    .left__arrow {
      position: absolute;
      left: 0;
      top: 54%;
    }

    .right__arrow {
      position: absolute;
      right: 0;
      top: 54%;
      transform: rotate(180deg);
    }
  }

  .lpt__items {
    .slick-track {
      display: flex;
      align-items: stretch;

      .slick-slide {
        height: auto;
      }
    }

    .lpt__item-wrapper {
      padding: 0 7.5px;

      .lpt__item-content {
        background-color: #fff;
        padding: 33px 20px 43px 20px;
        display: flex;
        flex-direction: column;
        height: 100%;

        .lpt__star-rating {
          position: relative;
          margin-bottom: 33px;
          min-height: 21px;

          svg {
            width: 14px;
            fill: #FF6200;
          }
        }

        h5 {
          font-size: 18px;
          font-weight: bold;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.22;
          letter-spacing: normal;
          color: var(--brand-grey-dark);
          margin-bottom: 10px;
          margin-top: 0;
        }

        .lpt__quote {
          font-size: 16px;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.38;
          letter-spacing: normal;
          color: var(--brand-grey-dark);
          margin-bottom: 31px;
          flex-grow: 1;
        }

        h6,
        .lpt__customer,
        .lpt__customer-org {
          font-size: 14px;
          font-stretch: normal;
          font-style: normal;
          line-height: normal;
          letter-spacing: normal;
          color: var(--brand-grey-dark);
          margin-block-start: 0;
          margin-block-end: 0;
        }

        h6 {
          font-weight: bold;
          margin-top: 0;
          margin-bottom: 15px;
        }

        .lpt__customer,
        .lpt__customer-org {
          font-weight: 400;
          margin-bottom: 5px;
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .lp__testimonials {
    .arrows {
      display: block;
      z-index: 50;

      .left__arrow {
        position: relative;
        float: left;
        left: 0;
        top: unset;
        clear: both;
        margin-top: 200px;
        z-index: 200;
      }

      .right__arrow {
        position: relative;
        float: right;
        right: 0;
        top: unset;
        transform: rotate(180deg);
        clear: both;
        margin-top: -62px;
        z-index: 200;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .lp__testimonials {
    position: relative;
    background-color: #fff;
    border-top: 5px solid var(--brand-orange);

    .title {
      h4 {
        font-size: 18px;
        color: var(--brand-grey-dark);
      }
    }

    .arrows {
      .left__arrow {
        margin-top: 0px;
      }

      .right__arrow {
        margin-top: 0px;
      }
    }

    .lpt__items {
      text-align: center;

      .lpt__item-wrapper {
        .lpt__item-content {
          background-color: transparent;
        }
      }
    }
  }
}