@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{margin:0;padding:0;}
body{font-family: 'Roboto', sans-serif;font-size: 16px;background: #f4f7fd;overflow-x: hidden;}
main { /*container das paginas certificados/servicos/contato*/
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
}
h1 {
  font-size: 1.950em;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-left: 1.5%;
  padding-right: 1.5%;
}
h2 {
  text-align: center;
  color: #2c73b6;    
  font-size: 1.8em; 
  padding-top: 20px; 
  padding-bottom: 20px;
  text-shadow: rgba(0, 0, 0, 0.200) 0.1em 0.1em 0.2em;
}
.social-icon { /*icones redondos*/
  width: 42px;
  height: 42px;
  background: #61c1fc;
  border-radius: 50px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  position: absolute;        
}.social-icon .bi{color:white;margin:auto;}.social-icon:hover{background:#9cd7ff;}
/***********MENU NAVBAR***********/
header{position:sticky;top:0;z-index:2;} /*fixar navbar no topo da pagina*/
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #006bcf;
  height: 8.5vh;
  max-height: 100px;
  min-height: 50px;
  width: 100vw;
}nav a {color:#F8F8FF;text-decoration:none;transition:0.3s;}nav a:hover{color:#f21905;}
  .logo-img{height: 37.5px;}.logo-img:hover{opacity:0.8;cursor:pointer;}
  .nav-list{list-style: none;display: flex;align-items: center;}
  .nav-list li{letter-spacing: 1px;padding-left: 12px;padding-right: 12px;}
.mobile-menu{display:none;cursor:pointer;}
  .mobile-menu div {
    width: 28px;
    height: 3px;
    background: white;
    margin: 6px;
    border-radius: 50px;
    transition: 0.3s;
  }
.sobre-empresa, .sobre-edval, .box, .rodape, .information-box {
    background: white;  
    box-shadow: 0px 2px 15px rgb(0 0 0 / 35%);
    border-radius: 12px;
}.service-box,.information-box,.info{display:flex;margin:auto;}
@media (max-width: 768px) { /*Media querie para responsividade do menu navbar*/
  h1 {font-size: 1.5em;}.mobile-menu{display:block;margin-right:-15%;}
  nav {height: 8vh;}
    .nav-list {
      display: block;
      position: absolute;
      width: 100%;
      top: 8vh;
      right: 0px;
      background: #006bcf;
      z-index: 1000;
      height: 0px;
      transition: .5s;
      visibility: hidden;
      overflow-y: hidden;
      overflow-x: hidden;
      margin-right: 0;
    }
    .nav-list.active {
      height: calc(100vh - 8vh);
      visibility: visible;
      overflow-y: auto;
      overflow-x: auto;
    }
    .nav-list li {
      text-align: center;
      padding: 3.5%;
      margin: 0 1rem;
      border-bottom: 2px solid rgba(0, 0, 0, 0.05);
      cursor: pointer;
    }.nav-list li:hover{background:#1760a5;}
    ul li a{display: inline-block;width: 100%;height: 100%;}nav a{transition:0;}nav a:hover{color:#F8F8FF;}
}
.mobile-menu.active .line1 {transform: rotate(-45deg) translate(-6.5px, 7px);}
.mobile-menu.active .line2 {opacity:0;}
.mobile-menu.active .line3 {transform: rotate(45deg) translate(-5px, -7px);}