.hr-card-expertise {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hr-card-expertise .hr-brand {
  width: fit-content;
  height: auto;
  padding: 1rem 0;
}
.hr-card-expertise .hr-brand img {
  width: auto;
  height: 65px;
}
.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);
}

.hr-card-expertise .hr-brand img {
filter: grayscale(100%);
  transition: all 0.4s ease;
  cursor: pointer
}

.hr-card-expertise .hr-brand:hover img{
  filter: grayscale(0%);
}