html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #000;
}
a {
  text-decoration: none;
  color: #245682;
}
a:hover {
  text-decoration: underline;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
body:not(:has(main)) section {
  height: 100vh;
}

header img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  height: auto;
}

main {
  margin: 0 auto;
  padding: 0 25px;
  max-width: 900px;
  color: #444;
  line-height: 1.65;
}
main h1,
main h2 {
  color: #000;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
main h1 {
  font-size: 2rem;
  border-bottom: 1px solid #e5e8eb;
  padding-bottom: 0.5rem;
}
main h2 {
  font-size: 1.25rem;
}
main p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
main ul {
  margin: 1rem 0 1rem 1.5rem;
}
main li {
  margin-bottom: 0.5rem;
}
main strong {
  color: #000000;
  font-weight: 500;
}
main p + h2 {
  margin-top: 2.5rem;
}

main section {
  align-items: normal;
}
main section h2 {
  margin: 2em 0 1em;
  width: fit-content;
  padding: 1em 2em;
  background: #f5f5f5;
  font-size: 18px;
  color: #474747;
}
main section ul {
  margin: 0 0 0 1em;
  display: flex;
  flex-wrap: wrap;
}
main section li {
  flex: 0 1 auto;
  width: 33%;
  margin: 0 0 1em;
}

.form-group {
  margin-bottom: 1rem;
}
form label {
  display: inline-block;
  margin-bottom: .5rem;
}
.font-weight-bold {
    font-weight: 700!important;
}
.text-uppercase {
  text-transform: uppercase!important;
}
.badge-warning {
    background-color: #ffc107;
    color: #212529;
}
.badge {
    border-radius: .25rem;
    display: inline-block;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    padding: .25em .4em;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
}
select {
    word-wrap: normal;
}
.form-control {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #495057;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    height: calc(1.5em + .75rem + 2px);
    line-height: 1.5;
    padding: .375rem .75rem;
    width: 100%;
}
.text-muted {
    color: #6c757d!important;
}
.d-none {
    display: none!important;
}
button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}
select.form-control[multiple], select.form-control[size], textarea.form-control {
    height: auto;
}
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}
.btn {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    color: #212529;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    text-align: center;
    user-select: none;
    vertical-align: middle;
}
.btn-primary {
    background-color: #245682;
    border-color: #245682;
    color: #fff;
}
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.btn-primary.focus, .btn-primary:focus, .btn-primary:hover {
    background-color: #1c4364;
    border-color: #193c5a;
    color: #fff;
}

footer {
  position: relative;
  margin: 25px 0 0;
  font-size: 1rem;
  text-align: center;
  color: #555;
}
body:not(:has(main)) footer {
  position: absolute;
  bottom: 0;
}
footer a {
  margin: 0 5px;
}
footer address {
  display: inline;
  font-style: normal
}
