.card_Us {
  width: 320px;
  height: 370px;
  padding: 15px;
  color: white;
  background: #0d0d0d;
  border: 2px solid transparent;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transform-origin: top bottom;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.card_Us .main-content {
  flex: 1;
}

.card_Us .header span:first-child {
  font-weight: 600;
  color: #717171;
  margin-right: 4px;
}

.card_Us .heading {
  font-size: 24px;
  margin: 24px 0 16px;
  font-weight: 600;
}

.card_Us .categories {
  display: flex;
  gap: 10px;
}

.card_Us .categories span {
  background-color: #000;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: white;
  border-radius: 50em;
}

.card_Us .footer {
  font-weight: 600;
  color: #717171;
  margin-right: 4px;
}

.card_Us:hover {
  rotate: -6deg;
}
