/*RODAPE*/
#page-rodape {
    padding: 50px 0px;
    color: #fff;
    background-color: #082863;
  }
  .container-rodape {
    width: 90%;
    max-width: 820px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .container-rodape .container-left-rodape {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
  }
  
  .container-rodape .container-right-rodape img {
    width: 200px;
  }
  
  .container-rodape .container-left-rodape .top-container,
  .container-rodape .container-left-rodape .bottom-container {
    width: 100%;
    font-size: 13px;
  }
  
  .container-rodape .container-left-rodape .top-container .row-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .container-rodape .container-left-rodape .top-container .row-navigation .column-navigation {
    padding: 0px 10px;
    border-right: 2px solid #fff;
    transition: 200ms;
    color: #fff;
    text-decoration: none;
  }
  
  .container-rodape .container-left-rodape .top-container .row-navigation .column-navigation:hover {
    color: #ffba1b;
  }
  
  .container-rodape .container-left-rodape .top-container .row-navigation .column-navigation:first-child {
    padding-left: 0px;
  }
  
  .container-rodape .container-left-rodape .top-container .row-navigation .column-navigation:last-child {
    padding-right: 0px;
    border: none;
  }
  
  .container-rodape .container-left-rodape .top-container .row-social-icons {
    margin-top: 20px;
  }
  
  .container-rodape .container-left-rodape .top-container .row-social-icons svg {
    width: 30px;
    height: 30px;
  }
  .container-rodape .container-left-rodape .top-container .row-social-icons svg:first-child {
    margin-right: 5px;
  }
  .container-rodape .container-left-rodape .top-container .row-social-icons svg path {
    transition: 200ms;
  }
  
  .container-rodape .container-left-rodape .top-container .row-social-icons svg:hover path {
    fill: #ffba1b;
  }
  
  .activeTabRodape {
    font-family: "MontserratBold" !important;
    pointer-events: none;
    text-decoration: none;
  }
  .activeTabRodape span {
    border-bottom: 2px solid yellow;
  }
  
  @media (max-width: 918px) {
    .container-rodape .container-left-rodape {
      height: 300px;
    }
    .container-rodape .container-left-rodape .top-container .row-navigation .column-navigation {
      padding: 0px;
      border: none;
      width: 100%;
      padding: 5px 0px;
    }
    .container-rodape .container-left-rodape .top-container .row-navigation .column-navigation:first-child {
      padding-top: 0px;
    }
    .container-rodape .container-left-rodape .top-container .row-navigation .column-navigation:last-child {
      padding-bottom: 0px;
    }
  }