
/* Review  */
.reviewBox {
  width: 100%;
  height: 340px;
  display: flex;
  overflow: hidden;
  gap: 20px;
}

.reviewContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.review {

  flex: 0 0 270px;
  padding: 10px;
  background-color: rgb(255, 255, 255);
  height: 320px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s linear;

}

.review>h2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.review>h4 {
  white-space: nowrap;
  font-size: 1.3rem;
  height: 23px;
}

.review>p {
  font-size: 0.9rem;
  height: 160px;

}

.review>a {
  font-size: 0.9rem;
}

.review:hover {
  transform: translateY(-10px);
}

@keyframes reviewAni {
  from {
    translate: 0;
  }

  to {
    translate: -100%;
  }
}

/* Top Hiring Companies */
.logo-box{
  width: 250px;
  height:70px;
  background-color: rgb(255, 255, 255);
  border:1px solid rgba(0, 0, 0, 0.094);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 12px;
}

