/* then and now */
.then-now-container-center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.then-now-container{
    /* width: 100%;
    height: 100%; */
    background: #fafafa;
}

.then-now-container img{
    /* object-fit: cover; */
    object-fit: fill;
}
.slider-handle-section {
    position: fixed;
    width: inherit;
    height: inherit;
}
.slider-handle{
    position: fixed;
    height: inherit;
    cursor: ew-resize;
}
.slider-handle:active{
    cursor: ew-resize;
}
.slider-handle-line{
    border-left: 2px solid #fff;
    height: calc(50% - 30px); 
}
.slider-handle-button {
    height: 60px;
    width: 60px;
    border: 2px solid #fff;
    margin-left: -30px;
    border-radius: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.slider-handle-button .arrow-left{
    width: 0px;
    height: 0px;
    border-top: 8px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 8px solid transparent;
}

.slider-handle-button .arrow-right{
    width: 0px;
    height: 0px;
    border-top: 8px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 8px solid transparent;
    transform: rotate(180deg);
}

@media only screen and (max-width: 768px) {
    .slider-handle-line{
        border-left: 1px solid #fff;
        height: calc(50% - 20px); 
    }
    .slider-handle-button{
        border: 1px solid #fff;
        width: 40px;
        height: 40px;
        margin-left: -20px;
    }
    .slider-handle-button .arrow-left{
        border-top: 6px solid transparent;
        border-right: 8px solid #fff;
        border-bottom: 6px solid transparent;
    }
    
    .slider-handle-button .arrow-right{
        border-top: 6px solid transparent;
        border-right: 8px solid #fff;
        border-bottom: 6px solid transparent;
    }
    
}