/*///////////////////////////////////////////////////////
// Teaser Slider
//////////////////////////////////////////////////////*/
.teaserSlider {
    position: relative;
    margin: 0 0 50px 0;
    overflow: hidden;
}
@media (min-width: 1025px) {
    .teaserSlider {
        margin: 0 0 143px 0;
    }
}
.teaserSlider__headline {
    text-align: center;
    margin: 0 0 26px 0;
    font-family: var(--fontfamily-din, sans-serif);
    color: var(--color-elvigray1);
    font-size: 1.6875rem;
    line-height: 1.875rem;
}
@media (min-width: 1025px) {
    .teaserSlider__headline {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}

/* Teaser Slider Tab-Menü */
.teaserSlider__tags {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin: 0 0 75px 0;
}
.teaserSlider__tags ul {
    list-style: none;
    display: flex;
}
.teaserSlider__tag {
    border: 1px solid var(--color-gray2);
    padding: 10px 20px 10px 20px;
    border-radius: 28px;
    margin: 0 10px 10px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.5s;
    font-size: 16px;
    line-height: normal;
}
.teaserSlider__tag:hover {
    border: 1px solid transparent;
    background: var(--button-background);
    color: var(--color-light);
}
.teaserSlider__tag:last-child {
    margin: 0 0 10px 0;
}
.teaserSlider__tag.active {
    background: var(--button-background);
    border-color: transparent;
    color: var(--color-light);
}
@media (max-width: 1024px) {
    .teaserSlider__tags {
        margin: 0 0 25px 0;
    }
    .teaserSlider__tag {
        padding: 6px 14px 6px 14px;
    }
}

/* Teaser Sliders */
.teaserSlider__container {
    width: calc(100% + 10px);
    transform: translateX(-5px);
}
@media (min-width: 1025px) {
    .teaserSlider__container {
        width: calc(100% + 20px);
        transform: translateX(-10px);
    }
}
@media (min-width: 1500px) {
    .teaserSlider__container {
        width: 100%;
        max-width: 1460px;
        padding: 0;
        transform: none;
    }
}
.teaserSlider__slider {
    position: relative;
    display: none;
}
.teaserSlider__slider:first-child {
    display: block;
}
.teaserSlider__slider .slick-list {
    overflow: visible;
}
.teaserSlider__slider .slick-track {
    display: flex !important;
}
.teaserSlider__slider .slick-slide {
    padding: 0 6px 0 5px;
}
@media (min-width: 1025px) {
    .teaserSlider__slider .slick-slide {
        padding: 0 10px;
    }
}
.teaserSlider__slider [aria-hidden="true"] {
    opacity: 0.25;
}
.teaserSlider__slider .slick-slide > div {
    height: 100%;
}
.teaserSlider__slider .slick-arrow {
    display: none;
    position: absolute;
    left: 30px;
    top: 50%;
    width: 53px;
    height: 53px;
    margin: -27px 0 0 0;
    z-index: 1;
    font-family: var(--fontfamily-din, sans-serif);
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    color: transparent;
    background-color: var(--color-light);
    cursor: pointer;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    border: 0;
    border-radius: 50%;
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}
@media (min-width: 1025px) {
    .teaserSlider__slider .slick-arrow {
        display: inline-block;
    }
}
.teaserSlider__slider .slick-arrow:hover {
    background-color: var(--color-elvipurple);
}
.teaserSlider__slider .slick-arrow.slick-prev {
    left: 6px;
    background-image: url('../../Icons/icon_arrow_left.svg')
}
.teaserSlider__slider .slick-arrow.slick-next {
    left: auto;
    right: 6px;
    background-image: url('../../Icons/icon_arrow_right.svg');
}
.teaserSlider__slider .slick-arrow.slick-prev:hover {
    background-image: url('../../Icons/icon_arrow_left_white.svg')
}
.teaserSlider__slider .slick-arrow.slick-next:hover {
    background-image: url('../../Icons/icon_arrow_right_white.svg');
}
.teaserSlider__slider.mouseleft .slick-arrow.slick-prev {
    opacity: 1;
    pointer-events: all;
}
.teaserSlider__slider.mouseright .slick-arrow.slick-next {
    opacity: 1;
    pointer-events: all;
}
@media (min-width: 1200px) {
    .teaserSlider__slider .slick-arrow.slick-prev {
        left: -12px;
    }
    .teaserSlider__slider .slick-arrow.slick-next {
        right: -12px;
    }
}
@media (min-width: 1500px) {
    .teaserSlider__slider .slick-arrow.slick-prev {
        left: -64px;
    }
    .teaserSlider__slider .slick-arrow.slick-next {
        right: -64px;
    }
}
@media (min-width: 1640px) {
    .teaserSlider__slider .slick-arrow.slick-prev {
        left: -86px;
    }
    .teaserSlider__slider .slick-arrow.slick-next {
        right: -86px;
    }
}
@media (min-width: 1920px) {
    .teaserSlider__slider .slick-arrow.slick-prev {
        left: -210px;
    }
    .teaserSlider__slider .slick-arrow.slick-next {
        right: -210px;
    }
}
.teaserSlider__slider .slick-arrow.slick-disabled {
    opacity: 0 !important;
    pointer-events: none !important;
}
.teaserSlider__teaser {
    position: relative;
    display: flex !important;
    width: auto;
    height: 100%;
    aspect-ratio: 5 / 9;
}
.teaserSlider__teaser-inner {
    padding: 30px;
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-light);
    background-color: transparent;
    text-decoration: none;
}
.teaserSlider__teaser--large {
    aspect-ratio: auto;
    align-items: normal;
}
.teaserSlider__teaser--largesibling {
    opacity: 0;
}
.teaserSlider__teaser.type2 .slick-slide:last-child {
    height: auto;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser--large {
        aspect-ratio: 10 / 9;
    }
}
.teaserSlider__teaser--additional {
    border: 0;
    padding: 14px;
    aspect-ratio: auto;
}
.teaserSlider__teaser--additional .teaserSlider__teaser-title {
    font-size: 1.625rem;
    line-height: 1.8125rem;
    margin: 0 0 6px 0;
    color: var(--color-elvigray1);
    padding: 0;
}
.teaserSlider__teaser--additional .teaserSlider__teaser-copy {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    color: var(--color-elvigray1);
}
.teaserSlider__teaser--additional .primaryButton {
    margin: 25px 0 0 0;
    padding: 4px 14px;
}
.teaserSlider__teaser-plusicon {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 16px;
    height: 16px;
    z-index: 30;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser-plusicon {
        right: 20px;
        top: 20px;
    }
}
@media (max-width: 767px) {
    .teaserSlider__teaser--additional .teaserSlider__teaser-title {
        font-size: 1.375rem;
        line-height: 1.5rem;
    }
}
.teaserSlider__teaser a {
    text-decoration: none;
}
.teaserSliderLink {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 50;
    opacity: 0;
}
.teaserSlider__teaser-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}
.teaserSlider__teaser.playing .teaserSlider__teaser-image {
    z-index: 10;
}
.teaserSlider__teaser-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 0%, transparent 40%);
    opacity: 0.3;
}
.teaserSlider__teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.teaserSlider__teaser-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.teaserSlider__teaser.playing .teaserSlider__teaser-video {
    z-index: 20;
}
.teaserSlider__teaser-video video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.teaserSlider__teaser-animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}
/*
.teaserSlider__teaser-animation path{
    vector-effect: non-scaling-stroke;
    stroke-width: 2px !important;
}
*/
.teaserSlider__teaser-animation svg {
    pointer-events: none;
    background: var(--gradient-pupils);
}
.company .teaserSlider__teaser-animation svg {
    background: var(--gradient-company);
}
.teacher .teaserSlider__teaser-animation svg {
    background: var(--gradient-teacher);
}
.teaserSlider__teaser-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.teaserSlider__teaser-icon {
    position: relative;
    width: 27px;
    height: 27px;
    padding: 4px;
    border-radius: 8px;
}
.teaserSlider__teaser-icon img, .teaserSlider__teaser-icon svg {
    width: 100%;
    height: auto;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser-icon {
        width: 40px;
        height: 40px;
    }
}
.teaserSlider__teaser-title {
    position: relative;
    padding: 0 0 0 8px;
    color: var(--color-light);
    font-size: 18px;
    line-height: 18px;
    font-family: var(--fontfamily-din), sans-serif;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser-title {
        font-size: 2rem;
        line-height: 2rem;
        padding: 0 0 0 12px;
    }
}
.teaserSlider__teaser-copy {
    position: relative;
    padding: 0 0 0 12px;
    color: var(--color-light);
    font-size: 1.3125rem;
    line-height: 1.5rem;
    font-family: var(--fontfamily-din);
}
.teaserSlider__teaser-copy p {
    font-size: 1.3125rem;
    line-height: 1.5rem;
    font-family: var(--fontfamily-ptsans);
}
.teaserSlider__teaser-location {
    position: relative;
    z-index: 2;
    padding: 0 0 0 16px;
    color: var(--color-light);
    font-size: 2rem;
    line-height: 2.5rem;
    font-family: var(--fontfamily-din);
    hyphens: auto;
    background-image: url("../../Icons/icon_lupe_grey.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: left center;
}
.teaserSlider__teaser .teaserSlider__teaser-button {
    position: relative;
    display: block;
    border: 1px solid var(--color-lightgray2);
    border-radius: 7px;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--color-darkgray2);
    text-align: center;
    background-color: var(--color-light);
    text-decoration: none;
    padding: 2px 10px;
    width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    .teaserSlider__teaser-icon {
        width: 36px;
        height: 36px;
        border-radius: 4px;
    }
}


