* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  max-width: 100%;
}
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #333333;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main > div:first-child {
  position: relative;
  z-index: 1;
  flex: 1;
}

.page-padding {
  padding: 15rem 0 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0 6rem 0;
  }
}

.title {
  font-weight: 700;
  color: #333399;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.subtitle {
  margin: 2rem 0;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  line-height: 1;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn i {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-black {
  background-color: #000;
}
.btn--bg-black:hover {
  background-color: #262626;
}
.btn--bg-orange {
  background-color: #ff6600;
}
.btn--bg-orange:hover {
  background-color: #b34700;
}
.btn--bg-gray {
  background-color: #ededed;
}
.btn--bg-gray:hover {
  background-color: #c7c7c7;
}

.icon {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  position: absolute;
  left: -9999px;
}
.form-group input:not([type=file], [type=submit], [type=checkbox]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: 1px solid #95959f;
  background-color: #f7f7f7;
  color: #333333;
}
.form-group input:not([type=file], [type=submit], [type=checkbox])::placeholder,
.form-group textarea::placeholder {
  color: #333399;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.products-item {
  position: relative;
  overflow: hidden;
}
.products-item__image {
  aspect-ratio: 4/3;
}
.products-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-item__text {
  background-color: #f4f4f4;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.2s;
}
.products-item__category {
  color: #333333;
}
.products-item__name {
  color: #333333;
  font-weight: 500;
  font-size: 2rem;
}
.products-item__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(51, 51, 153, 0.8), rgba(51, 51, 153, 0.5));
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.products-item__hover .products-item__text {
  background-color: transparent;
  position: relative;
  padding: 4rem 2rem;
}
.products-item__hover .products-item__category {
  color: #fff;
}
.products-item__hover .products-item__name {
  color: #fff;
}
.products-item__hover .products-item__cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
}
.products-item__hover .products-item__cta .btn {
  font-size: 2rem;
}
.products-item__hover .products-item__cta .btn.btn--border-white:hover {
  color: #181818 !important;
  background-color: #fff !important;
}
.products-item:hover .products-item__hover {
  opacity: 1;
  visibility: visible;
}
.products-item:hover > a .products-item__text {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .products-item:hover .products-item__hover {
    opacity: 0;
    visibility: hidden;
  }
  .products-item:hover > a .products-item__text {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
  }
}

.benefits-item {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: #181818;
  transition: all 0.2s;
  padding: 2rem;
  height: 100%;
}
.benefits-item:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #e9e9e9;
}
.benefits-item__icon {
  width: 6rem;
  height: 6rem;
}
.benefits-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.benefits-item__text {
  text-align: center;
}
.benefits-item__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333399;
}
.benefits-item__description {
  text-align: center;
}

.projects-item {
  position: relative;
  overflow: hidden;
}
.projects-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in;
}
.projects-item__content {
  padding: 4rem;
  margin: 6rem;
  margin-left: 0;
  padding-right: 1.2rem;
  background-color: rgba(51, 51, 153, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
  color: #fff;
  transition: all 0.2s;
}
.projects-item__content h3 {
  font-weight: 700;
  font-size: 2.4rem;
}
.projects-item__content p {
  font-size: 2rem;
}
.projects-item__content .btn {
  align-self: flex-end;
}
.projects-item:hover .projects-item__image {
  transform: scale(1.05);
  filter: brightness(1.2);
}
.projects-item:hover .projects-item__content {
  background-color: rgba(51, 51, 153, 0.9);
}

.blog-item {
  position: relative;
  transition: all 0.2s ease-in;
}
.blog-item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-item__image img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  transition: all 0.2s ease-in;
}
.blog-item__text {
  background-color: #f7f7f7;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.blog-item__title {
  color: #333399;
  font-weight: 700;
  font-size: 1.6rem;
}
.blog-item__description {
  margin-bottom: 0;
  line-height: 1.25;
  color: #333333;
  margin-bottom: 1.2rem;
}
.blog-item__cta {
  align-self: center;
  margin-top: auto;
}
.blog-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.blog-item:hover .blog-item__image img {
  filter: brightness(1.1);
}

