.section-14 {
  padding: 100px 0;
  background-color: var(--color-black-accent2);
}

.section-14 .solution-row:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 80px;
}

.section-14 .solution-row:first-child > div {
  display: flex;
  gap: 40px;
}

.section-14 .external-review {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-14 .external-review > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 136px;
  height: 65px;
  background-color: var(--color-black);
}

#solution .section-14 .external-review a {
  font-size: 14px;
  color: var(--color-white);
  font-weight: 700;
  text-decoration: underline;
}

.section-14 .review {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
  padding: 35px;
  background-color: var(--color-black);
}

.section-14 .review .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  padding: 15px;
  background-color: var(--color-white);
}

.section-14 .review .img-wrap img {
  max-height: 100%;
}

.section-14 .review .rating {
  transform: translateX(-3px);
}

.section-14 .review a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.section-14 .desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.section-14 .reviews {
  overflow: hidden;
}

.section-14 .reviews .owl-stage {
  display: flex;
}

.section-14 .reviews .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.section-14 .reviews .owl-nav > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 35px;
  background-color: var(--color-green);
  cursor: pointer;
}

.section-14 .reviews .owl-prev {
  clip-path: polygon(0% 10px, 0% 100%, 100% 100%, 100% calc(100% - 10px), 100% 0%, 10px 0%);
}

.section-14 .reviews .owl-next {
  clip-path: polygon(0% 10px, 0% 100%, calc(100% - 10px) 100%, 100% calc(100% - 10px), 100% 0%, 0% 0%);
}

.section-14 .reviews .owl-nav > div:first-child svg {
  transform: rotate(180deg);
}

.section-14 .reviews .owl-nav > div:hover {
  opacity: .9;
}

@media (max-width: 991px) {
  .section-14 {
    padding: 40px 0;
  }

  #solution .section-14 h2 {
    margin-bottom: 40px;
  }

  .section-14 .solution-row:first-child {
    display: flex;
    flex-direction: column;
  }

  .section-14 .solution-row:first-child > div {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .section-14 .solution-row:first-child {
    margin-bottom: 40px;
  }

  .section-14 .external-review > div {
    width: 140px;
    height: 70px;
  }

  .section-14 .reviews .owl-nav {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .section-14 .external-review {
    gap: 20px;
  }

  .section-14 .external-review svg {
    width: 165px;
    height: 70px;
  }

  .section-14 .external-review:last-child svg {
    width: 165px;
    height: 78px;
  }
}