@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;700&display=swap");
.navbar {
  z-index: 5;
}

body {
  background-color: white;
}

body ::-webkit-scrollbar {
  display: none;
}

.sct-text {
  overflow-y: visible;
}

.meldung {
  z-index: 1;
  padding-left: 1em;
  font-size: 1.2em;
  color: #fff;
  background-color: var(--primary-color);
  padding-top: 1px;
  padding-bottom: 1px;
}

.meldung .download-icon {
  padding-left: 10px;
  font-size: 20px;
  text-align: center;
}

.meldung .closing-cross {
  position: absolute;
  right: 30px;
}

.bereichsmenu {
  margin: 0;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bereichsmenu ::-webkit-scrollbar {
  display: none;
}

.bereichsmenu .auswahl {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 0;
}

.bereichsmenu .auswahl :hover {
  color: var(--primary-color);
  -webkit-transition: cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  transition: cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

.bereichsmenu .auswahl a {
  padding-right: .6em;
  padding-left: .6em;
  text-decoration: none;
  color: #131313;
  cursor: pointer;
}

.bereichsmenu .auswahl .active a {
  font-weight: 700;
}

.main {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}

.btn {
  cursor: pointer !important;
  text-align: center;
  z-index: 1;
  pointer-events: auto !important;
  padding: 1em;
  background-color: white;
  border: 1px solid #131313;
  border-radius: 5px;
  color: #131313;
  text-transform: uppercase;
  text-decoration: none;
  color: #131313;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  width: 100%;
  text-align: center;
}

.btn a {
  text-decoration: none;
  color: #131313;
  padding: 2em;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  margin-top: 1em;
}

.cards_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1vw;
  margin-left: auto;
  margin-right: auto;
}

.cards_item .cards_a {
  text-decoration: none;
  color: #1f1f1f;
  padding: 0;
  margin: .001px;
}

@media (min-width: 768px) {
  .cards_item {
    width: 43vw;
  }
}

@media (min-width: 896px) {
  .cards_item {
    width: 30vw;
  }
}

@media (max-width: 768px) {
  .cards_item {
    width: 92vw;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  background-color: white;
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card .card_title {
  font-family: 'Poppins';
  color: #131313;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card .card_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: .98em;
  line-height: 1.5;
  margin-bottom: 1.3em;
}

.card .card_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1em;
}

.card .card_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-filter: contrast(70%);
          filter: contrast(70%);
  -webkit-filter: saturate(70%);
          filter: saturate(70%);
  overflow: hidden;
  position: relative;
}

.card .card_image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

@media (min-width: 768px) {
  .card .card_image::before {
    padding-top: 66.6%;
  }
}

.card:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.card_image--SSSFH {
  background-image: url(assets/images/SSSFH.png);
}

.card_image--nstrahaunst {
  background-image: url(assets/images/nstrhaunst.png);
}

.card_image--pappelstrmoorenweis {
  background-image: url(assets/images/pappelstrmoorenweis.png);
}

.card_image--hbsno {
  background-image: url(assets/images/hbsno.png);
}

.card_image--sdldhagenbachrederzhausen {
  background-image: url(assets/images/sdldhagenbachrederzhausen.png);
}

.card_image--lindenaurederzhausen {
  background-image: url(assets/images/lindenaurederzhausen.png);
}

.card_image--whfd {
  background-image: url(assets/images/whfd.png);
}

.card_image--feldigl {
  background-image: url(assets/images/feldigl.jpg);
}

.card_image--kraus {
  background-image: url(assets/images/kraus.png);
}

.card_image--KiTa {
  background-image: url(assets/images/KiTa.jpg);
}

.card_image--wfkma {
  background-image: url(assets/images/wfkma.png);
}

.card_image--apk {
  background-image: url(assets/images/apk.jpg);
}

.card_image--stadthalle {
  background-image: url(assets/images/stadthalle.jpg);
}

.card_image--omzmh {
  background-image: url(assets/images/omzmh.jpg);
}

.card_image--bhffellbach {
  background-image: url(assets/images/bhffellbach.jpg);
}

.text {
  margin: 0 auto;
  line-height: 1em;
  width: auto;
  height: calc(100vh - 4em - 60px - 56px);
  text-align: left;
  padding-right: 2em;
  padding-left: 2em;
  padding-bottom: 90px;
  display: block;
  background-color: white;
}

.projectname {
  line-height: 1em;
  color: var(--primary-color);
  padding-bottom: .5em;
}

.subhead {
  line-height: .3em;
  margin: 0;
  padding-top: .5em;
  font-size: 1em;
  color: #131313;
}

.subtext {
  line-height: 1.2em;
  font-size: 1em;
  color: #131313;
}

.line {
  display: none;
}

@media only screen and (max-width: 768px) {
  .bereichsmenu .auswahl {
    overflow: auto;
  }
}

@media only screen and (min-width: 768px) {
  .text {
    float: right;
    margin-left: auto;
    margin-right: 0;
    line-height: 1em;
    max-width: 400px;
    height: calc(100vh - 53px - 60px - 56px);
    max-height: calc(100vh - 53px - 60px - 56px);
    overflow-y: scroll;
    position: absolute;
    top: 0;
    right: 0px;
    text-align: right;
    display: block;
    background-color: white;
    padding-bottom: 0;
    margin-top: 116px;
  }
  .text ::-webkit-scrollbar {
    display: none;
  }
  .line {
    display: block;
    border-left: 1px solid #131313;
    height: calc(100vh - 64px - 60px - 54px);
    position: absolute;
    right: calc(399px + 4em);
    margin-left: -.5px;
    top: 0;
    margin-top: 118px;
  }
}

.carousel {
  position: relative;
  margin-top: 0px;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .carousel {
    width: calc(100vw - 400px - 4em);
    max-height: 66vh;
    vertical-align: auto;
  }
}

.carousel-open:checked + .carousel-item {
  position: static;
  opacity: 100;
}

.carousel-item {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.carousel-item img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 60px - 4em -  56px);
  margin: 0 auto;
}

