/**
* Block Name: hero_about
*/



section.hero_about {
    overflow: hidden;
}

section.hero_about .title span {
    font-weight: 500;
    font-size: 1rem;
}

section.hero_about .container {
    border-radius: var(--radius-medium);
}

section.hero_about .row {
    position: relative;
}

section.hero_about .box-with-herb {
    position: absolute;
    inset: 0;
    background: var(--white-alt);
    border-radius: var(--radius-medium);
    max-height: 615px;
    z-index: -1;
    pointer-events: none;
}

section.hero_about .swiper {
    position: relative;
    z-index: 1;
    overflow:visible;
}

section.hero_about .container {
    border-radius: var(--radius-medium);
}

section.hero_about .herb {
    left: 100px;
    top: 30px;
}



section.hero_about .swiper .swiper-slide {
    min-height: 560px;
    background: var(--white);
    border: 5px solid var(--subtle-green);
    border-radius: var(--radius-medium);
}

section.hero_about .swiper .swiper-slide .blog_slide,
section.hero_about .swiper .swiper-slide.text_slide {
    display: grid;
    grid-template-columns: 1fr 2fr;
    text-decoration: none !important;
    color: var(--black);
}

/* section.hero_about .swiper .swiper-slide.swiper-slide-prev,
section.hero_about .swiper .swiper-slide.swiper-slide-next {
    opacity: 0 !important;
} */


section.hero_about .swiper .swiper-slide .heading {
    gap: 10px;
    margin-bottom: 15px;
}


section.hero_about .swiper .swiper-slide .heading .label {
    background: var(--red);
    color: var(--white);
    border-radius: 6px;
    padding: 0 10px;
    font-weight: 400;
}

section.hero_about .swiper .swiper-slide .blog_slide .heading .label,
section.hero_about .swiper .swiper-slide .heading .label.grun {
    background: var(--green);
}

section.hero_about .swiper .swiper-slide .heading .date {
    opacity: 0.5;
}

section.hero_about .swiper .swiper-slide .text_content {
    padding: 30px;
}




section.hero_about .swiper .swiper-slide .image_content img {
    border-bottom-right-radius: var(--radius-small);
    border-top-right-radius: var(--radius-small);
    margin-bottom: 0;
}

section.hero_about .swiper .navigation {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, 0);
    z-index: 5;
    margin: 0;
    height: auto;
    background: var(--white-alt);
    padding: 10px;
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-medium);
    left: 45px;
}

section.hero_about .swiper .swiper-button-next,
section.hero_about .swiper .swiper-button-prev {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    height: 16px;
    width: 16px;
    aspect-ratio: 1/1;
    margin-top: 0;
    background-size: contain;
}

section.hero_about .swiper .swiper-button-next::after,
section.hero_about .swiper .swiper-button-prev::after {
    content: "";
}

section.hero_about .swiper .swiper-button-next svg,
section.hero_about .swiper .swiper-button-prev svg {
    display: none;
}

section.hero_about .swiper .swiper-button-prev {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.54497 7.62268L16.72 7.62268L16.72 9.62268L4.54497 9.62268L10.145 15.2227L8.71997 16.6227L0.719971 8.62268L8.71997 0.62268L10.145 2.02268L4.54497 7.62268Z' fill='%23039D64'/%3E%3C/svg%3E%0A");
}

section.hero_about .swiper .swiper-button-next {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.895 9.62268L0.719971 9.62268L0.719971 7.62268L12.895 7.62268L7.29497 2.02268L8.71997 0.622681L16.72 8.62268L8.71997 16.6227L7.29497 15.2227L12.895 9.62268Z' fill='%23039D64'/%3E%3C/svg%3E%0A");
}

section.hero_about .swiper .swiper-pagination {
    bottom: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    position: relative;
}

section.hero_about .swiper .swiper-pagination span.swiper-pagination-bullet {
    position: relative;
    background: var(--viridian);
    height: 5px;
    border-radius: 18px;
    width: 5px;
    /* base width is 95px as required */
    overflow: hidden;
    opacity: 1;
    transition: width 200ms ease-in;
}

section.hero_about .swiper .swiper-pagination span.swiper-pagination-bullet-active {
    width: 44px;
}

section.hero_about .swiper .swiper-pagination span.swiper-pagination-bullet-active .fill {
    background: var(--green);
    height: 5px;
    display: block;
}

/* Different color for 'wichtig' */
section.hero_about .swiper .swiper-pagination span.swiper-pagination-bullet.is-wichtig {
    background:  #ae614d ;
    /* outer dot */
}

section.hero_about .swiper .swiper-pagination span.swiper-pagination-bullet.is-wichtig .fill {
    background: #e8957e;
    /* inner progress bar */
}

@media (min-width: 1460px) {
    section.hero_about .swiper .navigation {
        left: 85px;
    }
}

@media (min-width: 993px) {
    section.hero_about .swiper .navigation {
        bottom: -15px;
    }
}

@media (max-width: 1199px) {
    section.hero_about .swiper .navigation {
        left: 30px;
    }
}

@media (max-width: 992px) {
    section.hero_about .title {
        padding-left: 15px;
        padding-right: 15px;
    }

    section.hero_about .swiper .swiper-slide .blog_slide,
    section.hero_about .swiper .swiper-slide.text_slide {
        grid-template-columns: 1fr;
        grid-template-rows: 250px auto;
    }

    section.hero_about .swiper .swiper-slide .text_content {
        order: 2;
    }

    section.hero_about .swiper .swiper-slide .image_content {
        order: 1;
    }

    section.hero_about .swiper .swiper-slide .image_content img {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-right-radius: var(--radius-small);
        border-top-left-radius: var(--radius-small);

        height: 100%;
    }

    section.hero_about .swiper .navigation {
        position: relative;
        bottom: -30px;
        left: 0;
        margin: 0 auto;
    }
}