/* ==========================================================================
 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: #006338;
  border-right-color: #006338;
}
.fancy-spinner div.ring:nth-child(2) {
  border-top-color: #006338;
  border-bottom-color: #006338;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.fancy-spinner div.dot {
  width: 1rem;
  height: 1rem;
  background: #006338;
}
@-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 {
  min-height: 117px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 0 6px #dcdcdc;
  -moz-box-shadow: 0 0 6px #dcdcdc;
  box-shadow: 0 0 6px #dcdcdc;
}
header #headerTop {
  background: #f24f00;
  padding: 6px 0;
}
header #headerTop #contentHeaderTop span {
  font-size: 14px;
}
header #headerTop #contentHeaderTop .list-network {
  gap: 15px;
  margin: 0 2rem 0 0;
}
header #headerTop #contactsHeader {
  gap: 30px;
}
header #headerTop a {
  color: #fff;
  gap: 8px;
}
header #headerTop a:hover img {
  opacity: 0.6;
}
header #headerTop a img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
header #contentHeader {
  padding: 10px 0;
  -webkit-box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1) inset;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
header #contentHeader.fixed-active {
  position: fixed;
}
header #contentHeader #menu ul:not(.dropdown-menu) {
  gap: 15px 2px;
}
header #contentHeader #menu ul li a {
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  display: inline-block;
  padding: 5px 15px;
}
header #contentHeader #menu ul li a.active,
header #contentHeader #menu ul li a:hover {
  color: #fff;
  background: #006338;
}
/*END HEADER*/
/*FOOTER*/
#maps {
  margin-bottom: -8px;
}
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));
  color: #fff;
  font-family: 'PT Sans', sans-serif;
}
footer a:hover {
  color: #006338;
}
footer #listContentFooter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}
footer #listContentFooter .block-content-footer {
  flex: 1 1 auto;
}
footer #listContentFooter .block-content-footer h2 {
  font-size: 1.5rem;
}
footer #listContentFooter .block-content-footer h3 {
  font-size: 1.125rem;
}
footer #listContentFooter .block-content-footer .item-info {
  margin-bottom: 20px;
}
footer #listContentFooter .block-content-footer .item-info a {
  gap: 10px;
}
footer #listContentFooter .block-content-footer .item-info span {
  font-size: 1rem;
}
footer #listContentFooter .block-content-footer a:hover {
  color: #f24f00;
}
footer #listContentFooter .block-content-footer .list-menu a {
  font-size: 1rem;
  margin: 15px 0;
  font-weight: 600;
  display: block;
}
footer #listContentFooter .block-content-footer .list-menu a:first-child {
  margin-top: 0;
}
footer #listContentFooter .block-content-footer .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 #listContentFooter .block-content-footer .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 #f24f00;
}
footer #listContentFooter #listUnits {
  gap: 30px;
}
footer #listContentFooter #listUnits li {
  flex: 1 1 auto;
}
footer #listContentFooter #listUnits span,
footer #listContentFooter #listUnits address {
  width: 90%;
}
footer #listContentFooter #listUnits .item-contact {
  margin: 1rem 0;
}
footer #listContentFooter #listUnits .item-contact img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(243deg) brightness(103%) contrast(101%);
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
footer #listContentFooter #listUnits .item-contact a {
  display: inline-block;
  margin: 5px 0;
}
footer #listContentFooter #listUnits address,
footer #listContentFooter #listUnits address p {
  margin: 0;
  font-size: 1rem;
}
footer .filter-white {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  /* Safari 6.0 - 9.0 */
}
footer #bottomFooter {
  padding: 2rem 0;
}
footer #copyrightNetwork p {
  margin: 0;
  font-size: 14px;
}
footer #copyrightNetwork .list-network {
  margin: 0;
}
footer #copyrightNetwork #devCopyright a:hover {
  color: #f24f00;
}
@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: #fff;
  text-shadow: 0 1px 1px #000;
  background-color: rgba(0, 99, 56, 0.6);
  padding: 5px 10px;
}
#arrowUp:hover {
  background-color: #006338;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
