    #scrolly {
        position: relative;
        padding: 0;
    }

    #scrolly article {
        position: relative;
        padding: 0;
        margin: 0 auto;
    }

    figure {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        width: 100%;
        margin: 0;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        background-color: #ebe5e5;
        z-index: 0;
    }

    .step {
        margin: 0 auto 2rem auto;
        background-color: white;
        padding: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        -webkit-box-pack: flex-start;
        -ms-flex-pack: flex-start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    #scrolly .first_step {
        margin-bottom: 0;
        background-color: transparent;
    }

    .step:last-child {
        margin-bottom: 0;
    }
  
    #grafico-iframe{
        height: 100%!important;
    }
  @media screen and (max-width: 375px) {
    #scrolly {
        position: relative;
      }

    figure {
        width: 100vw;
        height: calc(100vh - 100px);
    }

    #scrolly article {
        position: relative;
        padding: 0 15px;
        margin: 0 auto;
        width: 95%;
        max-width: 95%;
    }
    .step {
        padding: 50px 20px;
    }
  }

  @media screen and (min-width: 376px) and (max-width: 768px) { 
    #scrolly {
      position: relative;
    }
  
    figure {
      width: 100vw;
      height: calc(100vh -100px);
    }
  
    #scrolly article {
      position: relative;
      padding: 0 15px;
      margin: 0 auto;
      width: 100%;
      max-width: 100%;
    }
    
    .step {
      padding: 50px 20px;
    }
  }
  