@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #777;
  background: #fff;
}

#page {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.offcanvas #page:after {
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.7);
  content: "";
}

ul {
  margin: 0px !important;
  padding: 0px !important;
}

a {
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: white;
  outline: none;
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
figure {
  color: #000;
  font-weight: 400;
  margin: 0 0 30px 0;
}

::-webkit-selection {
  color: #fff;
  background: #7ED321;
}

::-moz-selection {
  color: #fff;
  background: #7ED321;
}

::selection {
  color: #fff;
  background: #7ED321;
}

.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.gtco-nav {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;

  z-index: 1001;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.heading-title {
  position: absolute;
  width: 100%;
  bottom: 0;
}



.gtco-nav .img-logo {

  height: 70px;
  width: auto;
  margin: 20px 0px 20px 0px !important;
  background-image: url(../img/logo_1.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.logo-footer img {
  margin-bottom: 20px;
  max-height: 70px;
  width: auto;
}

.logo-footer2 img {
  margin-top: 250px;
  max-height: 30px;
  width: auto;
  text-align: right;
}


.gtco-nav #gtco-logo {
  font-size: 30px;
  line-height: 1;
  margin: 0;
  padding: 10px;
  font-weight: bold;

}

.gtco-nav #gtco-logo em {
  color: #fff;
  font-weight: 100;
  font-style: normal;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.gtco-nav #gtco-logo a {
  padding: 0px 10px;
  color: #fff;
  font-weight: 700;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.gtco-nav ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.gtco-nav ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline;
}

.gtco-nav ul li a {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  padding: 20px 10px;
  text-transform: uppercase;
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-top: 10px;
}

.gtco-nav ul li a:hover,
.gtco-nav ul li a:focus,
.gtco-nav ul li a:active {
  color: #fff;
}




.gtco-nav2 ul li a {
  font-size: 18px;
  padding: 1.8px;
  border-radius: 5px;
  height: auto;
  line-height: 1;
  background: #3F4748;
  display: inline-block;
  color: white;
  margin-left: 5px;
}

.gtco-nav2 ul li a:hover,
.gtco-nav2 ul li a:focus,
.gtco-nav2 ul li a:active {
  color: #fff;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  /* Espaço entre menus */
  flex-wrap: wrap;
  /* Para responsividade */
}


.gtco-nav ul li.has-dropdown {
  position: relative;
}

.gtco-nav ul li.has-dropdown .dropdown {
  width: 130px;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 40px;
  left: 0;
  text-align: left;
  background: #fff;
  padding: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

.gtco-nav ul li.has-dropdown .dropdown:before {
  bottom: 100%;
  left: 40px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #fff;
  border-width: 8px;
  margin-left: -8px;
}

.gtco-nav ul li.has-dropdown .dropdown li {
  display: block;
  margin-bottom: 7px;
}

.gtco-nav ul li.has-dropdown .dropdown li:last-child {
  margin-bottom: 0;
}

.gtco-nav ul li.has-dropdown .dropdown li a {
  padding: 2px 0;
  display: block;
  color: #999999;
  line-height: 1.2;
  text-transform: none;
  font-size: 15px;
}

.gtco-nav ul li.has-dropdown .dropdown li a:hover {
  color: #000;
}

.gtco-nav ul li.has-dropdown .dropdown li.active>a {
  color: #000 !important;
}

.gtco-nav ul li.has-dropdown:hover a,
.gtco-nav ul li.has-dropdown:focus a {
  color: #fff;
}

.gtco-nav ul li.btn-cta a {
  color: #fff;
}

.gtco-nav ul li.btn-cta a span {
  border: none !important;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 20px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;

  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}

.gtco-nav ul li.btn-cta a:hover span {
  background: #8bde2f;
  color: #fff;
}

.gtco-nav ul li.active>a {
  color: #fff !important;
}

.gtco-nav.scrolled {
  /* background: #030C23; */

  background-color: white;
  webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.gtco-nav.scrolled .img-logo {
  background-image: url(../img/logo_3.png);
}


.gtco-nav.scrolled ul {
  padding: 0;
  margin: 1px 0 0 0;
}

.gtco-nav.scrolled ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline;
}

.gtco-nav.scrolled ul li a {
  color: #030C23;
}

.gtco-nav2.scrolled2 ul li a {
  background: #030C23;
  color: white !important;
}

.gtco-nav2.scrolled2 ul li a:hover {
  background: #030C23;
  color: white !important;
}

.gtco-nav.scrolled ul li a:hover {
  color: #030C23;
}

.gtco-nav.scrolled ul li.active>a {
  color: #030C23;
}

.gtco-nav.scrolled ul li.btn-cta a {
  color: #030C23;
}

.gtco-nav.scrolled #gtco-logo em,
.gtco-nav.scrolled #gtco-logo a {
  color: #000;
}


#gtco-header,
#gtco-counter,
.gtco-bg {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

.gtco-bg {
  background-position: center center;
  width: 100%;
  float: left;
  position: relative;
}


.gtco-cover a {
  color: white;
}

.gtco-cover a:hover {
  color: #A8B0B2;
}

.gtco-cover h1 {
  color: white;
  font-weight: 600;
  font-size: 50px;
}


.gtco-cover {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.gtco-cover .overlay {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  justify-content: center;
  align-items: center;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 100vh;
}

.gtco-cover>.container {
  position: absolute;
  z-index: 10;
}


.gtco-cover .display-t,
.gtco-cover .display-tc {
  margin-top: 50%;
  display: table;
  width: 100%;
  vertical-align: bottom;
  margin-bottom: 5%;
  text-align: center;
}


.gtco-cover.gtco-cover-sm {
  height: 600px;
}

.gtco-cover.gtco-cover-sm .display-t,
.gtco-cover.gtco-cover-sm .display-tc {
  height: 600px;
  display: table;
  width: 100%;
}

.gtco-cover.gtco-cover-xs {
  height: 500px;
}

.gtco-cover.gtco-cover-xs .display-t,
.gtco-cover.gtco-cover-xs .display-tc {
  height: 500px;
  display: table;
  width: 100%;
}

.gtco-cover.gtco-cover-xxs {
  padding: 3em 0;
}

.gtco-cover .btn-primary {
  color: #fff !important;
}

#about,
#services,
#gtco-our-team,
#gtco-contact {
  padding: 2em 0 4em 0;
  clear: both;
}

#about .img-shadow {
  position: relative;
  background: #7ED321;
  width: 100%;
  float: left;
}

#about .img-shadow img {
  position: relative;
  top: -20px;
  left: -20px;
}

#about .heading {
  position: relative;
}

