html, body, section, ul, li, p, a, span {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  font-family: 'Nunito Sans', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.33s linear;
  transition: 0.33s linear;
}

a:hover {
  color: #707070;
  text-decoration: none;
}

p.title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 2rem;
}

p.content {
  font-weight: 300;
}

.content {
  padding: 5px;
}

@media (min-width: 1024px) {
  .content {
    padding: 25px 10px;
  }
}

.btn.btn-action {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 3px 15px;
  cursor: pointer;
}

.btn.btn-action:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.25);
}

/*HEADER**************/
header {
  min-height: 100px;
  background-color: #fff;
  border-bottom: 1px solid rgba(112, 112, 112, 0.05);
  padding: 5px;
}

@media (min-width: 1024px) {
  header {
    padding: 20px 0;
  }
}

header nav.navigation {
  z-index: 1000;
}

header .navigation ul.maniNav > li > a.active {
  color: #707070;
}

.header__logo img {
  width: 100%;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.header__menu ul {
  color: rgba(112, 112, 112, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header__menu ul li {
  padding-right: 20px;
  font-weight: bold;
}

ul#menuMobile {
  display: none;
}

ul#menuMobile.menuShow {
  display: block;
}

/*CONTENT*************/
section.content {
  min-height: 40vh;
}

/*FOOTER**************/
footer {
  background-color: #000;
  padding: 25px 0;
}
/*# sourceMappingURL=main.css.map */