#arrowUp img {
  height: 20px;
  filter: brightness(0) invert(1) drop-shadow(0px 1px 1px #000000);
}
/*END SETA TOPO*/
#whatsFooter {
  position: fixed;
  bottom: 5px;
  right: 4%;
  z-index: 9;
}
#whatsFooter a {
  cursor: pointer;
  display: block;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s 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;
}
#whatsFooter a:hover {
  opacity: 0.8;
}
/*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: 1rem;
  line-height: 1.6;
  color: #626262;
  font-family: 'Arial, Helvetica', sans-serif;
}
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 {
  line-height: 1.3;
  color: #363636;
  font-weight: 700;
  font-family: Georgia, sans-serif;
}
.padding-block {
  padding: 4rem 0;
}
.color-default {
  color: #006338;
}
.bg-default {
  background: #006338;
}
.color-secondary {
  color: #f24f00;
}
.background-secondary {
  background-color: #f24f00;
}
.bg-tertiary {
  background-color: #626262;
}
.bg-strong {
  background-color: #000000;
}
.background-dark {
  background-color: #363636;
}
.bg-clean {
  background: #f7f7f7;
}
.text-color {
  color: #626262;
}
.overflow-hidden {
  overflow: hidden;
}
.btn-default {
  font-size: 1.3rem;
  line-height: 1.2;
  cursor: pointer;
  padding: 12px 30px;
  font-family: Georgia, sans-serif;
  color: #fff;
  border: none;
  background-color: #006338;
  font-weight: 700;
  position: relative;
  background-size: 0% 0%;
  background-position: 50% 50%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  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:hover {
  background-size: 100% 100%;
  background-image: linear-gradient(#00fc8f, #00fc8f);
  background-repeat: no-repeat;
  color: #000;
  transition: background-size 0.3s, color 0.3s;
}
.btn-transparent {
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
  padding: 12px 30px;
  border: 2px solid #fff;
  color: #fff;
  outline: none;
  letter-spacing: 0.025em;
  font-weight: bold;
  background-color: transparent;
  position: relative;
  background-size: 100% 0%;
  background-position: 50% 50%;
  font-family: 'Roboto Slab', serif;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.btn-transparent:hover {
  background-size: 100% 100%;
  background-image: linear-gradient(#ffffff, #ffffff);
  background-repeat: no-repeat;
  color: #f24f00;
  transition: background-size 0.3s, color 0.3s;
}
.bg-black {
  background: #000;
}
/*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);
}
.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: #006338;
}
.hover-borders:hover:before {
  border-top: 40px solid #006338;
  border-right: 40px solid transparent;
  z-index: 1;
}
.hover-borders:hover:after {
  border-bottom: 40px solid #006338;
  border-left: 40px solid transparent;
  z-index: 1;
}
.list-network {
  gap: 15px;
}
.list-network li a {
  line-height: 1;
}
.list-network li a img {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  object-fit: contain;
  -o-object-fit: contain;
}
.list-network li a:hover img {
  opacity: 0.6;
}
.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: #006338;
  color: #fff;
}
.nav-breadcrumb {
  padding: .75rem 0;
  margin: 0;
}
.nav-breadcrumb .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}
.nav-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #f24f00;
}
.nav-breadcrumb .breadcrumb li {
  font-size: 14px;
}
.nav-breadcrumb .breadcrumb li.active a {
  color: #006338;
}
.nav-breadcrumb .breadcrumb li a {
  color: #f24f00;
}
.nav-breadcrumb .breadcrumb li a:hover {
  color: #006338;
}
.banner-conceptual .item-banner img {
  object-fit: cover;
  -o-object-fit: cover;
}
.banner-conceptual .content-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-conceptual .content-banner.bg-opacity {
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
}
.banner-conceptual .content-banner .logo-banner img {
  max-height: 90px;
  margin: 0 auto 30px;
  object-fit: contain;
  -o-object-fit: contain;
  width: 250px;
}
.banner-conceptual .content-banner .text-banner {
  width: 80%;
  margin: 0 auto;
}
.banner-conceptual .content-banner .caption h1,
.banner-conceptual .content-banner .caption h2 {
  font-size: 3.5rem;
}
.banner-conceptual .content-banner .caption p {
  color: #fff;
}
.list-gallery li {
  margin: 1rem 0;
}
.list-gallery li img {
  height: 350px;
}
.list-gallery li .gallery-hover {
  opacity: 0;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  color: #fff;
}
.list-gallery li .gallery-hover img {
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.list-gallery li .gallery-hover .hover-name span {
  font-size: 1rem;
}
.list-gallery li .gallery-hover .hover-name span:first-child {
  font-size: 14px;
}
.list-gallery li:hover .gallery-hover {
  opacity: 1;
}
#gallery #listGallery li {
  margin: 1rem 0;
}
#gallery #galleryAlbums li a .item-gallery figure:before {
  display: none;
}
#gallery #galleryAlbums li a .item-gallery .resume-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 1rem;
}
#gallery #galleryAlbums li a .item-gallery .resume-gallery h4 span {
  font-size: 14px;
  font-style: italic;
  color: #f7f7f7;
  margin-bottom: 5px;
}
/*RESPONSIVO*/
/* Large devices (desktops, less than 1200px) TABLET DEITADO */
@media (max-width: 1199px) {
  header #contentHeader #menu ul li a {
    font-size: 15px;
    padding: 5px 10px;
  }
  #testimonies .swiper-pagination {
    position: static;
    margin-top: 1rem;
  }
  #home #timeline ul {
    padding: 0 0 0 40px;
  }
  #home #timeline ul::before {
    height: 100%;
    width: 2px;
    top: 0;
    left: 5px;
  }
  #home #timeline ul li::before {
    left: -42px;
    top: 0;
  }
  .swiper:hover .swiper-button-prev {
    left: 15px;
  }
  .swiper .swiper-button-next::after,
  .swiper .swiper-button-prev::after {
    padding: 10px 15px;
  }
  .swiper .swiper-button-next,
  #home #conceptualHome .swiper .swiper-button-next,
  #testimonies .swiper .swiper-button-next {
    right: 25px;
  }
  .swiper:hover .swiper-button-next,
  #home #conceptualHome .swiper:hover .swiper-button-next,
  #testimonies .swiper:hover .swiper-button-next {
    right: 25px;
  }
  #home #conceptualHome .swiper:hover .swiper-button-prev,
  .swiper .swiper-button-prev,
  .swiper:hover .swiper-button-prev {
    left: 10px;
  }
  footer #listContentFooter #listUnits address p,
  footer #listContentFooter li .item-info span {
    font-size: 14px;
  }
  footer #listServicesFooter {
    margin-bottom: 2rem;
  }
  /*END HOME*/
  /*INTERN*/
  .h3,
  h3 {
    font-size: 1.2rem;
  }
  .width-block {
    width: 80%;
  }
  .h1,
  h1 {
    font-size: 24px;
  }
  #listProducts li a figure img {
    height: auto;
  }
  .list-gallery li .gallery-hover {
    opacity: 1;
    position: static;
  }
  .list-gallery li img {
    height: 250px;
  }
  #home #timeline ul li {
    margin-bottom: 30px;
  }
  .pagination-style .swiper-button-prev {
    left: -50px;
  }
  .pagination-style .swiper-button-next {
    right: -50px;
  }
  #mostRead #listPostsRead .swiper-slide img {
    height: 380px;
  }
  #blog #mostRead .post-read {
    padding: 1.5rem 1rem;
  }
  #blog #mostRead .post-read .tag {
    margin-bottom: 15px;
  }
  #blog #mostRead .post-read h3 {
    font-size: 1.125rem;
  }
  #blog #mostRead .post-read p {
    font-size: 15px;
  }
  .block-text .img-text-detail img {
    max-height: 40vh;
    width: 400px;
  }
  .tab-content {
    margin-top: 1rem;
  }
  #product .swiper-product img {
    height: auto;
  }
  #testimonies .item-testimonial .people-testimonial .people-info {
    width: 65%;
  }
  /*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;
    color: #f24f00;
  }
  #iconNavicon label .lines {
    width: 12%;
  }
  #iconNavicon label .lines span {
    display: block;
    background: #f24f00;
    -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;
  }
  header #contentHeader nav#menu {
    display: none;
    margin: 20px 0px 0px;
    max-height: 80vh;
    overflow: auto;
  }
  header #contentHeader nav#menu ul li {
    text-align: left;
    margin: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  header #contentHeader nav#menu ul li a {
    letter-spacing: 1px;
    padding: 15px;
    display: block;
    white-space: normal;
    font-size: 20px;
  }
  header #contentHeader nav#menu ul li a.active:after {
    display: none;
  }
  header #contentHeader nav#menu ul li.dropdown .dropdown-toggle {
    font-size: 20px;
    letter-spacing: 1px;
    padding: 15px;
    width: 100%;
    text-align: left;
  }
  header #contentHeader 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%;
  }
  header #contentHeader nav#menu ul li.dropdown .dropdown-menu a {
    margin: 15px 0;
  }
  .padding-block {
    padding: 3rem 0;
  }
  /**********/
  .banner-conceptual .content-banner .logo-banner img {
    max-height: 60px;
  }
  .banner-conceptual .content-banner .caption h1,
  .banner-conceptual .content-banner .caption h2 {
    font-size: 2rem;
  }
  #imageAboutResume {
    margin: 0 0 2rem;
  }
  #listProducts li a .description-button {
    height: calc(-98%);
  }
  #counter ul li h3 {
    font-size: 12px;
  }
  #counter ul li span {
    font-size: 3rem;
  }
  .pagination-style .swiper-button-prev {
    left: -40px;
  }
  .pagination-style .swiper-button-next {
    right: -40px;
  }
  /*END HOME*/
  /*INTERN*/
  .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;
  }
  #infos {
    margin-bottom: 2rem;
  }
  .intern .banner-conceptual .item-banner img {
    height: 25vh;
  }
  #about #textAbout figure img {
    height: auto;
    width: auto;
  }
  #serviceContent .block-text figure img {
    width: 300px;
    height: 250px;
  }
  #product #galleryProduct {
    margin-bottom: 2rem;
  }
  .block-text .img-text-detail img {
    max-height: 30vh;
    width: 300px;
  }
  /*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;
  }
  #iconNavicon label .lines {
    width: 22%;
  }
  #iconNavicon label input:checked ~ .lines span:nth-of-type(3) {
    transform: translate(12px, -6px) rotatez(46deg);
  }
  .btn-more,
  .btn-transparent,
  .btn-default {
    width: 100%;
  }
  .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;
  }
  .padding-block {
    padding: 2rem 0;
  }
  .width-block {
    width: auto;
  }
  #headerTop #contactsHeader {
    gap: 10px 40px;
  }
  .banner-conceptual .content-banner .logo-banner img {
    width: 150px;
    margin: 0 auto 20px;
  }
  .banner-conceptual .content-banner .caption h1,
  .banner-conceptual .content-banner .caption h2 {
    font-size: 1.5rem;
  }
  .banner-conceptual .content-banner .text-banner {
    width: auto;
  }
  #home #aboutResume #imageAboutResume img {
    height: 200px;
  }
  #home #productsHome .button-more,
  #home #servicesHome .button-more {
    position: static;
  }
  #listProducts li a .card-body {
    height: auto;
  }
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    opacity: 1;
  }
  .swiper .swiper-button-next::after,
  .swiper .swiper-button-prev::after {
    padding: 10px 15px;
  }
  #ctaContact a {
    width: 100%;
  }
  #home #ctaContact .btn-transparent {
    justify-content: center;
    padding: 15px;
  }
  #copyrightNetwork {
    text-align: center;
  }
  #bottomFooter .list-network {
    justify-content: center;
    margin: 20px 0;
  }
  #formContactFixed {
    bottom: 0;
    right: inherit;
    left: 0;
    width: 100%;
    text-align: center;
  }
  #buttonCollapseForm {
    width: 95%;
  }
  #whatsFooter {
    bottom: 60px;
  }
  #arrowUp {
    right: 5px;
    bottom: 55px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  #team li .item-team img {
    height: 120px;
    width: 120px;
  }
  .nav-pills .nav-link {
    padding: 10px;
  }
  .block-text .h2,
  .block-text h2 {
    font-size: 1.4rem;
  }
  #serviceContent .block-text figure img {
    width: 100%;
  }
  #serviceContent .block-text figure {
    float: none;
    margin: 0 0 1rem;
  }
  #galleryService ul li a figure img {
    height: 120px;
  }
  .swiper .swiper-button-next,
  #home #conceptualHome .swiper .swiper-button-next,
  #testimonies .swiper .swiper-button-next {
    right: 15px;
  }
  #blog #mostRead .swiper figure {
    width: 100%;
  }
  #blog #listPostsRead .swiper-slide img {
    height: 220px;
  }
  #blog #mostRead .block-text-post {
    position: static;
  }
  .block-text .img-text-detail {
    margin-bottom: 2rem;
    float: none;
    margin-right: 0;
  }
  #devCopyright {
    margin-top: 1rem;
  }
  .block-text .img-text-float {
    float: none;
    margin: 20px 0;
  }
  #testimonies .item-testimonial {
    padding: 1rem;
  }
  .people-info strong,
  .people-info span {
    font-size: 13px;
  }
}
/* Extra small devices (portrait phones, less than 576px) sm*/
