@font-face {
  font-family: 'robotolight';
  src: url('/Fonts/Roboto/roboto-light-webfont.eot');
  src: url('/Fonts/Roboto/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Roboto/roboto-light-webfont.woff2') format('woff2'),
       url('/Fonts/Roboto/roboto-light-webfont.woff') format('woff'),
       url('/Fonts/Roboto/roboto-light-webfont.ttf') format('truetype'),
       url('/Fonts/Roboto/roboto-light-webfont.svg#robotolight') format('svg');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'babelsansregular';
  src: url('/Fonts/Babel-Sans/babelsans-webfont.eot');
  src: url('/Fonts/Babel-Sans/babelsans-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Babel-Sans/babelsans-webfont.woff2') format('woff2'),
       url('/Fonts/Babel-Sans/babelsans-webfont.woff') format('woff'),
       url('/Fonts/Babel-Sans/babelsans-webfont.ttf') format('truetype'),
       url('/Fonts/Babel-Sans/babelsans-webfont.svg#babelsansregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'consola_monobook';
  src: url('/Fonts/Consola-Mono/consolamono-book-webfont.eot');
  src: url('/Fonts/Consola-Mono/consolamono-book-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Consola-Mono/consolamono-book-webfont.woff2') format('woff2'),
       url('/Fonts/Consola-Mono/consolamono-book-webfont.woff') format('woff'),
       url('/Fonts/Consola-Mono/consolamono-book-webfont.ttf') format('truetype'),
       url('/Fonts/Consola-Mono/consolamono-book-webfont.svg#consola_monobook') format('svg');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'montserratlight';
  src: url('/Fonts/Gontserrat/gontserrat-light-webfont.eot');
  src: url('/Fonts/Gontserrat/gontserrat-light-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Gontserrat/gontserrat-light-webfont.woff2') format('woff2'),
       url('/Fonts/Gontserrat/gontserrat-light-webfont.woff') format('woff'),
       url('/Fonts/Gontserrat/gontserrat-light-webfont.ttf') format('truetype'),
       url('/Fonts/Gontserrat/gontserrat-light-webfont.svg#montserratlight') format('svg');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'liberation_sansregular';
  src: url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.eot');
  src: url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.woff2') format('woff2'),
       url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.woff') format('woff'),
       url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.ttf') format('truetype'),
       url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.svg#liberation_sansregular') format('svg');
  font-weight: normal;
  font-style: normal;

}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'liberation_sansregular', sans-serif;
  list-style: none;
  text-decoration: none;
}

header {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  background: linear-gradient(
    245.59deg,
    #4d9559 0%,
    #38703d 28.53%,
    #133917 75.52%
  );
  min-width: 66px;
}

.logo {
  font-size: 25px;
  font-weight: 700;
  color: white;
}

.logo:hover{
  color: white;
}

.navlist {
  position: relative;
}

.navlist li {
  position: relative;
  float: left;
}

ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  font-family: 'liberation_sansregular', sans-serif;
  
}

ul li a:hover {
  color: white;
  background: #4d9559;
}

ul li ul {
  position: absolute;
  left: 0;
  width: 200px;
  background: #38703d;
  display: none;
}

ul li:hover ul {
  display: block;
}

ul li ul li {
  position: relative;
  width: 100%;
  border: 1px solid rgba(106, 181, 97, 0.2);
}

#menu-icon {
  color: rgb(255, 255, 255);
  font-size: 25px;
  z-index: 10001;
  cursor: pointer;
  display: none;
}

.hero {
  height: 100%;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(
    245.59deg,
    #4d9559 0%,
    #38703d 28.53%,
    #133917 75.52%
  );
}

section {
  padding: 0 19%;
}

.hero-text h5 {
  font-size: 14px;
  font-weight: 400;
  color: white;
  margin-bottom: 40px;
  font-family: 'liberation_sansregular', sans-serif;
}

