.klartextmedia-simpleslider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    position: relative;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    height: 600px;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.slide-bg-blur {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.foreground-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.foreground-image {
    max-width: 22%;
    max-height: 60%;
    position: relative;
    transition: transform 0.3s ease-in-out;
    z-index: 5;
}

.foreground-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.foreground-image:hover {
    transform: scale(1.05);
    z-index: 6;
}

.slide-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 20px;
    max-width: 80%;
}

.slide-title {
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.slide-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.slide-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1979c3;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.slide-button:hover {
    background-color: #135d91;
    text-decoration: none;
    color: #fff;
}

.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 3;
}

.slider-prev,
.slider-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-pagination {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #fff;
}
