.hr-card-expertise {
  position: relative;
  border: 8px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  height: auto;
  margin-bottom: 2rem;
}
.hr-card-expertise:hover {
  box-shadow: 0 0 10px 7px rgba(0, 0, 0, 0.03);
  background: #fff;
  border-bottom-color: var(--color-3);
}
.hr-card-expertise .hr-brand {
  width: fit-content;
  height: auto;
  padding: 1rem 0;
}
.hr-card-expertise .hr-brand img {
	width: 200px;
	height: 65px;
	object-fit: contain;
}
.hr-card-expertise .hr-over-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: var(--bg-03);
  opacity: 0;
  border-radius: 0.5rem;
  cursor: pointer;
}
.hr-card-expertise:hover .hr-over-body {
  opacity: 1;
}
.hr-card-expertise .hr-over-body .hr-titel {
  margin-bottom: 0;
}
.hr-card-expertise .hr-over-body .hr-titel h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 1.25rem;
  margin-bottom: 0;
  color: var(--white);
}
