
.container-new {
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

.customer-block {
    padding-bottom: 5rem;
  }
  
  .customer-head {
    text-align: center;
    max-width: 48rem;
    margin-bottom: 8%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .customer-head.left-align {
    text-align: left;
    max-width: 80rem;
    margin-left: 0;
  }
  
  .customer-head-title {
    margin-bottom: 1rem;
    font-size: 2.4rem;
  }
  
  .customer-head-para {
    max-width: 23rem;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
  }
  
  .customer-head-para.xl {
    max-width: 35rem;
  }
  
  .customer-slider-col {
    width: 33.333%;
  }
  .half-content-title, .customer-head-title {
    font-size: 1.5rem;
  }

  @media (max-width: 991px) {
    .container-new {
        padding-left: 5%;
        padding-right: 5%;
      }
      .customer-head-title {
        font-size: 2rem;
      }
    
      .customer-head-para.xl {
        font-size: 1.1rem;
      }
  }
  @media screen and (max-width: 767px) {

    .customer-block {
        padding-bottom: 2.7rem;
    }

    .customer-head {
        margin-bottom: 2rem;
    }

    .customer-head-title {
        font-size: 1.7rem;
    }

    .customer-head-para {
        font-size: 1rem;
    }

    .customer-slider-col {
        width: 100%;
    }
    
  }

  .customer-slider-col {
    transition: all .8s ease-in-out;
    transform: scale(0.8);
    transform-origin: center;
}
.customer-slider-col.slick-current {
    transform: scale(1);
}
.customer-slider .slick-arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translate(0, -50%);
    border: 2px solid #000000;
    padding: 0;
    background: transparent;
    color: #000000;
    font-size: 0;
    border-radius: 50%;
    transition: all .4s ease-in-out;
}
.customer-slider .slick-arrow:hover {
    border-color: #c3a350;
    color: #c3a350;
}
.customer-slider .slick-arrow::after {
    color: currentColor;
    font-size: 22px;
    position: absolute;
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.customer-slider .slick-prev {
    left: 0;
}
.customer-slider .slick-next {
    right: 0;
}
.customer-slider .slick-prev::after {
    content: "<";
    margin: -1px 0 0 0px;
}
.customer-slider .slick-next::after {
    content: ">";
    margin: -1px 0 0 1px;
}