/* ==========================================================================
 03. PRELOAD SPINNER
 =========================================================================== */
#loaderWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1030;
}
#loading {
  background-color: #000;
  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: #ffb829;
  border-right-color: #ffb829;
}
.fancy-spinner div.ring:nth-child(2) {
  border-top-color: #ffb829;
  border-bottom-color: #ffb829;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.fancy-spinner div.dot {
  width: 1rem;
  height: 1rem;
  background: #ffb829;
}
@-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);
  }
}
/*HEADER*/
header {
  position: sticky;
  z-index: 9;
  background-color: #000;
  top: 0;
  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;
  border-top: 1px solid #ffb829;
  border-bottom: 1px solid #ffb829;
  padding: 15px 0;
}
header:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  border-top: 40px solid #ffb829;
  border-right: 40px solid transparent;
}
header:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: 0;
  border-bottom: 40px solid #ffb829;
  border-left: 40px solid transparent;
}
header #logo img {
  height: 60px;
}
header #menu ul:not(.dropdown-menu) {
  gap: 15px 30px;
}
header #menu ul li.dropdown:after {
  content: "";
  display: block;
  height: 2px;
  margin: 5px auto 0;
}
header #menu ul li.dropdown:hover:after {
  background-image: -webkit-linear-gradient(left, transparent 0%, #ffb829 50%, #ffb829 50%, transparent 100%);
  background-image: linear-gradient(left, transparent 0%, #ffb829 50%, #ffb829 50%, transparent 100%);
}
header #menu ul li a {
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
}
header #menu ul li a:not(.dropdown-toggle):after {
  content: "";
  display: block;
  height: 2px;
  margin: 5px auto 0;
}
header #menu ul li a.active,
header #menu ul li a:hover {
  color: #ffb829;
}
header #menu ul li a.active:after,
header #menu ul li a:hover:after {
  background-image: -webkit-linear-gradient(left, transparent 0%, #ffb829 50%, #ffb829 50%, transparent 100%);
  background-image: linear-gradient(left, transparent 0%, #ffb829 50%, #ffb829 50%, transparent 100%);
}
header #menu ul li.dropdown .dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
}
header #menu ul li.dropdown .dropdown-toggle:hover {
  color: #ffb829;
}
header #menu ul li.dropdown .dropdown-toggle[aria-expanded="true"]:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
header #menu ul li.dropdown .dropdown-menu {
  background: #232323;
  padding: 0;
  margin: 0;
  min-width: max-content;
  max-width: 420px;
}
header #menu ul li.dropdown .dropdown-menu a {
  font-size: 15px;
  padding: 10px 15px;
}
header #menu ul li.dropdown .dropdown-menu a:after {
  display: none;
}
header #menu ul li.dropdown .dropdown-menu a:hover {
  background: #ffb829;
  color: #000;
}
header #menu ul li.dropdown .dropdown-menu .dropdown-item {
  white-space: normal;
}
/*END HEADER*/
/*FOOTER*/
footer {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(1turn, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}
footer .list-footer li h4 {
  font-size: 20px;
}
footer .list-footer li .item-info {
  margin-bottom: 20px;
}
footer .list-footer li .item-info i {
  width: 24px;
  text-align: center;
  font-size: 22px;
}
footer .list-footer li .item-info span {
  font-size: 1rem;
}
footer .list-footer li a:hover {
  color: #ffb829;
}
footer .list-footer li .list-menu a {
  font-size: 1rem;
  margin: 15px 0;
  font-weight: 600;
  display: block;
}
footer .list-footer li .list-menu a:first-child {
  margin-top: 0;
}
footer .list-footer li .list-menu a:before {
  width: 0;
  height: 0;
  content: '';
  display: inline-block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #eee;
  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 .list-footer li .list-menu 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 #ffb829;
}
footer #copyrightNetwork {
  border-top: 1px solid;
  padding-top: 30px;
  margin-top: 40px;
}
footer #copyrightNetwork p {
  margin: 0;
  font-size: 14px;
}
footer #copyrightNetwork #devCopyright a:hover {
  color: #ffb829;
}
footer #contactFooter li {
  margin: 20px 0;
}
footer #contactFooter li .item-contact {
  display: inline-block;
  margin-left: 20px;
  font-size: 1rem;
}
footer #contactFooter li .item-contact:hover {
  color: #ffb829;
}
footer #contactFooter li i {
  font-size: 20px;
  text-align: center;
  width: 25px;
}
footer #listServicesFooter {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@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);
  }
}
/*SETA TOPO*/
#arrowUp {
  position: fixed;
  right: 5px;
  bottom: 0;
  cursor: pointer;
  font-size: 12px;
  z-index: 9;
  display: none;
  color: #ffffff;
  text-shadow: 0 1px 1px #000;
  background-color: rgba(255, 184, 41, 0.6);
  padding: 5px 10px;
}
#arrowUp:hover {
  background-color: #ffb829;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