.footer {
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  margin-top: 6rem;
}
.footer-contact {
  background-color: #333399;
  padding: 2.8rem 0;
}
.footer-contact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 991px) {
  .footer-contact__content {
    justify-content: center;
  }
}
.footer-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.4rem;
}
@media (max-width: 575px) {
  .footer-contact__item span {
    display: none;
  }
}
@media (max-width: 575px) {
  .footer-contact__item span {
    display: none;
  }
}
.footer-contact__item span:hover {
  text-decoration: underline;
}
.footer-contact__item a {
  color: #fff;
}
.footer-contact__item a:hover {
  text-decoration: underline;
}
.footer-contact__item:hover .footer-contact__icon {
  background-color: #fff;
  color: #6766b4;
  border: 1px solid #fff;
}
.footer-contact__icon {
  background-color: #6766b4;
  color: #fff;
  border: 1px solid #6766b4;
  transition: all 0.2s;
}
.footer-contact__text-wrapped {
  display: flex;
  flex-direction: column;
}
.footer-contact__social .icon {
  background-color: #6766b4;
  color: #fff;
  border: 1px solid #6766b4;
  transition: all 0.2s;
}
.footer-contact__social .icon:hover {
  background-color: #fff;
  color: #6766b4;
  border: 1px solid #fff;
}
.footer-logo {
  flex: 1;
  width: 20rem;
}
@media (max-width: 991px) {
  .footer-logo {
    width: 15rem;
  }
}
.footer-logo img {
  width: 100%;
}
.footer-doubts {
  background-color: #2b2b8d;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 1.6rem 1.5rem;
}
.footer-doubts span {
  font-weight: 300;
}
.footer-doubts a {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}
.footer-copyright {
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background: #ff6600;
  color: #fff;
  text-transform: uppercase;
}
.footer-copyright__policy {
  color: #fff;
  position: absolute;
  right: 0;
  text-transform: none !important;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-copyright__policy {
    position: relative;
    margin-left: 2rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .header {
    position: relative;
  }
}
.header-placeholder {
  height: 5rem;
}
@media (max-width: 991px) {
  .header-placeholder {
    height: 0;
  }
}
.header-contact {
  background-color: #2b2b8d;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-contact {
    height: auto;
  }
}
.header-contact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .header-contact__content {
    justify-content: center;
  }
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.4rem;
}
@media (max-width: 575px) {
  .header-contact__item span {
    display: none;
  }
}
.header-contact__item span:hover {
  text-decoration: underline;
}
.header-contact__item a {
  color: #fff;
}
.header-contact__item a:hover {
  text-decoration: underline;
}
.header-contact__item:hover .header-contact__icon {
  background-color: #fff;
  color: #6766b4;
  border: 1px solid #fff;
}
.header-contact__icon {
  background-color: #6766b4;
  color: #fff;
  border: 1px solid #6766b4;
  transition: all 0.2s;
}
.header-contact__text-wrapped {
  display: flex;
  flex-direction: column;
}
.header-contact__social .icon {
  background-color: #6766b4;
  color: #fff;
  border: 1px solid #6766b4;
  transition: all 0.2s;
}
.header-contact__social .icon:hover {
  background-color: #fff;
  color: #6766b4;
  border: 1px solid #fff;
}
.header-main > .container {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .header-main > .container {
    padding: 0;
  }
}
.header-logo {
  background-color: #f6f6f6;
  flex: 1;
}
.header-logo img {
  margin: auto;
  display: block;
  padding: 2.6rem 0;
  width: 25rem;
  max-width: 100%;
  transition: all 0.2s;
}
.header-nav {
  z-index: 1;
}
.header-nav:hover {
  z-index: 3;
}
@media (max-width: 991px) {
  .header-nav {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav__wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav__wrapper {
    position: unset;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.header-nav__list > li {
  text-align: center;
  flex: auto;
}
.header-nav__list > li.active > a {
  background-color: #2b2b8d;
  font-weight: 700;
}
.header-nav__list > li:first-child {
  overflow: hidden;
}
.header-nav__list > li:last-child {
  border-left: none;
}
.header-nav__list > li:last-child > a {
  background-color: #95959f;
  font-weight: 500;
}
.header-nav__list > li:last-child > a:hover {
  background-color: #7a7a87;
}
.header-nav__list > li:last-child.active a {
  background-color: #7a7a87;
  font-weight: 700;
}
@media (max-width: 991px) {
  .header-nav__list > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
}
.header-nav__list > li > a {
  width: 100%;
  display: inline-block;
  position: relative;
  color: #fff;
  background-color: #333399;
  font-size: 1.8rem;
  transition: all 0.2s;
  padding: 2rem 1rem;
  font-weight: 400;
}
.header-nav__list > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ff6600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
@media (max-width: 991px) {
  .header-nav__list > li > a {
    width: 100%;
    padding: 1rem 0;
    color: #fff;
  }
}
.header-nav__list > li > a:hover {
  background-color: #2b2b8d;
  color: #fff;
}
.header-nav__list > li:hover ul {
  opacity: 1;
  visibility: visible;
}
.header-nav__list > li:hover:has(ul) > a:after {
  opacity: 1;
  visibility: visible;
}
.header-nav__submenu {
  background-color: #ff6600;
  width: 100%;
  left: 0;
  position: absolute;
  list-style: none;
  padding: 0;
  border-bottom-right-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
  min-height: 5.2rem;
  display: flex;
  align-items: center;
}
.header-nav__submenu li a {
  display: inline-block;
  padding: 0.1rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.header-nav__submenu li a:hover {
  color: #fff;
}
.header-nav__submenu li.active > a {
  color: #fff;
  font-weight: 500;
}
.header-nav__btn {
  height: 6.7rem;
  background-color: #333399;
  position: relative;
  left: 0;
  color: #fff;
  cursor: pointer;
  width: max-content;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  padding: 0 2rem;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__secondary {
  position: absolute;
  right: 0;
  padding: 0 1.2rem;
  list-style: none;
  background-color: #333399;
  text-align: center;
  top: calc(100% - 5.2rem);
  width: 20rem;
  max-width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in;
  transform: translateY(-20px);
}
@media (max-width: 991px) {
  .header-nav__secondary {
    display: none;
  }
}
.header-nav__secondary.opened {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  z-index: 2;
}
.header-nav__secondary li a {
  display: block;
  padding: 0.8rem 2rem;
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.2s ease-in;
}
.header-nav__secondary li a:hover {
  background-color: #2b2b8d;
}
.header-nav__secondary li:not(:last-child) a {
  border-bottom: 1px solid rgba(103, 102, 180, 0.5);
}
.header-nav__secondary li.active > a {
  background-color: #2b2b8d;
  font-weight: 500;
}
.header-nav__mobile {
  position: absolute;
  width: 100%;
  background-color: #333399;
  color: #fff;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  text-align: center;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-nav__mobile {
    display: block;
  }
}
.header-nav__mobile.opened {
  visibility: visible;
  opacity: 1;
}
.header-nav__mobile > li.active > a {
  background-color: #2b2b8d;
  font-weight: 500;
}
.header-nav__mobile > li span {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.header-nav__mobile > li a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0.6rem 2rem;
  font-size: 2rem;
}
.header-nav__mobile > li button {
  background: transparent;
  font-size: 2rem;
  border: none;
  color: #fff;
  transform: rotate(90deg);
  transition: all 0.2s ease-in;
}
.header-nav__mobile > li button.collapsed {
  transform: rotate(0deg);
}
.header-nav__mobile > li:not(:last-child) {
  border-bottom: 1px solid rgba(103, 102, 180, 0.5);
}
.header-nav__mobile > li > ul {
  list-style: none;
  padding: 0.8rem 0;
}
.header-nav__mobile > li > ul li a {
  color: #fff;
  display: block;
  font-size: 1.8rem;
  padding: 0.4rem;
}
.header-nav__mobile > li > ul li.active > a {
  background-color: #2b2b8d;
  font-weight: 500;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}

.banner {
  width: 100%;
  top: 0;
  z-index: 0;
  aspect-ratio: 1920/598;
}
.banner__item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
}
.banner__image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.banner__content {
  height: 100%;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  max-width: 100%;
}
.banner__subtitle, .banner__title {
  color: #fff;
}
.text--white .banner__subtitle, .text--white .banner__title {
  color: #fff !important;
}
.text--black .banner__subtitle, .text--black .banner__title {
  color: #000 !important;
}
.banner__title {
  margin-bottom: 2rem;
  font-size: 4rem;
}
@media (max-width: 991px) {
  .banner__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .banner__title {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .banner__title {
    font-size: 1.6rem;
  }
}
.banner__subtitle {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 991px) {
  .banner__subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .banner__subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .banner__subtitle {
    font-size: 1.2rem;
  }
}
.banner__link {
  font-size: 2rem !important;
}
@media (max-width: 991px) {
  .banner__link {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  .banner__link {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 575px) {
  .banner__link {
    font-size: 1.2rem !important;
  }
}
.banner .owl-dots {
  position: absolute;
  left: 66.67%;
  bottom: 2rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #ff6600 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #cc5200 !important;
  opacity: 1;
  color: #000;
  text-decoration: none;
}

.eletrostatic-painting-banner img {
  width: 100%;
  margin-top: 6rem;
}

.intern-banner img {
  width: 100%;
}

.quote-banner {
  padding: 2rem;
  background-color: #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #fff;
  margin-top: 6rem;
  transition: all 0.2s;
}
.quote-banner span {
  font-weight: 700;
  font-size: 2rem;
}
.quote-banner i {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}
.quote-banner:hover {
  background-color: #b34700;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
  margin-bottom: -6rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

.home {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.home-about {
  overflow-x: hidden;
}
.home-about__text {
  padding-top: 6rem;
}
@media (max-width: 1199px) {
  .home-about__text {
    padding-right: 0.75rem;
    padding-left: 0.75rem !important;
  }
}
.home-about__text .btn {
  margin-top: 2rem;
}
.home-about__images {
  padding-top: 6rem;
  margin-left: 3rem;
  background-color: #e9e9e9;
}
@media (max-width: 767px) {
  .home-about__images {
    margin-left: 0;
    padding-right: 0.75rem;
    padding-left: 0.75rem !important;
    margin-top: 4rem;
  }
}
.home-about__carousel {
  width: 60rem;
  max-width: 100%;
  border-top: 1.2rem solid #ff6600;
  border-right: 1.2rem solid #ff6600;
}
.home-about__carousel .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
}
.home-about__carousel .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.home-about__carousel .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.home-about__carousel .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.home-about__carousel img {
  height: auto !important;
}
.home-products {
  padding: 6rem 0;
}
.home-products-carousel .owl-dots {
  margin-top: 2rem;
}
.home-products-carousel .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #333333;
}
.home-products-carousel .owl-dots .owl-dot:hover span {
  background-color: #333333;
}
.home-products-carousel .owl-dots .owl-dot.active span {
  background-color: #333333;
}
.home-products-carousel .owl-prev,
.home-products-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 3.5rem));
}
.home-products-carousel .owl-prev {
  left: -5rem;
}
.home-products-carousel .owl-next {
  right: -5rem;
}
.home-products-carousel .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.home-products-carousel .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #d4d4d4 !important;
  color: #fff !important;
  font-size: 1.4rem !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 0.2s;
}
.home-products-carousel .owl-nav [class*=owl-]:hover {
  background-color: #bababa !important;
  opacity: 1;
  color: #fff;
  text-decoration: none;
}
.home-products__link {
  text-align: center;
  margin-top: 2rem;
}
.home-protect {
  padding-bottom: 6rem;
}
.home-protect-item {
  display: flex;
  flex-wrap: wrap;
}
.home-protect-item.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .home-protect-item.reverse {
    flex-direction: column-reverse;
  }
}
.home-protect-item.reverse .home-protect-item__text {
  align-items: flex-start;
}
.home-protect-item.reverse .home-protect-item__text p {
  text-align: left;
}
@media (max-width: 767px) {
  .home-protect-item {
    flex-direction: column;
  }
}
.home-protect-item__image {
  flex: 1;
  aspect-ratio: 4/3;
  position: relative;
}
.home-protect-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-protect-item__text {
  width: 50rem;
  max-width: 100%;
  background-color: #333399;
  color: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .home-protect-item__text {
    width: 100%;
  }
}
.home-protect-item__text h3 {
  font-size: 2.8rem;
  font-weight: 700;
}
.home-protect-item__text h3 strong {
  background-color: #fff;
  color: #ff6600;
  padding: 0.4rem 0.4rem;
  border-radius: 0.4rem;
  display: inline-flex;
}
.home-protect-item__text p {
  text-align: right;
  font-size: 2rem;
}
.home-protect-item__text .btn {
  font-size: 2rem;
}
.home-protect-carousel .owl-dots {
  margin-top: 2rem;
}
.home-protect-carousel .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #333333;
}
.home-protect-carousel .owl-dots .owl-dot:hover span {
  background-color: #333333;
}
.home-protect-carousel .owl-dots .owl-dot.active span {
  background-color: #333333;
}
.home-benefits {
  padding-bottom: 6rem;
}
.home-benefits-carousel .owl-dots {
  margin-top: 2rem;
}
.home-benefits-carousel .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #333333;
}
.home-benefits-carousel .owl-dots .owl-dot:hover span {
  background-color: #333333;
}
.home-benefits-carousel .owl-dots .owl-dot.active span {
  background-color: #333333;
}
.home-benefits-carousel .owl-stage {
  display: flex;
}

