:root {
  --custom-blue: #243453;
  --custom-yellow: #d3d513
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

.custom-navbar {
  background-color: var(--custom-blue);
  color: var(--custom-yellow);

  a {
    color: var(--custom-yellow);
  }

  a:hover {
    color: var(--custom-yellow);
    text-decoration: underline;
  }
}

.nav_logo {
  width: 58px;
  height: 70px;
}

.custom-toggler.navbar-toggler {
  width: 40px;
  height: 40px;
  border-color: var(--custom-yellow);
  background-image: url(
  "data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(211, 213, 19, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.dropdown-item:hover {
  background-color: rgb(45, 68, 106) !important;
}

.content {
  flex: 1;

  p {
    text-align: justify;
  }

  li {
    text-align: justify;
  }

  table {
    border: 1px solid black;

    tr {
      border: 1px solid black;

    }

    td, th {
      border: 1px solid black;
      padding: 5px;
    }
  }
}

.content_jobs {
  h5 {
    text-decoration: underline;
  }

   p {
     margin: 0;
   }

  hr {
    border: 1px solid black
  }
}

.footer_logo {
  width: 116px;
  height: 140px;
}

footer {
  display: flex;
  justify-content: center;
  background-color: var(--custom-blue);

  ul {
    list-style: none;

    a {
      color: var(--custom-yellow);
    }

    a:hover {
      color: var(--custom-yellow);
      text-decoration: underline;
    }
  }
}

.text-underline {
  text-decoration: underline;
}

/*Listas*/
.numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}

.numbered-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.numbered-list li::before {
  content: counter(item) ".";
  counter-increment: item;
  margin-right: 10px;
}

.link-list {
  text-decoration: none;
  color: inherit;
}

.roman-list {
  list-style-type: upper-roman;
}

/*Títulos de lei*/
.chapterLaw {
  font-weight: bold;
  margin-bottom: 0;
  padding: 0;
}

.chapterLaw-subtitle {
  font-weight: normal;
  margin-top: 0;
  padding: 0;
}