@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root {
  --blue: #1b4562;
  --black: #000;
  --white: #ffffff;
  --light-color: #7b7b7c;
  --border: 0.2rem solid rgba(0,0,0,0.1);
  --box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  --light-blue: #EFFFFD;
  --light-bg: #eee;
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none !important;
}

*::-webkit-scrollbar {
  height: 0.5rem;
  width: 1rem;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--blue);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  /*scroll-behavior: smooth;*/
  scroll-padding-top: 6.5rem;
}

section {
  padding: 5rem 2rem !important;
}

.scrollTop {
  outline: none;
  border: 0;
  background-color: white;
  width: 60px;
  height: 60px;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scrollTop:hover {
  transition: all 0.3s ease;
  background-color: var(--blue);
}

.scrollTop.active {
  opacity: 1;
  visibility: visible;
}

.scrollTop img {
  width: 100%;
}

.nowrap {
	white-space: nowrap;
}

.heading {
  text-align: center;
  font-size: 4rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: bolder;
  margin-bottom: 3rem;
}

.link-btn {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  background-color: var(--blue);
  cursor: pointer;
  font-size: 1.7rem;
  color: var(--white);
  transition: all 400ms ease;
}

.link-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.logo {
  font-size: 2rem;
  color: var(--black);
}

.logo-img {
  height: 60px;
  width: 60px;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.logo-img:hover {
  transform: scale(1.2);
}
.lbl-logo{
	padding-left: 15px;
    font-size: 15px;
    line-height: 1.2;
    vertical-align: middle;
}
.logo span {
  color: var(--blue);
}
.nav{
	background-color: var(--white);
}
.nav a {
  margin: 0 1rem;
  font-size: 1.7rem;
  color: var(--black);
}

.nav a:hover {
  color: var(--blue);
}

#menu-btn{
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  display: none;
}

.home {
  background-color: var(--light-blue);
  padding-top: 13.5rem;
  padding-bottom: 0.1rem;
}

.home .content {
  width: 55rem;
  padding: 1.5rem;
}

.home .content h3 {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: var(--black);
}

.home .content p {
  line-height: 2;
  font-size: 1.7rem;
  color: var(--light-color);
  padding: 1rem 0;
}

/*.about .row {
  min-height: 50vh;
}*/

.about .content span {
  font-size: 2rem;
  color: var(--blue);
}

.about .content h3 {
  font-size: 3rem;
  color: var(--black);
  margin-top: 1rem;
}

.about .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.services {
  background-color: var(--light-bg);
  width:100%;
}

.services h1{
	position:stick;
}

.services .box-container {
  display: flex;
  margin-left: auto;
  margin-right: 50%;
  width:100%;
  max-width:100%;
  overflow-y:hidden;
  overflow-x:auto;
}

.services .box-container .box {
  text-align: center;
  padding: 10px;
  height: 150px;
  width: 150px;
  margin: 1rem;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 1.5rem;
}

.services .box-container .box img {
  margin: 1rem;
  height: 8rem;
}

.services .box-container .box h3 {
  /*font-size: 3rem;*/
  font-size: 12px;
  font-weight: bold;
  padding: 1rem 0;
  color: var(--black);
}

.services .box-container .box p {
  font-size: 2rem;
  color: var(--light-color);
  line-height: 2;
}

.graphic {
  background-color: var(--white);
}
.chart{
	width:100%;
	height:1000px;
}
.tblChart{
    width: 100%;
    height: 1000px;
}

.documents .box-container{
	padding-bottom: 30px;
    height: 300px;
    border-bottom: 1px solid #dedede;
    overflow-y: auto;
}
.documents .box-container .box {
  text-align: center;
  padding: 1rem;
  margin: 3.2rem;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 1.5rem;
}

.reviews {
  background-color: var(--white);
}

.reviews .box-container {
  display: -ms-inline-grid;
}

.reviews .box-container .box {
  text-align: center;
  padding: 1rem;
  margin: 3.2rem;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 1.5rem;
}

.reviews .box-container .box .paragrafo {
  margin-top: -35px;
}

.reviews .box-container .box .paragrafo-principal {
  font-size: 20px;
  font-weight: bold;
}

.reviews .box-container .box .icon {
  font-size: 5rem;
  color: var(--blue);
}

.reviews .box-container .box p {
  padding: 2rem 0;
  line-height: 2;
  font-size: 1.5rem;
  color: var(--light-color);
  margin-bottom: 0;
}

.reviews .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
}

.reviews .box-container .box span {
  color: var(--light-color);
  font-size: 1.5rem;
}

.news {
  background-color: var(--light-bg);
}

.contact form {
  border-radius: 0.5rem;
  background-color: var(--light-bg);
  padding: 2rem;
  margin: 0 auto;
  max-width: 50rem;
}

.contact form .message {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  background-color: var(--success);
  padding: 1.2rem 1rem;
  font-size: 1.7rem;
  color: var(--white);
  text-align: center;
}

.contact form .box {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  background-color: var(--white);
  padding: 1.2rem 1.4rem;
  font-size: 1.7rem;
  color: var(--black);
  text-transform: none;
}

.contact form span {
  font-size: 1.7rem;
  color: var(--black);
}

.footer {
  background-color: var(--light-blue);
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 3rem;
}

.footer .box-container .box {
  text-align: center;
}

.footer .box-container .box i {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    line-height: 2rem;
    font-size: 1rem;
    background-color: var(--blue);
    color: var(--white);
}

.footer .box-container .box h3 {
  font-size: 2rem;
  margin: 2rem 0;
  color: var(--black);
}

.footer .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: none;
  line-height: 1;
}

.footer .credit {
  text-align: center;
  border-top: var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--light-color);
  padding-bottom: 0.2rem;
}

.footer .credit span {
  color: var(--blue);
}

/*MEDIA QUERIES*/

@media (max-width:1200px) {
  .row {
    display: flex;
    justify-content: center;
  }
  
  .logo-img {
    height: 50px;
    width: 50px;
  }
  .home .content h3 {
    font-size: 3.7rem;
  }
}

@media (max-width:991px) {
  html {
    font-size: 55%;
  }

  .link-btn {
    display: none;
  }

  .row {
    display: flex;
    justify-content: center;
  }

  .home .content {
    width: 40rem;
    padding: 1rem;
  }
  .chart{
	  height:500px;
  }
  section {
    padding: 5rem 2rem;
  }
  .logo-img {
    height: 70px;
    width: 70px;
  }
  .home .content h3 {
    font-size: 3.3rem;
  }
}

@media (max-width:768px) {

  section {
    padding: 3rem 1rem;
  }
  .chart{
	  height:auto;
  }
  #menu-btn{
    display: inline-block;
    transition: 0.2s linear;
  }

  #menu-btn.fa-times {
    transform: rotate(180deg);
  }
  
  .nav {
    position: absolute;
    
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 1rem 0;
    text-align: center;
    flex-flow: column;
    transition: 0.2s linear;
  }

  .nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav a {
    margin: 1rem 0;
    font-size: 2rem;
  }

  .row {
    display: flex;
    justify-content: center;
  }

  .home .content {
    padding: 3.3rem;
  }

   .home img {
    height: 400px;
  }

  .logo-img {
    height: 80px;
    width: 80px;
  }
  
  .home .content h3 {
    margin-top: 60px;
    font-size: 3rem;
  }

}

@media (max-width:450px) {

  html {
    font-size: 50%;
  }

  .row {
    display: flex;
    justify-content: center;
  }

  .home .content h3 {
    margin-top: 80px;
    font-size: 3rem;
  }

  .heading {
    font-size: 3rem;
  }
}

