:root {
    --primary-clr: #1B9C43;
    --darker-primary-clr: #26713E;
    --light-grey: #f5f5f5;
    --darker-grey: #e2e2e2;
    --light-green: #EEF5E9;
    --cta-clr: #E11920;
	--darker-cta-clr: #a6040a;
    --font-headlines: 'Raleway', Helvetica, sans-serif;
    --font-body: 'Raleway', sans-serif;
}

/* .... LAZY BLOCKS.... */

/* .... ABSTAENDE .... */

.lazy-margin {
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.lazy-top-margin {
    margin-top: 5rem;
}
.lazy-bottom-margin {
    margin-bottom: 5rem;
}


/* .... ALLGEMEIN .... */
.lazyblock-inner-blocks h1:first-child,
.lazyblock-inner-blocks h2:first-child,
.lazyblock-inner-blocks h3:first-child {
    margin-top: 0;
}

/* .... FULLWIDTH SECTION .... */
.fullwidth {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.fullwidth.fullwidth-dark {
    background-color: var(--primary-clr);
    color: #fff;
}
.fullwidth.fullwidth-light {
    background-color: var(--light-green);
}
.fullwidth.fullwidth-grey {
    background-color: var(--light-grey);
}
.fullwidth.fullwidth-cta {
    background-color: var(--cta-clr);
    color: #fff;
}

.fullwidth .fullwidth-content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    padding: 0px 40px;
    margin: 0 auto;
}
.fullwidth.fullwidth-padding .fullwidth-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.entry-content > .wp-block-lazyblock-fullwidth-section:last-child {
    margin-bottom: -8rem;
}
/* dark */
.fullwidth.fullwidth-dark h2,
.fullwidth.fullwidth-dark h3 {
    color: #fff;
}
/* overlay */
.fullwidth.overlay {
    position: relative;
}
.fullwidth.overlay::after {
    content: '';
    position: absolute;
    z-index: 1;
    top:0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,0.4);
}
/* parallax */
.fullwidth-parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.fullwidth-parallax .fullwidth-content {
    min-height: 400px;
}
.fullwidth.imageonly .fullwidth-content {
    height: 400px;
}
/* ios hack (hier funktioniert der parallax effekt nicht */
@supports (-webkit-hyphens:none){
    .fullwidth-parallax {
        background-attachment: local;
        background-size: auto;
    } 
}

/* fullwidth claim */
.fullwidth .claim {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 45px;
    font-weight: 900;
}
.fullwidth .claim span {
    padding: 0 10px; 
    color: var(--primary-clr);
    background: #fff;
    line-height: 1em;
}
.fullwidth .claim span:nth-child(even) {
    color: var(--cta-clr);
}

@media (min-width: 600px) {
    .fullwidth .claim {
        gap: 25px;
        font-size: 65px;
    }
}
@media (min-width: 800px) {
    .fullwidth .claim {
        gap: 30px;
        font-size: 85px;
    }
}
@media (min-width: 1200px) {
    .fullwidth .claim {
        gap: 30px;
        font-size: 100px;
    }
}


/*
.wp-block-lazyblock-fullwidth-section + .wp-block-lazyblock-fullwidth-section {
    margin-top: -6rem;
}
*/

/* .... SLIDESHOW (Hero und Content) .... */
.slideshow {
    position: relative;
}
.slideshow img {
    width: 100%;
    height: auto;
}
.slideshow .slide {
    position: relative;
}
.slideshow .slide img.line {
    position: absolute;
    top:0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
}
.slideshow .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 2rem;
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}
.slider .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 50px;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: all 0.5s;
    background-image: url("data:image/svg+xml,%3Csvg width='45' height='45' viewBox='0 0 45 45' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='22.5' cy='22.5' r='22.5' fill='%232A6C46' fill-opacity='0.2'/%3E%3Cpath d='M19.5937 8.89064C20.2065 8.48217 21.0342 8.64773 21.4427 9.26043L30.1094 22.2604C30.4079 22.7083 30.4079 23.2917 30.1094 23.7396L21.4427 36.7396C21.0342 37.3523 20.2065 37.5179 19.5937 37.1094C18.981 36.7009 18.8155 35.8731 19.224 35.2604L27.3971 23L19.224 10.7396C18.8155 10.1269 18.981 9.29911 19.5937 8.89064Z' fill='%2326713E'/%3E%3C/svg%3E%0A");
}
.slider .slick-arrow:hover {
    transform: scale(1.1);
}
.slider .slick-arrow::before {
    display: none;
}
.slider .slick-next { 
    right: -35px;
}
.slider .slick-prev {
    left: -35px;
    transform: rotate(180deg);
}
.slider .slick-prev:hover {
    transform: rotate(180deg) scale(1.1);
}

