#page-wrapper {
  padding: 0;
}

#banner {
  position: relative;
  height: 500px;
  margin-bottom: 130px;
  background-image: url("/img/sites/ueber-uns/banner.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#banner-sub {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, rgba(12, 115, 174, 0.7) 0%, rgba(35, 160, 106, 0.7) 100%);
}

#banner-sub h1 {
  color: #fff !important;
  padding: 26px 0;
  margin: 0;
}

@media (max-width: 1024px) {
  #banner {
    height: auto;
    padding-bottom: 50%;
    /* height */
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  #banner {
    height: 300px;
    padding-bottom: 0;
  }

  #banner h1 {
    font-size: 21px;
    padding: 18px 0;
  }
}
/* mit Backend abstimmen ------------------------------------------------------------ */
.text strong, .text b {
  font-weight: 700;
}

.text strong, .text b {
  font-weight: 500;
}

.text i {
  font-weight: 400italic;
}

.text i > b,
.text b > i {
  font-weight: 500italic;
}

.text ul {
  margin: 0;
  padding-left: 15px;
}

.text ol {
  margin: 0;
  padding-left: 18px;
}

.text blockquote {
  padding: 0 20px;
  margin: 0 0 0 30px;
  /* border-left: 5px solid #eee; */
}

/* gmaps ------------------------------------------------------------ */
#map-wrapper {
  position: relative;
  margin-top: 160px;
}

#btn-map-full {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  padding: 0;
  background-image: url("/img/sites/ueber-uns/ico-zoom.png");
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 2px;
  z-index: 2;
}

#map {
  position: relative;
  width: 100%;
  height: 800px;
  /*  padding-bottom: 50%; height */
  text-align: center;
  font-size: 13px;
  background: #f1f1f1;
  z-index: 1;
}

.gm-style-iw {
  text-align: left;
  padding-top: 6px;
}

.gm-style-iw h3 {
  font-weight: 400;
}

/* fullscreen */
.map-fullscreen {
  position: fixed !important;
  height: 100% !important;
  top: 0;
  left: 0;
  z-index: 888888;
}

.btn-fullscreen {
  position: fixed !important;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  z-index: 999999;
}

@media screen and (max-width: 480px) {
  #map {
    padding-bottom: 100%;
    /* height */
  }
}
/* ------------------------------------------------------------ */
#map::before {
  content: "";
  position: absolute;
  text-align: left;
  top: 50%;
  left: 50%;
  width: 220px;
  margin-top: -10px;
  margin-left: -110px;
  -webkit-animation: changeLetter 1.5s linear infinite;
  -moz-animation: changeLetter 1.5s linear infinite;
  -o-animation: changeLetter 1.5s linear infinite;
  animation: changeLetter 1.5s linear infinite;
}

@keyframes changeLetter {
  0% {
    content: "Google Maps wird geladen";
  }
  33% {
    content: "Google Maps wird geladen .";
  }
  66% {
    content: "Google Maps wird geladen . .";
  }
  100% {
    content: "Google Maps wird geladen . . .";
  }
}