.about {
  padding-top: 6rem;
}
.about-main {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .about-main {
    flex-direction: column;
  }
}
.about-main__text {
  flex: 1;
}
.about-main__text .heading {
  margin-bottom: 2rem;
}
.about-main__image {
  position: relative;
  flex: 1;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .about-main__image {
    margin-left: 0;
  }
}
.about-main__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about-main__image img {
    position: relative;
  }
}
.about-mvv {
  display: flex;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
@media (max-width: 575px) {
  .about-mvv {
    flex-direction: column;
  }
}
.about-mvv__item {
  flex: 1;
  padding: 2rem;
  border-right: 2px solid #ff6600;
}
@media (max-width: 575px) {
  .about-mvv__item {
    border-right: none;
    border-bottom: 2px solid #ff6600;
  }
  .about-mvv__item:last-child {
    border-bottom: none;
  }
}
.about-mvv__title {
  font-weight: 500;
  font-size: 2rem;
}
.about .home-standards {
  padding: 0;
}
.about-esg {
  padding: 6rem 0;
}
.about-esg .accordion-item {
  border: 1px solid #d4d4d4 !important;
}
.about-esg .accordion-item:not(:last-child) {
  margin-bottom: 1.6rem;
}
.about-esg .accordion-button {
  font-size: 1.8rem;
}
.about-esg .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none !important;
}
.about-work__link {
  text-align: center;
  margin-top: 3.2rem;
}