.hero-text h1 {
  text-align: center;
  font-family: 'liberation_sansregular', sans-serif;
  font-size: 30px;
  line-height: 1.2;
  color: white;
  margin: 30px 0 15px;
}

.hero-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  font-family: 'liberation_sansregular', sans-serif;
}

.hero-text p {
  text-align: center;
  color: white;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
  font-family: 'liberation_sansregular', sans-serif;
}

.hero-img{
  display: flex;
  justify-content: center; /* Zentriert horizontal */
  align-items: center; /* Zentriert vertikal */
  margin: 0;
}

.hero-img img{
  display: flex;
  justify-content: center; /* Zentriert horizontal */
  align-items: center; /* Zentriert vertikal */
  margin: 0;
  width: 300px;
  margin-top: 200px;
  margin-bottom: 20px;
}

.hero-text a {
  display: inline-block;
  color: white;
  background: #4e995c;
  border: 1px solid transparent;
  padding: 12px 30px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.55s ease;
  font-family: 'liberation_sansregular', sans-serif;
}

.hero-text a:hover {
  background: #3b7746;
  border: 1px solid white;
}

.hero_logout {
  height: 100%;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(
          245.59deg,
          #4d9559 0%,
          #38703d 28.53%,
          #133917 75.52%
  );
  position: relative;
  display: grid;
  align-items: center;
  gap: 2rem;
}

.hero_logout_box {
  margin: auto;
  width: 50%;
  border: 3px solid #133917;
  padding: 10px;
  text-align: center;
  box-shadow: #133917 0px 7px 29px 0px;
  background-color: #003D45;
}

.hero_logout_box a:hover {
  background: #3b7746;
  border: 1px solid white;
  transform: none !important;
}

.scroll-down {
  position: absolute;
  bottom: 6%;
  right: 9%;
}

.scroll-down i {
  display: block;
  padding: 12px;
  font-size: 25px;
  color: white;
  background: #4d9559;
  border-radius: 30px;
  transition: all 0.5s ease;
}

.scroll-down i:hover {
  transform: translateY(-5px);
}

@media (max-width: 1535px) {
  header {
    padding: 5px 5%;
    transition: 0.2s;
  }

  .scroll-down {
    right: 3%;
    transition: 0.2s;
  }
}

@media (max-width: 1460px) {
  section {
    padding: 0 12%;
    transition: 0.2s;
  }
}



@media only screen and (min-width: 0px) and (max-width: 300px){
  .hero {
    height: 70%;
    width: 100%;
    min-height: 550px;
    padding: 20px 10px 0 10px;
    margin-top: 10px;
  }

  .hero-text h1{
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
    margin-top: 0;

  }

  
  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 50px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 200px;
    margin-top: 10px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.5;
  
}

.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
  margin: 10px;
}

header{
  padding: 10px 6%;
}

.navlist.active {
  top: 43px;
}

}



@media only screen and (min-width: 301px) and (max-width: 400px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 600px;
    padding: 50px 10px 0 10px;
    margin-top: -10px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
   
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 50px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 250px;
    margin-top: 10px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
  
}


.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
  margin: 10px;
}

header{
  padding: 10px 6%;
}

.navlist.active {
  top: 43px;
}
}





@media only screen and (min-width: 401px) and (max-width: 552px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 550px;
    padding: 50px 10px 0 10px;
    margin-top: -10px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 50px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 250px;
    margin-top: 10px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
}


.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
  margin: 10px;
}

header{
  padding: 10px 6%;
}

.navlist.active {
  top: 43px;
}
}


@media only screen and (min-width: 553px) and (max-width: 600px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 500px;
    padding: 50px 10px 0 10px;
    margin-top: -10px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 50px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 250px;
    margin-top: 10px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
}


.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
  margin: 10px;
}

header{
  padding: 10px 6%;
}

.navlist.active {
  top: 43px;
}
}




