/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
    #ctl00_divPiePagina {
      font-size: 0.8em !important;
    }

    #ctl00_divPiePagina .phone-legi {
      font-size: 1.6em !important;
    }
  }
  
  /* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
  @media screen and (max-width: 600px) {
    #ctl00_divPiePagina {
      font-size: 0.6em !important;
    }

    #ctl00_divPiePagina .phone-legi{
      font-size: 1em !important;
    }
  }

  .site-footer {
    background: var(--pad-footer) !important;
}