.background-slide {
    background-color: #041C3F;
    position: relative;
    padding: 0 0 30px 30px;
    border-top-right-radius: 10px;
    direction: rtl;
}
figure {
    position: absolute;
    background-size: cover;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}
#comparison {
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
#divisor {
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    bottom: 0;
    height: 100%;
    background-position-x: right;

}

#divisor::before,
#divisor::after {
    content: '';
    position: absolute;
    left: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}
#divisor::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    background-color: #F5B904;
}

#divisor::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    background-color: #F5B904;
}
#handle {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(50%);
    z-index: 1;
    background-color: #041C3F;
    border-radius: 100px;
}
#handle::before,
#handle::after {
    content: '';
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

#handle::before {
    border-right: 6px solid white;
    left: 50%;
    margin-inline-end: -17px;
}

#handle::after {
    border-left: 6px solid white;
    right: 50%;
    margin-inline-start: -17px;
}