/*END SETA TOPO*/
#whatsFooter {
  position: fixed;
  bottom: 0;
  left: 7%;
  z-index: 9;
}
#whatsFooter a {
  background: #00ce65;
  cursor: pointer;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 14px;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  -webkit-animation: shake-animation 4.72s ease infinite;
  -o-animation: shake-animation 4.72s ease infinite;
  animation: shake-animation 4.72s ease infinite;
}
#whatsFooter a:hover {
  background: #00ce65;
}
#whatsFooter a i {
  font-size: 18px;
}
/*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%;
}
html {
  scroll-behavior: smooth;
}
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: 1.2rem;
  line-height: 1.6;
  color: #ffffff;
  background: #000;
  font-family: 'Lato', sans-serif;
  -webkit-font-smoothing: antialiased;
}
ul {
  margin: 0 auto;
  padding: 0;
}
ul li {
  list-style: none;
}
p {
  font-size: 1rem;
  line-height: 1.5;
}
.jumbotron {
  padding: 2rem 0;
  margin: 0;
}
h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 900;
  line-height: 1.5;
}
.padding-block {
  padding: 4rem 0;
}
.color-default {
  color: #ffb829;
}
.bg-default {
  background: #ffb829;
}
.color-secondary {
  color: #45484b;
}
.background-secondary {
  background-color: #45484b;
}
.bg-tertiary {
  background-color: #36393b;
}
.bg-strong {
  background-color: #000000;
}
.background-dark {
  background-color: #232323;
}
.text-color {
  color: #ffffff;
}
.overflow-hidden {
  overflow: hidden;
}
.btn-default {
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
  padding: 15px 30px;
  border: none;
  color: #ffffff;
  outline: none;
  letter-spacing: 0.025em;
  font-weight: bold;
  background-color: transparent;
  position: relative;
  color: #ffb829;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.btn-default:after,
.btn-default:before {
  content: '';
  display: block;
  position: absolute;
  width: 22%;
  height: 30%;
  border: 2px solid;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  border-radius: 2px;
}
.btn-default:after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #ffb829;
  border-right-color: #ffb829;
}
.btn-default:before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: #ffb829;
  border-left-color: #ffb829;
}
.btn-default:hover {
  color: #ffffff;
}
.btn-default:hover:after,
.btn-default:hover:before {
  width: 100%;
  height: 100%;
}
.bg-black {
  background: #000;
}
canvas {
  width: 100%;
}
/*END STYLES GLOBAL*/
.object-fit {
  object-fit: cover;
  -o-object-fit: cover;
}
.effect-scale a img {
  object-fit: cover;
  -o-object-fit: cover;
}
.effect-scale a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.banner-conceptual {
  background-color: #100a00;
}
.banner-conceptual .item-banner img {
  object-fit: cover;
  -o-object-fit: cover;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.banner-conceptual .content-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.banner-conceptual .content-banner .logo-banner img {
  max-height: 90px;
  margin-bottom: 30px;
  object-fit: contain;
  -o-object-fit: contain;
  width: 250px;
}
.intern .banner-conceptual .item-banner img {
  height: 70vh;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  z-index: -1;
}
.hover-borders {
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.hover-borders:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.hover-borders:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.hover-borders:hover {
  border-color: #ffb829;
}
.hover-borders:hover:before {
  border-top: 40px solid #ffb829;
  border-right: 40px solid transparent;
  z-index: 1;
}
.hover-borders:hover:after {
  border-bottom: 40px solid #ffb829;
  border-left: 40px solid transparent;
  z-index: 1;
}
.list-network {
  gap: 15px;
}
.list-network li a {
  color: #ffffff;
  border: 2px solid;
  line-height: 1;
  padding: 8px 4px;
  font-size: 18px;
  width: 35px;
  text-align: center;
  display: block;
}
.list-network li a:hover {
  color: #ffb829;
}
.list-network li a.hover-borders:hover:before,
.list-network li a.hover-borders:hover:after {
  border-width: 8px;
}
.pagination li {
  font-size: 18px;
  margin: 5px;
}
.pagination li a {
  border: 1px solid;
  padding: 6px 10px;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.pagination li a:hover {
  color: #ffb829;
}
.pagination li.active a {
  color: #ffb829;
}
#conceptualIntern img {
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  height: 250px;
  object-fit: cover;
  -o-object-fit: cover;
}
#conceptualIntern .nav-breadcrumb {
  padding: 0;
}
.width-block {
  width: 60%;
  margin: 0 auto;
}
.cc_message a {
  display: none;
}
.cc_banner-wrapper .cc_container .cc_btn,
.cc_banner-wrapper .cc_container .cc_btn:visited {
  background-color: #ffb829;
  color: #fff;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #ffb829;
}
.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #ffb829;
  fill: none;
  stroke-dashoffset: calc(#000000);
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev,
.swiper .swiper-gallery-next,
.swiper .swiper-gallery-prev {
  color: #ffb829;
}
.swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}
.swiper .swiper-pagination-bullet-active {
  background: #ffb829;
}
.swiper-thumbs {
  height: 100px;
}
.swiper-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.swiper-thumbs .swiper-slide:hover {
  opacity: 1;
}
.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-gallery img {
  width: 100%;
  height: 65vh;
}
#canvasFixed canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#sectionCanvas {
  min-height: 80vh;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
}
#matrixRain {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 15px;
}
#particlesJs {
  width: 100%;
  height: 100%;
  background-color: #764f00;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.list-blog li figure {
  margin: 0;
}
.list-blog li figure img {
  height: 180px;
}
.list-blog li h3 {
  font-size: 1.25rem;
  margin: 0;
}
.list-blog li time {
  display: flex;
  background-color: #c28200;
  font-weight: bold;
  padding: 3px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 0.8125rem;
  position: absolute;
  top: 10px;
  left: 10px;
  gap: 5px;
  line-height: 1.5;
}
.list-blog li time span {
  border-left: 1px solid;
  padding-left: 5px;
}
.list-blog li .btn-default {
  padding: 10px 20px;
}
/* FORMULÁRIO */
.bg-form {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(1turn, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  padding: 2rem;
}
/* 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: 1px;
}
.form-group .form-control {
  height: 45px;
  color: #8e8e8e;
  font-size: 14px;
  width: 100%;
  border: 1px solid #ffffff;
  padding: 5px 10px;
  -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;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.form-group .form-control:hover,
.form-group .form-control:focus {
  background: none;
  border-color: #ffb829;
  color: #ffffff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.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 */
#listServices li {
  margin: 2rem 0;
}
#listServices li a figure:before {
  background: rgba(255, 184, 41, 0.4);
  content: "\f067";
  color: #ffffff;
  font-size: 40px;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-family: "Font Awesome 5 Pro", sans-serif;
  position: absolute;
  height: 50%;
  opacity: 0;
  left: 50%;
  top: 25%;
  width: 0;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  z-index: 2;
}
#listServices li a figure img {
  height: 300px;
  width: 100%;
}
#listServices li a figure .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffb829;
  padding: 5px 15px;
  line-height: 1.2;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #000;
}
#listServices li a:hover figure:before {
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  height: 100%;
}
#listServices li a .card-body {
  padding: 20px;
  height: calc(100% - 300px);
  justify-content: space-between;
  background: linear-gradient(0turn, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}