@media (min-width:768px) {
    .slider .slick-arrow {
        margin-top: -25px;
        width: 50px;
        height: 50px;
    }
    .slider .slick-next { 
        right: -40px;
    }
    .slider .slick-prev {
        left: -40px;
        transform: rotate(180deg);
    }
}
@media (min-width:1001px) {
    .slider .slick-next { 
        right: -50px;
    }
    .slider .slick-prev {
        left: -50px;
        transform: rotate(180deg);
    }
}
@media (min-width:1400px) {
    .slider .slick-arrow {
        margin-top: -30px;
        width: 60px;
        height: 60px;
    }
    .slider .slick-next { 
        right: -55px;
    }
    .slider .slick-prev {
        left: -55px;
        transform: rotate(180deg);
    }
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 20px;
    display: block;
    width: 100%;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    background: none !important;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    content: '';
    background: var(--darker-primary-clr);
    opacity: 0.4;
}
.slick-dots li.slick-active {
    width: 50px;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    width: 45px;
}


/* .... ANGEBOTE SLIDER .... */
.angebote {
    padding: 30px;
    border-radius: 15px;
}
.angebote.grey {
    background: var(--light-grey);
}
.angebote > .headline {
    margin-top: 0;
    margin-bottom: 15px;
}
.angebote .subline {
    font-size: 23px;
    font-weight: 500;
}
.angebote .slideshow {
    margin-top: 3rem;
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 60px;
}
.angebote .slideshow .slick-dots {
    bottom: 0;
}
.angebote .slide {
    padding: 0 15px;
}
.angebote .slide .inner {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    height: 100%;
}
.angebote .slide .imagewrap {
    position: relative;
    height: 0;
    padding-bottom: 100%;
}
.angebote .slide .imagewrap .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.angebote .slide .imagewrap .image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.angebote .pricebox {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    padding: 10px;
    background: var(--cta-clr);
    border-radius: 5px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em;
}
.angebote .pricebox > span {
    display: block;
}
.angebote .pricebox span.head {
    text-transform: uppercase;
    font-size: 14px;
}
.angebote .pricebox span.price {
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
}
.angebote .pricebox span.price span {
    display: inline-block;
}
.angebote .pricebox span.price .integer {
    font-size: 40px;
}
.angebote .pricebox span.price .decimal {
    font-size: 22px;
}
@media (min-width:1001px) {
    .angebote {
        padding: 40px;
    }
    .angebote .slide .inner {
        padding: 20px;
    }
}
@media (min-width:1500px) {
    .angebote.grey {
        margin-left: -40px;
        margin-right: -40px;
    }
}


