body {

text-align: center;	
	background-color: #EFEEE7;	
	background-repeat: repeat-x;  
}

.hero {
  width: 100%;
  min-height: 500px;
  position: relative;
  top: 0;
  left: 0;
  background-image: url(imagens/0manha.png);
  /*background-image: linear-gradient(#01143e, #70b9d2);*/
 
}

.layer-1 {
  -webkit-animation: parallax_fg linear 20s infinite both;
          animation: parallax_fg linear 20s infinite both;
  background: url(imagens/1manha.png) 0 100% repeat-x;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto 500px;
}

.layer-2 {
  -webkit-animation: parallax_fg linear 30s infinite both;
          animation: parallax_fg linear 30s infinite both;
  background: url(imagens/2manha.png) 0 100% repeat-x;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto 180px;
}

.layer-3 {
  -webkit-animation: parallax_fg linear 55s infinite both;
          animation: parallax_fg linear 55s infinite both;
  background: url(imagens/4manha.png) 0 100% repeat-x;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto 500px;
}

.layer-4 {
  -webkit-animation: parallax_fg linear 75s infinite both;
          animation: parallax_fg linear 75s infinite both;
  background: url(imagens/3manha.png) 0 100% repeat-x;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto 220px;
}

.layer-5 {
  -webkit-animation: parallax_fg linear 95s infinite both;
          animation: parallax_fg linear 95s infinite both;
  background: url(imagens/5manha.png) 0 100% repeat-x;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto 200px;
}

.layer-6 {
  -webkit-animation: parallax_fg linear 120s infinite both;
          animation: parallax_fg linear 120s infinite both;
  background: url(imagens/6manha.png) 0 100% repeat-x;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto 500px;
}

.bike-1,
.bike-2 {
  background: url(imagens/bonde.png) 0 100% no-repeat;
  z-index: 1;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto 90px;
}

.bike-1 {
  -webkit-animation: parallax_bike linear 60s infinite both; /*parametro de velocidade do objeto em movimento*/
          animation: parallax_bike linear 60s infinite both;
}

/*.bike-2 {
  -webkit-animation: parallax_bike linear 15s infinite both;/*parametro de velocidade do objeto em movimento
          animation: parallax_bike linear 15s infinite both;*/
}

@-webkit-keyframes parallax_fg {
  0% {
    background-position: 2765px 100%;
  }
  100% {
    background-position: 550px 100%;
  }
}

@keyframes parallax_fg {
  0% {
    background-position: 2765px 100%;
  }
  100% {
    background-position: 550px 100%;
  }
}
@-webkit-keyframes parallax_bike {
  0% {
    background-position: -300px 100%;
  }
  100% {
    background-position: 2000px 100%;
  }
}
@keyframes parallax_bike {
  0% {
    background-position: -300px 100%;
  }
  100% {
    background-position: 2000px 100%;
  }
}


.dirigivel {
  background: url(imagens/dirigivel.gif) 0 100% no-repeat;
  z-index: 1;
  position: absolute;
  bottom: 400px; /*parametro que permite modificar a altura vertical do objeto em movimento*/
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto 100px;
}


.dirigivel {
  -webkit-animation: parallax_bike linear 95s infinite both;/*parametro de velocidade do objeto em movimento*/
          animation: parallax_bike linear 95s infinite both;
}

@-webkit-keyframes parallax_fg {
  0% {
    background-position: 2765px 100%;
  }
  100% {
    background-position: 550px 100%;
  }
}

@keyframes parallax_fg {
  0% {
    background-position: 2765px 100%;
  }
  100% {
    background-position: 550px 100%;
  }
}
@-webkit-keyframes parallax_dirigivel {
  0% {
    background-position: -300px 100%;
  }
  100% {
    background-position: 2000px 100%;
  }
}
@keyframes parallax_dirigivel {
  0% {
    background-position: -300px 100%;
  }
  100% {
    background-position: 2000px 100%;
  }
}

.logo {
  margin: 70px auto;
  position: absolute;
  z-index: 2;
  width: 100%;
}
.logo img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 700px) {
  .logo img {
    max-width: 90%;
  }
}

nav {
  background-color: #dbdac6;
  overflow: hidden;
}
nav ul {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
nav li {
  padding: 5px 5px;
}
@media (max-width: 700px) {
  nav li {
    width: 50%;
    text-align: center;
  }
}
nav a {
  /* Tilmelding: */
  font-weight: 600;
  font-size: 1.2em;
  /*text-transform: uppercase;*/
  color: #fff;
  
}

.dark-bg {
  background-color: #dbdac6;
  padding: 0px 0px;
}
.dark-bg img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}

.light-bg {
  background-color: #EFEEE7;
  padding: 5px 5px;
}
.light-bg img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}

.extra {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #12202F;
  letter-spacing: 0px;
  line-height: 27px;
  background-color: #EFEEE7;
}