@charset "UTF-8";
#verticalScroll{
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
.sticky_head {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #ccc;
  padding: 15px 0px;
}
#verticalWrap > * > *{
  position: relative;
}
.verticalImgDiv{
  background-size: cover;
  width: 100vw;
  height: auto;
  position: relative;
  z-index: 1;
}
.vertical {
  position: sticky;
  top: 0;
  z-index: 2;
}
@media screen and (min-width: 768px){
  #verticalScroll,
  .vertical,
  .verticalImgDiv{
    position: initial;
    transition: all .1s;
  }
}