/* .... ACCORDION .... */
.wp-block-lazyblock-accordion {
    margin-top: 2em;
    margin-bottom: 2em;
    padding-bottom: 2em;
}
.accordion-container,
.accordion-wrap {
    max-width: 1000px;
    margin: 0 auto;
}
.wp-block-lazyblock-accordion .grid-container {
    padding-left: 0;
}
button.accordion,
h3.accordion,
h3.accordion {
    position: relative;
    background-color: var(--light-grey);
    color: #000;
    cursor: pointer;
    margin: 0;
    padding: 10px 20px 8px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
}
button.accordion:hover,
button.accordion:focus,
h3.accordion:hover,
h3.accordion:focus {
    background-color: var(--darker-grey);
    color: var(--darker-primary-clr);
}
.wp-block-lazyblock-accordion button.accordion.active {
    color: var(--darker-primary-clr);
}
button.accordion:after,
h3.accordion:after {
    position: absolute;
    z-index: 1;
    top: 10px;
    right:15px;
    content: '';
    width: 28px;
    height: 28px;
    transform: rotate(90deg);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: all 0.5s;
    background-image: url("data:image/svg+xml,%3Csvg width='45' height='45' viewBox='0 0 45 45' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='22.5' cy='22.5' r='22.5' fill='%232A6C46' fill-opacity='0.2'/%3E%3Cpath d='M19.5937 8.89064C20.2065 8.48217 21.0342 8.64773 21.4427 9.26043L30.1094 22.2604C30.4079 22.7083 30.4079 23.2917 30.1094 23.7396L21.4427 36.7396C21.0342 37.3523 20.2065 37.5179 19.5937 37.1094C18.981 36.7009 18.8155 35.8731 19.224 35.2604L27.3971 23L19.224 10.7396C18.8155 10.1269 18.981 9.29911 19.5937 8.89064Z' fill='%2326713E'/%3E%3C/svg%3E%0A");
}
button.accordion.active:after,
h3.accordion.active:after {
    transform: rotate(-90deg);
}
button.accordion + .panel,
h3.accordion + .panel {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.accordion + .panel .panel-content {
    padding: 2rem 0;
    padding: 20px 20px 20px;
}
.accordion + .panel p {
    margin: 0 0 20px;
    max-width: 100% !important;
}


/* .... ACCORDION SORTIMENT .... */
.accordion-sortiment {
    margin-bottom: 2rem;
}
.accordion-sortiment.twocols {
    list-style: none;
    padding: 0;
    margin-left: 0;
}
.accordion-sortiment.twocols .wrap {
    margin-bottom: 15px;
}
.accordion-sortiment .gridtext {
    display: flex;
    align-items: center;
}
.accordion-sortiment .text {
    margin-bottom: 25px;
}
.accordion-sortiment ul {
    list-style: none;
    margin-left: 0 !important;
}
.accordion-sortiment ul li {
    position: relative;
    padding: 10px 0px 1px 35px;
    margin: 0 !important;
    background: transparent;
}
.accordion-sortiment ul li::before {
    content: "\e001";
    position: absolute;
    left: 0;
    top: 3px;
    font-family: "Font Awesome Kit";
    color: var(--primary-clr);
    font-size: 26px;
}

@media (min-width: 1000px) {
    .accordion-sortiment.twocols {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Zwei Spalten */
        gap: 20px; /* Abstand zwischen den Elementen */
    }
}




/* .... TEAM .... */
.team-card {
    background: transparent;
}

/* bild rechts */
.team-card.img-left {
    display: flex;
}
.team-card.img-right img {
    float: right;
}
/* kachel */
.team-tiles .tiles {
    display: flex;
    flex-direction: column; 
}
.team-tiles .tiles .image {
    display: flex;
    justify-content: center;
}
.team-tiles .tiles .text {
    text-align: center;
}
/* bild und text */
.team img {
    display: block;
}
.team .text {
    padding: 15px;
}
.team .text p.name {
    margin-bottom: 0;
    font-weight: bold;
}
.team .text .title {
    margin-bottom: 10px;
}

/* bild rechts */
.team-card.img-right:not(.noimage) {
    display: grid;
    grid-template-columns: 66.66666% 33.33333%;    
    gap: 1rem;
}
.team-card.img-right .image {
    order: 2; 
}
.team-card.img-right .text {
    order: 1; 
}

/* bild links */
.team-card.img-left:not(.noimage) {
    display: grid;
    grid-template-columns: 33.33333% 66.66666%;    
    gap: 1rem;
}
.team .img-left .text {
    text-align: left;
}


/* MULTIPLE */
.team-tiles.team-multiple .image {
    display: block;
    position: relative;
    margin-bottom: 1.3rem;
    padding-bottom: 60%;
    height: 0;
}
.team-multiple img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}


/* .... KONTAKT .... */
.entry-content .contact {
    margin-bottom: 2em;
}
.contact > div {
    display: flex;
    margin-top: 15px;
}
.contact .title {
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 0;
}
.contact i {
    margin-right: 6px;
    font-size: 20px;
    margin-top: -1px;
    color: var(--darker-primary-clr);
}
.contact .phone:hover i,
.contact .mail:hover i {
    opacity: 0.7;
}
main.site-main .contact p {
    margin-left: 0;
}

/* top bar */
.top-bar .contact {
    display: flex;
    gap: 2rem;
    font-size: 16px;
}
.top-bar .contact > div {
    margin-top: 0;
}
.top-bar .contact i {
    color: #fff;
}
.top-bar .contact .link i {
    margin-right: 0;
    font-size: 14px;
    margin-top: 1px;
}
.top-bar .contact .title {
    margin-bottom: 0;
    font-weight: 900;
    text-transform: uppercase;
}



