 #clip_scroller {
   position: relative;
   width: 100%;
   /*background-image: url('https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg');
   background-repeat: no-repeat;
   background-size:400%;
        -webkit-animation: slidein 100s;
        animation: slidein 100s;

        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;

        -webkit-animation-direction: alternate;
        animation-direction: alternate; 
        */
  .ci-title {
    position: absolute;
    top:0;
    font-weight: 500;
    color: #FFF;
    color: rgb(255, 255, 255);
                transition: color 0.6s 
ease-in-out, height 0.6s 
ease-in-out, background-color 0.6s 
ease-in-out;
                font-size: 36px;
                line-height: 1.1;
                font-weight: 900;
                text-shadow: rgb(0, 0, 0) 2px 2px 8px;
  }
}
.clipper-media {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100vh;
  object-fit: cover;
  object-position: top right;
}

@-webkit-keyframes slidein {
  from {background-position: top; }
  to {background-position: 0px; background-size:400%}
}

@keyframes slidein {
  from {background-position: top; }
  to {background-position:  0px; background-size:400%}
}
 
.clipper {
  position: absolute;
  display: block;
  width: 100%;
}

.clipper.stuck {
  /*background-color: rgba(222,222,222,0.6);*/
}

.clipper-inner {
  border-top: 1px solid #000;
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  position: sticky;
  padding-top: 60px;
  padding-bottom: 60px;
}

.inner-title {
  display: flex;
  align-items: center;
  align-self: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  height: 60px
}

.clipper-text, .clipper-art {
  display: flex;
  flex-grow: 1;
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
.clipper-text-content {
  display: flex;
  flex-flow: column nowrap;
  width: 60%;
}
.clipper-art-content {
  background: #000;
  width: 320px;
  height: 240px;
  flex-shrink: 1;
  flex-grow: 0;
}
.locus[data-plugin='clipper'] {
  align-items: flex-start;
  align-content: flex-start;
  flex-grow: 0;
  overflow: visible;
  /*padding-top:40px;*/
}