.left-right-slider {
    background-color: var(--oth-black);
    padding: 0;
}

.slider-container {
    width: 100%;
    max-width: 1920px;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

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

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.slider-image.left,
.slider-image.right {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.slider-image.left {
    z-index: 1;
    clip-path: inset(0 0 0 50%);
}

.slider-image.right {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-2px);
}

.slider-handle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.text_container {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--oth-white);
    text-shadow: 3px 3px 9px black;
    z-index: 4;
}

.text_container h3 {
    font-size: 24px;
    text-align: center;
}

@media (max-width: 768px) {

    .slider-container {
    height: 60vh;
}
    
}