* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-800: #1c3661;
  --blue-500: #00a0d3;
  --purple-400: #645faa;
  --red-500: #ed1c24;
  --yellow-600: #e5a812;
  --white-200: #f2f2f2;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }
}

html {
  background: var(--blue-800);
}

body {
  position: relative;
  min-height: 100vh;
  color: var(--white-200);
}

body,
input,
textarea,
select,
button,
.Toastify__toast-body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

button {
  cursor: pointer;
}

h1{
  font-size: 2rem;
  margin-bottom: 30px;
}

.badge {
    padding: 0.4em .65em;
    line-height: 120%;
}

.badge-custom{
  background: #00A0D3;
}

.badge-custom-warning{
  background: #E5A812;
}

hr:not([size]) {
    height: 2px;
    margin: 20px 10px;
}

section {
  min-height: 100vh;
}

#scrollspyMain,
#scrollspyAboutEvent{
  border-bottom: 2px solid rgba(255,255,255,.2);  
}


/* width */
::-webkit-scrollbar {
  width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb,{
  background: #1c3660;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container-scroll {
  overflow: auto;
}
.container-scroll ::-webkit-scrollbar-track{
  background: transparent;
}

/* width */
.container-scroll ::-webkit-scrollbar {
  width: 0px;
}

/* Handle */
.container-scroll ::-webkit-scrollbar-thumb {
  background: #1c3660;
}

/* Handle on hover */
.container-scroll ::-webkit-scrollbar-thumb:hover {
  background: #555;
}


footer{
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background: #ffffff;
}

footer .content-footer{
    padding-top: 1rem;
    padding-bottom: .5rem;
    height: 60px;
    font-size: .75rem;
}


.saiba-mais{
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin: 15px 0px;
  float: left;
}

.navbar-brand {
  margin: 0px 60px 0px 30px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 1.5rem 0 0.5rem;
  color: #1c3660;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: #009fd3;
  border-left: 4px solid #e5a812;
  font-weight: 500;
}


@media (max-width: 1199px){
  
  .navbar{
    padding: 10px;
  }

  .margin-topo{
    margin-top: 40px;
  }

  body::-webkit-scrollbar-track{
    display: none;
  }


  footer{
    position: relative;
    width: 100%;
    background: #ffffff;
    height: 120px;
    margin-top: 40px;
  }

  footer img{
    max-width: 60px;
  }

  .navbar-expand-lg .navbar-nav .nav-link{
    margin: 1.5rem 0px 1.5rem 0px;
    padding: 0 1.5rem 0 0.5rem;
    font-size: 1.2rem;
  }
  
  section {
    min-height: auto;
  }
}


