@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.counter {
  animation: counter 2s infinite alternate ease-in-out;
  counter-reset: num var(--num);
  font: 800 40px system-ui;
  padding: 2rem;
  color: red;
}

.counter::after {
  content: counter(num);
}

@keyframes counter {
  from {
    --num: 0;
  }

  to {
    --num: 1000;
  }
}



.customer-container {
  width: 100%;
  /* border: 2px solid red; */

}

.customer-header {

  margin: 50px 200px 23px 200px;
}
.heading{
  font-size: 25px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: bolder;

  
}
.heading h5{
  justify-content: center;
  display: flex;
  
}


.review-body{
  width: 100%;
  min-height: 80vh;
  background-image: linear-gradient(60deg, #96deda 0%, #50c9c3 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  width: 95%;
  min-height: 450px;
  background-color: #f5f5f5;
}

.container .contents-wraper {
  width: 70%;
  min-height: inherit;
  margin: 30px auto;
  text-align: center;
}

.contents-wraper .review-header h1 {
  position: relative;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bolder;
}

.contents-wraper .review-header h1::before {
  content: '';
  width: 200px;
  height: 2px;
  background-color: #50c9c3;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.contents-wraper .testRow {
  width: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
}

.testRow .testItem {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testRow .testItem:not(.active) {
  top: 0;
  left: -100%;
}

.testRow .testItem img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  outline: 2px solid #006994;
  outline-offset: 2px;
}

.testRow .testItem h3 {
  font-size: 30px;
  font-style: italic;
  padding: 7px;
}

.testRow .testItem h4 {
  font-style: italic;
}

.testRow .testItem p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 10px;
}

.contents-wraper .indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  cursor: pointer;
}

.contents-wraper .indicators .dot {
  width: 15px;
  height: 15px;
  margin: 0px 3px;
  border: 3px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.contents-wraper .indicators .active {
  background-color: #50c9c3;
}

@keyframes next1 {
  from {
    left: 0%;
  }

  to {
    left: -100%;
  }
}

@keyframes next2 {
  from {
    left: 100%;
  }

  to {
    left: 0%;
  }
}

@keyframes prev1 {
  from {
    left: 0%;
  }

  to {
    left: 100%;
  }
}

@keyframes prev2 {
  from {
    left: -100%;
  }

  to {
    left: 0%;
  }
}

@media(max-width: 550px) {
  .container .contents-wraper {
    width: 90%;
  }

  .contents-wraper .header h1 {
    font-size: 32px;
  }

  .testRow .testItem h3 {
    font-size: 26px;
  }

  .testRow .testItem p {
    font-size: 16px;
    letter-spacing: initial;
    line-height: initial;
  }

}