@media only screen and (min-width: 601px) and (max-width: 800px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 500px;
    padding: 50px 10px 0 10px;
    margin-top: 10px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 30px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 300px;
    margin-top: 10px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
}

.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
  margin: 10px;
}

header{
  padding: 10px 6%;
}

.navlist.active {
  top: 43px;
}
}


@media only screen and (min-width: 801px) and (max-width: 990px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 500px;
    padding: 50px 10px 0 10px;
    margin-top: 10px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 30px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 300px;
    margin-top: 10px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
}

.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
  margin: 10px;
}

header{
  padding: 10px 6%;
}

.navlist.active {
  top: 43px;
}
}



@media only screen and (min-width: 991px) and (max-width: 1000px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 450px;
    padding: 50px 10px 0 10px;
    margin-top: 60px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 0px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 300px;
    margin-top: 0px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
}

.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
}

header{
  padding: 5px 5%;
}

.navlist.active {
  top: 43px;
}
}


@media only screen and (min-width: 1001px) and (max-width: 1200px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 450px;
    padding: 50px 10px 0 10px;
    margin-top: 60px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 0px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 300px;
    margin-top: 0px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
}

.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
}

header{
  padding: 5px 5%;
}

.navlist.active {
  top: 43px;
}
}




@media only screen and (min-width: 1201px) and (max-width: 1400px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 450px;
    padding: 50px 10px 0 10px;
    margin-top: 60px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 0px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 300px;
    margin-top: 0px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
}

.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
}

header{
  padding: 5px 5%;
}

.navlist.active {
  top: 43px;
}
}





@media only screen and (min-width: 1350px) and (max-width: 2000px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 450px;
    padding: 50px 10px 0 10px;
    margin-top: 60px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 0px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 300px;
    margin-top: 0px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
  margin-top: 0;
}

.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
}

header{
  padding: 5px 5%;
}

.navlist.active {
  top: 43px;
}
}



@media only screen and (min-width: 2001px) and (max-width: 5000px){

  .hero {
    height: 70%;
    width: 100%;
    min-height: 450px;
    padding: 50px 10px 0 10px;
    margin-top: 60px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-top: 0;
  }

  .hero-img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    margin-top: 0px;
  }
  
  .hero-img img{
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin: 0;
    width: 300px;
    margin-top: 0px;
  }

.hero-text{
  padding-top: 20px;
  width: 100%;
}

.hero-text p{
  width: 100%;
  padding-bottom: 0px;
  margin-bottom: 20px;
  position: relative;
  margin-top: 0;
}

.logo{
  font-size: 20px;
}

#menu-icon{
  font-size: 20px;
}

header{
  padding: 5px 5%;
}

.navlist.active {
  top: 43px;
}
}





@media (max-width: 990px) {
  #menu-icon {
    display: block;
    margin: 10px;
  }

  .navlist {
    position: absolute;
    width: 100%;
    top: 66px;
    left: 0;
    background: #337a48;
    display: none;
  }

  .navlist.active {
    display: initial;
    top: 65px;
  }

  #menu-icon:checked ~ .navlist {
    display: initial;
  }

  .navlist li {
    width: 100%;
  }

  .navlist li ul {
    position: relative;
    width: 100%;
    left: 0;
  }

  .navlist li:hover ul li {
    background: #4d9559;
  }

  .bx-bx-menu {
    position: relative;
    width: 400px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}






::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: #38703d;
  border-radius: 10px;
}



/*footer*/

footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background: #d3d3d3;
  margin-top: 50px;
}

