.process-wrapper {
    box-shadow: none;
    text-align: left;
    background-color: rgba(0, 0, 0, 0);
    border: 0 solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    position: -webkit-sticky;
    position: sticky;
    top: 10%;
    transform: none;
}

.process-box {
    z-index: -1;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: rotate(1deg);
}

.process-box.reverse {
    transform: rotate(-1deg);
}

.sticky-box {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
}