.default__verticalEmp {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  display: flex;
  align-items: center;
  height: 60vh;
  background: var(--theme-color);
}
@media (max-width: 575px) {
  .default__verticalEmp {
    height: 80vh;
  }
}
.default__verticalEmp-list {
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
  padding: 20px;
}
.default__verticalEmp-list::-webkit-scrollbar {
  width: 8px;
  background: #f6f6f6;
}
.default__verticalEmp-list::-webkit-scrollbar-thumb {
  background: var(--theme-color);
}
.default__verticalEmp-card {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.default__verticalEmp-card-img img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  object-position: top;
}
.default__verticalEmp-card-info {
  display: flex;
  flex-direction: column;
}
.default__verticalEmp-card-info .info__title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  color: white;
}
.default__verticalEmp-card-info .info__title a {
  color: inherit;
}
.default__verticalEmp-card-info .info__desc {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
  color: #d8d8d8;
}
