@charset "UTF-8";

*{
  margin: 0;
  padding: 0;
}

.dropbtn {
  background-color: #E1F1F9;
  color: #002DB2;
  font-weight: bold;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:focus {
  border: none;
  outline: none;
}

.dropbtn:hover {
  background-color: #E1F1F9;
  color: #001A66;
  text-decoration: none;
}

.dropdown {
  position: relative;
  display: inline-block;  
}

.dropdown:focus {
  border: none;
  outline: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #E1F1F9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  background-color: #E1F1F9;
  color: #002DB2;
  padding: 12px 16px;
  text-decoration: none;
  width: 150px;
  display: block;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.dropdown-content a:hover {
  background-color: #E1F1F9;
  color: #001A66;
  text-decoration: none;
}

.dropdown a {
  color: #002DB2;
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.dropdown a:hover {
  background-color: #E1F1F9;
  color: #001A66;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #E1F1F9;
}

.header {
  background-color: #E1F1F9;
  display: block;
  width: 100%;
  position: absolute;
  z-index: 1; 
}

.menu {
  width: 100%;
  display: inline-flex;
  background-color: #E1F1F9;
  position: fixed;
}

.assunto {
  width: 80%;
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.logo {
  width: 19%;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-left: 3%;
  padding-left: 2%;
}

.logo img {
  width: 100%;
}

label[for="bt_menu"]{
  padding: 5px;
  padding-bottom: 0px;
  background-color: #E1F1F9;
  color: #001A66;
  text-align: center;
  cursor: pointer;
  width: 50px;
  height: 40px;
  display: none;
  margin-bottom: 0px;
  position: fixed;
  z-index: 20000;
}

#bt_menu{
  display: none;
  position: fixed;
}

.separador {
  height: 90px;
}

@media(max-width: 800px) {
  .separador {
    height: 40px;
    background-color: #E1F1F9;
  }

  .logo img {
    max-width: 150%;
  }

  label[for="bt_menu"] {
    display: block;
    transition: .4s;
  }

  #bt_menu:checked ~header {
    margin-left: 0;
    margin-bottom: 1px;
    margin-top: 41px;
  }

  .menu {
    display: block;
  }

  #bt_menu:checked ~label[for="bt_menu"]{
    width: 100%;
    background-color: #E1F1F9;
    position: fixed;
  }

  #bt_menu:checked ~.separador {
    height: 175px;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .img-logo {
    width: 50%;
  }

  .img-logo img {
    width: 50%;
  }

  .header {
    margin-top: 5px;
    margin-left: -100%;
    transition: all .4s;
    margin-bottom: -100%;
    z-index: 5000;
  }

  .dropbtn {
    width: 100%;
    float: none;
    text-align: center;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: absolute;
    max-height: 0;
    top: -350%;
    left: 70%;
    transition: all .4s;
    display: none;
    background-color: #E1F1F9;
    text-align: center;
  }

  .dropbtn a:hover .dropdown-content{
    height: auto;
    max-height: 200px;
    display: block;
    background-color: #E1F1F9;
  }
}