footer .end {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

footer .end a {
  color: #000000;
  text-decoration: none;
  font-family: 'liberation_sansregular', sans-serif;
}


.end a:link {
  color: #000000; /* Farbe erben (vom Elternelement oder der globalen Stilanweisung) */
  /*text-decoration: none; /* Unterstreichung entfernen */
} 

footer .end a:hover {
  color: #000000; /* Farbe erben */
  text-decoration: underline; /* Unterstreichung entfernen */
}

footer .end a:visited {
  color: #000000; /* Farbe erben */
  text-decoration: none; /* Unterstreichung entfernen */
}

footer .end a:active {
  color: #000000; /* Farbe erben */
  text-decoration: none; /* Unterstreichung entfernen */
} 

/* ------------------------------------------------- BASIC CSS */

body {
  background-color: #f3f2f2;
  font-family: 'liberation_sansregular', sans-serif;
  margin: 0;
}

/* ------------------------------------------------- COOKIE POPUP */

.cookie-popup__modal {
  display: none;
}

.cookie-popup__modal.active {
  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  z-index: 99999;
  bottom: 0;
}

.cookie-popup__content {
  position: relative;
  background-color: #498d53;

  padding: 20px;

  font-size: 16px;
  max-width: 380px;

  margin: 1em;
  object-fit: cover;

  /* box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.2); */
}

.cookie-button__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  margin-top: 20px;

  gap: 20px;

  border: none;
  outline: none;

  text-transform: uppercase;
  cursor: pointer;
}

.btn.accept {
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;

  background-color: #fff;
  border: 2px solid #fff;

  color: #172d50;

  padding: 8px;
  text-transform: uppercase;

  cursor: pointer;
  width: 100%;
}

.btn.accept:hover {
  color: #172d50;
}

.btn.cancel {
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;

  background-color: #fff;
  border: 2px solid #fff;

  color: #172d50;

  padding: 8px;

  text-transform: uppercase;

  cursor: pointer;
  width: 100%;
}

.btn.cancel:hover {
  color: #172d50;
}

.cookie-headline__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cookie-headline {
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;

  text-align: center;

  line-height: 1.25;
  margin: 5px 0;

  margin-bottom: 10px;

  color: #fff;
  width: 100%;
}

.cookie-text__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cookie-popup__content p {
  font-family: 'liberation_sansregular', sans-serif;
  font-size: 14px;
  

  color: #dedede;

  line-height: 1.25;

  margin: 5px 0;
  /* text-align: center; */
}

.cookie-popup__link {
  font-family: inherit;

  text-decoration: underline;
  color: #dedede;
}

/* ------------------------------------------------- MEDIA QUERIES */

@media only screen and (max-width: 700px) {
  .cookie-popup__content {
    background-size: 100%;
    padding: 20px;
  }

  .cookie-button__wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }
}


/* Kinogo Style Box für Bücher Web und Mobil */

.ueberschrift{
  display: flex;
  align-items: center;
  margin: 100px 20% 0px;
  text-align: center;
}

a .link-text{
  color: #000000;
  text-transform: none;
  font-weight: normal;
}

a .obena{
  color: #000000;
  text-transform: none;
}

.wrapper img{
  max-width: 150px;
  float: left;
  margin-right: 20px;
}

.wrapper{
  margin: 5px 20% 5px;
  width: 60%;
  padding: 0px 0 0px;
  color: #003D45;
}

.wrapper .text-box{
  display: block;
  padding: 0;
  padding: 20px 0 20px 0;
}

.teaser-text{
  display: block;
  padding-top: 5px;
  font-family: 'liberation_sansregular', sans-serif;
  color: #000000;
}

.text-box h2{
font-size: 25px;
text-align: left;
margin: 0;
padding: 0 0 5px 0;
font-family: 'liberation_sansregular', sans-serif;
color: #000000;
}

.text-box p{
  display: block;
  font-size: 17px;
  text-align: left;
  margin-top: 0;
  padding: 0 0 0 0;
  line-height: 1.5;
  font-family: 'liberation_sansregular', sans-serif;
  color: #000000;
}

