/* ==========================================================================
 03. PRELOAD SPINNER
 =========================================================================== */
#loaderWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1030;
}
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9;
  margin-top: 0;
  top: 0;
}
.cssload-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -40px;
  margin-left: -40px;
  width: 50px;
  height: 50px;
  animation: cssload-invert 2.3s infinite steps(2, end);
  -o-animation: cssload-invert 2.3s infinite steps(2, end);
  -ms-animation: cssload-invert 2.3s infinite steps(2, end);
  -webkit-animation: cssload-invert 2.3s infinite steps(2, end);
  -moz-animation: cssload-invert 2.3s infinite steps(2, end);
}
.fancy-spinner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
}
.fancy-spinner div {
  position: absolute;
  width: 6rem;
  height: 6rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.fancy-spinner div.ring {
  border-width: 0.25rem;
  border-style: solid;
  border-color: transparent;
  -webkit-animation: 2s fancy infinite alternate;
  animation: 2s fancy infinite alternate;
}
.fancy-spinner div.ring:nth-child(1) {
  border-left-color: #b57309;
  border-right-color: #b57309;
}
.fancy-spinner div.ring:nth-child(2) {
  border-top-color: #b57309;
  border-bottom-color: #b57309;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.fancy-spinner div.dot {
  width: 1rem;
  height: 1rem;
  background: #b57309;
}
@-webkit-keyframes fancy {
  to {
    -webkit-transform: rotate(360deg) scale(0.5);
    transform: rotate(360deg) scale(0.5);
  }
}
@keyframes fancy {
  to {
    -webkit-transform: rotate(360deg) scale(0.5);
    transform: rotate(360deg) scale(0.5);
  }
}
#headerTop {
  padding: 1rem 0;
}
#headerTop #infosTop {
  gap: 10px 30px;
}
#headerTop #infosTop .item-info-top figure {
  border: 1px solid #e0e0e0;
  padding: 10px;
  border-radius: 2px;
}
#headerTop #infosTop .item-info-top figure img {
  height: 20px;
  width: 20px;
}
#headerTop #infosTop .item-info-top strong {
  font-size: 15px;
}
#headerTop #infosTop .item-info-top address {
  margin: 0;
}
#headerTop #infosTop .item-info-top a:hover {
  color: #b57309;
}
@keyframes shake-animation {
  0% {
    transform: translate(0, 0);
  }
  1.78571% {
    transform: translate(5px, 0);
  }
  3.57143% {
    transform: translate(0, 0);
  }
  5.35714% {
    transform: translate(5px, 0);
  }
  7.14286% {
    transform: translate(0, 0);
  }
  8.92857% {
    transform: translate(5px, 0);
  }
  10.71429% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*HEADER*/
header {
  position: sticky;
  z-index: 9;
  top: -1px;
  left: 0;
  width: 100%;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  background: #3d3e3e;
  box-shadow: 0 0 5px #00000090;
  -o-box-shadow: 0 0 5px #00000090;
  -moz-box-shadow: 0 0 5px #00000090;
  -webkit-box-shadow: 0 0 5px #00000090;
}
header #logo img {
  height: 60px;
  object-fit: contain;
  -o-object-fit: contain;
}
header .btn-action-menu .btn-default {
  padding: 20px 20px 20px 50px;
  background: -webkit-linear-gradient(-30deg, #3d3e3e 12%, #b57309 12%);
  border: none;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -webkit-animation: shake-animation 4.72s ease infinite;
  -o-animation: shake-animation 4.72s ease infinite;
  animation: shake-animation 4.72s ease infinite;
}
header .btn-action-menu .btn-default:hover {
  color: #3d3e3e;
  opacity: 0.6;
}
header #menu li a {
  font-size: 1rem;
  color: #fff;
  background-color: transparent;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}