#about .heading .subtle-text {
  position: absolute;
  bottom: -1.6em;
  left: 0;
  text-transform: uppercase;
  font-size: 208px;
  color: #F8F8F8;
  font-weight: 900;
  z-index: -1;
}

.sobre h1 {
  color: #030C23;
  font-size: 24px;
  font-weight: 600;
  padding-top: 5%;
}

.sobre p {
  color: #030C23;
  margin: 0 0 50px;
  font-weight: 300;
}

.norma .espaco {
  margin: 100px 0 100px 0;
}

.norma h1 {
  color: #030C23;
  font-size: 24px;
  font-weight: 600;
  padding-top: 5%;
}

.norma h3 {
  color: #030C23;
  font-size: 18px;
  font-weight: 400;
  padding-top: 5%;
}


.norma p {
  color: #030C23;
  margin: 0 0 25px;
  font-weight: 300;
}

.norma b {
  font-weight: 600;

}

.norma span {
  color: #202940;
}

.norma .img {
  margin-top: 35px;
  width: 100%;
  height: 650px;
  background-repeat: round;


}

.norma .centro {
  padding-top: 30%;
}

#services .heading {
  position: relative;
}

.service-title {
  color: #030C23;
  margin-top: 60px;
  font-size: 24px;
  font-weight: 600;
}

.services .titulo {
  color: #030C23;
  font-size: 36px;
  line-height: 45px;
  font-weight: 600;
  padding-top: 0 !important;
}

