.card {
  width: 33%;
  max-height: 350px;
  padding: 20px;
  color: white;
  background: linear-gradient(#212121, #212121) padding-box,linear-gradient(145deg, transparent 35%,#df2027, #df1998) border-box;
  border: 2px solid transparent;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transform-origin: right bottom;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}
.card .main-content {
  flex: 1;
}
.card .header span:first-child {
  font-weight: 600;
  color: #717171;
  margin-right: 4px;
}
.card .heading {
  font-size: 24px;
  margin: 24px 0 16px;
  font-weight: 600;
}
.card .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card .categories span {
  background-color: #df2027;
  padding: 4px 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 50em;
}
.card:hover {
  rotate: 8deg;
}
.job-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3%;
}
.mb-1 {
    margin-bottom: 1rem;
}