header #menu li a.active,
header #menu li a:hover {
  background-color: #b57309;
}
/*END HEADER*/
/*FOOTER*/
footer {
  /*SETA TOPO*/
  /*END SETA TOPO*/
}
footer #whatsFooter {
  position: fixed;
  bottom: 15px;
  left: 15px;
  cursor: pointer;
  z-index: 9;
  -webkit-animation: shake-animation 4.72s ease infinite;
  -o-animation: shake-animation 4.72s ease infinite;
  animation: shake-animation 4.72s ease infinite;
}
footer #maps {
  margin-bottom: -8px;
}
footer #contacts ul li a {
  display: block;
  margin-bottom: 5px;
}
footer #contacts ul li a:hover {
  color: #b57309;
}
footer #contacts ul li strong {
  font-size: 1.125rem;
}
footer #contacts ul li span {
  display: block;
  margin: 1.125rem 0 0.5rem;
}
footer #textFooter {
  width: 90%;
}
footer #textFooter p {
  color: #e9e9e9;
}
footer .menu-footer li a {
  font-size: 1rem;
  color: #e9e9e9;
  margin: 15px 0;
  font-weight: 600;
  display: block;
}
footer .menu-footer li a:first-child {
  margin-top: 0;
}
footer .menu-footer li a:hover {
  color: #b57309;
}
footer .menu-footer li a:before {
  width: 0;
  height: 0;
  content: '';
  display: inline-block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #e9e9e9;
  vertical-align: middle;
  margin-right: 10px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
footer .menu-footer li a:hover:before {
  -webkit-transform: translate3d(4px, 0px, 0px);
  -moz-transform: translate3d(4px, 0px, 0px);
  -o-transform: translate3d(4px, 0px, 0px);
  transform: translate3d(4px, 0px, 0px);
  border-left: 6px solid #b57309;
}
footer #networkCopyright {
  border-top: 1px solid #f7f7f7;
  padding-top: 30px;
  margin-top: 40px;
}
footer #networkCopyright p {
  margin: 0;
  font-size: 14px;
  color: #e9e9e9;
  transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
}
footer #networkCopyright a {
  text-decoration: underline;
  color: #fff;
  font-weight: bold;
}
footer #networkCopyright a:hover {
  color: #b57309;
}
footer #newsletter #formNews .content-form {
  gap: 0;
}
footer #newsletter #formNews .form-group {
  width: 84%;
}
footer #newsletter #formNews .send .btn-default {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0.8rem 1.25rem;
}
footer #arrowUp {
  position: fixed;
  right: 5px;
  bottom: 0;
  cursor: pointer;
  font-size: 12px;
  z-index: 9;
  display: none;
  color: #fff;
  text-shadow: 0 1px 1px #000;
  background-color: rgba(181, 115, 9, 0.6);
  padding: 5px 10px;
}
footer #arrowUp:hover {
  background-color: #b57309;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
