                        /* BACKGROUND IMAGE (YOUR PAGE IMAGE) */
.testimonial-bg {
    min-height: 100vh;   /* VERY IMPORTANT */
  width: 100%;
  background: url("../img/testi.png") center center no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}
#testiCarousel {
  margin-left: 40px;   /* move right */
}


#testiCarousel .carousel-control-prev {
  left: -70px;   /* space from left side */
}

#testiCarousel .carousel-control-next {
  right: -70px;  /* space from right side */
}



/* CENTER WRAPPER */
.testimonial-wrapper {
  max-width: 700px;
  margin: auto;
}

/* PAPER CONTENT */
.paper-testimonial {
  padding: 40px 35px;
  text-align: center;
}


/* IMAGE */
.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}


/* NAME */
.testi-name {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 15px;
  color: #020202;
}

/* TEXT */
.testi-text {
  font-size: 20px;
  line-height: 1.7;
  color: #000000;
}



#testiCarousel .carousel-control-prev,
#testiCarousel .carousel-control-next {
  opacity: 1;
}


.arrow-icon {
  color: #ffffff !important;;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .paper-testimonial {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  #testiCarousel {
    margin-left: 20px;
    font-size: 15px;
  }
  #testiCarousel .carousel-control-prev {
    left: -28px;
  }
 #testiCarousel .carousel-control-next {
    right: -28px;
  }
}


/* FIX ARROWS ON MOBILE */
@media (max-width: 576px) {

 #testiCarousel .carousel-control-prev {
    left: -28px;   /* bring inside screen */
  }

#testiCarousel  .carousel-control-next {
    right: -40px;  /* bring inside screen */
  }

  .arrow-icon {
    font-size: 32px;
  }
}

            