.wrapper a{
  display: inline-block;
  color: white;
  background: #4d9559;
  border: 1px solid transparent;
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  text-transform: uppercase;
  transition: all .55s ease;
  font-family: 'liberation_sansregular', sans-serif;
  /*
  margin-left: 30px;
  */
  margin-top: 0px !important;
  margin-bottom: 8px;
  margin-left: 0px;
}

.wrapper a:hover{
  background: #337a48;
  border: 1px solid rgb(255, 255, 255);
}


@media (max-width: 1000px){
   

  .ueberschrift{
      margin: 100px 0px 10px 20px;
  }

}




@media only screen and (min-width: 0px) and (max-width: 281px){

.info-box{
  position: relative;
  margin-left: 0 ;
  padding-left: 0;
  margin-top: 5px;
}

.wrapper .text-box .info-box p{
  font-size: 15px;
  padding-left: 5px;
}

}


/*
@media only screen and (min-width: 0px) and (max-width: 344px){

  .wrapper{
      width: 100%;
      margin: 0 0;
      margin-bottom: 20px;
  }

  .text-box h2{
      padding-left: 10px;
      padding-top: 15px;
      padding-bottom: 15px;
      font-size: 20px;
  }

.wrapper .text-box img{
   padding: 0px 0px 10px 10px;
   width: 120px;
}

.wrapper .text-box .info-box p{
  font-size: 15px;
  padding-left: 10px;
}

.info-box{
  margin-top: 5px;
}

.text-box p{
  margin-top: 0px;
  font-size: 15px;
}

.teaser-text{
  margin: 10px 10px 0px 10px;
}

.wrapper a{
  margin-left: 15px;
}

.pagination a, .current-page {
  padding: 0px 5px;
  }

  .hero-text h1{
    font-size: 20px;
    margin-bottom: 15px;
  }

  .fragen{
    width: 90%;
  }

  .fragen h3{
    font-size: 23px;
  }
  .pagination a, .current-page {
    padding: 0px 5px;
  }

}
  */


@media only screen and (min-width: 345px) and (max-width: 389px){

  .wrapper{
      width: 100%;
      margin: 0 0;
      margin-bottom: 20px;
  }

  .text-box h2{
      padding-left: 10px;
      padding-top: 15px;
      padding-bottom: 15px;
      font-size: 20px;
  }

.wrapper .text-box img{
   padding: 0px 0px 0px 10px;
   width: 120px;
}

.wrapper .text-box .info-box p{
  font-size: 15px;
  padding-left: 120px;
}

.text-box p{
  margin-top: 0px;
  font-size: 15px;
}

.teaser-text{
  margin: 10px 10px 0px 10px;
}

.wrapper a{
  margin-left: 15px;
}

.pagination a, .current-page {
  padding: 0px 5px;
  }

  .hero-text h1{
    font-size: 25px;
    margin-bottom: 15px;
  }

  .fragen{
    width: 90%;
  }

  .fragen h3{
    font-size: 23px;
  }
  .pagination a, .current-page {
    padding: 0px 5px;
  }
}


@media only screen and (min-width: 376px) and (max-width: 420px){

  .wrapper{
      width: 100%;
      margin: 0 0;
      margin-bottom: 20px;
  }

  .text-box h2{
      padding-left: 10px;
      padding-top: 15px;
      padding-bottom: 15px;
      font-size: 20px;
  }

.wrapper .text-box img{
   padding: 0px 0px 0px 10px;
   width: 120px;
}

.wrapper .text-box .info-box p{
  font-size: 15px;
  padding-left: 120px;
}

.text-box p{
  margin-top: 0px;
  font-size: 15px;
}

.teaser-text{
  margin: 10px 10px 0px 10px;
}

.wrapper a{
  margin-left: 15px;
}

}