.teaserSlider__teaser-copy p {
    font-size: 1.0625rem;
    line-height: 1.5rem;
}
/*
    TYPE 1 TEASER
*/
.teaserSlider__teaser .teaserSlider__teaser-inner {
    padding: 30px 20px 30px 20px;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser .teaserSlider__teaser-inner {
        padding: 30px 20px 36px 20px;
    }
}
.teaserSlider__teaser.type1 .teaserSlider__teaser-inner {
    padding: 21px 12px 21px 12px;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type1 .teaserSlider__teaser-inner {
        padding: 30px 20px 36px 20px;
    }
}
.teaserSlider__teaser.type1  .teaserSlider__teaser-inner:after {
    content: "";
    width: 100%;
    height: 9px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.9;
    background-color: var(--color-elvipurple);
    text-align: center;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type1  .teaserSlider__teaser-inner:after {
        height: 20px;
    }
}
.teaserSlider__teaser.type1 .teaserSlider__teaser-title span {
    position: relative;
    display: block;
    margin-top: 2px;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type1 .teaserSlider__teaser-title span {
        margin-top: 4px;
    }
}
.teaserSlider__teaser.type1 .teaserSlider__teaser-title--multiline span {
    margin-top: -2px;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type1 .teaserSlider__teaser-title--multiline span {
        margin-top: -3px;
    }
}
.teaserSlider__teaser.type1 .teaserSlider__teaser-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.teaserSlider__teaser.type1:after, .teaserSlider__teaser.type1 .teaserSlider__teaser-icon {
    background-color: var(--color-elvigray1);
}
.teaserSlider__teaser.type1.elvipurple:after, .teaserSlider__teaser.type1.elvipurple .teaserSlider__teaser-icon {
    background-color: var(--color-elvipurple);
}
.teaserSlider__teaser.type1.elviblue:after, .teaserSlider__teaser.type1.elviblue .teaserSlider__teaser-icon {
    background-color: var(--color-elviblue);
}
.teaserSlider__teaser.type1.elvigreen:after, .teaserSlider__teaser.type1.elvigreen .teaserSlider__teaser-icon {
    background-color: var(--color-elvigreen);
}
.teaserSlider__teaser.type1.elvipink:after, .teaserSlider__teaser.type1.elvipink .teaserSlider__teaser-icon {
    background-color: var(--color-elvipink);
}
.teaserSlider__teaser.type1.elvimint:after, .teaserSlider__teaser.type1.elvimint .teaserSlider__teaser-icon {
    background-color: var(--color-elvimint);
}
.teaserSlider__teaser.type1 .teaserSlider__teaser-content {
    display: flex;
    align-items: flex-end;
}
.teaserSlider__teaser.type1 .teaserSlider__teaser-icontext {
    display: grid;
    grid-template-columns: 27px calc(100% - 27px);
    align-items: start;
    width: 100%;
}
.teaserSlider__teaser.type1.no-border {
    border: 0 !important;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type1 .teaserSlider__teaser-icontext {
        grid-template-columns: 40px calc(100% - 40px);
    }
}
@media (max-width: 767px) {
    .teaserSlider__teaser.type1 .teaserSlider__teaser-icontext {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .teaserSlider__teaser.type1 .teaserSlider__teaser-icon {
        margin-bottom: 5px;
    }
}
/*
    TYPE 2 TEASER
*/
.teaserSlider__teaser.type2 {
    padding: 252px 30px 30px 30px;
    border: 1px solid var(--color-lightgray2);
}
.teaserSlider__teaser.type2 .teaserSlider__teaser-image {
    height: 275px;
}
.teaserSlider__teaser.type2 .teaserSlider__teaser-icon {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 10px;
    width: 150px;
    height: 150px;
    border: 1px solid var(--color-lightgray2);
    border-radius: 7px;
    background-color: var(--color-light);
    margin: 0 0 28px 0;
}
.teaserSlider__teaser.type2 .teaserSlider__teaser-title {
    color: var(--color-darkgray2);
    font-size: 1.3125rem;
    line-height: 1.5rem;
    padding-left: 0;
}
.teaserSlider__teaser.type2 .teaserSlider__teaser-location {
    color: var(--color-darkgray2);
    font-size: 1rem;
    line-height: 1.5rem;
}
.teaserSlider__teaser.type2 .teaserSlider__teaser-button {
    margin: 60px 0 0 0;
}
/*
    TYPE 3 TEASER
*/
.teaserSlider__teaser.type3 {
    border: 0;
}
.teaserSlider__teaser.type3.teaserSlider__teaser--large {
    padding: 23px 23px;
}
.teaserSlider__teaser.type3.teaserSlider__teaser--large .teaserSlider__teaser-cop,
.teaserSlider__teaser.type3.teaserSlider__teaser--large .teaserSlider__teaser-copy p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type3.teaserSlider__teaser--large {
        padding: 76px 63px;
    }
    .teaserSlider__teaser.type3.teaserSlider__teaser--large .teaserSlider__teaser-cop,
    .teaserSlider__teaser.type3.teaserSlider__teaser--large .teaserSlider__teaser-copy p {
        font-size: 1.3125rem;
        line-height: 1.5rem;
    }
}
.teaserSlider__teaser.type3.no-border {
    border: 0 !important;
}
.teaserSlider__teaser.type3 .teaserSlider__teaser-copy {
    padding-left: 0;
}
.teaserSlider__teaser.type3 .teaserSlider__teaser-inner {
    display: flex;
}
.teaserSlider__teaser.type3 .teaserSlider__teaser-content {
    height: auto;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    position: absolute;
    bottom: 20px;
}
.teaserSlider__teaser.type3 .teaserSlider__teaser-icon {
    display: none;
}
.teaserSlider__teaser.type3 .teaserSlider__teaser-title {
    padding: 0;
}
.teaserSlider__teaser.type3 .teaserSlider__teaser-title {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 6px 0;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type3 .teaserSlider__teaser-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
        margin: 0 0 15px 0;
    }
}
.teaserSlider__teaser.type3 .teaserSlider__teaser-copy {
    font-size: 0.9375rem;
    line-height: 1.25rem;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type3 .teaserSlider__teaser-copy {
        font-size: 1.3125rem;
        line-height: 1.5rem;
    }
}
@media (max-width: 767px) {
    .teaserSlider__teaser.type3 .teaserSlider__teaser-copy {
        display: none;
    }
}
.teaserSlider__teaser.type3 .primaryButton {
    margin: 30px 0 0 0;
}
@media (min-width: 1025px) {
    .teaserSlider__teaser.type3 .primaryButton {
        margin: 60px 0 0 0;
    }
}
.teaserSlider__teaser.type3.textcolor0 .teaserSlider__teaser-title, .teaserSlider__teaser.type3.textcolor0 .teaserSlider__teaser-copy {
    color: var(--color-elvigray1);
}
.teaserSlider__teaser.type3.textcolor1 .teaserSlider__teaser-title, .teaserSlider__teaser.type3.textcolor1 .teaserSlider__teaser-copy {
    color: var(--color-light);
    width: calc(100% - 35px);
}
.teaserSlider__teaser.type3 .teaserSlider__teaser-icon {
    display: none;
}
/*
    TYPE 4 TEASER
*/
.teaserSlider__teaser.type4 .teaserSlider__teaser-content {

}
.teaserSlider__teaser.type4 > a {
    position: absolute;
    z-index: 10000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
}
.teaserSlider .cpListItem {
    display: flex !important;
    margin-bottom: 0;
    border-radius: 20px;
    height: 100%;
    border: 1px solid var(--color-lightgray2);
    padding: 0;
}
.teaserSlider .cpListItem.hasTopEntry {
    overflow: visible;
}
.teaserSlider .cpListItem.hasTopEntry .profileTopEntryBadge {
    margin-top: -7px;
}
.teaserSlider .cpListItem.hasTopEntry .cpItemContent {
    border: 0;
}
.teaserSlider .cpListItem .cpItemContent {
    padding: 70px 10px 80px 14px;
    border-radius: 0 0 20px 20px;
    height: auto;
    border: 0;
    height: 100%;
}
@media (min-width: 1025px) {
    .teaserSlider .cpListItem .cpItemContent {
        padding: 162px 10px 80px 30px;
    }
}
.teaserSlider .cpListItem .cpItemLogo {
    width: 70px;
    height: 70px;
    left: 14px;
    bottom: -60px;
    padding: 6px 10px 4px 10px;
}
@media (min-width: 1025px) {
    .teaserSlider .cpListItem .cpItemLogo {
        width: 150px;
        height: 150px;
        left: 30px;
        bottom: -127px;
        padding: 6px 30px 4px 30px;
    }
}
.teaserSlider .cpListItem .cpItemLocation span {
    color: var(--color-elvigray1);
    font-size: 0.75rem;
}
@media (min-width: 1025px) {
    .teaserSlider .cpListItem .cpItemLocation span {
        color: var(--color-elvigray1);
        font-size: 1rem;
    }
}
.teaserSlider .cpListItem .cpItemJobs span {
    color: var(--color-elvigray1);
    font-size: 0.75rem;
}
@media (min-width: 1025px) {
    .teaserSlider .cpListItem .cpItemJobs span {
        color: var(--color-elvigray1);
        font-size: 1rem;
    }
}
.teaserSlider .cpListItem .cpItemHeadline {
    margin-bottom: 6px;
}
@media (min-width: 1025px) {
    .teaserSlider .cpListItem .cpItemHeadline {
        margin-bottom: 10px;
    }
}
.teaserSlider .cpListItem .cpItemButton {
    width: calc(100% - 28px);
    left: 14px;
    bottom: 14px;
}
@media (min-width: 1025px) {
    .teaserSlider .cpListItem .cpItemButton {
        width: calc(100% - 60px);
        left: 30px;
        bottom: 30px;
    }
}
.teaserSlider .cpListItem .iconWrap {
    hyphens: auto;
}
@media (min-width: 1025px) {
    .teaserSlider .cpListItem .iconWrap {
        hyphens: none;
    }
}
.teaserSlider .cpItemHeadline a {
    font-size: 1.125rem;
    line-height: 1.1875rem;
}
@media (min-width: 1025px) {
    .teaserSlider .cpItemHeadline a {
        font-size: 1.3125rem;
        line-height: 1.5rem;
    }
}

.muteButton {
    position: absolute;
    z-index: 1100;
    right: 15px;
    bottom: 25px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
}
.muteButton span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: opacity 250ms linear;
}
.muteButton:not(.active) .on {
    opacity: 0;
}
.muteButton.active .on {
    opacity: 1;
}
.muteButton.active .off {
    opacity: 0;
}
.muteButton:not(.active) .off {
    opacity: 1;
}
@media (max-width: 767px) {
    .muteButton {
        right: 15px;
        bottom: 15px;
        width: 30px;
        height: 30px;
    }
}

.teaserSlider__teaser--additional.teaserSlider__teaser-inner {
    background: url("../../Images/teaser_bg_last.jpg") no-repeat center center / cover;
    height: 100%;
    padding: 30px 20px 36px 20px;
}