/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
  /* Location of the image */
  background-image: url(images/desk.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color:#464646;
 }
/*.logo{
  width: 188px !important;
  height: 132px !important;
}*/
/* For mobile devices */
@media only screen and (max-width: 767px) 
{
  body {
    background-image: url(images/mob.webp);
  }
}