/* 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;
}

.cd__intro{
     margin-top: 70px;
}


body{
  min-height: 100vh;
}
nav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 100%;
  width: auto;
  display: flex;
  align-items: center;
  margin: auto;
  padding: 0 0px 0 10px;
  justify-content: space-between;
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
nav .navbar .links{
  display: flex;
  height: 96px;
  align-items: center;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  justify-content: flex-start;
  list-style: none;
  padding: 0 14px;
  height: 100%;
  width: 100%;
  align-items: center;
  flex-direction: column;
}
/*nav .navbar .links li a {
  display: flex;
  text-decoration: none;
  white-space: nowrap;
  color: #a6a6a6;
  font-weight: 700;
  font-family: 'Nunito';
  font-size: 14px;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  height: 100%;
  align-items: center;
}
nav .navbar .links li a {
  display: flex;
  text-decoration: none;
  line-height: 13px;
  color: #a6a6a6;
  font-weight: 700;
  font-family: 'Nunito';
  font-size: 12px;
  text-align: center;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 0 0px 0 0px;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 27px;
  margin-top: 5px;
}*/

nav .navbar .links li a {
  display: flex;
  text-decoration: none;
  /* white-space: nowrap; */
  line-height: 13px;
  color: #a6a6a6;
  font-weight: 700;
  font-family: 'Nunito';
  font-size: 12px;
  text-align: center;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 0px 0px 0 0px;
  flex-direction: column;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  height: 78px;
  margin-top: 18px;
  border-bottom: solid 4px transparent;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  
}

nav .navbar .links li a:hover {
  border-bottom: solid 4px #c7e4e4;
}

.icoItemMenu:before {
  height: 30px;
  width: 30px;
  border-radius: 20px;
  background-color: black;
  font-family: 'FontAwesome';
  display: inline-flex;
  content: '\e3b2';
  background-color: #00aead;
  border-radius: 30px;
  width: 35px;
  color: #fff;
  height: 35px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  margin-bottom: 4px;
}
.textItemMenu {
  height: 24px;
  font-size: 11px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #959595;
}

.w-92 {
  width: 92px;
}

/*
nav .navbar .links li:after {
  content: '';
  display: inline-block;
  height: 30px;
  width: 1px;
  background-color: #f3f3f3;
}
*/

nav .navbar .links ul li:firts-child {
  padding-left: 0px;
}
/*
nav .navbar .links li a:hover {
  border-bottom: 4px solid #00aead;
}
nav .navbar .links li a:before {
  font-family: "Font Awesome 6 Free";
  display: flex;
  content: '\e3b2';
  background-color: #00aead;
  border-radius: 30px;
  width: 35px;
  color: #fff;
  height: 35px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
nav .navbar .links li a:before {
  font-family: "Font Awesome 6 Free";
  display: inline-flex;
  content: '\e3b2';
  background-color: #00aead;
  border-radius: 30px;
  width: 35px;
  color: #fff;
  height: 35px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  margin-top: 29px;
}
*/


nav .navbar .links li a:hover:after {
  content: '';
  display: block;
  background-color: #00aead;
  border-radius: 18px 18px 0 0;
  bottom: 0px;
  margin-top: 8px;
  height: 5px;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  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{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  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;
}
.navbar .search-box {
  height: 100%;
  width: 240px;
  background-color: #00aead;
  position: relative;
  display: flex;
  border-radius: 0px 50px 50px 0;
  -moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.navbar .search-box:hover {
  background-color: #05a3a2;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box i.bx {
  font-family: 'Nunito' !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .search-box .input-box{
  display: flex;
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 640px;
  padding-right: 4px;
  background: #fffffff0;
  border-radius: 70px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  justify-content: flex-end;
  align-items: center;
}

.input-box:after {
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background-color: #00aead;
  z-index: 1000000;
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  color: #fff;
  font-weight: 600;
  position: relative;
  padding: 13px 16px;
  font-size: 18px;
}

.navbar.showInput .search-box .input-box{
  top: 115px;
  opacity: 1;
  pointer-events: auto;
  background: #fffffff7;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #fffffff0;
  right: 19px;
  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: 97%;
  outline: none;
  font-size: 18px;
  border: none;
  font-family: 'Nunito';
  font-weight: 600;
  color: #088685;
  border-radius: 50px;
  padding: 0 15px;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 0px 0 15px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0;
    white-space: nowrap;
  }

  nav .navbar .links li a {
    font-size: 15px;
    flex-direction: row;
    border-left: 5px solid transparent !important;
    padding: 0 0 0 13px;
    height: 40px;
    border-bottom: 0px;
    line-height: 20px;
}

nav .navbar .links li a:hover {
  border-bottom: none;
  border-left: 5px solid white !important;
}

nav .navbar .nav-links {
  padding: 20px 20px 20px 0px !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
nav .navbar .links li a span {
  color: #ffffff;
}
nav .navbar .nav-links {
  padding: 20px 20px 20px 0px;
  background: #2182a3 !important;
}

.containerMenu {
  top: 50px;
}

.containerTituloDireita {
  position: relative;
  top: 24px;
}

.topo {
   height: 170px;
 }
}

.nav-links .bx-x:before {
  display: none;
}
@media (max-width:800px){
  
  .bx-x:before {
    display: flex;
  }
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }

  .nav-links .bx-x:before {
    display: flex;
    content: "\ebe9";
}

.nav-links .bx.bx-x {
  margin-left: 200px;
}


nav .navbar .links li:after {
  display: none;
}

nav .navbar .links li a:hover:after {
display: none;
}

  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #3E8DA8;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  nav .navbar .links li {
    height: auto;
}

  nav .navbar .links li a {
    color: #ffffff;
}
  .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: rgb(0, 0, 0);
      width: 100%;
    }

    
  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;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    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;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

ul.links {
  margin-top: 0;
  margin-bottom: 0px;
}


.navbar:before {
  display: none;
}

.navbar .row:after {
  display: none;
}


.bx-search:before {
  content: "\f486";
  font-family: 'FontAwesome';
  margin-right: 10px;
  font-size: 16px;
  background-color: #fff;
  color: #00aead;
  padding: 7px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}




