.reviews {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
}
.reviews > h1 {
  font-size: 24px;
}
.reviews .reviewsContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  overflow-y: auto;
  padding-right: 14px;
}
.reviews .reviewsContainer .review {
  flex: 0 1 calc(50% - 15px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgba(33, 104, 176, 0.15);
  border: 1px solid #3948b9;
  border-radius: 16px;
  padding: 1rem;
  gap: 18px;
}
.reviews .reviewsContainer .review > .topPart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews .reviewsContainer .review > .topPart > .userDetailedGroup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}
.reviews .reviewsContainer .review > .topPart .userDetailedGroup > img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #3948b9;
}
.reviews .reviewsContainer .review > p {
  color: #1e1e1e;
}

.fromTo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.fromTo .iconCircle,
.fromTo .clientsvg {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: rgb(22, 47, 229);
  border-radius: 50%;
}
.fromTo .clientsvg {
  background-color: #09187f;
}
.fromTo .iconCircle svg,
.fromTo .clientsvg svg {
  width: 12px;
  fill: #fff;
}

.fromTo .indicator {
  width: 18px;
  fill: #09187f;
}
.title {
  text-transform: capitalize;
}
.bottomContent {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews .reviewsContainer .review > .topPart > .userDetailedGroup a {
  transition: 0.3s;
  &:hover {
  opacity: 0.8;
}
}

/* Media Query */
/* =========== */
@media screen and (max-width: 900px) {
  .reviews > h1 {
    font-size: 16px;
  }
  .reviews p {
    font-size: 14px;
  }
  .reviews {
    width: 100%;
    gap: 16px;
    max-height: unset;
  }
  .reviews .reviewsContainer {
    padding-right: unset;
    gap: 12px;
  }
  .reviews .reviewsContainer .review {
    padding: 10px;
    border-radius: 10px;
  }
  .reviews .reviewsContainer .review > .topPart > .userDetailedGroup h1 {
    font-size: 16px;
  }
  .reviews .reviewsContainer .review > .topPart .userDetailedGroup > img {
    width: 36px;
    height: 36px;
  }
  .reviews .reviewsContainer .review > .topPart > .userDetailedGroup a {
    font-size: 14px;
  }
  .title {
    font-size: 16px;
  }
  .fromTo .iconCircle,
  .fromTo .clientsvg {
    width: 18px;
    height: 18px;
  }
  .fromTo .iconCircle svg,
  .fromTo .clientsvg svg {
    width: 10px;
  }
  .fromTo .indicator {
    width: 14px;
  }
}

@media (max-width: 550px) {
  .reviews .reviewsContainer .review {
    flex: 100%;
  }
}
