/*///////////////////////////////////////////
                   GLOBAL CSS
///////////////////////////////////////// */

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  body{
    font-size: 1em;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    position: relative;
    height: 100%;
    background: rgb(240, 240, 240);
    z-index: 1;
  }
  
  a,
  li{
    text-decoration: none;
  }
  
  img{
    display: block;
    max-width: 100%;
    max-height: 100%;
  }
  
  button,
  .fa{
    cursor: pointer;
  }
  
  li{
    list-style: none;
  }
  
  button,
  input,
  select,
  a{
    outline:none;
  }
  
  input,
  textarea{
    background: #f2f2f2;
    border: none;
  }