html
{
  overflow-x: hidden;
  font-family: 'Nunito', sans-serif;
  height: 100%;

  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjEwMCUiIHkyPSIwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDYyMDY0IiBzdG9wLW9wYWNpdHk9IjAuNzEiLz4KICAgIDxzdG9wIG9mZnNldD0iODAlIiBzdG9wLWNvbG9yPSIjNjY5Y2NmIiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgIDxzdG9wIG9mZnNldD0iOTklIiBzdG9wLWNvbG9yPSIjN2RiOWU4IiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);

  background: -moz-linear-gradient(45deg,  rgba(6,32,100,0.71) 0%, 
              rgba(102,156,207,0) 80%, rgba(125,185,232,0) 99%);

  background: -webkit-gradient(linear, left bottom, right top, 
              color-stop(0%,rgba(6,32,100,0.71)), 
              color-stop(80%,rgba(102,156,207,0)), 
              color-stop(99%,rgba(125,185,232,0)));

  background: -webkit-linear-gradient(45deg, rgba(6,32,100,0.71) 0%,
              rgba(102,156,207,0) 80%,rgba(125,185,232,0) 99%);

  background: -o-linear-gradient(45deg, rgba(6,32,100,0.71) 0%,
              rgba(102,156,207,0) 80%,rgba(125,185,232,0) 99%);

  background: -ms-linear-gradient(45deg, rgba(6,32,100,0.71) 0%,
              rgba(102,156,207,0) 80%,rgba(125,185,232,0) 99%);

  background: linear-gradient(45deg, rgba(6,32,100,0.71) 0%,
              rgba(102,156,207,0) 80%,rgba(125,185,232,0) 99%);
              filter: progid:DXImageTransform.Microsoft.gradient(startColorstr
              ='#b5062064', endColorstr='#007db9e8',GradientType=1 );
}

body 
{
  background-color: #FFF;
  overflow-y: hidden;
  overflow-x: hidden;
  color: #575c7a;
  line-height: 1.5em;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  margin: 20px auto 0px auto;
  padding: 0;

  line-height: 1.5em;

  box-shadow: 0 0 15px 9px rgba(6, 32, 110, 0.75);
  border-radius: 20px;
}

.page
{
  position: relative;
  color: #575c7a;
  margin: 0px auto;
  text-align: center;
}

header
{
  text-align: left;
}

header a.logo
{
  display: inline-block;
  position: relative;
  background-repeat: no-repeat;
}

.page-content
{
  display: table;
}

.text-slide
{
  display: table-cell;
  vertical-align: middle;
}

article
{
  display: block;
  text-align: left;
  font-family: 'Nunito', sans-serif;
}

.canvas
{
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: -45px;
  position: relative;
}

#aboutCanvas
{
  animation:about 3s linear;
  -moz-animation:about 3s linear;
  -webkit-animation:about 3s linear;
}

#projectsCanvas
{
  animation:projects 3s linear;
  -moz-animation:about 3s linear;
  -webkit-animation:projects 3s linear;
}

#servicesCanvas
{
  animation:projects 3s linear;
  -moz-animation:about 3s linear;
  -webkit-animation:projects 3s linear;
}

#teamCanvas
{
  animation:services 3s;
  -moz-animation:about 3s linear;
  -webkit-animation:services 3s;
}

@keyframes about
{
  0% { transform: translate3d(-300px,   -0px,0); }
  30% { transform: translate3d(0px,   0px,0); }
}

@-webkit-keyframes about
{
  0%   {background:none; left:-300px; top:0px;}
  30%   {background:none; left:0px; top:0px;}
}

@keyframes projects
{
  0% { transform: translate3d(-300px,   -0px,0); }
  30% { transform: translate3d(0px,   0px,0); }
}

@-webkit-keyframes projects
{
  0%   {background:none; left:-300px; top:0px;}
  30%   {background:none; left:0px; top:0px;}
}

@keyframes services
{
  0% { transform: translate3d(-300px,   -0px,0); }
  30% { transform: translate3d(0px,   0px,0); }
}

@-webkit-keyframes services
{
  0%   {background:none; left:-300px; top:0px;}
  30%   {background:none; left:0px; top:0px;}
}

@keyframes team
{
  0% { transform: translate3d(-300px,   0px,0); }
  30% { transform: translate3d(0px,   0px,0); }
}

@-webkit-keyframes team
{
  0%   {background:none; left:-300px; top:0px;}
  30%   {background:none; left:0px; top:0px;}
}

nav
{
  width: 100%;
  display: block;
  position: absolute;
  z-index: 100;
  left: 0;
}

nav ul
{
  border-radius: 12px;
  background-color: rgba(6,32,110, 0.75);
  list-style-type: none; 
  text-align: right;
  padding: 5px;
  margin: 0;
}

nav li
{
  display: inline;
}

nav a
{
  color: #FFF;
  text-decoration: none;
  padding: 0.2em 1em;
  border-radius: 12px;
}

nav a:hover,
nav a:focus
{
  color: rgb(6, 32, 110);
}

nav .active > a, 
nav .active > a:hover, 
nav .active > a:focus
{
  border: none;
  margin: 0;
  color: #FFF;
  background-color: rgba(6,32,110, 0.9);
}

.footer
{
  position: absolute;
  color: #FFF;
  z-index: -99;
}

a img
{
  border: 0;
}
