/* Review */
.review {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
.review .title-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.review .title-box .title {
  width: 325px;
  height: 60px;
  position: relative;
  margin-bottom: 15px;
}
.review .title h1 {
  font-family: thin;
  font-size: 45px;
  position: absolute;
}
.review .title span {
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--light_yellow);
  z-index: -1;
  clip-path: polygon(0 90%, 100% 80%, 100% 100%, 0% 100%);
}
.review .item-box {
  width: 1140px;
  background-color: var(--lightsky);
  display: flex;
  justify-content: space-between;
  padding: 35px;
  box-sizing: border-box;
}

.review .item-box .item {
  width: 31.5%;
  height: 330px;
  background-color: var(--white);
}
.review .item .item-scale {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.review .item:hover .item-scale {
  transform: scale(1.1);
}
.review .item .profile {
  width: 100%;
  height: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review .profile .profile-img {
  width: 100px;
  height: 100px;
}
.review .profile-img img {
  border-radius: 50%;
}
.review .item .description {
  width: 100%;
  height: 55%;
  text-align: center;
  padding: 0 30px;
  box-sizing: border-box;
}
.review .description h1 {
  font-family: thin;
  text-transform: uppercase;
  font-size: 20px;
}
.review .description p {
  font-family: thin;
  font-size: 12px;
}
.review .description i {
  color: var(--yellow);
  margin: 15px 0 20px;
  font-size: 12px;
}