html {box-sizing: border-box;font-family:"Roboto", sans-serif;}
*, *:before, *:after {box-sizing: inherit;}
 
body {
 font-family:"Roboto", sans-serif !important;
}

section {
 margin: 4rem 0;
}

section.blue {
 background-color: #041741;
 padding: 4rem 0 6rem; 
 margin: 0;
}

.navbar.nav2 {
 background-color: #2c2e31;
 padding: 1.5rem;
 box-shadow: 0px 4px 8px 0 #c7c5c5bd;
}

h1, h2 {
 text-transform: uppercase;
}

h1 {
 font-size: 2rem;
 color: #001c3d;
 font-weight: 600;
}

h2 {
 font-size: 1.5rem;
 font-weight: bold;
 color: #c09bfd;
}

h3.subtitles {
 font-size: 1.2rem;
 font-weight: 600;
 color: #d7d7d7;
 text-transform: uppercase;
}

a.btn-primary {
 display: flex;
 padding: 1rem;
 background-color: #1e408d;
 border-radius: 10px;
 justify-content: center;
 max-width: 500px;
 text-transform: uppercase;
 font-weight: bold;
 transition: .3s;
}

a.btn-primary:hover {
 background-color: #17316d;
 transform: scale(1.05);
 transition: .3s;
}

/***** ACCORDION ******/

.accordion {
  background-color: #1e408d;
  color: #FFFFFF;
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
  text-align: left;
  outline: none;
  font-size: 1.10rem;
  transition: 0.4s;
  border: 3px solid #1e408d;
  border-bottom-width: 1px;
  font-weight: bold;
  margin-top: 10px;
  padding: 1rem 1rem 1rem 2rem;
  display: grid;
  grid-template-columns: 31fr 1fr;
  align-items: center;
  gap: 1rem;
}

.accordion:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f078";
  color: #FFFFFF;
  font-weight: bold;
  float: right;
  margin-right: 0;
}

.accordion.ativo {
 border-radius: 10px 10px 0 0;
}

.ativo:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f077";
}

.panel {
  padding: 0 18px;
  background-color: #f7f7f7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.panel p {
  margin: 25px;
  font-size: 1rem !important;
}

.panel a {
  font-size: 1rem !important;
}

.panel a:hover {
  font-size: 1rem !important;
}

.panel ul{
  margin: 25px;
}

button:focus {
 outline: 1px auto -webkit-focus-ring-color;
}

hr {
 border-top: 1px solid rgb(255 255 255 / 10%);
}

@media (max-width: 768px) {
 .panel ul {
    margin: 25px 0;
 }
}