.services h1 {
  color: #030C23;
  font-size: 24px;
  font-weight: 600;
  padding-top: 25%;
}


.services h2 {
  color: #030C23;
  font-size: 22px;
  font-weight: 600;
  padding-top: 25%;
}

.services h3 {
  color: #030C23;
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;

}

.services span {
  color: #202940;
}

.services p {
  color: #030C23;
  margin: 0 0 50px;
  font-weight: 300;
  padding: 0px 100px 0px 0px;
}



.services .container-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}

.services .center-img {
  width: 60%;
  height: 450px;
  margin-left: 10%;
  margin-top: 15%;
  position: absolute;
  background-repeat: space;
  background-size: cover;
  background-position: left;
  filter: contrast(1) saturate(1.5);
  z-index: 1;
}

.services .left-img {
  background-color: #A8B0B2;
  width: 30%;
  height: 450px;
  z-index: -1;
}

.services .right-img {
  background-color: #A8B0B2;
  margin-top: 45%;
  margin-right: 7.7%;
  width: 30%;
  height: 450px;
  z-index: -1;
}

#services .heading .subtle-text {
  position: absolute;
  bottom: -1.6em;
  left: 0;
  text-transform: uppercase;
  font-size: 208px;
  color: #F8F8F8;
  font-weight: 900;
  z-index: -1;
  line-height: 1;
}

#services .heading .subtle-text span {
  display: block;
}

#services .gtco-practice-area-item {
  margin-bottom: 30px;
}

#services .gtco-practice-area-item .gtco-icon,
#services .gtco-practice-area-item .gtco-copy {
  display: table-cell;
  vertical-align: top;
}

#services .gtco-practice-area-item .gtco-icon {
  width: 100px;
}



#services .gtco-practice-area-item .gtco-copy h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.missao {
  background-color: #A8B0B2;
}

.missao h2 {
  color: #030C23;
  font-weight: 700;
  font-size: 24px;
  padding: 0px;
  margin-top: 20px;
  margin-bottom: 0px;

}

.missao p {
  color: white;
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 20px;
  margin: 0px;

}

.missao .left {
  float: left;
}

.missao .right {
  float: right;
}

.missao .img {
  margin-top: 25px;
  width: 90%;
  height: 500px;
  background-repeat: space;
  background-size: cover;
  background-position: left;
}


.depoimento {
  background-color: #202940;
}


.depoimento h1 {
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: bolder;
  margin: 50px 0px 0px 0px;
}


#gtco-contact .heading {
  position: relative;
}

#gtco-contact .heading .subtle-text {
  position: absolute;
  bottom: -1em;
  left: 0;
  text-transform: uppercase;
  font-size: 208px;
  color: #F8F8F8;
  font-weight: 900;
  z-index: -1;
  line-height: 1;
}

#gtco-contact .heading .subtle-text span {
  display: block;
}

#gtco-contact .form-group {
  margin-bottom: 10px;
  border-radius: 0px !important;
}

#gtco-contact .form-control {
  height: 40px;
  font-size: 16px;
  color: #030C23;
  box-shadow: none !important;
  border: 1px solid #030C23;
  padding-left: 20px;
  padding-right: 20px;
  background: #fff;
  border-radius: 0px;
}

#gtco-contact .form-control2 {
  width: 100%;
  height: 40px;
  font-size: 16px;
  color: white;
  box-shadow: none !important;
  border: 1px solid white;
  padding-left: 20px;
  padding-right: 20px;
  background: #202940;
  border-radius: 0px !important;
}

#gtco-contact textarea {
  height: inherit !important;
  resize: vertical;
}

.form-control::placeholder {
  color: #030C23;
}

#gtco-contact .form-control2::placeholder {
  color: white;
}

#gtco-contact .form-control2:focus {
  border-radius: 0px !important;
}


.contato p {
  color: #030C23;
}

.contato-margin {
  color: white;
  margin-top: 15%;
}

.contato-margin h1 {

  color: white;
  margin-top: 60px;
  font-size: 24px;
  font-weight: 600;

}