#listProducts li {
  margin: 2rem 0;
}
#listProducts li a figure:before {
  background: rgba(255, 184, 41, 0.4);
  content: "\f067";
  color: #ffffff;
  font-size: 40px;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-family: "Font Awesome 5 Pro", sans-serif;
  position: absolute;
  height: 50%;
  opacity: 0;
  left: 50%;
  top: 25%;
  width: 0;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  z-index: 2;
}
#listProducts li a figure img {
  height: 300px;
  width: 100%;
}
#listProducts li a figure .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffb829;
  padding: 5px 15px;
  line-height: 1.2;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #000;
}
#listProducts li a:hover figure:before {
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  height: 100%;
}
#listProducts li a .card-body {
  padding: 20px;
  height: calc(100% - 300px);
  justify-content: space-between;
  background: linear-gradient(0turn, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}
/*HOME*/
#home #aboutResume #imageAboutResume img {
  height: 320px;
}
#home #aboutResume .title-block {
  width: 90%;
}
#home #servicesHome #particlesJs {
  position: absolute;
}
#home #highlights .block-text h2 {
  border-left: 2px solid;
  padding: 15px 20px;
}
#home #highlights .list-items li {
  margin: 2rem 0;
}
#home #highlights .list-items li i {
  font-size: 3rem;
  width: 14%;
}
#home #highlights .list-items li h3 {
  font-size: 1.125rem;
  margin: 0;
}
#home #highlights .list-items li p {
  margin: 0;
}
#home #highlights .list-items li .text-icon {
  width: 80%;
}
#home #counter #contentCounter {
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}
#home #counter ul li span {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 900;
}
#home #counter ul li h3 {
  font-size: 1rem;
  text-transform: uppercase;
}
#home #timeline canvas {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  height: 100%;
}
#home #timeline ul {
  gap: 30px;
}
#home #timeline ul:before {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #ccced0;
  position: absolute;
  top: 30px;
  left: 0;
  margin: 0 auto;
}
#home #timeline ul li {
  position: relative;
  flex: 1 1 24%;
}
#home #timeline ul li:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ffb829;
  border: 4px solid #555;
  content: "";
  height: 1rem;
  left: -2px;
  position: absolute;
  top: -40px;
  width: 1rem;
}
#home #timeline ul li .text-timeline h3 span {
  font-size: 14px;
  opacity: 0.85;
}
#home #timeline ul li .text-timeline h3 strong {
  font-size: 1.5rem;
}
#home #latesNews .list-blog li {
  margin: 2rem 0;
  border-bottom: 1px solid #666;
  padding-bottom: 2rem;
}
#home #testimonies .item-testimonial {
  width: 80%;
  margin: 0 auto;
}
#home #testimonies .item-testimonial img {
  border: 2px solid #ffb829;
  height: 220px;
  width: 220px;
  object-fit: cover;
  -o-object-fit: cover;
}
#home #testimonies .item-testimonial .text-testimonial i {
  font-size: 2rem;
  margin-bottom: 10px;
}
#home #testimonies .item-testimonial .text-testimonial span {
  font-size: 1rem;
}
#home #ctaForm h2 {
  font-size: 2.5rem;
}
#home #ctaContact {
  background-attachment: fixed;
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-position: center;
  z-index: 2;
}
#home #ctaContact:after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 184, 41, 0.2);
  z-index: -1;
}
#home #ctaContact .btn-default.btn-whats i {
  color: #00ce65;
}
#conceptualHome .item-banner img {
  height: calc(100vh - 92px);
}
/*RESPONSIVO*/
/* Large devices (desktops, less than 1200px) TABLET DEITADO */
@media (max-width: 1199px) {
  header #menu ul li a {
    font-size: 16px;
  }
  header #menu ul:not(.dropdown-menu) {
    gap: 15px 20px;
  }
  #aboutResume .title-block h2 {
    font-size: 25px;
  }
  #listServices li a figure img {
    height: 250px;
  }
  #listServices li a .card-body {
    height: calc(100% - 250px);
  }
  #conceptualHome .item-banner img {
    height: 70vh;
  }
  .banner-conceptual .content-banner .logo-banner img {
    height: 60px;
    width: auto;
  }
  #home #highlights .list-items li i {
    width: 23%;
  }
  #home #highlights .list-items li .text-icon {
    width: 70%;
  }
  #home #timeline ul {
    padding: 0 0 0 40px;
  }
  #home #timeline ul::before {
    height: 100%;
    width: 2px;
    top: 0;
    left: 5px;
  }
  #home #timeline ul li {
    margin-bottom: 3rem;
  }
  #home #timeline ul li::before {
    left: -42px;
    top: 0;
  }
  #home #testimonies .item-testimonial img {
    height: 160px;
    width: 160px;
  }
  .caption h1 {
    font-size: 1.5rem;
  }
  #testimonies .swiper-pagination {
    position: static;
    margin-top: 1rem;
  }
  /*END HOME*/
  /*INTERN*/
  .h3,
  h3 {
    font-size: 1.2rem;
  }
  .width-block {
    width: 80%;
  }
  #about #team li .item-team {
    padding: 1rem;
  }
  #about #team li .item-team img {
    height: 210px;
    width: 210px;
  }
  .h1,
  h1 {
    font-size: 30px;
  }
  /*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 label {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
  }
  #iconNavicon label:before {
    content: "MENU";
    display: inline-block;
  }
  #iconNavicon label .lines {
    width: 12%;
  }
  #iconNavicon label .lines span {
    display: block;
    background: #ffffff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 5px;
    margin: 5px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }
  #iconNavicon label .lines span:nth-of-type(1) {
    width: 60%;
  }
  #iconNavicon label .lines span:nth-of-type(2) {
    width: 80%;
  }
  #iconNavicon label .lines span:nth-of-type(3) {
    width: 100%;
  }
  #iconNavicon label input {
    display: none;
  }
  #iconNavicon label input:checked ~ .lines span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(44deg) translate(4px, 0);
    width: 40%;
  }
  #iconNavicon label input:checked ~ .lines span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
  }
  #iconNavicon label input:checked ~ .lines span:nth-of-type(3) {
    transform-origin: bottom;
    width: 42%;
    transform: translate(15px, -6px) rotatez(45deg);
  }
  #iconNavicon span {
    font-size: 1rem;
    margin-right: 10px;
    vertical-align: middle;
    letter-spacing: 1px;
  }
  nav#menu {
    display: none;
    margin: 20px 0px 0px;
    max-height: 80vh;
    overflow: auto;
  }
  nav#menu ul li {
    text-align: left;
    margin: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  nav#menu ul li a {
    letter-spacing: 1px;
    padding: 15px;
    display: block;
    white-space: normal;
    font-size: 20px;
  }
  nav#menu ul li a.active:after {
    display: none;
  }
  nav#menu ul li.dropdown .dropdown-toggle {
    font-size: 20px;
    letter-spacing: 1px;
    padding: 15px;
    width: 100%;
    text-align: left;
  }
  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;
    max-width: 100%;
  }
  nav#menu ul li.dropdown .dropdown-menu a {
    margin: 15px 0;
  }
  .padding-block {
    padding: 3rem 0;
  }
  /**********/
  .banner-conceptual .content-banner {
    background: rgba(0, 0, 0, 0.6);
  }
  #conceptualHome .item-banner img,
  .banner-conceptual .item-banner img {
    height: 50vh;
    clip-path: none;
  }
  #sectionCanvas {
    min-height: 60vh;
  }
  .people-testimonial {
    margin-bottom: 1rem;
  }
  #home #counter ul li span {
    font-size: 4rem;
  }
  .width-block {
    width: 80%;
  }
  .swiper-gallery img {
    height: 35vh;
  }
  footer .infos {
    margin-bottom: 2rem;
  }
  /*END HOME*/
  /*INTERN*/
  #about #team li {
    margin: 1rem 0;
  }
  #listImageText .resume {
    margin-top: 1rem;
  }
  #accordionFaq {
    margin-top: 2rem;
  }
  #contact #contactsMaps {
    margin-top: 2rem;
  }
  #galleryProduct {
    margin-bottom: 2rem;
  }
  .image-overlay-bottom a .item-gallery .overlay-bottom {
    background-color: rgba(0, 0, 0, 0.85);
    bottom: 1px;
  }
  .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;
  }
  /*END INTERN*/
}
/* Small devices (landscape phones, less than 768px)  md*/
@media (max-width: 767px) {
  .h2,
  h2 {
    font-size: 1.5rem;
  }
  .h3,
  h3 {
    font-size: 1.4rem;
  }
  .mt-5,
  .my-5 {
    margin-top: 2rem !important;
  }
  #conceptualHome .item-banner img {
    height: 65vh;
  }
  #iconNavicon label .lines {
    width: 22%;
  }
  header:before {
    border-top-width: 15px;
    border-right-width: 15px;
  }
  header:after {
    border-bottom-width: 15px;
    border-left-width: 15px;
  }
  header #logo img {
    height: 45px;
  }
  #iconNavicon label input:checked ~ .lines span:nth-of-type(3) {
    transform: translate(12px, -6px) rotatez(46deg);
  }
  #home #anchorForm {
    margin-top: 2rem;
  }
  .bg-form {
    padding: 1.5rem;
  }
  .btn-default {
    width: 100%;
  }
  #aboutResume .title-block h2 {
    font-size: 22px;
  }
  .swiper .swiper-pagination {
    position: static;
    margin: 10px 0;
  }
  .swiper .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
  }
  #home #testimonies .item-testimonial {
    width: auto;
  }
  #listCounter li {
    margin: 1rem 0;
  }
  #matrixRain {
    display: none;
  }
  #counter {
    background: #232323;
  }
  .padding-block {
    padding: 2rem 0;
  }
  .width-block {
    width: auto;
  }
  .swiper-thumbs {
    height: 70px;
  }
  .block-resume {
    margin-top: 1rem;
  }
  #home #ctaForm h2 {
    font-size: 1.5rem;
  }
  #copyrightNetwork .list-network {
    margin: 1rem 0;
  }
  footer #copyrightNetwork {
    margin-top: 20px;
    margin-bottom: 2rem;
  }
  #whatsFooter {
    left: 3%;
  }
  #listServicesFooter {
    margin-bottom: 2rem;
  }
  #home #aboutResume #imageAboutResume img {
    height: auto;
  }
  #conceptualIntern {
    margin-top: 10px;
  }
  #conceptualIntern .row {
    flex-direction: column-reverse;
  }
  #conceptualIntern img {
    clip-path: none;
    height: 200px;
  }
  #about #textAbout figure img {
    height: 250px;
  }
  .block-text .img-text-detail {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
    width: auto;
  }
  #serviceContent .block-text {
    margin: 2rem 0;
  }
  #serviceContent .block-intro:nth-child(2n) .img-text-detail {
    float: none;
    margin-right: 0;
    margin-left: 0;
  }
  #listImageText li {
    margin: 1rem 0;
  }
  #galleryService .swiper-multiple .swiper-slide img {
    height: 150px;
  }
  #about #clients li {
    flex-basis: 40%;
  }
  #about #clients li img {
    height: auto;
  }
  #product .swiper-product img {
    height: 280px;
  }
  .block-text .h2,
  .block-text h2 {
    font-size: 1.4rem;
  }
}
/* Extra small devices (portrait phones, less than 576px) sm*/
