  #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: #003043;
    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;
      color: black;
  }
*/
  .step {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vh - 60px);
    padding-top: 50vh;
  }

  .step.minimo {
    height: calc(25vh - 60px);
    margin-bottom: 0 !important;
  }

  .step.doppio {
    height: calc(150vh - 60px);
  }

  .step.triplo {
    height: calc(275vh - 60px);
  }


  .box_scrolly_text_cnt {
    margin: auto;
    width: 100%;
    max-width: 600px;
    position: relative;
    background-color: white;
    padding: 24px;
    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;
    color: black;
    line-height: 30px;
  }

  .box_scrolly_text_cnt p {
    margin-block-start: 0;
    margin-block-end: 0;
    text-align: center;
  }

  #scrolly .first_step {
    margin-bottom: 0;
    background-color: transparent;
  }

  .step:last-child {
    margin-bottom: 0;
  }

  #grafico-iframe {
    height: 100% !important;
  }

  .icona-omino {
    position: relative;
    display: inline-block;
    width: 30px;
  }

  .icona-omino::before {
    content: "";
    background-image: url(../img/icona-omino.svg);
    background-position: center center;
    background-size: 100%;
    position: absolute;
    width: 33px;
    height: 32px;
    transform: translate(-15px, -24px)
  }

  #skip_btn_cnt {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    height: 50px;
    width: 150px;
  }

  #skip_btn {
    outline: none;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #FFF;
    color: #FFF;
    text-align: center;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding: 5px 8px;
    text-transform: uppercase;
    opacity: 0;
  }

  @media screen and (max-width: 375px) {
    #scrolly {
      position: relative;
    }

    figure {
      width: 100vw;
      height: calc(100vh - 100px);
      position: relative;
    }

    #scrolly article {
      position: relative;
      padding: 0 15px;
      margin: 0 auto;
      width: 95%;
      max-width: 95%;
    }

    .box_scrolly_text_cnt {
      padding: 10px 20px;
    }

    .icona-omino::before {
      transform: translate(-17px, -22px);
    }
  }

  @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%;
    }

    .box_scrolly_text_cnt {
      padding: 30px 20px;
    }

    .icona-omino::before {
      transform: translate(-17px, -22px);
    }
  }