
  :root {
      --bg: #f5f5f5;
      --text: #3b3b3b;
  }

.slick-track{
    display:flex!important;
    align-items:center!important;
}    
    
  .testimonial__area{
    background: var(--background-color);
    padding: 100px 0;
    padding-top: 50px;
    
  }

  .container {
      max-width: 1170px;
      margin: 0  auto;
  }

  .testimonial__card {
      position: relative;
      background: var(--bg);
      padding: 64px 0;
      border-radius: 40px;
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-top: 48px;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  

  .customer__quotes {
       /*font-size: calc(22px + (40 - 22) * ((100vw - 320px) / (1920 - 320)));*/
       /*line-height: calc(30px + (48 - 30) * ((100vw - 320px) / (1920 - 320)));*/
       font-size:16px;
       line-height:1.2;
      font-weight: 500;
      max-width: 820px;
      padding: 0 50px;
  }

  .customer__avatar {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      position: absolute;
      top: -48px;
  }

  .customer__name {
      font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
      line-height: 32px;
  }

  .customer__role {
      opacity: 0.8;
  }

  .btn__group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
  }

  .multiple-items .slick-prev {
      background: transparent;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid #000;
      left: 10px !important;
      z-index: 11;
      margin-top:20px;

  }

  .multiple-items .slick-next:before {
      font-size: 24px;
      color: #000;
      line-height:2.2;
  }

  .multiple-items .slick-prev:before {
      font-size: 24px;
      color: #000;
      line-height:2.2;
  }

  .multiple-items .slick-next {
      right: 10px !important;
      background: transparent;
      color: #000;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid #000;
      margin-top:20px;
  }

  @media screen and (max-width:575px) {
    .multiple-items .slick-prev, .multiple-items .slick-next{
        width: 35px;
        height: 35px;
    }
    .multiple-items .slick-prev:before, .multiple-items .slick-next:before {
        font-size: 20px;
        line-height:1.8;
    }
  }
    
  