.page-404 {
  background-color: #fff;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.page-404-main h1 {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 2rem;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
}
.page-404-main p {
  margin-bottom: 3.2rem;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 3.2rem;
}
@media (max-width: 991px) {
  .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .products-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-product-main img {
  max-width: 100% !important;
  height: auto !important;
  padding: 2rem 0;
}
.single-product-infos {
  padding: 6rem 0;
}
.single-product-infos__tabs-list ul {
  display: flex;
}
.single-product-infos__tabs-list ul li {
  flex: 1;
}
.single-product-infos__tabs-list button {
  width: 100%;
  background-color: #e9e9e9;
  color: #b0b0b0;
  padding: 2rem;
  font-size: 2rem;
  font-weight: 2rem;
  position: relative;
}
.single-product-infos__tabs-list button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f7f7f7;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.single-product-infos__tabs-list button.active {
  background-color: #c2c2c2;
  color: #333333;
}
.single-product-infos__tabs-list button.active::after {
  opacity: 1;
  visibility: visible;
}
.single-product-infos__tabs-list button:hover {
  color: #333333;
}
.single-product-infos__tabs-content {
  padding: 2rem 4rem;
  background-color: #f7f7f7;
}
.single-product-gallery {
  margin-bottom: 4rem;
}
.single-product-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.single-product-gallery__item {
  position: relative;
  aspect-ratio: 1/1;
}
.single-product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 13rem;
}
@media (max-width: 767px) {
  .single-product-side {
    display: none;
  }
}
.single-product-side__title {
  color: #333399;
  font-size: 2rem;
}
.single-product-side__nav {
  list-style: none;
  padding: 0;
  background-color: #333399;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.single-product-side__nav li a {
  display: block;
  padding: 0.8rem 2rem;
  font-weight: 500;
  color: #fff;
}
.single-product-side__nav li a:hover {
  background-color: #2b2b8d;
}
.single-product-projects {
  padding-top: 6rem;
}

