.footer{
  font-size: 50px;
  @media @md-screen, @media @sm-screen {
        font-size: 30px;
    }
    @media @xs-screen {
        font-size: 40px;
    }
}/*  For Large devices Desktops */
@lg-screen: ~"only screen and (max-width:@{screen-lg})";
/*  For Medium devices Desktops */
@md-screen: ~"only screen and (max-width:@{screen-md})";
/*  For Small devices Tablets*/
@sm-screen: ~"only screen and (max-width:@{screen-sm})";
/*  For Phones*/
@xs-screen: ~"only screen and (max-width:@{screen-xs})";
/*  For Retina*/
@retina-screen: ~"only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5)";