
.bild-container {
    position: relative;
    width: 1000px;
    margin: 0 auto 100px;
}

.bild-container img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-rectangle {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 252, 0.3);
    z-index: 1;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-207.6%, -50%);
    font-size: 65px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

.text-links {
    color: #163b90;
}

.text-rechts {
    color: white;
}

.text-overlay-rechts {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(0%, -130%);
    font-weight: bold;
    font-size: 20px;
    text-align: start;
    z-index: 2;
}

.kampagnen-container {
    padding-top: 50px;
}

.kampagnen-abschnitt {
    display: flex;
    padding-bottom: 80px;
}

.logo-container {
    align-items: flex-start;
}

.logo-container img {
    width: 500px;
    height: auto;
}

.karusell-container {
    padding-top: 50px;
}


.karusell {
    position: relative;
    overflow: hidden;
    max-width: 90%;
    margin: 40px auto;
}

.karusell-track {
    display: flex;
    transition: transform 0.5s ease;
}

.karusell-item {
    min-width: 100%;
    text-align: center;
}

.karusell-item img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.karusell-item h3 {
    margin-top: 10px;
}

.karusell-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: black;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.karusell-btn.prev {
    left: 10px;
}

.karusell-btn.next {
    right: 10px;
}

.karusell-btn:hover {
    background: #333;
}




