/* This is a workaround file to use the new module system in scss
Bootstrap 5.2.3 doesn't support the new @use feature but is's getting deprecated and will be removed
in October 2022 from the newest SCSS Release

*/
.link-card {
  color: initial;
  border-radius: 1rem;
  margin-bottom: 2rem;
  position: relative;
  display: block;
  overflow: auto;
}
.link-card:hover, .link-card:focus, .link-card:active {
  color: initial;
  cursor: pointer;
}
.link-card .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.link-card .description-wrapper {
  z-index: 2;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-card .description-wrapper .description {
  background-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 992px) {
  .link-card {
    border: 2px solid gray;
    height: 40vh;
    justify-content: space-evenly;
    margin-bottom: 2rem;
  }
  .link-card:hover, .link-card:focus {
    cursor: pointer;
    border: 3px solid black;
  }
  .link-card:hover .background img, .link-card:focus .background img {
    opacity: 1;
    filter: grayscale(0);
  }
  .link-card:hover .description-wrapper .description, .link-card:focus .description-wrapper .description {
    font-size: 2.5rem;
  }
  .link-card:active {
    border: 3px solid red;
  }
  .link-card .background img {
    opacity: 0.8;
    position: relative;
    filter: grayscale(0.1);
  }
  .link-card .description-wrapper {
    font-weight: bold;
  }
  .link-card .description-wrapper .description {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem;
    border-radius: 1rem;
    font-size: 2rem;
    transition: font-size 2s ease;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .link-card {
    margin-left: 2rem;
    margin-right: 2rem;
    height: 40vh;
  }
  .link-card:hover, .link-card:focus {
    border: 2px solid black;
  }
  .link-card:hover .description-wrapper .description, .link-card:focus .description-wrapper .description {
    font-size: 2rem;
  }
  .link-card .description-wrapper .description {
    font-weight: bold;
    font-size: 2rem;
    padding: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .link-card {
    margin-left: 0;
    margin-right: 0;
  }
  .link-card .description-wrapper .description {
    font-size: 2rem;
    font-weight: bold;
    padding: 0.25rem;
  }
}/*# sourceMappingURL=galerie-bahnbetriebswerk.css.map */