/* .... TEASER .... */
.teaser {
    position: relative;
}
.teaser.teaser-more {
    padding-top: 1rem;
}
.teaser a.button-more {
    position: absolute;
    top: -4rem;;
    right: 0;
}

.nav-content .teaser {
    margin: 0;
}
.nav-content .teaser .headline {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--darker-primary-clr) !important;
    text-align: left;
}
.nav-content .teaserbox .text {
    text-align: left;
    font-size: 16px;
}
.nav-content .teaserbox a.more {
    font-size: 16px !important;
}
.nav-content .teaserbox a.more::before {
    margin-right: 1px;
}



/* .... TEASER .... */
.teaser.format-icons .grid {
    gap: 50px;
}

.teaserbox {
    padding: 0;
}
@media (min-width:700px) and (max-width:999px) {
    .teaser .grid-3 .teaserbox:last-child {
        grid-column: 1 / 3;
    }
}
.fullwidth .teaserbox {
    width: 100%;
    margin: 0 auto;
    border: none;
}
.teaser:not(.teaser-tiles) .image {
    margin-bottom: 20px;
}
.teaser.textalign-center .teaserbox {
    text-align: center;
}
.teaserbox h2,
.teaserbox h3,
.teaserbox h4 {
    margin-top: 15px;
    color: var(--primary-clr) !important;
    font-size: 22px;
    line-height: 1.2em;
}
.grid-2 .teaserbox h2,
.grid-2 .teaserbox h3,
.grid-2 .teaserbox h4 {
    font-size: 30px;
}
.teaserbox .text {
    margin-bottom: 15px;
}
.teaserbox .text p {
    margin-bottom: 0;
}
.teaserbox a.button {
    display: block;
    text-align: center;
    color: var(--cta-clr) !important;
}
.teaserbox img {
    width: 100%;
}

