@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: 20px;
  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;
}

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: 20px;
  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%
  );
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}

section {
  padding: 0 19%;
}

.hero-text h5 {
  font-size: 14px;
  font-weight: 400;
  color: white;
  margin-bottom: 40px;
}

.hero-text h1 {
  font-family: 'liberation_sansregular', sans-serif;
  font-size: 90px;
  line-height: 1;
  color: white;
  margin: 0 0 45px;
}

.hero-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.hero-text p {
  color: white;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero-img img {
  width: 400px;
  height: auto;
}

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

.hero-text a:hover {
  background: #3b7746;
  border: 1px solid white;
  transform: translateX(8px);
}

.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: 15px 6%;
    transition: 0.2s;
  }

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

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

@media (max-width: 1535px) {
  .hero-img img {
    width: 100%;
    height: auto;
  }
  .hero-text h1 {
    font-size: 75px;
    margin: 0 0 30px;
  }
  .hero-text h5 {
    margin-bottom: 25px;
  }

  .hero-text h4 {
    font-size: 24px;
  }

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

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

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

  .hero-text {
    padding-top: 115px;
  }

  .hero.img {
    text-align: center;
  }
  .hero-img img {
    width: 560px;
    height: auto;
  }
  .hero {
    height: 100%;
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .scroll-down {
    display: none;
  }
}

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

  .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;
  }
}

/*

@media (max-width: 990px){
    #menu-icon{
        display: block;
    }
    .navlist{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 300px;
        height: 40vh;
        background: #4d9559;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 0px 20px;
        transition: all .55s ease;
    }
    .navlist a{
        margin-left: 0;
        display: block;
        margin: 0px 0;
        font-size: 18px;
    }
    .navlist.open{
    right: 0;
    }

    .navlist li ul{
     position: relative;
     width: 100%;
    }
}
*/

@media (max-width: 690px) {
  .hero-img img {
    width: 100%;
    height: auto;
  }
}

/*Books*/
.featured-books {
  width: 100%;
  height: 100%;
  margin: 30px 0px 35px 0px;
}

.featured-books h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  font-size: 40px;
  text-align: center;
}

.featured-books .featured-book-box {
  width: 95%;
  height: 100%;
  margin: 30px auto 30px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  overflow: hidden;
  overflow-x: scroll;
}

.featured-books .featured-book-box .featured-book-card {
  width: 250px;
  height: 460px;
  text-align: center;
  padding: 5px;
  border: 1px solid #919191;
  margin: auto 20px;
  margin-bottom: 30px;
}

.featured-books .featured-book-box .featured-book-card:hover {
  box-shadow: 0 0 5px #4d9559;
}

.featured-books .featured-book-box .featured-book-card .featured-book-img img {
  width: 150px;
}

.featured-books .featured-book-box .featured-book-card .featured-book-tag h2 {
  margin: 12px;
  font-size: 18px;
}

.featured-books
  .featured-book-box
  .featured-book-card
  .featured-book-tag
  .writer {
  color: #919191;
}

.featured-books
  .featured-book-box
  .featured-book-card
  .featured-book-tag
  .categories {
  color: #179917;
  margin-top: 8px;
  margin-bottom: 10px;
}

.featured-books
  .featured-book-box
  .featured-book-card
  .featured-book-tag
  .f-btn {
  display: inline-block;
  padding: 8px 20px;
  margin-top: 8px;
  border: 2px solid #4d9559;
  text-decoration: none;
  color: #000;
}

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

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

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

/*Arrivals*/

.arrivals{
  width: 100%;
  height: 100%;
  margin-bottom: 35px;
}

.arrivals h1{
  font-size: 35px;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 20px;
}

.arrivals .arrivals-box{
 width: 95%;
 margin: 0 auto;
 display: grid;
 grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
 grid-gap: 25px 0;
 overflow: hidden;
 overflow-x: scroll;
}

.arrivals .arrivals-box .arrivals-card{
  width: 250px;
  height: 360px;
  text-align: center;
  padding: 20px;
  border: 1px solid #919191;
  margin: 20px 20px;
}

.arrivals .arrivals-box .arrivals-card:hover{
  box-shadow: 0 0 5px #133917;
}

.arrivals .arrivals-box .arrivals-card .arrivals-image{
  width: 200px;
  height: 220px;
  margin: 0 auto;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
  overflow: hidden;
}

.arrivals .arrivals-box .arrivals-card .arrivals-image img{
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
 transition: 0.3s;
}

.arrivals .arrivals-box .arrivals-card:hover .arrivals-image img{
  transform: scale(1.1);
}

.arrivals .arrivals-box .arrivals-card .arrivals-tag p{
   font-size: 20px;
   margin: 8px 0;
} 

.arrivals .arrivals-box .arrivals-card .arrivals-tag .arrivals-icon{
  color: #4d9559;
  margin-bottom: 18px;
}

.arrivals .arrivals-box .arrivals-card .arrivals-tag .arrivals-btn{
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #133917;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

/*Reviews*/

.review {
  width: 100%;
  height: auto;
}

.review h1 {
  text-align: center;
  font-size: 40px;
  margin-top: 55px;
}

.review h2 {
  text-align: left;
  font-size: 22px;
  margin: 0px;
  white-space: nowrap;
}

.review .review-box .review-card .card p {
  margin: 10px 0 10px 0;
  text-align: justify;
  line-height: 22px;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.review .review-box {
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 25px 0;
  overflow: hidden;
  overflow-x: scroll;
}

.review .review-box .review-card {
  width: 320px;
  height: 500px;
  box-shadow: 0 0 8px #133917;
  padding: 30px 10px;
  margin: 20px 12px;
}

.review .review-box .review-card i {
  float: right;
  font-size: 120px;
  position: relative;
  bottom: 20px;
  color: #eaeaea;
}

.review .review-box .review-card .card-top img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review .review-box .review-card .card .review-icon i {
  font-size: 16px;
  float: left;
  margin-top: 20px;
  color: #38703d;
  padding: 0 1px;
}

/*footer*/

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

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

footer .end a {
  color: #ffffff;
  text-decoration: none;
}

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

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

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

footer .end a:active {
  color: #ffffff; /* 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: 'liberation_sansregular', sans-serif;
  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: 'liberation_sansregular', sans-serif;
  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: 'liberation_sansregular', sans-serif;
  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: 'liberation_sansregular', sans-serif;

  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%;
  }
}
