/* Mobile scrolling: content flows naturally and the page can scroll vertically. */
@media (max-width:900px){
  html,body{
    height:auto!important;
    min-height:100%!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
  }
  body.home-page{
    height:auto!important;
    min-height:100svh!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
  }
  body.home-page main{
    height:auto!important;
    min-height:0!important;
    overflow:visible!important;
  }
  body.home-page .home-section{
    height:auto!important;
    min-height:0!important;
    overflow:visible!important;
    display:block!important;
  }
  body.home-page .home-layout{
    height:auto!important;
    min-height:0!important;
  }
  body:not(.home-page){
    height:auto!important;
    min-height:100svh!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
  }
  body:not(.home-page) main{
    height:auto!important;
    min-height:0!important;
    flex:0 0 auto!important;
    overflow:visible!important;
  }
  body:not(.home-page) main>.section,
  body:not(.home-page) main>.funding{
    height:auto!important;
    min-height:0!important;
    overflow:visible!important;
  }
}