/* teaser slider */
.teaser-mobileslider {
    margin-left: -15px;
    margin-right: -15px;
}
.teaser-mobileslider .inner {
    padding-left: 15px;
    padding-right: 15px;
}
@media (max-width: 1400px) {
    .teaser-mobileslider {
        margin-left: 20px;
        margin-right: 20px;
    }
}
@media (max-width: 800px) {
    .teaser-mobileslider {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* teaser tiles */
.teaser-tiles .teaserbox {
    position: relative;
    min-height: 300px;
}
.teaser-tiles .teaserbox .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.teaser-tiles .teaserbox .image {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.teaser-tiles .teaserbox .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}
.teaser-tiles .teaserbox .textbox {
    position: relative;
    z-index: 10;
    max-height: 90px;
    background: rgb(0, 0, 0, 0.6);
    padding: 1rem;
    transition: all 0.5s ease-in-out;
}
.teaser-tiles .teaserbox .textbox h3 {
    margin: 0;
    color: #fff !important;
}
.teaser-tiles .teaserbox .textbox h3::after {
    display: none;
}
.teaser-tiles .teaserbox .textbox .text {
    height: 0;
    overflow: hidden;
    margin: 0;
    color: #fff;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.teaser-tiles .teaserbox:hover .textbox {
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.teaser-tiles .teaserbox:hover .text {
    height: auto;
    opacity: 1;
}
.teaser-tiles .teaserbox .textinner {
    padding-top: 15px;
}


/* ... BILD MIT TEXT .... */
.bild-text.grey {
    background: var(--light-grey);
    border-radius: 15px;
}
.bild-text:not(.fullwidth) {
    margin: 3rem 0;
}
.bild-text.img-right .text {
    order: -1;
}
.bild-text .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.bild-text .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 30px 2.5rem 0;
}
.bild-text.grey .text {
    padding-left: 30px;
}
.bild-text .text.center {
    justify-content: center;
}
.bild-text .text p {
    margin-left: 0;
}
@media (min-width:1001px) {
    .bild-text {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .bild-text.img-right .img img {
        border-radius: 0 15px 15px 0;
    } 
    .bild-text.img-left img {
        border-radius: 15px 0 0 15px;
    } 
    .bild-text.img-medium.img-left {
        grid-template-columns: 40% 60%;
    }
    .bild-text.img-medium.img-right {
        grid-template-columns: 60% 40%;
    }
    .bild-text .text {
        padding: 0rem 40px 0rem 0px;
    }
    .bild-text .text .inner  {
        max-width: 100%;
        margin-right: 0;
    }
    .fullwidth.bild-text .text .inner  {
        width: 620px;
    }
    .bild-text.img-left .text .inner  {
        margin-right: auto;
        margin-left: 0;
    }
}
@media (min-width:1200px) {
    .bild-text .text {
        padding: 4.5rem 50px 4.5rem 50px;
    }
    .bild-text.img-right .text {
        order: -1;
        padding-left: 40px;
    }
    .bild-text:not(.grey) .text {
        padding-left: 0;
        padding-top: 0;
    }
}
@media (min-width:1500px) {
    .bild-text.grey:not(.fullwidth) {
        margin: 3rem -40px;
    }
    .bild-text.grey.img-left:not(.fullwidth) {
        padding-left: 0;
    }
}

.bild-text .gallery a {
    display: block;
    position: relative;
}
.bild-text .gallery a::after {
    content: "\f002";
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 5px 8px 8px 8px;
    background: var(--cta-clr);
    color: #fff;
    font-family: "Font Awesome 7 Pro";
    display: inline-block;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    opacity: 0.9;
}
.bild-text .gallery a:hover::after {
    opacity: 1;
}


/* .... DOWNLOAD .... */
.downloads {
    margin: 2rem 0;
}
.download {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
}
.download .fas {
    font-size: 1.4rem;
    color: var(--primary-clr);
    margin-right: 10px;
}
.download a {
    line-height: 1.2em;
    font-size: 1.1rem;
}
.downloads.kataloge .download {
    flex-direction: column;
    gap: 0.5rem;
}
.downloads.kataloge .title {
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 700;
}
.downloads.kataloge .actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
}
.downloads.kataloge .actions a {
    display: inline-block;
    border: 1px solid var(--darker-cta-clr);
    border-radius: 20px;
    padding: 0px 15px;
    text-align: center;
    font-size: 22px;
    color: var(--darker-cta-clr);
    background: var(--darker-cta-clr);
    color: #fff;
}



.custom-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}
.custom-dropdown .label {
    margin-bottom: 1rem;
    font-weight: 700;
}

.dropdown-button {
    position: relative;
    width: 100%;
    padding: 10px 15px;
    background: transparent !important;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000 !important;
    font-weight: 700;
    font-family: var(--font-body);
}
.dropdown-button::after {
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 15px;
    content: '';
    width: 28px;
    height: 28px;
    transform: rotate(90deg);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: all 0.5s;
    background-image: url("data:image/svg+xml,%3Csvg width='45' height='45' viewBox='0 0 45 45' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='22.5' cy='22.5' r='22.5' fill='%232A6C46' fill-opacity='0.2'/%3E%3Cpath d='M19.5937 8.89064C20.2065 8.48217 21.0342 8.64773 21.4427 9.26043L30.1094 22.2604C30.4079 22.7083 30.4079 23.2917 30.1094 23.7396L21.4427 36.7396C21.0342 37.3523 20.2065 37.5179 19.5937 37.1094C18.981 36.7009 18.8155 35.8731 19.224 35.2604L27.3971 23L19.224 10.7396C18.8155 10.1269 18.981 9.29911 19.5937 8.89064Z' fill='%2326713E'/%3E%3C/svg%3E%0A");
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #000;
    border-top-color: #ddd;
    border-radius: 0 0 5px 5px;
    z-index: 1000;
    margin-top: -3px;
}
.dropdown-content.show {
    display: block;
}
.dropdown-option {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.dropdown-option:last-child {
    border-bottom: none;
}
.dropdown-option:hover {
    background-color: #f1f1f1;
}

@media (min-width: 601px) and (max-width:999px) {
    .downloads.kataloge .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .downloads.kataloge .grid {
        display: none; /* Grid ausblenden */
        margin-top: 2rem;
    }
}

/* mit flipbook */
.downloads.kataloge .df-popup-thumb {
    width: 100%;
    margin: 0 !important;
}
.downloads.kataloge .df-popup-thumb .df-book-wrapper,
.downloads.kataloge .df-popup-thumb .df-book-cover {
    box-shadow: none;
}
.downloads.kataloge .df-popup-thumb .df-book-wrapper .df-book-cover {
    border: 1px solid #ddd;
}
.downloads.kataloge .df-book-title {
    display: none;
}
/* hover */
.df-popup-thumb:hover .df-book-page1 {
    transform: rotateY(-1deg) rotateZ(0) !important;
}
.df-popup-thumb:hover .df-book-page2 {
    transform: rotateY(-7deg) rotateZ(0) !important;
}
.df-popup-thumb:hover .df-book-cover {
    -webkit-transform: rotateY(-11deg) rotateZ(0) !important;
    -moz-transform: rotateY(-11deg) rotateZ(0) !important;
    -ms-transform: rotateY(-11deg) rotateZ(0) !important;
    transform: rotateY(-11deg) rotateZ(0) !important;
}

/* .... HERO .... */
#hero {
    position: relative;
    z-index: 5;
    margin-bottom: 4rem;
}
#hero.hero-nomargin {
    margin-bottom: 0;
}
#hero img {
    display: block;
	width: 100%;
}