.carousel-control {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 40px;
  height: 40px;
  line-height: 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  cursor: pointer;
  transform: translate(0, -50%);
  text-align: center;
  width: 40px;
  z-index: 10;
}

@media only screen and (min-width: 768px) {
  .carousel-control {
    position: absolute;
    top: 35vh;
    z-index: 1;
  }
}

.carousel-control.prev {
  left: 2%;
  z-index: 1;
}

.carousel-control.next {
  right: 2%;
  z-index: 1;
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #aaaaaa;
}

#carousel-1:checked ~ .control-1,
#carousel-2:checked ~ .control-2,
#carousel-3:checked ~ .control-3,
#carousel-4:checked ~ .control-4,
#carousel-5:checked ~ .control-5,
#carousel-6:checked ~ .control-6,
#carousel-7:checked ~ .control-7 {
  display: block;
}

.carousel-indicators {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
  border-radius: 10px;
  background-color: white;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.carousel-indicators li {
  display: inline-block;
  margin: 0 5px;
}

.carousel-indicators li ::before {
  content: "";
  position: relative;
  width: 14px;
  height: 14px;
  top: 0px;
  left: 0px;
  background: white;
}

.carousel-bullet {
  color: #d8d6d6;
  cursor: pointer;
  display: block;
  font-size: 35px;
  line-height: 0px;
  margin-top: 10px;
}

.carousel-bullet:hover {
  color: #aaaaaa;
}

#carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet,
#carousel-4:checked ~ .control-4 ~ .carousel-indicators li:nth-child(4) .carousel-bullet,
#carousel-5:checked ~ .control-5 ~ .carousel-indicators li:nth-child(5) .carousel-bullet,
#carousel-6:checked ~ .control-6 ~ .carousel-indicators li:nth-child(6) .carousel-bullet,
#carousel-7:checked ~ .control-7 ~ .carousel-indicators li:nth-child(7) .carousel-bullet {
  color: var(--primary-color);
}

#title {
  width: 100%;
  position: absolute;
  padding: 0px;
  margin: 0px auto;
  text-align: center;
  font-size: 27px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  z-index: 9999;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.33), -1px 0px 2px rgba(255, 255, 255, 0);
}

.subtext a {
  color: #131313;
  text-decoration: none;
  cursor: default;
}
/*# sourceMappingURL=one-project.css.map */