    .absoluteTop{
        top: -50px;
        left: 0;
    }

    .absoluteBottom{
        bottom: -10px;
        right: 0;
    }

    .absolute p{
        margin: 0;
        font-size: 250px;
        opacity: 15%;

        /* prevent text selection */
        -webkit-user-select: none; /* Safari */
        -ms-user-select: none; /* IE 10 and IE 11 */
        user-select: none; /* Standard syntax */

    }

    .referenz_head{
        display: flex;
        flex-direction: column;
        background-color: var(--color-back-header);
        border-top-left-radius: var(--banner-radius);
        border-top-right-radius: var(--banner-radius);
        justify-content: space-between;
    }
    .referenz_head h2 {
        line-height: 1em;
        color: var(--color-font-dark);
    }

    .referenz_bottom{
        background-color: var(--color-banner);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 5%;
        border-bottom-left-radius: var(--banner-radius);
        border-bottom-right-radius: var(--banner-radius);
    }
    .referenz_bottom > p{
        margin: 2.5rem 4%;
        width: fit-content;
    }

    .referenz_head * {
        text-align: center;
    }
    .centerText{
        text-align: center;
        z-index: 1;
    }

    /* Referenzen Karussell */
    .carousel {
        position: relative;
        margin: 2rem auto;
        overflow: hidden;
        color: var(--color-font-dark);
        width: 100%;
    }

    .carousel h2 {
        line-height: 3.5rem;
        margin-bottom: 1rem;
    }

    .carousel__viewport {
        overflow: hidden; 
        width: 100%;
    }

    .carousel__track {
        display: flex;
        transition: transform .5s ease;
    }

    .no-js .carousel__track {
        overflow-x: scroll;
        overflow-y: clip;
        margin: auto;
    }

    @media (min-width: 800px){
        .carousel__track {
            width: 60%;
        }

        .carousel__btn {
            opacity: 1 !important;
        }

    }

    .carousel__slide {
        flex: 0 0 100%;
        max-width: 100%;
        transition: all .6s ease;
        box-sizing: border-box;
        opacity: 0.5;
        transform: scale(0.85);
        filter: blur(2px);
    }

    .no-js .carousel__slide {
        opacity: 1;
        transform: scale(1);
        filter: none;
        padding: 0 1rem;
    }

    .carousel__slide.active {
        transform: scale(1);
        opacity: 1;
        filter: none;
    }

    .carousel__btn {
        position: absolute;
        top: 50%;
        opacity: .5;
        transform: translateY(-50%);
        background: white;
        border: none;
        cursor: pointer;
        padding: 12px;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1;
        width: 3.5rem;
        height: 3.5rem;
        display: flex;
    }
    .carousel__btn:hover,
    .carousel__btn:focus,
    .carousel__btn:active {
        opacity: 1;
    }

    .carousel__btn svg {
        width: 100%;
        height: 100%;
    }
    .carousel__btn path {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: #000;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 70px;
    }

    .carousel__btn--left {
        left: 10px;
    }

    .carousel__btn--right {
        right: 10px;
    }

    .carousel__indicators {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    .carousel__indicator {
        width: 10px;
        height: 10px;
        background-color: gray;
        border-radius: 50%;
        margin: 0 5px;
        transition: background-color 0.3s;
    }

    .carousel__indicator.active {
        background-color: white;
    }

    @media(max-width: 900px){
        .referenz_bottom{
            padding: 5% 0;
        }
    }