@charset "UTF-8";
.navigation {
  height: 68px;
  background: #917121;
  margin-top: 100px;
  /* margin-bottom:10px;*/
}

.brand {
  position: absolute;
  padding-left: 200px;
  float: left;
  margin-top: 5px;
}
.themis{
  float: right;
  margin: 6px 100px;
}
/* selected link */
a.active {
  background-color: #443205;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
}

nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 12px;
  line-height: 47px;
  background: #917121;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 15px;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: #443205;
  color: #ffffff;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
   /*content: ' ▾'; */
}
nav ul li ul li {
  min-width: 360px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

nav ul li ul{
  display: none;

}

nav ul li:hover ul{
  display: block;
  margin: 0;
  position: absolute;
  padding: 0;
  left: 0;
  z-index: 1000;
  min-width: 150px;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 132px;
  right: 16px;
  /* background: #262626;*/
  height: 50px;
  width: 50px;
}

@media only screen and (max-width: 798px) {
  .nav-mobile {
    display: block;
  }
  nav ul li:hover ul{
    position: initial;
  }
  .brand {
    position: absolute;
    margin-left: -140px;
    margin-top: 5px;
  }
  .topo-menu{
    float: right;
    margin-right: 0px;
    margin-top: 10px;
    font-size: 12px;
    font-family: sans-serif;
    color: white;
    letter-spacing: 2px;
    text-align: center;
  }
  .fundo-menu{
    background-color: black;
    height: 60px;
  }
  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }

  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: 799px) {
  .nav-list {
    display: block !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 47px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}

.button.secondary {
  background-color: #767676;
  color: #fefefe;
}

.input-group-button a, .input-group-button input, .input-group-button button, .input-group-button label{
  height: 2.3rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem;

}

.input-group {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.input-group-button {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}



.input-group-field {
    border-radius: 0;
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
    min-width: 0;
}
.input-group-rounded .input-group-button .button {
    border-radius: 0 5000px 5000px 0;
    font-size: 0.8rem;
}

.input-group-rounded .input-group-field {
  border-radius: 5000px 0 0 5000px;
  padding-left: 1rem;
}

