.OlovImg {
  max-width: 20%;
  position: relative;
}
.OlovText {
  max-width: 70%;
  position: relative;
}

.imageAngebot {
  position: relative;
  width: 250px;
  margin-right: 1.5%;
  margin-left: 1.5%;
  margin-bottom: 5%;
  display: flex;
  border-radius: 0%;
}

.imageAngebot a img {
  border-radius: 0%;
  min-height: 100%;
}
.imageAngebot:hover {
  visibility: hidden;
}

.imageAngebot .imgTxt {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 30%;
  color: var(--color_menue);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.6);
  text-align: center;
  display: flex;
  visibility: visible;
  align-items: top;
  justify-content: center;
  font-size: 1.4em;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-radius: 0%;
  opacity: 1;
}

.imageAngebot:hover .imgTxt {
  opacity: 0;
}

.imageAngebot:hover .tooltiptext {
  opacity: 1;
  visibility: visible;
}
.imageAngebot .tooltiptext {
  opacity: 0;
  position: absolute;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  color: var(--color_tooltip);
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 500;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  transition: 0.8s;
  border-radius: 3%;
  padding: 30px;
  background-image: linear-gradient(-180deg, rgb(100, 100, 100) 0%, rgb(80, 80, 80) 100%);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.85),
              0 -0.25rem 1.5rem rgb(50, 50, 50) inset,
              0 0.75rem 0.5rem rgba(255, 255, 255, 0.4) inset,
              0 0.25rem 0.5rem 0 rgba(50, 50, 50, 1) inset;
}

.imagePartner {
  position: relative;
  max-width: 12%;
  margin-right: 1.5%;
  margin-left: 1.5%;
  margin-bottom: 5%;
}

.imgTxtPartner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 30%;
  color: var(--color_menue);
  text-align: center;
}
.imgTxtPartner:hover {
  background-color: rgba(80, 80, 80, 0.50);
  box-shadow: 0 1rem 1.25rem 0 rgba(130, 130, 130, 0.50),
              0 -0.25rem 1.5rem rgb(50, 50, 50) inset,
              0 0.75rem 0.5rem rgba(255, 255, 255, 0.4) inset,
              0 0.25rem 0.5rem 0 rgba(50, 50, 50, 1) inset;
}

.btn {
  background-color: rgb(1, 170, 173);
  color: white;
  border-radius: 10px;
  padding: 1%;
  width: 30%;
  background: rgba(1, 112, 114, 0.6);
}
.btn a {
  text-decoration: none;
  color: white;
}
.btn:hover {
  background-color: rgba(1, 170, 173, 0.664);
  background-image: linear-gradient(-180deg, #89ffff 0%, rgb(1, 112, 114) 100%);
  box-shadow: 0 1rem 1.25rem 0 rgba(130, 130, 130, 0.329),
              0 -0.25rem 1.5rem rgba(1, 112, 114, 0.685) inset,
              0 0.75rem 0.5rem rgba(255, 255, 255, 0.158) inset,
              0 0.25rem 0.5rem 0 rgba(1, 112, 114, 0.678) inset;
}

.card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 220px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin: 2em;
}
.card:hover {
  transform: scale(1.1);
}
.card::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: rgb(200, 200, 200);
}
.card:hover::after {
  width: 94%;
  transition: width .6s;
}

.date {
  width: 100%;
  display: flex;
  margin-top: 2px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: rgb(100, 100, 100);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  align-self: start;
}

.description {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px;
  font-size: 1.1em;
  color: rgb(100, 100, 100);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  align-self: start;
}

.download {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 0;
  outline: 0;
  height: 40px;
  width: 180px;
  border-radius: 20px;
  background-color: rgba(80, 80, 80, 0.8);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  margin: 10px 0px 20px 0px;
}
.download:hover {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: scale(1.1);
  transition: 0.5s;
  background-color: rgba(50, 50, 50, 0.9);
}
.download a {
  text-decoration: none;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
}
.download:hover a {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 1);
}

.pic {
  position: relative;
  height: 200px;
  display: flex;
}

.pic a img {
  width: 100%;
  max-height: 100%;
}
.pic:hover {
  visibility: hidden;
}

.pic .imgTxt {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.pic:hover .imgTxt {
  opacity: 0;
}

.pic:hover .tooltiptext {
  opacity: 1;
  visibility: visible;
}
.pic .tooltiptext {
  opacity: 0;
  position: absolute;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  color: var(--color_tooltip);
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 500;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  transition: 0.8s;
  padding: 30px;
  background-image: linear-gradient(-180deg, rgb(100, 100, 100) 0%, rgb(80, 80, 80) 100%);
}
