:root {
  --primary: #00b8a9;
  --secondary: #f5fffe;
}
:where([class^="ri-"])::before {
  content: "\f3c2";
}

.text-secondary-2 {
  color: #6f757c;
  font-size: 16px;
}

.card-hiring {
  background: #fff;
  border: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}
.card-hiring:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.icon-wrapper {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background-color: rgba(0, 184, 169, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-wrapper i {
  color: var(--primary);
  font-size: 1.5rem;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.card-hiring:nth-child(2) {
  animation-delay: 0.2s;
}
.card-hiring:nth-child(3) {
  animation-delay: 0.4s;
}
.card-hiring:nth-child(4) {
  animation-delay: 0.6s;
}

.card-hiring {
  transition: transform 0.2s ease-in-out;
  transform-origin: center;
}

.card-hiring:active {
  transform: scale(1.05);
}

.card-hiring:hover {
  cursor: pointer;
}
