.js-fade {
    will-change: transform;
    -webkit-transform: translate(0,10vh);
    transform: translate(0,10vh);
    opacity: 0;
    -webkit-transition: all 1.2s cubic-bezier(.175,.885,.32,1.275),opacity .3s linear;
    transition: all 1.2s cubic-bezier(.175,.885,.32,1.275),opacity .3s linear
  }
  .js-fade2 {
    will-change: transform;
    -webkit-transform: translate(0,10vh);
    transform: translate(0,10vh);
    opacity: 0;
    -webkit-transition: all 1.2s cubic-bezier(.175,.885,.32,1.275),opacity .3s linear;
    transition: all 1.2s cubic-bezier(.175,.885,.32,1.275),opacity .3s linear
  }
  .inview {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    opacity: 1;
 
  }

  .main-open{
    width: 400px;
  }

  .opacity-35{
    opacity: 1;
    transition: all 2s;
    transition-delay: 4s;
  }