/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
  /* Location of the image */
  background-image: url(images/background-photo.jpg);

  /* Image is centered vertically and horizontally at all times */
  background-position: center center;

  /* Image doesn't repeat */
  background-repeat: no-repeat;

  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;

  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;

  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color: #464646;

  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

.demobtn {
  background: #f50000;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 17px;
  margin: 3px 0px;
}

.demobtn:hover {
  transform: scale(0.9);
  background: #f00;
  color: #fff;
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  body {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    background-image: url(images/background-photo-mobile-devices.jpg);
  }

  .abouttxt ul li {
    font-size: 14px;
    text-align: justify;
  }

  .headernav a,
  .headernav {
    display: none !important;
  }
}

@media screen and (min-width: 767px) {
  .mobile-container {
    display: none;
  }
}

.navLogo {
  width: 50px;
  height: 50px;
  display: flex;
  margin-right: 100px;
}

.navLogo a:hover,.navLogo a:focus {
	background-color: none !important;
}

.navLogo::after {
  width: 52px;
  height: 52px;
}

.copyright1 {
    background: rgba(0,0,0,0.9);
    margin: 30px -15px -15px;
    padding: 5px;
	border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.copyright {
    background: rgba(0,0,0,0.9);
    margin: 30px -5px -20px;
    padding: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media screen and (max-width: 767px) {
  .logo {
    display: none;
  }
}

@media screen and (max-width: 572px) {
  .copyright {
    margin: 30px -5px -9px;
  }
}