section.hero {
  border-radius: 10px;
  border: 1px solid rgba(129, 177, 177, 0.38);
  position: relative;
  box-shadow: 0px 64px 44px 0px rgba(0, 0, 0, 0.25);
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

section.hero .hero_image_wrapper {
  height: 579px;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 round 10px);
}

section.hero .hero_image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

section.hero h1 {
  position: absolute;
  top: 50%;
  margin: 0;
}

section.hero .verlinkungen {
  position: absolute;
  bottom: -34px;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  list-style: none;
  padding-inline-start: 0;
}

section.hero .link_area {
  display: flex;
  width: 220px;
  height: 165px;
  padding: 80px 20px 20px 20px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #dfdfdf4d;
  overflow: hidden;
  position: relative;
  z-index: 98;
  background: rgba(50, 50, 50, 0.2);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: all 200ms ease-in;
}

section.hero .link_area span {
  transition: all 200ms ease-in;
  font-family: "Century Gothic", sans-serif;
  font-weight: 400;
}

section.hero .link_area:hover {
  border-color: var(--turkis);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

section.hero .link_area:hover span {
  transform: translateY(-5px);
  text-shadow: 0 -2px 4px #fff, 2px 2px 2px rgba(255, 255, 255, 0);
}

section.hero .link_area::before {
  content: "";
  background: url("../../../img/static.png") center center no-repeat,
    rgba(50, 50, 50, 0.6);
  background-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  opacity: 0.1;
}

section.hero .link_area span {
  text-shadow: 0px 6px 9px rgba(0, 0, 0, 0.84);
  font-size: clamp(1.25rem, 1.2483rem + 0.5575vw, 1.75rem);
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  section.hero .link_area {
    display: inline-block;
    width: 150px;
    height: 110px;
    padding: 50px 10px 10px 10px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  section.hero .verlinkungen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;

    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 1.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 540px;
  }

  section.hero .link_area {
    max-width: none;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  section.hero {
    margin-left: 0;
    margin-right: 0;
  }
}
