
/* Common CSS */
*{
    box-sizing: border-box;
  }
  body{
    margin: 0;
    padding: 0;
  }
  .area {
      width: 100%;
      float: left;
  }
  a,button,input,textarea {
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
  }
  a,a:hover,a:focus,a:active{
      text-decoration: none;
      outline: none;
      display: inline-block;
  }
  /* End of common CSS */
  
  /* Plugin custom css start from here */
  
  
  /*-- End of custom css --*/
  
  
  /*-- Media query CSS --*/
  
  @media(max-width:767px){
    
  }
  
  /*-- End of media CSS --*/
  