.heading {
  text-align: center;
  margin-bottom: 70px;
}

.heading h1 {
  margin-bottom: 10px;
}


.heading .sub {
  position: relative;
  padding-bottom: 40px;
  font-size: 18px;
  color: #757575;
}

.heading .sub:after {
  bottom: 0;
  left: 50%;
  margin-left: -36px;
  content: "";
  position: absolute;
  width: 72px;
  height: 2px;
  background: #7ED321;
}

.heading-colored {
  color: #7ED321;
}

.read-more i {
  position: relative;
  top: 2px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.read-more:hover i {
  padding-left: 10px;
}

.gtco-social-icons {
  margin-top: 50%;
  padding: 0;
}

.gtco-social-icons li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  zoom: 1;

}

.gtco-social-icons li a {
  display: -moz-inline-stack;
  display: block;
  zoom: 1;
  color: white;
  padding-top: 5px;
  padding-bottom: 5px;
}

.gtco-social-icons li a i {
  font-size: 20px;
}




.gtco-contact-info {
  margin-bottom: 30px;
  float: left;
  width: 100%;
  position: relative;
}

.gtco-contact-info ul li {
  list-style: none;
  display: inline;
}

.gtco-contact-info li a {
  padding-right: 15px;
  display: inline;
  color: #030C23;
}

.gtco-contact-info form {
  margin-top: 120px;
}


.gtco-contato {
  margin-top: 30%;
  margin-bottom: 30px;
  float: left;
  width: 100%;
  position: relative;
}

.gtco-contato ul li {
  list-style: none;
  display: inline;
}

.gtco-contato li a {
  padding-right: 15px;
  display: inline;
  color: white;
}

.gtco-contato form {
  margin-top: 120px;
}


form label {
  font-weight: normal !important;
}

#gtco-header .display-tc,
.gtco-cover .display-tc {
  display: table-cell !important;

}

#gtco-header .display-tc h1,
#gtco-header .display-tc h2,
.gtco-cover .display-tc h1,
.gtco-cover .display-tc h2 {
  margin: 0;
  padding: 0;
  color: white;
}

#gtco-header .display-tc h1,
.gtco-cover .display-tc h1 {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 1.5;
  bottom: 0;
  margin: 0;
  padding-bottom: 0;
}



#gtco-header .display-tc h2,
.gtco-cover .display-tc h2 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 30px;
}

#gtco-footer {
  background: #030C23;
}

#gtco-footer ul li {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: inline;
}

#gtco-footer li {
  padding: 0;
  margin: 0 0 15px 0;
  list-style: none;
  line-height: 1;
}

#gtco-footer li a {
  text-decoration: none;
}

#gtco-footer li a:hover {
  text-decoration: underline;
}

#gtco-footer .gtco-widget {
  margin-bottom: 30px;
}

#gtco-footer .gtco-widget h3 {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#gtco-footer .gtco-widget .gtco-quick-contact {
  padding: 0;
  margin: 0;
}

#gtco-footer .gtco-widget .gtco-quick-contact li {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
}

#gtco-footer .gtco-widget .gtco-quick-contact li i {
  width: 30px;
  float: left;
  font-size: 18px;
  position: relative;
  margin-top: 4px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}



.footer_container {
  display: flex;
  flex-direction: column;
  float: right;
}

.footer-text {
  margin-top: 50px;
  float: right;
  width: auto;
  text-align: center;
  color: white;
  line-height: 20px;
}

.footer-copyright {
  margin: 80px 0px 20px 0px;
  float: right;
  width: auto;
  text-align: center;
  color: white;
  line-height: 20px;
}

.footer-text ul {
  margin-top: 25px !important;
}

.footer-text li a {
  padding-right: 15px;
}

.footer-text-right {
  margin-top: 25px;
  float: right;
  width: auto;
  text-align: right;
}

.pull-right .up {
  vertical-align: bottom;
  text-align: right;
  color: white;
}

.icon_size {
  font-size: 35px;
  text-align: right;

}

