/* About */
.bigtitle{
  text-align: center;
  margin-top: 5%;
  font-size: 50px;
  color: #fc7700;
  font-family: 'Exo 2', sans-serif;
}
.box{
  width: 70%;
  padding: 40px;
  margin: 100px auto;
}

.box h2{
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  padding: 4px 20px;
  color: #fc7700;
  font-family: 'Exo 2', sans-serif;
}

.box p{
  font-size: 18px;
  text-align: justify;
  font-family: 'Roboto Condensed', sans-serif;
}

.box-geral{
  z-index: inherit;
    width: 100%;
}

.box2 {
  width: 70%;
  padding: 40px;
  background: white;
  margin: 80px auto;
  box-shadow: 0 0 10px;
  position: relative;
}

.box2 h2{
  margin: 0;
  position: absolute;
  top: 12px;
  left: -12px;
  background: #607D8B;
  color: white;
  font-size: 20px;
  padding: 4px 20px;
}

.box2 h2:before{
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  background: #515f66;
  left: 5px;
  bottom: -12px;
  transform: rotate(-45deg);
  z-index: -1;
}

.box2 p{
  font-size: 18px;
  text-align: justify;
  font-family: 'Roboto Condensed', sans-serif;
}

.box3 {
  width: 70%;
  padding: 40px;
  background: white;
  margin: 80px auto;
  box-shadow: 0 0 10px;
  position: relative;
}

.box3 h2{
  margin: 0;
  position: absolute;
  top: 12px;
  left: -12px;
  background: #607D8B;
  color: white;
  font-size: 20px;
  padding: 4px 20px;
}

.box3 h2:before{
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  background: #515f66;
  left: 5px;
  bottom: -12px;
  transform: rotate(-45deg);
  z-index: -1;
}

.box3 p{
  font-size: 18px;
  text-align: justify;
  font-family: 'Roboto Condensed', sans-serif;
}

.box4 {
  width: 70%;
  padding: 40px;
  background: white;
  margin: 80px auto;
  box-shadow: 0 0 10px;
  position: relative;
}

.box4 h2{
  margin: 0;
  position: absolute;
  top: 12px;
  left: -12px;
  background: #607D8B;
  color: white;
  font-size: 20px;
  padding: 4px 20px;
}

.box4 h2:before{
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  background: #515f66;
  left: 5px;
  bottom: -12px;
  transform: rotate(-45deg);
  z-index: -1;
}

.box4 p{
  font-size: 18px;
  text-align: justify;
  font-family: 'Roboto Condensed', sans-serif;
}





@keyframes up{
  0%{
      opacity: 0;
  }
  50%{
      opacity: 1;
  }
  100%{
      opacity: 0;
      transform: translateY(-1rem);
  }
}

@keyframes slideIn{
  from{

  }
  to{
    transform: translateX(0);
  }
}

/* Media Queries */


@media (max-width: 952px){

  

  .box{
    width: 80%;
    padding: 0px;
    margin: 100px auto;
  }

  .box h2{
    padding: 0;
  }

  .bigtitle{
    font-size:30px ;
  }
  .box-geral{
    width: 100%;
  }


  .box p,
  .box2 p,
  .box3 p,
  .box4 p{
    text-align: left ;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
}


