@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&display=swap");
@import url("https://use.fontawesome.com/releases/v5.10.2/css/all.css");
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none; }

body {
  width: 100%;
  height: 100%;
  color: black;
  background: #ffffff;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0px;
  margin: 0px; }

.linha-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.coluna-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.alinha-centro {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.justifica-centro {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

section {
  padding: 100px 0px; }

.um {
  margin-bottom: 70px; }
  .um h6 {
    font-size: 16px;
    font-weight: 500;
    color: #256be6;
    text-align: center;
    margin-bottom: 20px; }
  .um h2 {
    font-size: 36px;
    font-weight: 500;
    color: #2f2f35;
    text-align: center;
    margin-bottom: 20px; }
  .um p {
    font-size: 16px;
    font-weight: 400;
    color: #6c6c6f;
    line-height: 1.6;
    text-align: center; }

header nav.navbar {
  background: rgba(18, 61, 136, 0.3);
  padding: 5px 15px; }
  header nav.navbar a.navbar-brand img {
    width: 80px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain; }
  header nav.navbar button.navbar-toggler {
    background: transparent;
    margin: 0;
    padding: 0;
    cursor: pointer;
    outline: none; }
    header nav.navbar button.navbar-toggler span.navbar-toggler-icon i {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      font-size: 30px;
      color: white; }
  header nav.navbar ul.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%; }
    header nav.navbar ul.navbar-nav li.nav-item {
      padding: 0;
      margin-left: 25px; }
      header nav.navbar ul.navbar-nav li.nav-item a.nav-link {
        border-radius: 4px;
        padding: 5px 10px;
        border: 1px solid transparent;
        color: white;
        font-size: 16px;
        font-weight: 400; }
      header nav.navbar ul.navbar-nav li.nav-item a.nav-link:hover {
        border: 1px solid white;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
    header nav.navbar ul.navbar-nav li.nav-item.active a.nav-link {
      border: 1px solid white; }

#header.bg-fixed nav.navbar {
  background: #123d88;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s; }

@media screen and (max-width: 991px) {
  header nav.navbar .navbar-collapse {
    margin-top: 25px; }
  header nav.navbar ul.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%; }
    header nav.navbar ul.navbar-nav li.nav-item {
      padding: 5px;
      margin-left: 0px; }
      header nav.navbar ul.navbar-nav li.nav-item a.nav-link {
        border-radius: 4px;
        padding: 10px;
        border: none;
        color: #ffffff;
        font-size: 16px;
        font-weight: 400; }
      header nav.navbar ul.navbar-nav li.nav-item a.nav-link:hover {
        background: #ffffff;
        color: #123d88;
        border: none;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
    header nav.navbar ul.navbar-nav li.nav-item.active a.nav-link {
      background: #ffffff;
      color: #123d88;
      border: none; } }

a.botao1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid white;
  border-radius: 50px;
  line-height: 0.8;
  text-decoration: none;
  width: 200px;
  padding: 20px 25px; }

a.botao1:hover {
  background: white;
  color: #212529;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

a.botao-azul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #256be6;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #256be6;
  border-radius: 50px;
  line-height: 0.8;
  text-decoration: none;
  width: 200px;
  padding: 20px 25px; }

a.botao-azul:hover {
  background: white;
  color: #212529;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

.secao1 {
  padding: 197px 0 100px;
  background: url("../imagens/banner3.jpg") center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10; }
  .secao1 .coluna1 {
    margin: 15px 0px;
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center; }
    .secao1 .coluna1 h3 {
      font-size: 48px;
      font-weight: 500;
      color: #ffffff;
      margin-bottom: 15px; }
    .secao1 .coluna1 p {
      font-size: 18px;
      color: #ffffff;
      font-weight: 400;
      margin-bottom: 30px; }
    .secao1 .coluna1 .linha {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: relative;
      margin-bottom: 25px; }
      .secao1 .coluna1 .linha .fundo {
        background: rgba(18, 61, 136, 0.5);
        border-radius: 50%;
        width: 90px;
        height: 90px;
        -webkit-animation: pulsar 1.2s infinite;
        animation: pulsar 1.2s infinite; }
      .secao1 .coluna1 .linha a.play {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 50%;
        width: 65px;
        height: 65px;
        background: white;
        position: absolute;
        z-index: 10; }
        .secao1 .coluna1 .linha a.play svg {
          fill: #256be6;
          width: 32px;
          height: 32px; }

.secao1:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #004bc8;
  background-size: cover;
  opacity: 0.7; }

.contato .col-md-7,
.contato .col-md-5 {
  padding: 0; }

.contato .contact-from-wrap {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 40px; }
  .contato .contact-from-wrap .sec-heading {
    text-align: left;
    margin-bottom: 32px; }
  .contato .contact-from-wrap .contact-form label {
    color: #2f2f35;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px; }
  .contato .contact-from-wrap .contact-form .form-control {
    border-color: #dadada;
    padding: 15px 20px;
    height: auto; }
  .contato .contact-from-wrap .contact-form .form-group {
    margin-bottom: 33px; }
  .contato .contact-from-wrap .contact-form .form-group:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .contato .contact-from-wrap .contact-form .form-group:last-child button.botao-azul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      background: #256be6;
      color: white;
      font-size: 16px;
      font-weight: 500;
      border: 1px solid #256be6;
      border-radius: 50px;
      line-height: 0.8;
      text-decoration: none;
      width: 200px;
      padding: 20px 25px; }
    .contato .contact-from-wrap .contact-form .form-group:last-child button.botao-azul:hover {
      background: white;
      color: #212529;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }

.contato .contact-info-wrap {
  background-color: #256be6;
  font-size: 15px;
  padding: 100px 40px; }
  .contato .contact-info-wrap address {
    color: #fff;
    padding-left: 65px;
    margin-bottom: 50px;
    position: relative; }
    .contato .contact-info-wrap address span {
      display: block;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 7px; }
    .contato .contact-info-wrap address a {
      color: #fff;
      display: block; }
    .contato .contact-info-wrap address i {
      background-color: #fff;
      border-radius: 50%;
      color: #256be6;
      font-size: 16px;
      line-height: 40px;
      text-align: center;
      position: absolute;
      left: 0;
      top: 0;
      height: 40px;
      width: 40px; }

.secao3 {
  background: #f7faff; }
  .secao3 .redes-sociais {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px; }
    .secao3 .redes-sociais a.rede-social {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      background: #ffffff;
      border: 1px solid #dadada;
      border-radius: 5px;
      padding: 30px 15px;
      text-decoration: none;
      font-size: 16px;
      color: #2f2f35;
      font-weight: 500;
      line-height: 0.8;
      text-align: center; }
      .secao3 .redes-sociais a.rede-social i {
        font-size: 28px;
        margin-bottom: 20px; }
    .secao3 .redes-sociais a.rede-social.facebook i {
      color: #3b5999; }
    .secao3 .redes-sociais a.rede-social.twitter i {
      color: #1da1f2; }
    .secao3 .redes-sociais a.rede-social.instagram i {
      color: #316d8c; }
    .secao3 .redes-sociais a.rede-social.vimeo i {
      color: #1ab7ea; }
    .secao3 .redes-sociais a.rede-social.youtube i {
      color: #eb1d1d; }
    .secao3 .redes-sociais a.rede-social.linkedin i {
      color: #0077b5; }
    .secao3 .redes-sociais a.rede-social:hover {
      background: #399fed;
      border: 1px solid #399fed;
      color: #ffffff;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .secao3 .redes-sociais a.rede-social:hover i {
        font-size: 28px;
        margin-bottom: 20px;
        color: #ffffff;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }

footer .footer1 {
  padding: 100px 0px;
  background: url("../imagens/footer-bg.png") center no-repeat, #123d88;
  background-size: cover; }
  footer .footer1 .col-sm-12.col-md-6.col-lg-3 {
    margin: 15px 0px; }
  footer .footer1 h5 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 15px;
    margin-bottom: 25px;
    position: relative; }
  footer .footer1 h5:before {
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    border-bottom: 2px solid white; }
  footer .footer1 ul.mapa {
    list-style: none; }
    footer .footer1 ul.mapa li {
      padding: 5px 0px; }
      footer .footer1 ul.mapa li a {
        padding-bottom: 3px;
        font-size: 16px;
        color: #fff;
        font-weight: 400;
        text-decoration: none;
        border-bottom: 1px solid transparent; }
        footer .footer1 ul.mapa li a i {
          font-size: 15px;
          margin-right: 4px; }
      footer .footer1 ul.mapa li a:hover {
        border-bottom: 1px solid #fff;
        text-decoration: none;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
  footer .footer1 ul.redes {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    footer .footer1 ul.redes li {
      margin-right: 15px; }
      footer .footer1 ul.redes li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 5px;
        border-radius: 50%;
        border: 2px solid #fff;
        text-decoration: none; }
        footer .footer1 ul.redes li a i {
          font-size: 22px;
          color: #fff;
          font-weight: 300; }
      footer .footer1 ul.redes li a:hover {
        background: #fff;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
        footer .footer1 ul.redes li a:hover i {
          color: #123d88;
          -webkit-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s; }
    footer .footer1 ul.redes li:last-child {
      margin: 0; }
  footer .footer1 a.logo img {
    width: 200px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain; }

footer .footer2 {
  padding: 25px 0px;
  background: #10377a; }
  footer .footer2 h6 {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff; }

@media screen and (max-width: 991px) {
  .secao3 .redes-sociais {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr); } }

@-webkit-keyframes pulsar {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7); }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7); } }

@keyframes pulsar {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7); }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7); } }
