#show {
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
#hide {
    height: 0;
    overflow: hidden;
    display: grid;
    column-gap: 60px;
    grid-template-columns: repeat(2,1fr);
}
#hide.active {
    position: static;
    height: auto;
}
.holder {
    width: 100%;
    margin-bottom: 40px;
}
.image-holder {
    position: relative;
}
.ba-slider {
    position: relative;
    overflow: hidden;
}
.ba-slider img {
    display: block;
    max-width: 100%;
    height: auto;
}
.resize {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 1;
}
.resize img {
    max-width: inherit;
}
.text-before, .text-after  {
    font-size: 14px;
    letter-spacing: .36px;
    line-height: 25px;
    font-weight: 600;
    background-color: transparent;
    position: absolute;
    bottom: 10px;
    padding: 0 16px;
    z-index: 1;
}
.text-before {
    left: 15px;
}
.text-after {
    right: 15px;
}
.text-after::after, .text-before::after {
    content: "";
    position: absolute;
    left: 0;
    background-color: #fff;
    opacity: .7;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
}
.handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    margin-left: -1px;
    background: #fff;
    cursor: ew-resize;
    z-index: 2;
}
.handle::after {
    content: "";
    transition: all .4s ease;
    background: url('../images/drag.svg') no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin: -25px 0 0 -25px;
    cursor: ew-resize;
}
@media(max-width: 640px) {
    #show {
        flex-direction: column;
    }
    #hide {
        grid-template-columns: repeat(1,1fr);
    }
}