/**
* Block Name: teaser_slider
*/



section.teaser_slider {
    overflow: hidden;
}

section.teaser_slider .container {
    margin: 0 auto;
    height: 100%;
}

section.teaser_slider .title {
    margin-bottom: 50px;
}


section.teaser_slider .swiper-container {
    overflow: visible;
    width: 100%;
    height: 100%;
}


@media (min-width: 1200px) {
    section.teaser_slider .swiper-container {
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
}



section.teaser_slider .swiper-slide {
    transition: all 300ms ease-in-out;
    position: relative;
    text-decoration: none;
}


section.teaser_slider .icon_wrapper {
    background: var(--alt-light-green);
    padding: 30px;
    height: 130px;
}

section.teaser_slider .icon_wrapper svg path {
    fill: var(--viridian);
}

section.teaser_slider .swiper_nav {
    gap: 22px;
    position: relative;
    z-index: 9;
}

section.teaser_slider .swiper_nav .button-next,
section.teaser_slider .swiper_nav .button-prev {
    -webkit-box-shadow: 0px 1px 2px 3px rgba(94, 112, 92, 0);
    box-shadow: 0px 1px 2px 3px rgba(94, 112, 92, 0);
    transition: box-shadow 200ms ease-in;
    border-radius: 100px;
}

section.teaser_slider .swiper_nav button {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 100px;
    cursor: pointer;
}

section.teaser_slider .swiper_nav button:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 3px;
}

section.teaser_slider .swiper_nav .button-next:hover,
section.teaser_slider .swiper_nav .button-prev:hover {
    box-shadow: 0 -1px 2px 0 rgba(58, 12, 57, 0.10) inset, 0 -2px 3px 0 rgba(255, 255, 255, 0.50), 0 0 5px 0 rgba(0, 0, 0, 0.15), 0 3px 6px 0 rgba(144, 25, 142, 0.06), 0 10px 30px 0 rgba(107, 54, 106, 0.08);
}

section.teaser_slider .swiper_nav .button-next svg rect,
section.teaser_slider .swiper_nav .button-prev svg rect {
    fill: var(--green);
}

section.teaser_slider .swiper_nav .button-next svg rect,
section.teaser_slider .swiper_nav .button-prev svg rect,
section.teaser_slider .swiper_nav .button-next svg path,
section.teaser_slider .swiper_nav .button-prev svg path {
    transform-origin: center;
    transition: fill 160ms ease-in, transform 200ms ease-in;
}

section.teaser_slider .swiper_nav .button-next:hover svg path,
section.teaser_slider .swiper_nav .button-prev:hover svg path {
    transform: scale(1.2);
}

section.teaser_slider .swiper_nav .button-next:hover svg rect,
section.teaser_slider .swiper_nav .button-prev:hover svg rect {
    fill: var(--viridian);
}

section.teaser_slider .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


@media (min-width: 992px) {
    section.teaser_slider .swiper-slide:nth-child(even) {
        transform: translateY(30px);
    }
}


@media (max-width: 992px) {
    section.teaser_slider .swiper-slide {
        transform: translateY(0) !important;
    }
}


@media (max-width: 992px) {


    section.teaser_slider .title {
        gap: 30px;
    }

    section.teaser_slider .title .btn-primary {
        margin-left: -5px;
    }
}

@media (max-width: 767px) {
    section.teaser_slider .title {
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-bottom: 0;
    }

    section.teaser_slider .title .swiper_nav {
        align-self: flex-start !important;
        width: 100%;
        justify-content: space-between;
    }

    section.teaser_slider .swiper-slide .caption span {
        width: 100%;
        align-items: flex-start;
    }
}