/* fullscreen */
#hero.fullscreen {
    height: calc(100vh - 120px);
}

@media (min-width: 1101px) {
    #hero {
        margin-top: -2rem;
    }
    #hero.fullscreen {
        height: calc(100vh - 222px);
    }
}
#hero.fullscreen img.hero-img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den Bereich, ohne Verzerrung */
    z-index: 1;
}
/* fullscreen end */

#herotextbox {
    position: relative;
    z-index: 10;
    margin-bottom: 6rem;
}
#herotextbox .grid-container {
    display: block;
    padding: 0;
}
#herotextbox .content {
    padding: 30px 40px;
    border-radius: 15px;
    background: var(--primary-clr);
    color: #fff;
}
#herotextbox .headline {
    margin: 0 0 20px; 
    color: #fff;
    font-weight: 900 !important;
    font-size: 40px !important;
}
#herotextbox .text h2 {
    margin-top: 0;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
}
@media (max-width: 600px) {
    #herotextbox {
        margin-top: 0 !important;
        margin-left: -40px;
        margin-right: -40px;
    }
    #herotextbox .content { 
        border-radius: 0;
    }
}
@media (min-width: 601px) and (max-width: 800px) {
    #herotextbox {
        padding-top: 50px;
    }
}
@media (min-width: 1000px) {
    #herotextbox .headline {
        font-size: 45px !important;
    }
}
@media (min-width: 1600px) {
    #herotextbox .headline {
        font-size: 50px !important;
    }
}

/* .... SAISONKALENDER .... */
.saisonkalender {
    margin-bottom: 5rem;
}
.saisonkalender .tablewrap {
    overflow: scroll;
}
.saisonkalender table {
    width: auto;
}
.saisonkalender thead {
    background: var(--light-green);
}
.saisonkalender thead th {
    padding-left: 15px;
    padding-right: 15px;
}
.saisonkalender thead th.sorte {
    text-align: left;
}
.saisonkalender tbody td:not(.sorte) {
    text-align: center;
}
.saisonkalender tbody td.sorte {
    width: 270px;
    padding-left: 15px;
}
.saisonkalender .notes {
    margin-left: 1px;
}
.saisonkalender .notes p {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
    font-size: 15px;
} 
.saisonkalender tbody td:not(.sorte)::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
}
.saisonkalender .notes p::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
}
.saisonkalender tbody td.fresh::before,
.saisonkalender .notes p.notefresh::before {
    border: 1px solid var(--primary-clr);
    background: var(--primary-clr);
}
.saisonkalender tbody td.stock::before,
.saisonkalender .notes p.notestock::before {
    border: 1px solid var(--primary-clr);
}
.saisonkalender tbody td.notavailable::before,
.saisonkalender .notes p.notenotavailable::before {
    width: 10px;
    height: 2px;
    background: var(--cta-clr);
}
.saisonkalender .notes p.notenotavailable::before {
    margin: 0 2px 0 1px;
}
/* mobil */
.saisonkalender-list {
    grid-template-columns: repeat(13, 1fr);
    gap: 5px !important;
    font-size: 17px;
    margin-bottom: 3rem;
}
.saisonkalender-list div.sorte {
    padding-right: 15px;
}
.saisonkalender-list div.availability {
    font-weight: 800;
    text-align: center;
}
.saisonkalender-list div.fresh {
    background: var(--primary-clr);
    color: #fff;
}
.saisonkalender-list div.stock {
    color: var(--primary-clr);
    border: 1px solid var(--primary-clr);
}
.saisonkalender-list div.notavailable {
    opacity: 0.4;
}