.pull-right .down {
  margin-top: 50%;
  vertical-align: bottom;
  text-align: right;
}

.pull-left {
  margin-left: 17px;
}

.pull-center {
  margin-top: 70px;
  text-align: center;
}

.pull-center-text {
  text-align: center;
  margin-top: 5%;
  margin-bottom: 5%;
}

.pull-left-bt {
  display: flex;
  align-items: center;
  height: 130px;
  margin-left: 50px;
  margin-bottom: 15%;
}



.button-default {
  background-color: #878f91;
  color: white;
  border: none;
  padding: 5px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button-default:hover {
  background-color: #3F4748;
}

.button-form-contato {
  background-color: #878f91;
  color: white;
  border: none;
  padding: 5px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button-form-contato:hover {
  background-color: #3F4748;
}

.button-form {
  background-color: #878f91;
  color: #030C23;
  border: none;
  padding: 5px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button-form:hover {
  background-color: #3F4748;
}


.color-gray {
  background-color: #A8B0B2;
}

.table-info-gray {
  background-color: #3F4748;
  margin: 100px 0px 100px 0px;
  width: 100%;
  height: 550px;
  padding: 20px;

}

.table-info-gray h3 {
  display: table;
  /* Muda de 'table' para 'block' para o comportamento desejado */
  margin: 60px auto 15px auto;
  padding: 5px 20px 5px 20px;
  /* Aumenta o preenchimento interno */
  font-size: 20px;
  /* Tamanho de fonte maior */
  font-weight: 700;
  /* Maior peso para a fonte */
  background-color: white;
  color: #030C23;
  text-align: center;
  /* Alinha o texto ao centro */
  width: auto;

}


.table-info-gray p {
  color: white;
  font-size: 16px;
  padding: 10% 15%;
  text-align: center;
}

.img-service {
  width: 100%;
  height: 350px;
  background-repeat: space;
  background-size: cover;
  background-position: left;
  -webkit-transform: skew(-15deg);
  /* Chrome, Opera */
  -ms-transform: skew(-15deg);
  /* IE */
  transform: skew(-15deg);
  /* Padrão */
}

.img-service-2 {
  border-bottom: 600px solid;
  border-left: 150px solid transparent;
  border-right: 0px solid transparent;
  height: 550px;
  width: 100%;
  margin: 15% 0% 10% 0%;
  color: #A8B0B2;
}

.img-text {
  color: white;
  font-weight: 600;
  display: flex;
  line-height: 16px;
  text-align: center;
  padding-top: 95%;
  padding-left: 15%;
  -webkit-transform: skew(+15deg);
  /* Chrome, Opera */
  -ms-transform: skew(+15deg);
  /* IE */
  transform: skew(+15deg);
  /* Padrão */
}



#gtco-footer .copyright .block {
  display: block;
}

.copyright {
  font-family: "Poppins", serif;
  font-size: 12px;
}

#gtco-offcanvas {
  position: absolute;
  position: fixed;
  z-index: 1901;
  width: 270px;
  background: black;
  top: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 45px 40px 40px 40px;
  overflow-y: auto;
  display: none;
  -moz-transform: translateX(270px);
  -webkit-transform: translateX(270px);
  -ms-transform: translateX(270px);
  -o-transform: translateX(270px);
  transform: translateX(270px);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}



.offcanvas #gtco-offcanvas {
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}

#gtco-offcanvas a {
  color: rgba(255, 255, 255, 0.5);
}

#gtco-offcanvas a:hover {
  color: rgba(255, 255, 255, 0.8);
}

#gtco-offcanvas ul {
  padding: 0;
  margin: 0;
}

#gtco-offcanvas ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

#gtco-offcanvas ul li>ul {
  padding-left: 20px;
  display: none;
}

#gtco-offcanvas ul li.offcanvas-has-dropdown>a {
  display: block;
  position: relative;
}

#gtco-offcanvas ul li.offcanvas-has-dropdown>a:after {
  position: absolute;
  right: 0px;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e921";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#gtco-offcanvas ul li.offcanvas-has-dropdown.active a:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.uppercase {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.js-gotop:hover {
  text-align: center;
}

