#reviews {
  padding-top: 100px;
  overflow: hidden;
}
#reviews h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.reviews_slider.owl-carousel {
}
.reviews_slider.owl-carousel .owl-stage-outer {
  padding: 50px 0px;
  overflow: visible;
}
#reviews .item {
  box-shadow: 0px 4px 10px rgba(38, 78, 151, 0.28);
  border-radius: 40px;
  background: var(--root-white);
  padding: 40px;
  height: 100%;
}
#reviews .item p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
#reviews .owl-stage {
  display: flex;
}
#reviews .item b {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  display: block;
}
#reviews .item b+p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
  margin-top: 12px;
}

#reviews .owl-dots {
  position: absolute;
  left: 0px;
  bottom: 0px;
  display: flex;
  justify-content: center;
  width: 100%;
}
#reviews .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border: 3px var(--root-blue) solid;
  border-radius: 50%;
  margin: 4px;
  position: relative;
}
#reviews .owl-dots .owl-dot.active:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--root-blue);
  content: '';
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
}

.reviews_slider.owl-carousel {
  position: relative;
}