.home-industry-icon {
	position: inherit;
}

.community-items > a {
	font-size: 18px;
	color: #444;
}

.blog-content a {
	padding: 3px;
	color: #f44d3c;
	text-decoration: none;
}

.blog-content a:hover {
	color: #999;
}

#home, #clients, #hiring {
  background-color: rgba(0,0,0,0.7);
  color:#fff;
  font-family: 'Bitter', serif;
}

#blog {
  background-color: #f6f6f6;
  color:#444;
}

#services {
  background-color: #fff;
}

#clients {
  background-color: rgba(0,0,0,0.9);
}

#welcome {
  background-color: #fff;
}

#drawing {
  min-height: 1500px;
}

svg {
  width: 100%;
  height: auto;
  min-height: 1000px;
}

#path {
  stroke-dasharray: 100;
  animation: dash 5s linear;
}

footer .nav>li a {
    padding: 3px;
    color: #f44d3c;
}

footer .nav>li a:hover {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}

#hiring a {
    padding: 3px;
    color: #f44d3c;
}

#hiring a:hover {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}