.gototop {
  position: fixed;
  bottom: 20%;
  right: 20.1%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;

}

.gototop.footer {
  position: fixed;
  bottom: 15%;
}


.gototop.active {
  opacity: 1;
  visibility: visible;
}

.gototop a {
  width: 50px;
  height: 50px;
  display: table;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.gototop a i {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
  font-size: 30px
}

.gototop a:hover,
.gototop a:active,
.gototop a:focus {
  text-decoration: none;
  outline: none;
}

.gtco-nav-toggle {
  width: 25px;
  height: 25px;
  cursor: pointer;
  text-decoration: none;
}

.gtco-nav-toggle.active i::before,
.gtco-nav-toggle.active i::after {
  background: #444;
}

.gtco-nav-toggle:hover,
.gtco-nav-toggle:focus,
.gtco-nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}

.gtco-nav-toggle i {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 2px;
  color: white;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #030C23;
  transition: all .2s ease-out;
}

.gtco-nav-toggle i::before,
.gtco-nav-toggle i::after {
  content: '';
  width: 25px;
  height: 2px;
  background: #030C23;
  position: absolute;
  left: 0;
  transition: all .2s ease-out;
}

.gtco-nav-toggle.gtco-nav-white>i {
  color: #fff;
  background: #030C23;
}

.gtco-nav-toggle.gtco-nav-white>i::before,
.gtco-nav-toggle.gtco-nav-white>i::after {
  background: #030C23;
}

.gtco-nav-toggle i::before {
  top: -7px;
}

.gtco-nav-toggle i::after {
  bottom: -7px;
}

.gtco-nav-toggle:hover i::before {
  top: -10px;
}

.gtco-nav-toggle:hover i::after {
  bottom: -10px;
}

.gtco-nav-toggle.active i {
  background: transparent;
}

.gtco-nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.gtco-nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.gtco-nav-toggle {
  position: fixed;
  right: 0px;
  top: 10px;
  z-index: 21;
  padding: 6px 0 0 0;
  display: block;
  margin: 0 auto;
  display: none;
  height: 44px;
  width: 44px;
  z-index: 2001;
  border-bottom: none !important;
}



.btn {
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 30px;
}

.btn.btn-md {
  padding: 8px 20px !important;
}

.btn.btn-lg {
  padding: 18px 36px !important;
}

.btn:hover,
.btn:active,
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  background: #7ED321;
  color: #fff;
  border: 2px solid #7ED321 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #8bde2f !important;
  border-color: #8bde2f !important;
}

.btn-primary.btn-outline {
  background: transparent;
  color: #7ED321;
  border: 2px solid #7ED321;
}

.btn-primary.btn-outline:hover,
.btn-primary.btn-outline:focus,
.btn-primary.btn-outline:active {
  background: #7ED321;
  color: #fff;
}

.btn-success {
  background: #5cb85c;
  color: #fff;
  border: 2px solid #5cb85c;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background: #4cae4c !important;
  border-color: #4cae4c !important;
}

.btn-success.btn-outline {
  background: transparent;
  color: #5cb85c;
  border: 2px solid #5cb85c;
}

.btn-success.btn-outline:hover,
.btn-success.btn-outline:focus,
.btn-success.btn-outline:active {
  background: #5cb85c;
  color: #fff;
}

.btn-info {
  background: #5bc0de;
  color: #fff;
  border: 2px solid #5bc0de;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  background: #46b8da !important;
  border-color: #46b8da !important;
}

.btn-info.btn-outline {
  background: transparent;
  color: #5bc0de;
  border: 2px solid #5bc0de;
}

.btn-info.btn-outline:hover,
.btn-info.btn-outline:focus,
.btn-info.btn-outline:active {
  background: #5bc0de;
  color: #fff;
}

.btn-warning {
  background: #f0ad4e;
  color: #fff;
  border: 2px solid #f0ad4e;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background: #eea236 !important;
  border-color: #eea236 !important;
}

