* {
  margin: 0;
  padding: 0;
}
.hero {
  background: #fff;
  height: 85vh;
  width: 100%;
  position: relative;
}
.title h1 {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  font-size: 40px;
  color: rgb(0, 0, 0);
}
.title h3 {
  text-align: center;
  color: rgb(0, 0, 0);
}
.slide-row {
  display: flex;
  width: 4100px;
  transition: 0.5s;
  overflow-x: hidden;
}
.slide-col {
  width: 800px;
  height: 400px;
  position: relative;
}
.user-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.user-img img {
  height: 100%;
  border-radius: 10px;
}
.user-text {
  background: #2d3a59;
  width: 520px;
  /* height: 270px; */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
  color: #d3d4d6;
  padding: 45px;
  box-sizing: border-box;
  z-index: 2;
}
.user-text p {
  font-size: 18px;
  line-height: 24px;
}
.user-text h3 {
  margin: 35px 0 5px;
  color: #fff;
}
.container {
  width: 800px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
}
.btnSlide {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 4px;
  border-radius: 15px;
  background: black;
  cursor: pointer;
}
.active {
  width: 45px;
}
.testimonial {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.arrow img {
  width: 30px;
  height: 30px;
}
