html, body {
    position: relative;
}

h1, h2, h3, h4, p, a, span, ul, li {
    color: #FFF;
    font-family: 'Raleway', sans-serif;
}

p {
    font-size: 1em;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

header {
    height: 50px;
    position: fixed;
    top:0;
    right:0;
    left: 0;
    padding: 20px;
    z-index: 10;
}

header .brand img {
    max-width: 150px;
}

header .brand {
    display: inline-block;
    max-width: 50%;
    opacity: 1;
}

header .brand p {
    font-size: 2em;
}

header.change .brand {
    opacity:0;
}

/* Toggle Menu */

nav {
    float: right;
}

.toggle-icon {
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 28px;
    height: 3px;
    background-color: #FFF;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 20px;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 3px) ;
    transform: rotate(-45deg) translate(-6px, 3px) ;
    background-color: #ccc;
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-9px, -7px) ;
    transform: rotate(45deg) translate(-9px, -7px) ;
    background-color: #ccc;
}

/* hero section */

.hero {
    background-image: url("../images/campo-inedito-hero-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.center-block {
    text-align: center;
}

.hero h1 {
    font-size: 3em;
}

footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left:0;
    padding:20px;
    text-align: right;
    opacity: 1;
}

footer.change {
    opacity: 0;
}

footer p {
    font-size: 1em;
    line-height: 1.5em;
}

footer a {
    font-size: 0.9em;
    display: block;
    line-height: 1.5em;
    text-decoration: none;
}

footer a:hover { 
    text-decoration: underline;
}

.sidenav {
    height: 100%;
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    background-color: rgba(255,255,255,0.9);
    overflow-x: hidden;
    transition: 0.5s ease;
    padding-top: 60px;
    text-align:left;
    width: 100%;
    opacity: 0;
}

.sidenav.open {
    z-index: 5;
    opacity: 1;
    transition: 0.5s ease;
}

.sidenav img {
    max-width: 500px;
}

.sidenav * {
    color: #333;
}

.sidenav-content {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transition: 1s;
}

.sidenav.open .sidenav-content {
    opacity: 1;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.pages {
    display: table;
    width: 100%;
    counter-reset: page;
}

.pages > li {
    display: table-cell;
    width: 14.75rem;
    max-width: 100%;
    padding-right: 1.5em;
    box-sizing: border-box;
    letter-spacing: 0;
    font-size: 0.8em !important;
}

.page-title {
    border-bottom: 1px solid #333;
    font-weight: 700;
    position: relative;
    display: block;
    padding: 10px 0;
    text-transform: uppercase;
}

.pages > li ul > li {
    line-height: 2em;
}

.pages > li ul > li:first-child {
    padding-top: 10px;
}


ul, ol, dl {
    margin: 0;
    padding: 0;
    list-style-type: none;
    outline: none;
}

@media (max-width: 600px) {
  header .brand p {
    font-size: 1.5em;
  }
  header .brand {
      width: 70%;
  }

  .pages > li {
      display: block;
      width: 100%;
  }

  .sidenav-content {
    margin-bottom: 100px;
  }

}