/*
@media only screen and (min-width: 421px) and (max-width: 1024px){

  .wrapper{
      width: 100%;
      margin: 0 0;
      margin-bottom: 20px;
  }

  .text-box h2{
    padding: 10px 0px 10px;
      font-size: 20px;
      hyphens: auto;
  }

.wrapper .text-box img{
   padding-left: 10px;
   padding-top: 10px;
   width: 120px;
}

.wrapper .text-box .info-box p{
  font-size: 15px;
  padding-left: 120px;
}

.text-box p{
  margin-top: 0px;
  font-size: 15px;
}

.info-box{
  padding-bottom: 0px;
}

.teaser-text{
  margin: 10px 0px 0px 0px;
}

.wrapper a{
  margin-left: 15px;
}

.pagination a, .current-page {
  padding: 0px 5px;
  }

  .hero-text h1{
    font-size: 30px;
    margin-bottom: 15px;
  }

  .fragen{
    width: 90%;
  }

  .fragen h3{
    font-size: 26px;
  }

  .fragen p{
    font-size: 20px;
  }

}

*/


@media only screen and (min-width: 390px) and (max-width: 844px){

  .wrapper{
      width: 100%;
      margin: 0 0;
      margin-bottom: 20px;
  }

  .text-box h2{
      padding: 10px 0px 10px;
      font-size: 20px;
      hyphens: auto;
  }

.wrapper .text-box img{
   padding-left: 10px;
   padding-top: 10px;
   width: 120px;
}

.wrapper .text-box .info-box p{
  font-size: 16px;
  padding-left: 120px;
}

.text-box p{
  margin-top: 0px;
  font-size: 15px;
}

.teaser-text{
  margin-top: 5px;
}

.wrapper a{
  margin-left: 15px;
}

.pagination a {
  padding: 0.3ch 10px;
  }

.current-page{
  padding: 0.3ch 10px;
}

.hero-text a{
  font-size: 16px;
}

}

@media only screen and (min-width: 400px) and (max-width: 1000px){
  .pagination a, .current-page {
    padding: 0px 5px;
  }
}

@media only screen and (min-width: 390px) and (max-width: 844px){
  .pagination a {
    padding: 0.3ch 10px;
  }

  .current-page{
    padding: 0.3ch 10px;
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1025px){
  .pagination a, .current-page {
    padding: 0px 5px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.pagination li {
  cursor: pointer;
}

.pagination li:first-child a {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pagination li:last-child a {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.pagination li a, .pagination li span {
  display: block;
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #000;
}

.pagination li.active a {
  border: 2px solid #000;
}

.pagination li a:hover {
  background-color: #eee;
}



/*footer*/

.row{
  display: flex;
  flex-wrap: wrap;
}

.footer{
  background-color: #292929;
  padding: 70px 0;
}

.container{
  max-width: 1170px;
  margin: auto;
}

.footer-col{
  width: 25%;
  padding: 0 15px;
}

.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 35px;
  position: relative;
  font-family: 'liberation_sansregular', sans-serif;
}

.footer-col h4::before{
  content:'';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #ffffff ;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}

.footer-col ul li a{
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  padding: 0;
  transition: all 0.3s ease;
  font-family: 'liberation_sansregular', sans-serif;
}

.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 10px;
  background: none;
}

.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
  font-family: 'liberation_sansregular', sans-serif;
}

.footer-col .social-links a:hover{
   color: #24262b;
   background-color: #ffffff;
}


/*footer responsive*/
@media(max-width: 767px){
   .footer-col{
     width: 50%;
     margin-bottom: 30px;

   }
}

@media(max-width: 574px){
  .footer-col{
    width: 100%;
  }
}










/*
.page-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transform-origin: center;
  padding: 0.3ch;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #ffffff;
  margin: 0px 4px;
}

.current-page {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transform-origin: center;
  padding: 0.3ch;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #50a35b;
  margin: 0px 4px;
}

.page-link:hover {
  color:#ffffff;
  transform: scale(1.04);
  transition: 250ms;
}

.current-page {
  color:rgb(255, 255, 255);
} 
  */

  