.projects-filter {
  width: 100%;
  padding: 2rem;
  margin-bottom: 4rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background-color: #f7f7f7;
}
.projects-filter__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.projects-filter__item label {
  padding-left: 0.4rem;
}
.projects-filter__item select {
  border: 1px solid #95959f;
  border-radius: 0.4rem;
  padding: 0.2rem 1.2rem;
}
.projects-filter__actions {
  align-self: flex-end;
}
.projects-tabs {
  display: flex;
  margin-bottom: 3.2rem;
}
.projects-tabs a {
  flex: 1;
  text-align: center;
  background-color: #f3f3f3;
  padding: 1.2rem 2rem;
  position: relative;
  font-size: 1.8rem;
}
.projects-tabs a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #ff6600;
  transition: all 0.2s;
}
.projects-tabs a.active {
  background-color: #ededed;
  font-weight: 500;
}
.projects-tabs a.active:after {
  height: 2px;
}
.projects-tabs a:hover {
  background-color: #ededed;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 3.2rem;
}
@media (max-width: 575px) {
  .projects-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-project-main {
  padding-bottom: 6rem;
}
.single-project-main img {
  max-width: 100% !important;
  height: auto !important;
  padding: 2rem 0;
}
.single-project-benefits {
  background-color: #ff6600;
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
}
.single-project-benefits > h2 {
  font-weight: 700;
  font-size: 2.4rem;
}
.single-project-benefits .owl-carousel {
  margin-top: 2rem;
}
.single-project-benefits .owl-carousel .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.single-project-benefits .owl-carousel .owl-dot:hover span {
  background-color: #fff;
}
.single-project-benefits .owl-carousel .owl-dot.active span {
  background-color: #fff;
}
.single-project-gallery {
  margin-top: 4rem;
}
.single-project-gallery .nav {
  margin-bottom: 2rem;
  justify-content: flex-start;
}
.single-project-gallery .nav-link {
  padding: 1.2rem 2.4rem;
  font-weight: 700;
  font-size: 2rem;
  color: #000;
}
.single-project-gallery .nav-link:hover {
  background-color: #f7f7f7;
}
.single-project-gallery .nav-link.active {
  color: #fff;
  background-color: #ff6600;
}
.single-project-gallery .nav-link.active:hover {
  background-color: #ff6600;
}
.single-project-pictures__grid {
  padding-bottom: 6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease-in;
  overflow: hidden;
}
.single-project-pictures__grid a {
  height: 35rem;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.single-project-pictures__grid a:last-child {
  flex-grow: 10;
}
.single-project-pictures__grid img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media (max-aspect-ratio: 1/1) {
  .single-project-pictures__grid a {
    height: 30vh;
  }
}
@media (max-height: 480px) {
  .single-project-pictures__grid a {
    height: 80vh;
  }
}
@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
  .single-project-pictures__grid {
    flex-direction: row;
  }
  .single-project-pictures__grid a {
    height: auto;
    width: 100%;
  }
  .single-project-pictures__grid img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}
.single-project-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .single-project-videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .single-project-videos__grid {
    grid-template-columns: 1fr;
  }
}
.single-project-videos__grid iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 4rem;
}
@media (max-width: 991px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .blog-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-blog-main img {
  max-width: 100% !important;
  height: auto !important;
  padding: 2rem 0;
}
.single-blog-benefits {
  background-color: #ff6600;
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
}
.single-blog-benefits > h2 {
  font-weight: 700;
  font-size: 2.4rem;
}
.single-blog-benefits .owl-carousel {
  margin-top: 2rem;
}
.single-blog-benefits .owl-carousel .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.single-blog-benefits .owl-carousel .owl-dot:hover span {
  background-color: #fff;
}
.single-blog-benefits .owl-carousel .owl-dot.active span {
  background-color: #fff;
}

.contact-infos {
  display: flex;
  gap: 4rem;
  padding-bottom: 6rem;
  flex-wrap: wrap;
}
.contact-infos__card {
  flex: 1;
  min-width: 25rem;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #f7f7f7;
}
.contact-infos__icons {
  margin-bottom: 2rem;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.contact-infos__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #c3c5d7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in;
}
.contact-infos__icon i {
  color: #333399;
  font-size: 2rem;
  transition: all 0.2s ease-in;
}
.contact-infos a.contact-infos__icon:hover {
  background-color: #333399;
}
.contact-infos a.contact-infos__icon:hover i {
  color: #fff;
  font-size: 2rem;
}
.contact-infos__label {
  font-weight: 700;
  color: #333399;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}
.contact-infos__item {
  color: #333333;
  font-size: 1.8rem;
  display: block;
}
.contact-infos a.contact-infos__item:hover {
  text-decoration: underline;
}
.contact-form .form-submit {
  position: relative;
  text-align: center;
}
.contact-form .form-submit .btn {
  min-width: 12rem;
}
.contact-form .form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2rem;
  row-gap: 4rem;
}
@media (max-width: 991px) {
  .benefits-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-assist-form .form-group label {
  position: relative;
  left: 0;
}
.tech-assist-form .form-group > label {
  font-weight: 700;
}
.tech-assist-form .form-group > span {
  display: block;
  font-weight: 700;
}
.tech-assist-form .form-group input[type=file] {
  width: 100%;
  margin-bottom: 2rem;
}
.tech-assist-form .form-radio input[type=radio] {
  width: auto;
}
.tech-assist-form .wpcf7-list-item.first {
  margin: 0;
}

.container {
  max-width: 1170px;
}

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