/* ANCHOR var Farben -------------------------- */ 
body {
  --color-gruen01: #3e5e07;
  --color-gruen02: #5b7d22;
  --color-gruen03: #82a647;
  --color-gruen04: #b0d571;
  --color-gruen05: #d6fb94;
  --color-gruen06: #e9ffc1;
  --color-orange: #ffa200;

  --color-braun01: #271b00;
  --color-braun02: #3a2e12;
  --color-braun03: #51452a;
  --color-braun04: #665a3e;
  --color-braun05: #84775a;
  --color-braun06: #9d9073;
  --color-braun07: #b9ac8e;
  --color-braun08: #d7caab;
  --color-braun09: #efe2c3;
  --color-braun10: #fff2d1;

  --color-grau01: #2e2e28;
  --color-grau02: #3e4038;
  --color-grau03: #5f625a;
  --color-grau04: #7c8178;
  --color-grau05: #99a095;
  --color-grau06: #bac2b6;
  --color-grau07: #d6e1d3;
}
.c-full-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 60vh;
}
.p-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
}
.p-slide.is-active {
  opacity: 1;
  z-index: 2;
}

/* Bildwechsel Portrait & Landscape */
@media screen and (orientation: portrait) {
  .p-sl01 {
    background-image: url(../img/bully_slider01_hoch.jpg);
  }
  .p-sl02 {
    background-image: url(../img/bully_slider02_hoch.jpg);
  }
  .p-sl03 {
    background-image: url(../img/bully_slider03_hoch.jpg);
  }
}
@media screen and (orientation: landscape) {
  .p-sl01 {
    background-image: url(../img/bully_slider01.jpg);
  }
  .p-sl02 {
    background-image: url(../img/bully_slider02.jpg);
  }
  .p-sl03 {
    background-image: url(../img/bully_slider03.jpg);
  }
}
.p-slide-cont {
  padding: 1.6rem 4rem 1.6rem 1.6rem;
  position: absolute;
  left: -100%;
  bottom: 20px;
  max-width: 100%;
  max-height: 100%;
  text-align: left;
  color: var(--color-grau01);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0 6px 6px 0;
  overflow: auto;
  transition: left 2s ease-in-out;

}
.p-slide-cont h3 {
  font-weight: 700;
}
.p-slide.is-active .p-slide-cont {
  left: 0;
}
@media (max-height: 320px) {
  .p-slide-cont {
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .p-slide-cont {
    bottom: 0;
  }
}
.p-slide-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 0 3px 0;
  font-size: 3rem;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  color: var(--color-gruen06);
  line-height: 1;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 300ms ease-in-out;
  z-index: 3;
  cursor: pointer;
}
.p-slide-arrow:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.p-slide-arrow.is-prev {
  left: 0px;
}
.p-slide-arrow.is-next {
  right: 0px;
}