.btn-warning.btn-outline {
  background: transparent;
  color: #f0ad4e;
  border: 2px solid #f0ad4e;
}

.btn-warning.btn-outline:hover,
.btn-warning.btn-outline:focus,
.btn-warning.btn-outline:active {
  background: #f0ad4e;
  color: #fff;
}

.btn-danger {
  background: #d9534f;
  color: #fff;
  border: 2px solid #d9534f;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background: #d43f3a !important;
  border-color: #d43f3a !important;
}

.btn-danger.btn-outline {
  background: transparent;
  color: #d9534f;
  border: 2px solid #d9534f;
}

.btn-danger.btn-outline:hover,
.btn-danger.btn-outline:focus,
.btn-danger.btn-outline:active {
  background: #d9534f;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  color: #000;
  background: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}

.btn-white.btn-outline {
  color: #fff;
  border: 2px solid #fff;
}

.btn-white.btn-outline:hover,
.btn-white.btn-outline:focus,
.btn-white.btn-outline:active {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}

.btn-outline {
  background: none;
  border: 2px solid gray;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  box-shadow: none;
}

.btn.with-arrow {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn.with-arrow i {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn.with-arrow:hover {
  padding-right: 50px;
}

.btn.with-arrow:hover i {
  color: #fff;
  right: 18px;
  visibility: visible;
  opacity: 1;
}

#gtco-contact h3 {
  color: #fff;
  font-size: 30px;
}

.row-pb-md {
  padding-bottom: 4em !important;
}

.row-pb-sm {
  padding-bottom: 2em !important;
}

.js .animate-box {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */

.swiper-pagination-bullet {
  background-color: aliceblue !important;
}

:root {
  --swiper-theme-color: #fff !important;
}

.btn_depoimento {
  width: 95%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  top: 250px;
  cursor: pointer;
  max-width: 1700px;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
  text-align: left;
  color: white;
}

.responsive-container-block {

  width: 100%;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bg {
  flex-direction: column;
  align-items: center;

  max-width: 1700px;
  margin-top: -50px;
}

.text-blk.title {
  font-size: 46px;
  line-height: 64px;
  font-weight: 900;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.container-block {
  min-height: 75px;

  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: block;
}

.swiper-container {
  width: 85%;
  max-width: 1520px;
  height: auto;
  overflow: hidden;
}

.swiper-slide {
  text-align: left;
  font-size: 18px;

  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  opacity: 0.3;
  height: fit-content;
}

.swiper-slide.swiper-slide-next {
  opacity: 1;
}

.swiper-slide.swiper-slide-next .content .quotes {
  color: rgb(3, 169, 244);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.responsive-container-block.content {
  flex-direction: column;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  position: relative;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.text-blk.name {
  font-size: 16px;
  line-height: 32px;
  font-weight: 900;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  text-align: left;
}

.text-blk.desig {
  font-size: 20px;
  line-height: 24px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.text-blk.info {
  max-width: 550px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  font-size: 16px;
  line-height: 30px;
}

.text-blk.quotes {
  position: absolute;
  left: 20px;
  font-size: 144px;
  line-height: 32px;
  top: 17px;
  font-weight: 900;
  color: rgb(0, 0, 0);
}

.container-block.swiper-button-prevs {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.container-block.swiper-button-nexts {
  width: auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.profile-img {
  width: auto;
  max-width: 130px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  min-height: 130px;
}

.swiper-slide img.review {
  width: 125px;
}

.pagination-button {
  width: 36px;
  height: 36px;
}

.swiper-pagination {
  min-height: auto;
  position: relative;
}

.content {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}


@media (max-width: 1024px) {
  .swiper-slide {
    opacity: 0.3;
  }

  .swiper-slide.swiper-slide-next .content .quotes {
    color: rgb(0, 0, 0);
  }

  .swiper-slide.swiper-slide-next {
    opacity: 1;
  }

  .swiper-slide.swiper-slide-next .content .quotes {
    color: rgb(3, 169, 244);
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    opacity: 0.3;
  }

  .swiper-slide.swiper-slide-next {
    opacity: 0.3;
  }

  .swiper-slide.swiper-slide-next .content .quotes {
    color: rgb(0, 0, 0);
  }

  .swiper-slide.swiper-slide-active {
    opacity: 1;
  }

  .swiper-slide.swiper-slide-active .content .quotes {
    color: rgb(3, 169, 244);
  }

  .btn {
    width: 98%;
  }

  .text-blk.title {
    font-size: 32px;
  }
}

@media (max-width: 500px) {
  .swiper-slide {
    opacity: 0.3;
  }

  .swiper-slide .content .quotes {
    color: rgb(0, 0, 0);
  }

  .swiper-slide.swiper-slide-active {
    opacity: 1;
  }

  .swiper-slide.swiper-slide-active .content .quotes {
    color: rgb(3, 169, 244);
  }

  .btn {
    width: 99%;
  }

  .text-blk.info {
    font-size: 17px;
    line-height: 28px;

  }

  .text-blk.name {
    font-size: 22px;
    line-height: 30px;
  }

  .text-blk.desig {
    font-size: 17px;
    line-height: 28px;
  }

  .btn {
    display: none;
  }

  .responsive-container-block.content {
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .title {
    font-size: 32px;
  }

  .text-blk.title {
    font-size: 32px;
  }
}

/* =======================================================
* 	Mobile
* ======================================================= */

@media screen and (max-width: 768px) {
  .gtco-nav {
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .footer_container {
    display: flex;
    flex-direction: column;
    float: none !important;
  }

  .footer-text-right {
    margin-top: 25px;
    float: none !important;
    ;
    width: auto;
    text-align: center !important;
    ;
  }

  .logo-footer2 img {
    margin: 50px 0 30px 0;
    max-height: 30px;
    width: auto;
    text-align: center;
  }

}

@media screen and (max-width: 768px) {

  .gtco-nav .menu-1,
  .gtco-nav .menu-2 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .gtco-cover {
    height: 600px;
  }
}


@media screen and (max-width: 768px) {
  #services .gtco-practice-area-item .gtco-icon {
    width: 70px;
  }
}


@media screen and (max-width: 768px) {
  .heading h1 {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {

  #gtco-header .display-tc h1,
  .gtco-cover .display-tc h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {

  #gtco-footer .copyright .pull-left,
  #gtco-footer .copyright .pull-right {
    float: none !important;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  #gtco-offcanvas {
    display: block;
  }
}

@media screen and (max-width: 768px) {

  .service-title {
    margin-left: 15px;
    color: #030C23;
    margin-top: 60px;
    font-size: 24px;
    font-weight: 600;
  }

  .img-service {
    width: 100%;
    height: 350px;
    margin-bottom: 15px;
    background-repeat: space;
    background-size: cover;

    -webkit-transform: skew(0deg);
    /* Chrome, Opera */
    -ms-transform: skew(0deg);
    /* IE */
    transform: skew(0deg);
    /* Padrão */
    
  }


  .img-text {
    color: white;
  justify-content: center;
  align-items: center;
    font-weight: 600;
    display: flex;
    padding-top: 40%;
    padding-left: 0%;
    line-height: 24px;
    font-size: 24px;
    -webkit-transform: skew(0deg);
    /* Chrome, Opera */
    -ms-transform: skew(0deg);
    /* IE */
    transform: skew(0deg);
    /* Padrão */

  }

  .heading-title {
    position: absolute;
    width: 100%;
    margin-bottom: 20px;
    right: 0;
    left: 0;
  }

  .pull-left {
    margin-left: 0;
  }

  .gtco-nav-toggle {
    display: block;
  }


  .gtco-cover .overlay {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }


  .gtco-cover .display-t,
  .gtco-cover .display-tc {
    height: 300px;
    margin-top: 25%;
  }

  #hero .btn {
    display: block;
    width: 100%;
  }

  #hero .text-left {
    text-align: center !important;
  }

  .gtco-nav2 {
    margin-top: 35px;
    margin-right: 15px;
    z-index: 100;
  }
}