/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background-color: rgb(255,255,255);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 30px;
}
.navbar .logo a{
  /*font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;*/
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #475467;
  
  font-size: 13px !important;
  font-weight: 700 !important;
}
.links li:hover .htmlcss-arrow,
.links li:hover .htmlcss-arrow2,
.links li:hover .js-arrow,
.links li:hover .js-arrow2{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block !important;
  color: #475467;
  font-weight: 700;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 45px;
  left: 0;
  line-height: 28px;
  background-color: rgba(255,255,255,0.9);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu,
nav .navbar .links li:hover .js-sub-menu2{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 20px;
  border-bottom: 1px solid rgb(255,255,255);
}
.navbar .links li .sub-menu a{
  color: #475467;
  font-size: 14px;
  font-weight: 700 !important;
}

.navbar .links li .sub-menu a:hover{
  color: rgba(34,34,34,0.7);
  
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}

.navbar .links li .sub-menu .more-arrow2{
  line-height: 40px;
}

.navbar .links li .sub-menu .more-arrow3{
  line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu{
  line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}

/*more-bub-menu2*/

.navbar .links li .sub-menu .more-sub-menu2{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu2{
  display: block;
}

/*more-bub-menu3*/

.navbar .links li .sub-menu .more-sub-menu3{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu3{
  display: block;
}


.navbar .search-box{
  position: relative;
   height: 20px;
  width: 20px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 25px;
  text-align: center;
  font-size: 22px;
  color: #475467;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  /*height: 60px;*/
  height: auto;
  width: 300px;
 background-color: rgb(29,112,183);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background-color: rgb(255,255,255);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: rgb(255,255,255);
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
  
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    /*font-size: 27px;*/
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
   background-color: rgb(255,255,255);
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #475467;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
  
/*more-sub-menu2*/
  
  .navbar .links li .sub-menu .more-sub-menu2{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu2 li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
  
/*more-sub-menu3*/
  
 .navbar .links li .sub-menu .more-sub-menu3{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu3 li{
  display: flex;
  align-items: center;
  justify-content: space-between;
} 
  
.links li:hover .htmlcss-arrow,
  .links li:hover .htmlcss-arrow2,
.links li:hover .js-arrow,
  .links li:hover .js-arrow2{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  
  /*more-sub-menu2*/
  
  .navbar .links li .sub-menu .more-sub-menu2{
    display: none;
  }
  
  /*more-sub-menu-3*/
  
  .navbar .links li .sub-menu .more-sub-menu3{
    display: none;
  }
  
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  
  /*more-sub-menu2*/
  
  .links li .sub-menu .more:hover .more-sub-menu2{
    display: none;
  }
  
  /*more-sub-menu3*/
  
  .links li .sub-menu .more:hover .more-sub-menu3{
    display: none;
  }
  
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu,
   nav .navbar .links li:hover .js-sub-menu2{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show6 .links .js-sub-menu2,
  .navbar .nav-links.show2 .links .more .more-sub-menu,
  .navbar .nav-links.show4 .links .more .more-sub-menu2,
  .navbar .nav-links.show5 .links .more .more-sub-menu3{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
   .navbar .nav-links.show5 .links .htmlcss-arrow2,
    .navbar .nav-links.show3 .links .js-arrow,
  .navbar .nav-links.show6 .links .js-arrow2{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
  
  .navbar .nav-links.show4 .links .more-arrow2{
      transform: rotate(90deg);
    }
  
  .navbar .nav-links.show5 .links .more-arrow3{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

.logo {
    width: 200px;
    height:35px;
    float: left;
  margin-top: 0px;
  display:block;
  background: transparent;
  
}

.logo .hidden{
  display: none;
}

a#cta_button_3960387_60ffe618-4931-4b5e-8d9b-e842ef1c1caf,
a#cta_button_3960387_89452b30-5376-4104-b373-dccd7cc111bd{
  display: inline-block;
  width: 80%;
text-align: center;
  background-color: #e61b72;
border: none;
border-radius: 10px;
box-shadow: 0 0 3px rgba(0,0,0,.12);
box-shadow: 0 1px 6px rgba(0,0,0,.2);
-webkit-box-shadow: 0 1px 6px rgba(0,0,0,.2);
-moz-box-shadow: 0 1px 6px rgba(0,0,0,.2);
color: #fff;
cursor: pointer;
font-family: Poppins;
font-size: 16px;
font-weight: 700;
margin: 14px;
padding: 8px 16px;
transition: all .3s ease;
}

a#cta_button_3960387_89452b30-5376-4104-b373-dccd7cc111bd{
  background-color: #004081;
  margin-top:-2px;
}

a#cta_button_3960387_60ffe618-4931-4b5e-8d9b-e842ef1c1caf:hover{
  background-color: rgba(230,27,114,.7);
color: #fff;
  text-decoration: none;
  
}

a#cta_button_3960387_89452b30-5376-4104-b373-dccd7cc111bd:hover {
  background-color: rgba(0,64,129,.7);
  text-decoration: none;
  
}

.search-box .input-box::before {
 
  z-index: -10;
}

.btnsAccessibilityIcons{
 float: left;
  width: 100px;
  border: 0;
}


#accessibility-contrast{
  
     position: relative;
    z-index: 10000;
     
  border-radius: 2px;
  height: 30px;
  width: 30px;
  background: transparent !important;
  outline : none;
  color: #475467;
  cursor: pointer !important;
}


#zoom-in{
  
    position: relative;
  float: left;
    z-index: 10000;
    
  
  border-radius: 2px;
  height: 30px;
  width: 30px;
  outline : none;
  color: #475467;
  cursor: pointer !important;
}

#zoom-out{
  
    position: relative;
  float: left;
    z-index: 10000;
    
  
  border-radius: 4px;
  height: 30px;
  width: 30px;
  outline : none;
  color: #475467;
  cursor: pointer !important;
}

.btn-dark{
  background: transparent !important;
   color: #fff;
  border-color: 0 !important;
  outline : none;
}

.btn-dark:hover {
    background-color: transparent !important;
    color: #fff;
  border-color: 0 !important;
  outline : none;
}

.btn-dark:active {
    background-color: transparent !important;
    color: #fff;
  border-color: 0 !important;
  outline : none;
}

.btn-dark:focus {
    background-color: transparent !important;
    color: #fff;
  border-color: 0 !important;
  outline : none;
}

.btn:not(:disabled):not(.disabled){
  border: 0 !important;
}

.btn-primary:hover {
    background-color: transparent !important;
    border-color: 0 !important;
    color: #fff;
}

.logo img{
  
  max-width: 200px;
}

@media only screen and (max-width: 415px) {
 .logo{
  width: 120px;
    margin-top: 10px;
  }
  
  .logo img{
   width:120px;
    height: auto;
  }
}

@media only screen and (max-width: 800px) {
 /*.imgDesq{
   max-width: 100%;
    height: 400px !important;
    width: auto;
  }*/
  
  
}


@media only screen and (max-width: 1450px) {
  .divScroll{
    overflow-y:          scroll;
 overflow-x:          clip;
 overscroll-behavior: contain;
    max-height: 500px;
    scrollbar-width: thin;          /* "auto" or "thin" */
  scrollbar-color: blue orange;   /* scroll thumb and track */ 
  }
  
  
  /* ===== Scrollbar CSS ===== */
  /* Firefox */
  .divScroll {
    scrollbar-width: auto;
    scrollbar-color: #7f2389 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  .divScroll::-webkit-scrollbar {
    width: 15px;
  }

  .divScroll::-webkit-scrollbar-track {
    background: #ffffff;
  }

  .divScroll::-webkit-scrollbar-thumb {
    background-color: #7f2389;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }
}


.logoBranco{
  display: none;
}