/* for scrollspy */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    color: #845D32;
    background: #ffffff;
    overflow: hidden;
    z-index: 1000;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
}

.menu-item.active {
    background: #845D32;
    color: #ffffff;
}

.menu-item:hover {
    color: #845D32;
}

.scroll-container {
  height: 100vh;
  width: 100%;
  overflow-y: auto;
}

/* header */


.header ul {
  list-style: none;
  overflow: hidden;
  z-index: 1000;
  position: absolute;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  float: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  font-size: 18px;
  z-index: 2;
  z-index: 1000;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}



/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 360px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


@media screen and (max-width: 1560px) and (min-width: 748px) {
        .ocultar-logo{
            display:none;
        }
    }

@media screen and (min-width: 748px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
	min-width: 800px;
  }
  .header .menu-icon {
    display: none;
  }
  .navbar {
    height: 60px;
  }
}

@media screen and (max-width: 748px) {
  .header .menu {
	margin-top: 60px;
	min-width: 100%;
  }
}

.center {
  float: left;
  margin-top: 7px;
  margin-left: 3%;
}



