.review {
  padding: 50px 0px;
 background-color: #e2e1e1;
}
.review-image {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.review-item {  
  background-color: #084A7F;
  padding: 20px 20px;
  margin: 10px;  
}
.review-title h2 {
  color: #333333;
  font-weight: 700;
  font-size: 60px;
  line-height: normal;
  margin-bottom: 0px;
}
.review-title p {
  color: #333333;
  font-size: 30px;
  font-weight: 600;
}
.review-text h4 {
  font-size: 23px;
  font-weight: 400;
  line-height: 25px;
  color: #FFFFFF;
}
.review-text span{
  color: #7BAED6;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
}
.review button.slide-arrow.prev-arrow {
  top: 50px;
  position: absolute;
  padding: 0px;
  width: 29px;
  height: 29px;
  border-radius: 100px;
  left: -5px;
}
.review button.slide-arrow.next-arrow {
  right: -5px;
  top: 50px;
  position: absolute;
  padding: 0px;
  width: 29px;
  height: 29px;
  border-radius: 100px;
}
@media (max-width: 767px){
  .review-title {
    text-align: center;
  }
  .review-title h2 {
    font-size: 35px;
  }
  .review-title p {
    font-size: 20px;
  }
  .review-title {
    text-align: center;
  }

}

.slide-content{
  margin: 0 @gutters;
  padding: 50px 100px;
  background: #fff;
}

.slick-list {
  margin: 20px 0px;
}

.slick-prev,
.slick-next {
  position: absolute;
  right: @gutters;
  background: #777;
  border: none;
  color: transparent;
  width: 30px;
  height: 30px;

  &:before { 
    content: ">"; 
    color: #fff; 
    font-size: 25px;
  }
}

.slick-prev { 
  left: @gutters; 
  &:before { content: "<"; }
}

.slick-dots {
  list-style: none;
  margin: 0 auto;
  text-align: center;

  li {
    display: inline-block;

    button { 
      transition: 0.2s background-color ease-in-out 0s;
      border: none;
      padding: 0;
      color: transparent;

      width: 10px;
      height: 10px;
      background-color: #777;
      margin-right: 10px;
      border-radius: 50%; 
    }

    &.slick-active button { background-color: #fff; }
  }
}
}