footer #arrowUp img {
  height: 20px;
  filter: brightness(0) invert(1) drop-shadow(0px 1px 1px #000000);
}
/*END FOOTER*/
/* --- Transitions --- */
.transition-all {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.transition-color {
  transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
}
.transition-background {
  transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
}
.transition-opacity {
  transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
}
/* --- End Transitions --- */
body,
html {
  max-width: 100%;
}
a,
a:hover,
a:focus {
  color: inherit;
  outline: none;
  text-decoration: inherit;
}
a {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
figure {
  margin: 0;
}
body {
  font-size: 1rem;
  line-height: 1.6;
  color: #808080;
  font-family: 'Open Sans', sans-serif;
}
ul {
  margin: 0 auto;
  padding: 0;
}
ul li {
  list-style: none;
}
p {
  font-size: 1rem;
  line-height: 1.6;
}
.jumbotron {
  padding: 2rem 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  line-height: 1.5;
  font-weight: bold;
}
.padding-block {
  padding: 4rem 0;
}
.color-default {
  color: #b57309;
}
.bg-default {
  background: #b57309;
}
.background-dark {
  background: #222324;
}
.background-secondary {
  background: #3d3e3e;
}
.color-secondary {
  color: #3d3e3e;
}
.text-color {
  color: #808080;
}
.color-dark {
  color: #333333;
}
.text-gray {
  color: #aaaaaa;
}
.object-fit-cover {
  object-fit: cover;
  -o-object-fit: cover;
}
.btn-default {
  font-size: 1rem;
  line-height: 1.1;
  cursor: pointer;
  padding: 0.93rem 2rem;
  border: 2px solid #b57309;
  color: #fff;
  outline: none;
  background: #b57309;
  background-size: 0% 0%;
  background-position: 50% 50%;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.btn-default:hover {
  background-size: 100% 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  color: #b57309;
}
.btn-transparent {
  font-size: 1rem;
  line-height: 1.1;
  cursor: pointer;
  padding: 0.93rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  outline: none;
  background: transparent;
  background-size: 0 0;
  background-position: 50% 50%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.btn-transparent:hover {
  background-size: 100% 100%;
  background-image: linear-gradient(#f7bd60, #f7bd60);
  background-repeat: no-repeat;
  color: #fff;
  border-color: #b57309;
  -webkit-box-shadow: 8px 8px 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 8px 8px 40px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 8px 8px 40px 0 rgba(0, 0, 0, 0.3);
}
.bg-black {
  background: #000;
}
.bg-clean {
  background: #f7f7f7;
}
/*END STYLES GLOBAL*/
.effect-scale a img {
  object-fit: cover;
  -o-object-fit: cover;
}
.effect-scale a:hover img {
  -webkit-transform: scale(1.1, 1.1) rotate(3deg);
  -moz-transform: scale(1.1, 1.1) rotate(3deg);
  -ms-transform: scale(1.1, 1.1) rotate(3deg);
  -o-transform: scale(1.1, 1.1) rotate(3deg);
  transform: scale(1.1, 1.1) rotate(3deg);
}
.filter-white {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  /* Safari 6.0 - 9.0 */
}
.list-network {
  gap: 15px;
}
.list-network li a {
  line-height: 1;
  padding: 12px;
  text-align: center;
  display: block;
  background-color: #f4f4f4;
}
.list-network li a img {
  height: 16px;
  width: 16px;
}
.list-network li a:hover {
  background: #b57309;
}
.list-network li a:hover img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.cc_message a {
  display: none;
}
.cc_banner-wrapper .cc_container .cc_btn,
.cc_banner-wrapper .cc_container .cc_btn:visited {
  background-color: #b57309;
  color: #fff;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #fff;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  background: rgba(23, 24, 25, 0.5);
  padding: 12px 16px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 2px solid #b57309;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.swiper .swiper-button-next:hover:after,
.swiper .swiper-button-prev:hover:after {
  background: #b57309;
}
.swiper .swiper-button-next {
  right: 30px;
}
.swiper .swiper-button-prev {
  left: 10px;
}
.swiper .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  background: #fff;
  opacity: 1;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.swiper .swiper-pagination-bullet:hover,
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #b57309;
}
.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
  opacity: 1;
}
.pagination-style .swiper-button-prev {
  left: 0;
}
.pagination-style .swiper-button-next {
  right: 0;
}
.pagination-style .swiper-button-next,
.pagination-style .swiper-button-prev {
  position: static;
  width: auto;
}
.pagination-style .swiper-button-next:after,
.pagination-style .swiper-button-prev:after {
  border: 1px solid;
  color: #fff;
  padding: 8px 12px;
  display: block;
  font-size: 1rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
/* FORMULÁRIO */
form .alert-dismissible {
  padding-right: 20px;
}
form .alert-dismissible .close {
  float: right;
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  line-height: 1;
  font-size: 1.5rem;
}
form .invalid-tooltip {
  font-size: 11px;
}
.content-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
select.form-control:not([size]):not([multiple]) {
  height: 50px;
}
.form-group {
  width: 100%;
}
.form-group.field-col {
  flex: 1;
  width: calc(100% / 3);
  /* O numero define quantos campos maximo deve ter por linha, no caso aqui 3, pode ter 2 ou 3 */
  box-sizing: border-box;
}
.form-group select.form-control {
  padding: 6px 10px;
  color: #b0afaf;
}
.form-group select.form-control:focus {
  color: #b0afaf;
}
.form-group select.form-control:not([size]):not([multiple]) {
  height: 45px;
}
.form-group select.form-control:not([size]):not([multiple]).height-small {
  height: 35px;
}
.form-group select.form-control:not([size]):not([multiple]).height-large {
  height: 55px;
}
.form-group textarea.form-control {
  height: 85px;
  resize: none;
}
.form-group textarea.form-control.height-small {
  height: 65px;
}
.form-group textarea.form-control.height-large {
  height: 125px;
}
.form-group label {
  margin-bottom: 2px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #3d3e3e;
}
.form-group .form-control {
  height: 45px;
  color: #8e8e8e;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  padding: 5px 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.form-group .form-control:focus {
  background: #fff;
  border-color: #b57309;
  color: #333333;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.form-group .form-control:hover {
  border-color: #b57309;
}
.form-group .form-control::placeholder {
  color: #8e8e8e;
  opacity: 1;
}
.form-group .form-control.height-small {
  height: 35px;
}
.form-group .form-control.height-large {
  height: 55px;
}
::-webkit-input-placeholder {
  color: #8e8e8e !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #8e8e8e !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #8e8e8e !important;
}
:-ms-input-placeholder {
  color: #8e8e8e !important;
}
/* END FORMULÁRIO */
.block-text ul li {
  list-style: inside;
  margin: 10px 0;
  font-size: 1rem;
}
.block-text ol {
  padding: 0;
}
.block-text ol li {
  list-style-position: inside;
  font-size: 1rem;
  margin-bottom: 10px;
}
.block-text ol li p {
  display: inline;
  margin: 0;
}
.block-text.width-block {
  width: 80%;
  margin: 0 auto;
}
.block-text .fr-fic.fr-fil {
  max-width: 100%;
  height: auto;
  float: left;
  margin: 10px 20px 10px 0;
}
.block-text .fr-fic.fr-fir {
  float: right;
  margin: 10px 0 10px 20px;
}
.block-text .img-text-detail {
  margin-bottom: 20px;
  width: 100%;
}
.block-text .img-text-detail img {
  max-height: 50vh;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.block-text h2 {
  color: #3d3e3e;
}
.block-text strong {
  color: #3d3e3e;
}
.block-text h2,
.block-text h3,
.block-text h4,
.block-text h5,
.block-text h6 {
  margin-bottom: 10px;
}
.block-text h2 strong,
.block-text h3 strong,
.block-text h4 strong,
.block-text h5 strong,
.block-text h6 strong {
  font-weight: bold;
}
.block-text a {
  color: #b57309;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  text-decoration: underline;
}
.block-text a:hover {
  color: #f5a92f;
}
.accordion .accordion-item {
  border: 1px solid #f0f0f0;
  margin-bottom: 10px;
}
.accordion .accordion-item:first-child {
  border-top: 1px solid #f0f0f0;
}
.accordion .accordion-item:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.accordion .accordion-item .accordion-button:after {
  display: none;
}
.accordion .accordion-item .accordion-button span {
  color: #3d3e3e;
  font-weight: 500;
}
.accordion .accordion-item .accordion-button:before {
  content: '+';
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.5rem;
  padding: 5px 10px;
  background: #b57309;
  line-height: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  width: 34px;
  text-align: center;
}
.accordion .accordion-item .accordion-button[aria-expanded="true"]:before {
  content: '−';
}
.accordion-flush .accordion-button {
  box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -moz-box-shadow: none;
}
.accordion-flush .accordion-button:not(.collapsed) {
  background-color: #eee;
}
.accordion-flush .accordion-button:hover {
  background: #eee;
}
#listBlog {
  gap: 2rem 0;
}
#listBlog li a .item-blog img {
  height: 200px;
}
#listBlog li a .item-blog .resume-post time {
  font-size: 14px;
}
#listBlog li a .item-blog .resume-post h2,
#listBlog li a .item-blog .resume-post h3,
#listBlog li a .item-blog .resume-post h4 {
  font-size: 1.25rem;
}
#blogIntern .return a:hover {
  color: #b57309;
}
#blogIntern .img-news-detail {
  float: left;
  margin: 0 2rem 1rem 0;
}
#blogIntern .block-text a {
  color: #b57309;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
}
#blogIntern .block-text a:hover {
  color: #3d3e3e;
}
.intern #conceptual img {
  height: auto;
}
.intern #conceptual .content-banner .caption {
  margin: 0 auto;
  text-align: center;
}
.intern #conceptual .content-banner .caption h1,
.intern #conceptual .content-banner .caption h2 {
  text-transform: uppercase;
}
#conceptual img {
  max-height: calc(100vh - 162px);
  object-fit: cover;
  -o-object-fit: cover;
  min-height: 250px;
}
#conceptual .content-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
}
#conceptual .content-banner .caption {
  width: 65%;
}
#conceptual .content-banner .caption p {
  font-size: 1.125rem;
}
#clientsPartial ul li img {
  max-height: 100px;
  max-width: 250px;
}
#numbersPartial {
  padding: 2rem 0;
  color: #fff;
}
#numbersPartial .item-number .content-number {
  text-align: left;
  width: 75%;
}
#numbersPartial .item-number span {
  font-size: 48px;
  line-height: 1.2;
}
#numbersPartial .item-number small {
  display: block;
  font-size: 1.25rem;
  font-weight: normal;
}
#teamPartial {
  background-color: #fbf7f8;
}
#teamPartial .swiper-slide {
  height: auto;
}
#teamPartial .item-carousel-team {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  height: 100%;
}
#teamPartial .item-carousel-team img {
  height: 300px;
  object-fit: cover;
  -o-object-fit: cover;
}
#teamPartial .item-carousel-team .text-carousel-team {
  padding: 1.25rem;
}
#teamPartial .item-carousel-team .text-carousel-team p {
  color: #b57309;
}
#teamPartial .pagination-style .swiper-button-next::after,
#teamPartial .pagination-style .swiper-button-prev::after {
  color: #3d3e3e;
}
#testimoniesPartial {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top center;
}
#testimoniesPartial:before {
  content: '';
  display: block;
  z-index: -1;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(181, 115, 9, 0.4);
}
#testimoniesPartial .swiper-testimonies {
  padding: 20px 0;
}
#testimoniesPartial .swiper-slide {
  height: auto;
}
#testimoniesPartial .swiper-pagination {
  position: static;
  margin-top: 1rem;
}
#testimoniesPartial .item-testimony {
  background: #fff;
  padding: 2rem;
  height: 100%;
}
#testimoniesPartial .item-testimony h3 {
  margin: 0 0 5px;
  font-size: 1.25rem;
}
#testimoniesPartial .item-testimony h4 {
  margin: 0;
  font-weight: normal;
  font-size: 1rem;
}
#testimoniesPartial .item-testimony p {
  font-size: 14px;
}
#aboutHome figure {
  outline: 1px solid #ffffff;
  outline-offset: -16px;
}
#sectionCarouselServices {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top center;
}
#sectionCarouselServices:before {
  content: '';
  display: block;
  z-index: -1;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(61, 62, 62, 0.9);
}
#sectionCarouselServices .block-text h2 {
  color: #fff;
}
#sectionCarouselServices #carouselServices .swiper-slide {
  height: auto;
}
#sectionCarouselServices #carouselServices .item-carousel-service {
  height: 100%;
}
#sectionCarouselServices #carouselServices img {
  height: 250px;
}
#sectionCarouselServices #carouselServices .bg-text-carousel {
  background: #fff;
  padding: 1.5rem;
  height: calc(100% - 250px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#sectionCarouselServices #carouselServices .bg-text-carousel h3 {
  color: #3d3e3e;
  font-size: 1.25rem;
}
#sectionCarouselServices #carouselServices .bg-text-carousel h3:after {
  display: block;
  content: '';
  width: 40px;
  height: 3px;
  margin: 5px 0;
  background: #b57309;
}
#sectionCarouselServices #carouselServices .bg-text-carousel p {
  font-size: 14px;
}
#sectionForm {
  background-color: #f2f2f2;
  padding: 4rem 0 0;
}
#cta {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top center;
}
#cta:before {
  content: '';
  display: block;
  z-index: -1;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(61, 62, 62, 0.8);
}
/*RESPONSIVO*/
/* Large devices (desktops, less than 1200px) TABLET DEITADO */
@media (max-width: 1199px) {
  #headerTop #infosTop .item-info-top address,
  #headerTop #infosTop .item-info-top span {
    font-size: 14px;
  }
  header {
    position: static;
  }
  header #menu li a {
    font-size: 15px;
    padding: 1rem 1.25rem;
  }
  #headerTop #logo {
    text-align: center;
    margin-bottom: 1rem;
  }
  header .btn-action-menu .btn-default {
    padding: 20px 20px 20px 30px;
    font-size: 14px;
    background: -webkit-linear-gradient(-25deg, #3d3e3e 12%, #b57309 12%);
  }
  #conceptual img {
    max-height: calc(100vh - 234px);
  }
  #numbersPartial .item-number span {
    font-size: 40px;
  }
  #numbersPartial .item-number small {
    font-size: 1.125rem;
  }
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    opacity: 1;
  }
  #conceptual .content-banner .caption {
    width: 80%;
  }
  /*END HOME*/
  /*INTERN*/
  .h3,
  h3 {
    font-size: 1.2rem;
  }
  .intern #conceptual img {
    max-height: 40vh;
  }
  #tabsServices .tab-content {
    margin-top: 1rem;
  }
  /*END INTERN*/
}
/* Medium devices (tablets, less than 992px) TABLET */
@media (max-width: 991px) {
  .mb-5,
  .my-5 {
    margin-bottom: 1.5rem !important;
  }
  #iconNavicon {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
  }
  #iconNavicon img {
    filter: brightness(0) invert(1);
    width: 22px;
  }
  #iconNavicon span {
    font-size: 20px;
    margin-left: 10px;
    vertical-align: middle;
    letter-spacing: 1px;
  }
  #headerTop #infosTop .item-info-top figure img {
    height: 15px;
    width: 15px;
  }
  #headerTop #infosTop .item-info-top figure {
    padding: 6px 10px;
  }
  #headerTop #infosTop {
    gap: 10px 30px;
    margin: 10px 0 1.5rem;
  }
  header .btn-action-menu .btn-default {
    padding: 20px;
    background: #b57309;
  }
  header nav#menu {
    display: none;
    margin: 20px 0 0;
  }
  header nav#menu ul li {
    font-size: 24px;
    text-align: right;
    margin: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  header nav#menu ul li a {
    letter-spacing: 1px;
    padding: 15px;
    display: block;
    white-space: normal;
    border-right: none;
  }
  header nav#menu ul li.dropdown .dropdown-menu {
    position: relative !important;
    width: 100%;
    margin-bottom: 20px;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
  }
  header nav#menu ul li.dropdown .dropdown-menu a {
    margin: 15px 0;
  }
  #aboutHome img {
    height: 400px;
    object-fit: cover;
  }
  #aboutHome figure {
    margin-bottom: 2rem;
  }
  #conceptual .content-banner .caption {
    width: 90%;
    margin: 0 auto;
  }
  #numbersPartial ul {
    gap: 2rem 0;
  }
  #sectionForm .row {
    flex-direction: column-reverse;
  }
  #sectionForm figure {
    margin-top: 2rem;
  }
  #sectionForm img {
    max-height: 450px;
    object-fit: contain;
    -o-object-fit: contain;
  }
  footer #textFooter {
    width: auto;
    margin-bottom: 30px;
  }
  footer #contacts ul li strong {
    font-size: 1rem;
  }
  /*END HOME*/
  /*INTERN*/
  #conceptual .content-banner .caption p {
    font-size: 1rem;
  }
  .block-text.width-block {
    width: 90%;
  }
  .cc_banner-wrapper .cc_container .cc_message {
    margin-top: 0;
  }
  .cc_banner-wrapper .cc_container {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
  #aboutIntern .img-about {
    text-align: center;
    margin-top: 1rem;
  }
  .row.row-reverse-mobile {
    flex-direction: column-reverse;
  }
  #services #listServices li a img {
    height: auto;
  }
  #services #listServices li a .text-list-service {
    height: auto;
  }
  #serviceDetail aside {
    margin-top: 2rem;
  }
  #blogIntern .img-news-detail {
    float: none;
    margin: 0 0 2rem;
  }
  .img-news-detail img {
    width: 100%;
  }
  #infosPageContact {
    margin-top: 2rem;
  }
  #contact #blockFormPageContact {
    width: auto;
  }
  /*END INTERN*/
}
/* Small devices (landscape phones, less than 768px)  md*/
@media (max-width: 767px) {
  .h2,
  h2 {
    font-size: 1.4rem;
  }
  .h3,
  h3 {
    font-size: 1.3rem;
  }
  .mt-5,
  .my-5 {
    margin-top: 2rem !important;
  }
  .btn-default,
  .btn-transparent {
    width: 100%;
  }
  #conceptual img {
    height: 380px;
    max-height: inherit;
  }
  #conceptual .content-banner .caption {
    width: auto;
  }
  .swiper-pagination {
    position: static;
    margin-top: 1rem;
  }
  .swiper .swiper-pagination-bullet {
    width: 20px;
    height: 18px;
  }
  .form-group.field-col {
    width: 100%;
    flex: auto;
  }
  .h1,
  h1 {
    font-size: 1.5rem;
  }
  .padding-block {
    padding: 2rem 0;
  }
  .block-text.width-block {
    width: auto;
  }
  .block-text p {
    font-size: 1rem;
  }
  /********/
  header .btn-action-menu .btn-default {
    padding: 20px 10px;
    font-size: 13px;
  }
  .intern #conceptual img {
    max-height: inherit;
  }
  .swiper .swiper-pagination-bullet {
    background-color: #3d3e3e;
  }
  #aboutHome img {
    height: 300px;
  }
  #numbersPartial .item-number span {
    font-size: 30px;
  }
  #numbersPartial .item-number small {
    font-size: 1rem;
  }
  #numbersPartial .item-number figure {
    margin-bottom: 10px;
  }
  #numbersPartial .item-number .content-number {
    text-align: center;
    width: auto;
  }
  footer #contacts ul {
    gap: 1.5rem 0;
  }
  #listFooter {
    gap: 1.5rem 0;
  }
  footer #networkCopyright {
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
  #copyright {
    margin-bottom: 1.5rem;
  }
  #contact #infosPageContact ul li img {
    height: 30px;
    width: 30px;
  }
  #contact #infosPageContact ul li {
    padding: 1.5rem;
  }
}
/* Extra small devices (portrait phones, less than 576px) sm*/
