/* 
Theme Name: MultiCargo Landing Page
Theme URI: http://artedigital.rio
Author: RC
Author URI: http://artedigita.rio
Description: Multicargo Landing Page
Version: 1.0
Text Domain: artedigital
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*::after,
*::before {
  box-sizing: inherit;
}

img {
  display: inline-block;
  max-width: 100%;
}

/*  */

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block
}

body {
  margin: 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  /* background-color: #f5f5f5 */
}

a {
  color: #fff;
  -webkit-text-decoration-skip: objects;
  -webkit-transition: .3s all ease;
  background-color: transparent;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none
}

a:hover {
  color: #fff;
  text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6,
aside a,
footer a {
  word-break: break-word
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

p {
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem
}

ul {
  padding-left: 15px
}

blockquote {
  background: #f9f9f9;
  border-left: 5px solid rgba(121, 121, 253, 0.5);
  padding: 1px 10px
}

img {
  border-style: none;
  vertical-align: middle
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Inter", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
}

h1 {
  font-size: 2.5rem
}

h2 {
  font-size: 2rem
}

h3 {
  font-size: 1.75rem
}

h4 {
  font-size: 1.5rem
}

h5 {
  font-size: 1.25rem
}

h6 {
  font-size: 1rem
}

table,
th,
td {
  border: 1px solid #333
}

strong {
  font-weight: 700;
}

fieldset {
  min-width: 0
}

header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  font-weight: 400;
  background: #fff;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow-x: auto;
  overflow-y: auto;
  max-width: 500px
}

::placeholder {
  color: #FFFFFF;
}

/*  */

/* mini */

.mb-5 {
  margin-bottom: 2.5rem !important
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

@media (min-width: 576px) {
  .container {
    max-width: 540px
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 980px
  }
}

@media (min-width: 1200px) {
  .container {
    /* max-width: 1140px; */
    max-width: 1200px;
  }
}

@media (min-width: 1620px) {
  .container {
    max-width: 1360px
  }

  .row {
    max-width: none
  }

  .wrapper .main-content {
    max-width: none
  }
}


[class*="col-"] {
  padding: 0 15px;
}

/* width */
:root {
  --c: calc(100% / 12);
}

/* XS */
.col-1 {
  width: calc(var(--c) * 1);
}

.col-2 {
  width: calc(var(--c) * 2);
}

.col-3 {
  width: calc(var(--c) * 3);
}

.col-4 {
  width: calc(var(--c) * 4);
}

.col-5 {
  width: calc(var(--c) * 5);
}

.col-6 {
  width: calc(var(--c) * 6);
}

.col-7 {
  width: calc(var(--c) * 7);
}

.col-8 {
  width: calc(var(--c) * 8);
}

.col-9 {
  width: calc(var(--c) * 9);
}

.col-10 {
  width: calc(var(--c) * 10);
}

.col-11 {
  width: calc(var(--c) * 11);
}

.col-12 {
  width: calc(var(--c) * 12);
}

/* =======================
   SM 576px
======================= */
@media (min-width: 576px) {
  .col-sm-1 {
    width: calc(var(--c) * 1);
  }

  .col-sm-2 {
    width: calc(var(--c) * 2);
  }

  .col-sm-3 {
    width: calc(var(--c) * 3);
  }

  .col-sm-4 {
    width: calc(var(--c) * 4);
  }

  .col-sm-5 {
    width: calc(var(--c) * 5);
  }

  .col-sm-6 {
    width: calc(var(--c) * 6);
  }

  .col-sm-7 {
    width: calc(var(--c) * 7);
  }

  .col-sm-8 {
    width: calc(var(--c) * 8);
  }

  .col-sm-9 {
    width: calc(var(--c) * 9);
  }

  .col-sm-10 {
    width: calc(var(--c) * 10);
  }

  .col-sm-11 {
    width: calc(var(--c) * 11);
  }

  .col-sm-12 {
    width: calc(var(--c) * 12);
  }
}

/* =======================
   MD 768px
======================= */
@media (min-width: 768px) {
  .col-md-1 {
    width: calc(var(--c) * 1);
  }

  .col-md-2 {
    width: calc(var(--c) * 2);
  }

  .col-md-3 {
    width: calc(var(--c) * 3);
  }

  .col-md-4 {
    width: calc(var(--c) * 4);
  }

  .col-md-5 {
    width: calc(var(--c) * 5);
  }

  .col-md-6 {
    width: calc(var(--c) * 6);
  }

  .col-md-7 {
    width: calc(var(--c) * 7);
  }

  .col-md-8 {
    width: calc(var(--c) * 8);
  }

  .col-md-9 {
    width: calc(var(--c) * 9);
  }

  .col-md-10 {
    width: calc(var(--c) * 10);
  }

  .col-md-11 {
    width: calc(var(--c) * 11);
  }

  .col-md-12 {
    width: calc(var(--c) * 12);
  }
}

/* =======================
   LG 992px
======================= */
@media (min-width: 992px) {
  .col-lg-1 {
    width: calc(var(--c) * 1);
  }

  .col-lg-2 {
    width: calc(var(--c) * 2);
  }

  .col-lg-3 {
    width: calc(var(--c) * 3);
  }

  .col-lg-4 {
    width: calc(var(--c) * 4);
  }

  .col-lg-5 {
    width: calc(var(--c) * 5);
  }

  .col-lg-6 {
    width: calc(var(--c) * 6);
  }

  .col-lg-7 {
    width: calc(var(--c) * 7);
  }

  .col-lg-8 {
    width: calc(var(--c) * 8);
  }

  .col-lg-9 {
    width: calc(var(--c) * 9);
  }

  .col-lg-10 {
    width: calc(var(--c) * 10);
  }

  .col-lg-11 {
    width: calc(var(--c) * 11);
  }

  .col-lg-12 {
    width: calc(var(--c) * 12);
  }
}

/* =======================
   XL 1200px
======================= */
@media (min-width: 1200px) {
  .col-xl-1 {
    width: calc(var(--c) * 1);
  }

  .col-xl-2 {
    width: calc(var(--c) * 2);
  }

  .col-xl-3 {
    width: calc(var(--c) * 3);
  }

  .col-xl-4 {
    width: calc(var(--c) * 4);
  }

  .col-xl-5 {
    width: calc(var(--c) * 5);
  }

  .col-xl-6 {
    width: calc(var(--c) * 6);
  }

  .col-xl-7 {
    width: calc(var(--c) * 7);
  }

  .col-xl-8 {
    width: calc(var(--c) * 8);
  }

  .col-xl-9 {
    width: calc(var(--c) * 9);
  }

  .col-xl-10 {
    width: calc(var(--c) * 10);
  }

  .col-xl-11 {
    width: calc(var(--c) * 11);
  }

  .col-xl-12 {
    width: calc(var(--c) * 12);
  }
}


.container {
  display: block;
}

.row,
.row2 {
  display: flex;
  flex-wrap: wrap;
}

.row2 {
  margin-left: -15px;
  margin-right: -15px;
}


.list-1 ul {
  padding-left: 0;
}

.list-1 li {
  display: block;
}

.list-1 li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #FFF;
  border: 2px solid #EF7D00;
  margin-right: 16px;
  position: relative;
  top: -3px;
}

/* utils */

.w-full {
  width: 100%;
}


.alignright {
  float: right;
  margin: 5px 0 20px 20px
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0
}

.w-full {
  width: 100%;
}

.text-center {
  text-align: center;
}

.italic {
  font-style: italic;
}

.hr {
  position: relative;
}

.hr-1 {
  width: 100%;
  height: 5px;
  background: linear-gradient(270deg, #e85601 0%, #ef7d00 100%);
  z-index: 1;
  border: 0;
}

.hr-top {
  position: absolute;
  top: 0;
}

.hr-bottom {
  position: absolute;
  bottom: 0;
}

._detail1 {
  position: relative;
}

._detail1::before {
  content: "";
  position: absolute;
  background: transparent;
  background: linear-gradient(135deg, rgba(239, 125, 0, 0) 50%, rgba(255, 255, 255, 1) 50%);
  width: 40px;
  height: 40px;
  bottom: 0;
  right: 0;
}

:root {
  --ly-font_family1: 'Roboto Flex', sans-serif;
  --ly-font_family2: '';
  --ly-font_family3: '';
  --color-1: #EF7D00;
  --ly-gray1: #FAFAFA;
  --ly-gray2: #EAEAEA;
  --ly-gray3: #D8D8D8;
  --ly-gray4: #BABABA;
  --ly-gray5: #AAAAAA;
  --ly-gray9: #2D2D2D;
  --ly-gray10: #1E1E1E;
}

@media screen and (min-width:769px) {
  .mobile {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  .desktop {
    display: none !important;
  }
}

@media screen and (min-width:1171px) {
  .mobile-lg {
    display: none !important;
  }
}

@media screen and (max-width:1170.9px) {
  .desktop-lg {
    display: none !important;
  }
}

/* header */
.site-header {
  background-color: #000000;
  z-index: 10;
}

.home .site-header {
  position: absolute;
  top: 0;
  background-color: transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  max-width: 1920px;
  min-height: 140px;
}

.site-header .cta {
  display: flex;
  justify-content: flex-end;
}

.site-header .menu {
  display: flex;
  justify-content: center;
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.menu li {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1818;
  text-align: center;
  color: #ffffff;
}

.menu ul li {
  padding: 0 20px;
}

.cta a {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1818;
  text-align: center;
  color: #ffffff;
  background-color: var(--color-1);
  border-radius: 2px;
  width: 150px;
  line-height: 50px;
  padding: 0 10px;
}

.language {
  margin-left: 20px;
  background: rgba(255, 255, 255, .2);
  padding: 0 17px;
  border-radius: 2px;
}

.language a {
  background: transparent;
  padding: 0;
  border-radius: 0;
  line-height: normal;
  width: auto;
}

.language .gtranslate_wrapper {
  display: flex;
  align-items: center;
  height: 50px;
  gap: 12px;
}

.language a.glink img {
  margin: 0 !important;
  min-width: 20px !important;
}


/*  */
p {
  font-size: 14px;
  margin-bottom: 20px;
}

ul {
  font-size: 18px;
}

h2 {
  font-style: normal;
  font-weight: 200;
  font-size: 80px;
  line-height: 1.2;
  color: #ef7d00;
}

h2 span {
  color: #000000;
}

.banner-full img {
  width: 100%;
}

.banner-full .metaslider .flexslider {
  margin: 0 !important;
}

section.section-about {
  max-width: 1920px;
  margin: 0 auto;
}


.about-intro .img {
  width: 100%;
  max-width: 823px;
  padding: 0;
}

.about-intro .text {
  max-width: 670px;
  max-width: 700px;
}

.about-intro.row {
  justify-content: flex-start;
  max-width: 1576px;
  padding-top: 109px;
  margin-bottom: 55px;
  /* padding: 0 15px; */
}

.about-intro h2 {
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  color: #000000;
}

.about-intro h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: #EF7D00;
}

.about-intro p {
  font-size: 18px;
}


.about-values.row {
  justify-content: center;
  margin-bottom: 68px;
}

.about-values .item {
  padding: 15px;
  width: 33.3333%;
  max-width: 400px;
  /* min-height: 290px; */
}

.item-value {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #000000;
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 15px;
}

.item-value sub {
  font-size: 42px;
  font-weight: 400;
  vertical-align: baseline;
}


.item-value h3 {
  font-weight: 200;
  font-size: 100px;
  line-height: 1.21;
  text-align: center;
  color: #ffffff;
}

.item-value p {
  font-weight: 700;
  font-size: 28px;
  line-height: normal;
  text-align: center;
  color: #ef7d00;
}

.item-value::before,
.item-value::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #EF7D00;
  border: 5px solid #FFF;
  transform: rotate(45deg);
}

.item-value::before {
  top: -25px;
  left: -25px;
}

.item-value::after {
  bottom: -25px;
  right: -25px;
}

/* separate */

h3 {
  font-style: normal;
  font-weight: 200;
  font-size: 42px;
  line-height: 1.19;
  color: #000000;
}

h3 strong {
  color: #EF7D00;
}

h3 span {
  color: #EF7D00;
}

.about-presence {
  margin-bottom: 72px;
}

.about-presence h2 {
  text-align: center;
  margin-bottom: 37px;
}

.about-presence p {
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #000000;
}

.about-presence p strong,
.about-presence p span {
  color: #EF7D00;
}

.about-presence .global {
  margin-bottom: 32px;
}

.about-presence .nacional h2 {
  text-align: left;
  margin-bottom: 30px;
}

.about-presence .logos {
  display: flex;
  justify-content: center;
  margin: 10px 0 70px;
  gap: 40px;
}

.s-partners {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.s-partners h3 {
  text-align: center;
  margin-bottom: 48px;
}

.s-partners p {
  font-size: 18px;
}

.s-partners .items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto;
}

.s-partners .container {
  max-width: 1200px;
  padding: 0;
}

.s-partners .item {
  text-align: center;
  padding: 0 9px;
}

.s-partners {
  padding: 0 50px;
}

.s-partners+.s-partners {
  margin-top: 90px;
}

.s-partners .slick-next,
.s-partners .slick-prev {
  margin: 0 -50px;
}

.company-group {
  padding: 78px 15px 50px;
}

.company-group .item {
  padding: 15px;
}

.company-group .items {
  justify-content: center;
}

.item-company {
  text-align: center;
  /* padding: 24px; */
  max-width: 440px;
  padding: 0 24px 12px;
  text-align: left;
  border-left: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  width: 100%;
  height: 100%;
  margin: auto;
}

.item-company img {
  display: block;
  margin: 0 auto 8px;
}

.company-group .container {
  max-width: 1170px;
  padding: 0;
}

.company-group h3 {
  text-align: center;
  margin-bottom: 30px;
}

.our-team {
  position: relative;
  background-color: #F07D00;
  padding: 65px 0 101px;
}

.our-team .container {
  position: relative;
  z-index: 9;
}

.our-team h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.our-team .item {
  padding-top: 50px;
}

.our-team .slick-slider .item,
.our-team .slick-slider .item-team,
.our-team .slick-slide>div {
  height: 100%;
}

.our-team .slick-slide .social {
  margin-top: auto;
}

.item-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #000000;
  text-align: center;
  padding: 20px;
  min-height: 507px;
}

.item-team>img {
  margin-top: -70px;
  margin-bottom: 18px;
  width: 73%;
  max-width: 230px;
}

.item-team h3 {
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

.item-team small {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.16;
  text-align: center;
}

.item-team p {
  margin-top: 16px;
  margin-bottom: 28px;
  /* max-width: 258px; */
}

.item-team h3 span {
    color: inherit;
}

.text-block {
  align-items: center;
  min-height: 320px;
  background: #000000;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.17;
  text-align: center;
  color: #ffffff;
  background-position: center center;
}

.text-block p {
  background: #000000;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.17;
  color: #ffffff;
}

.multisolutions-block {
  color: #FFFFFF;
  padding: 60px 0 85px;
  background: #000000;
}

.multisolutions-block h2,
.multisolutions-block p {
  text-align: center;
}


.multisolutions-block h2 {
  margin-bottom: 35px;
}

.multisolutions-block p {
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
  color: #ffffff;
  /* margin-bottom: 61px;   */
  max-width: 985px;
  margin: 0 auto 61px;
}

.multisolutions-block .container {
  max-width: 1200px;
}

.multisolutions-block .item+.item {
  margin-top: 30px;
}

.item-solution {
  display: flex;
  padding: 40px;
  border-radius: 5px;
  border: 1px solid #2d2d2d;
  position: relative;
}

.item-solution .icon {
  /* background: url(./exportados/bg-icon.webp) no-repeat left / contain; */
  margin-top: 32px;
}

.item-solution h4 {
  font-weight: 700;
  font-size: 50px;
  line-height: 52px;
  color: #ef7d00;
}

.item-solution,
.item-solution p {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.item-solution ul {
  padding-left: 0;
}

.item.item-solution img {
  max-width: 100px;
}

.btn-link {
  background: #EF7D00;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  padding: 6px 17px;
}

.btn-link:hover {
  opacity: .9;
}

.item-solution .btn-link {
  margin-top: 14px;
}

/* v2 */
.multisolutions-block .item {
  padding: 15px;
}

.multisolutions-block .item+.item {
  margin: 0;
}

.item-solution.-small {
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 40px 24px;
  height: 100%;
  overflow: hidden;
  border-color: #2D2D2D;
}

.item-solution.-small .icon {
  margin-bottom: 28px;
}

.item-solution.-small h4 {
  margin: 0;
  font-size: 32px;
  line-height: normal;
  text-align: center;
}

.item-solution.-small:hover::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #EF7D00;
  /* border: 5px solid #EF7D00; */
  transform: rotate(45deg);
  bottom: -25px;
  right: -25px;
  opacity: 1;
}

.testimonials {
  min-height: 590px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url("./exportados/bg-depoimentos.webp") no-repeat center center;
  background-size: cover;
  background-color: #000000c7;
  color: #FFF;
}

.testimonials .container {
  max-width: 1136px;
  text-align: center;
  background: #000000;
  padding: 65px 93px 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, .1);
  min-height: 278px;
}


.testimonials .container::before,
.testimonials .container::after {
  content: "";
  background: url('./exportados/quote.svg') no-repeat center / contain;
  width: 56px;
  height: 45px;
  position: absolute;
}

.testimonials .container::before {
  left: 0;
  top: -22px;
}

.testimonials .container::after {
  right: 0;
  bottom: -22px;
  transform: rotate(180deg);
}

.testimonials h2 {
  font-weight: 500;
  font-size: 60px;
  line-height: 1.2;
  color: #ef7d00;
  margin-bottom: 32px;
}

.item-testimonial strong {
  display: block;
  line-height: normal;
  font-size: 18px;
}

.item-testimonial small {
  font-size: 16px;
  color: #bababa;
}

.item-testimonial p {
  font-size: 18px;
  margin-bottom: 42px;
}

/*  */

.site-footer {
  font-size: 14px;
  color: var(--ly-gray2);
  background: #000;
  padding-top: 100px;
}

.site-footer p {
  font-weight: 300;
}

.row {
  display: flex;
}

.site-footer>.container {
  justify-content: space-around;
  padding-bottom: 68px;
  max-width: 1920px;
}

.footer-links {
  background: #1E1E1E;
  padding: 21px 15px 31px;
}

.site-footer h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.site-footer ul {
  list-style: none;
  font-size: 14px;
  padding: 0;
}

.site-footer form {
  display: flex;
  flex-direction: column;
}

.site-footer .col-small {
  min-width: 158px;
}

input,
textarea,
select {
  font-family: 'Inter', sans-serif;
}

input {
  line-height: 16px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: -0.5px;
  font-weight: 400;
  margin-bottom: 15px;
  height: 45px;
  border-radius: 2px;
  border: 1px solid #ffffff;
  padding: 0 24px;
  background: transparent;
}

textarea {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: -0.5px;
  font-weight: 400;
  margin-bottom: 15px;
  border-radius: 2px;
  border: 1px solid #ffffff;
  padding: 24px;
  background: transparent;
}

select {
  font-size: 14px;
  letter-spacing: -0.5px;
  font-weight: 400;
  padding: 0 24px;
  border: 1px solid #ffffff;
}

input[type='submit'] {
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0;
  color: #ffffff;
  background: #F07D00;
  border-radius: 2px;
  border: 0;
}

.footer-links ul {
  display: inline-flex;
  width: 100%;
  color: var(--ly-gray3);
}

.footer-links li {
  padding: 0 3%;
}

.footer-links .container {
  padding: 15px;
  max-width: 1073px;
}

.menu-footer ul.sub-menu {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.footer-links .container {
  max-width: 1170px;
}

.footer-links ul {
  justify-content: space-between;
}

.footer-links li {
  padding: 0 15px;
}

.menu-footer ul.sub-menu li {
  padding: 0;
}

.menu-footer ul.sub-menu a {
  color: #AAAAAA;
  font-size: 12px;
}

.menu-footer ul.sub-menu a:hover {
  color: #FFFFFF;
}

.copy p {
  font-size: 12px;
  font-weight: 300;
  color: #aaaaaa;
  margin: 0;
}

.copy {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 50px;
  background: #2D2D2D;
}

.nf-form-fields-required {
  display: none;
}

.nf-field-label {
  display: none;
}

.nf-field-container {
  margin-bottom: 15px !important;
}

.nf-field-element input,
.nf-field-element select,
.nf-field-element textarea {
  min-height: 45px;
}

.nf-field-element select {
  background: #000;
  color: #FFF;
  border: 1px solid #ffffff;
}

.textarea-container {}

.nf-field-element textarea {
  display: block;
  height: auto;
  min-height: 90px;
}

.field-wrap input[type=submit] {}

div#nf-field-6-wrap .nf-field-element {
  padding: 0 24px;
  padding-right: 16px;
  border: 1px solid #ffffff;
}

select#nf-field-6 {
  padding: 0;
  border: 0;
}

.f-social a {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.f-social strong {
  font-weight: 400;
  display: block;
}

.f-social span {
  line-height: normal;
}

.f-social img {
  margin-right: 12px;
}

.slick-slider {
  position: relative;
}

.slick-track {
  display: flex;
}

.slick-list.draggable {
  width: 100%;
  overflow: hidden;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-next:before,
.slick-prev:before {
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
  font-size: 0;
  width: 50px;
  height: 50px;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiB2aWV3Qm94PSIwIDAgNTAgNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQogIDxnPg0KICAgIDxwYXRoIGQ9Ik0yIDBMNDggMEM0OS4xMDQ3IDAgNTAgMC44OTUyOCA1MCAyTDUwIDQ4QzUwIDQ5LjEwNDcgNDkuMTA0NyA1MCA0OCA1MEwyIDUwQzAuODk1Mjc5IDUwIDAgNDkuMTA0NyAwIDQ4TDAgMkMwIDAuODk1MjggMC44OTUyNzkgMCAyIDBMMiAwWiIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMCAwIDEgNTAgMCkiIC8+DQogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQgMTQpIj4NCiAgICAgIDxwYXRoIGQ9Ik0yMiA5LjYyNUw1LjI2NjI1IDkuNjI1TDEyLjk1MjUgMS45Mzg3NUwxMSAwTDAgMTFMMTEgMjJMMTIuOTM4NyAyMC4wNjEzTDUuMjY2MjUgMTIuMzc1TDIyIDEyLjM3NUwyMiA5LjYyNVoiIGZpbGw9IiNFRjdEMDAiIC8+DQogICAgPC9nPg0KICA8L2c+DQo8L3N2Zz4=") no-repeat;
  display: block;
}


.our-team .slick-next:before,
.our-team .slick-prev:before {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiB2aWV3Qm94PSIwIDAgNTAgNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQogIDxnPg0KICAgIDxwYXRoIGQ9Ik0zIDBMNDcgMEM0OC42NTcxIDAgNTAgMS4zNDI5MiA1MCAzTDUwIDQ3QzUwIDQ4LjY1NzEgNDguNjU3MSA1MCA0NyA1MEwzIDUwQzEuMzQyOTIgNTAgMCA0OC42NTcxIDAgNDdMMCAzQzAgMS4zNDI5MiAxLjM0MjkyIDAgMyAwTDMgMFoiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDAgMCAxIDUwIDApIiAvPg0KICAgIDxwYXRoIGQ9Ik0wIDI1LjE0NTJMMy4yMjYxOSAyOC45MDc1TDE3LjYwNTcgMTQuMzc5NUwzLjIyNjE5IDBMMCAzLjk5MTRMMTAuODg1NyAxNC4zNzk1TDAgMjUuMTQ1MloiIGZpbGw9IiNGRkZGRkYiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDAgMCAxIDMyLjgwMyAxMC41NDYpIiAvPg0KICA8L2c+DQo8L3N2Zz4=") no-repeat;
}

.slick-next:before {
  transform: rotate(180deg);
}

.testimonials {
  padding: 0 50px;
}

.testimonials .slick-prev,
.testimonials .slick-next {
  margin: 0 -50px;
}


.our-team .slick-slider {
  position: static;
  padding: 0 30px;
}

.our-team .slick-next {
  right: 0px;
  margin: 0;
}

.our-team .slick-prev {
  left: 0px;
  margin: 0;
}

.our-team .slick-next,
.our-team .slick-prev {
  top: 60%;
}


.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: 0 0;
  width: 50px;
  height: 50px;
  z-index: 99;
}

.slick-dots {
  left: 0;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  /* padding: 5px; */
  background: transparent;
  border: 1px solid #ef7d00;
}

.slick-dots .slick-active button {
  background: #ef7d00;
  border: 1px solid #ef7d00;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots {
  bottom: -52px;
}

.slick-dotted.slick-slider {
  margin-bottom: 42px;
}

.slick-dots li {
  width: 10px;
}

.our-team .slick-dots .slick-active button {
  background: #FFF;
  border: 1px solid #FFF;
}

.our-team .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: transparent;
  border: 1px solid #FFF;
}

/**/

.site-header .logo {
  margin-right: auto;
}

.burguer {
  width: 40px;
  height: 23px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 24px;
}

.burguer span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burguer span:nth-child(1) {
  top: 0px;
}

.burguer span:nth-child(2),
.burguer span:nth-child(3) {
  top: 10px;
}

.burguer span:nth-child(4) {
  top: 20px;
}

.burguer.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.burguer.open span:nth-child(2) {
  transform: rotate(45deg);
}

.burguer.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.burguer.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* home */
.home main {
  overflow: hidden;
}

/* multisolutions */
.item-solution ul,
.item-solution p {
  font-size: 16px;
}

@media screen and (min-width:1170px) {
  .about-intro .img {
    width: 100%;
    width: 54%;
    max-width: 823px;
  }

  .about-intro .text {
    padding-right: 0;
    padding-left: 30px;
    margin-left: auto;
    max-width: 670px;
    max-width: 700px;
    width: 46%;
  }

  /* .item-company {
    width: 33.3333%;
  } */

  .item-solution>div:first-child {
    padding-left: 0;
  }

  .home.logged-in .site-header {
    top: 32px;
  }
}

@media screen and (max-width:1578px) {
  .menu ul li {
    padding: 0 20px;
  }
}

@media screen and (max-width:1400px) {
  .menu ul li {
    padding: 0 15px;
  }

  .site-header .logo {
    padding: 0;
    width: 160px;
  }

  .site-header .cta {
    padding: 0;
    width: 21%;
  }
}

@media screen and (max-width:1170.9px) {
  .site-header .container {
    justify-content: space-between;
    min-height: 70px;
  }

  .site-header,
  .home .site-header {
    position: relative;
    background: #000000;
  }

  .site-header .logo img {
    height: 40px;
  }

  .site-header .cta {
    padding-right: 0;
  }

  .site-header .language {
    background: transparent;
    padding-right: 0;
  }

  .about-values .item {
    width: 50%;
    max-width: 50%;
  }

  .about-intro.row {
    padding-top: 28px;
  }

  .about-presence .logos {
    margin: 4px 0 40px;
    gap: 20px;
  }

  .foo-logo {
    text-align: center;
  }

  .foo-logo img {
    display: inline-block;
  }

  .site-footer>.container>div {
    width: 100%;
    margin-bottom: 30px;
  }

  .site-footer {
    padding-top: 30px;
  }

  .site-footer>.container {
    padding-bottom: 50px;
  }

  .footer-links ul {
    flex-direction: column;
  }

  .footer-links li {
    padding: 0;
    margin-bottom: 24px;
  }

  .footer-links li:last-child {
    margin-bottom: 0;
  }

  .site-footer>.container,
  .footer-links .container {
    padding: 0 7px;
  }

  /* new */
  h2 {
    font-size: 50px;
  }

  ul {
    font-size: 16px;
  }

  h3 {
    font-size: 28px;
  }

  p {
    font-size: 12px;
  }

  .about-intro h2 {
    font-size: 32px;
    margin-bottom: 0;
  }

  .about-intro h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about-intro p {
    font-size: 16px;
  }

  .about-values .item {
    padding: 5px 15px;
  }

  .item-value h3 {
    font-size: 80px;
  }

  .item-value p {
    font-size: 22px;
  }

  .about-values.row {
    margin-bottom: 39px;
  }

  .about-presence h2 {
    margin-bottom: 16px;
  }

  .about-presence p {
    font-size: 18px;
    line-height: 28px;
  }

  .about-presence .global {
    margin-bottom: 20px;
  }

  .s-partners h3 {
    margin-bottom: 28px;
  }

  .s-partners p {
    font-size: 18px;
  }

  .company-group {
    padding: 25px 0 25px;
  }

  .company-group h3 {
    margin-bottom: 25px;
  }

  .item-company {
    padding: 0px 15px;
    border: 0;
    text-align: center;
  }

  .item-company img {
    max-width: 195px;
  }

  .item-company p {
    font-size: 14px;
  }

  .our-team {
    padding: 45px 0 83px;
  }

  .item-team {
    padding: 20px 18px;
  }

  .item-team h3 {
    font-size: 22px;
  }

  .item-team small {
    font-size: 14px;
  }

  .text-block p {
    font-size: 22px;
    line-height: normal;
  }

  .text-block {
    padding: 52px 15px 8px;
    min-height: auto;
  }

  .multisolutions-block {
    padding: 80px 0 40px;
  }

  .multisolutions-block h2 {
    margin-bottom: 18px;
  }

  .multisolutions-block p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .multisolutions-block .item {
    padding: 10px 15px;
  }

  .item.item-solution img {
    max-width: 60px;
  }

  .item-solution.-small h4,
  .item-solution h4 {
    font-size: 26px;
    line-height: normal;
    margin-bottom: 0;
  }

  .item-solution h4 {
    font-size: 24px;
  }

  .item-solution {
    padding: 15px 15px 28px;
  }

  .item-solution,
  .item-solution p,
  .item-solution ul {
    font-size: 14px;
  }

  /* .multisolutions-block .item+.item {
    margin-top: 15px;
  } */

  .testimonials .container {
    /* padding: 55px 20px 25px; */
    padding: 55px 20px 65px;
    min-height: auto;
  }

  .testimonials h2 {
    font-size: 32px;
  }

  .item-testimonial {
    line-height: normal;
  }

  .item-testimonial p {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .item-testimonial strong {
    font-size: 14px;
  }

  .item-testimonial small {
    font-size: 12px;
  }

  .site-footer {
    font-size: 12px;
  }

  .foo-logo img {
    max-width: 170px;
  }

  .menu {
    transition: overflow ease 1s;
  }

  .menu-open {
    overflow: hidden;
  }

  .site-header .menu {
    justify-content: flex-start;
  }

  .menu {
    /* display: flex; */
    flex-direction: column;
    /* justify-content: flex-start; */
    position: absolute;
    left: -100%;
    width: 100%;
    top: 69px;
    background: #1E1E1E;
    padding: 40px;
    height: 100vh;
    opacity: 0;
    transition: all ease .5s;
  }

  .menu-open .menu {
    left: 0;
    opacity: 1;
  }

  .menu ul {
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
  }

  .menu ul li {
    font-size: 20px;
    text-align: left;
    padding: 0;
    margin-bottom: 30px;
    width: 100%;
  }

  .menu ul a {
    display: block;
    line-height: 24px;
  }

  .menu .cta {
    justify-content: flex-start;
    padding: 0;
    width: 100%;
  }

  .menu .cta .btn {
    width: 100%;
  }

  .language a.glink img {
    margin: 0 !important;
    min-width: 30px !important;
  }

  .menu-footer ul.sub-menu a {
    color: #FFF;
    font-size: 12px;
  }

  .line-2.footer-links {
    background-position-x: -10vw;
  }

  .menu-footer ul.sub-menu li {
    margin-bottom: 0;
  }

}

@media screen and (max-width:768px) {
  .about-presence .nacional h2 {
    text-align: center;
  }

  .about-presence .nacional img.mobile {
    margin-bottom: 38px;
  }
}

@media screen and (max-width:700px) {
  .our-team::after {
    content: "";
    background: url(./exportados/bg-1-1920.png) no-repeat left center;
    position: absolute;
    background-size: contain;
    width: 1920px;
    height: 40.6vw;
    bottom: -20.5vw;
  }

  .about-values .item {
    width: 100%;
    max-width: 100%;
  }

  .about-values .item-value {
    min-height: 190px;
  }

  .copy {
    flex-direction: column;
    justify-content: center;
    padding: 15px;
  }

  .item-solution {
    flex-direction: column;
    align-items: center;
  }

  .item-solution h4 {
    text-align: center;
  }

  .item-solution .icon {
    text-align: center;
    background: none;
  }

  .item-solution>div:first-child {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }

  .item-solution>div {
    width: 100%;
    padding: 0;
  }

  .testimonials {
    padding: 34px 35px 0px;
  }

  .testimonials .slick-prev,
  .testimonials .slick-next {
    margin: 0 -35px;
  }

  .testimonials .slick-dots {
    bottom: -72px;
  }

  .testimonials .container {
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(15px);
    min-height: auto;
    margin-bottom: 72px;
  }

  .testimonials .container::before,
  .testimonials .container::after {
    width: 40px;
    height: 32px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .testimonials .container::before {
    top: -15px;
  }

  .testimonials .container::after {
    bottom: -15px;
  }
}

@media screen and (max-width:340px) {
  .language a.glink img {
    min-width: 24px !important;
  }
}

@media screen and (min-width:1200px) {
  .our-team::after {
    content: "";
    background: url("./exportados/bg-1-1920.png") no-repeat left center;
    position: absolute;
    background-size: contain;
    width: 1920px;
    height: 25.6vw;
    bottom: -12.77vw;
    /* height: 676px; */
    /* bottom: -39%; */
  }

  .text-block {
    background: url("./exportados/bg-2-1920.jpg") no-repeat center;
    background-size: cover;
    background-color: #000;
  }

  .text-block p {
    position: relative;
    background-color: transparent;
  }
}

@media screen and (min-width:1640px) {
  .footer-links {
    background: url("./exportados/footer-bg.png") no-repeat left top / cover;
    background-color: #1E1E1E;
  }
}

@media screen and (min-width:1200px) and (max-width:1900px) {
  .our-team::after {
    background-size: contain;
    height: 25.6vw;
    bottom: -12.9vw;
  }
}

/* @media screen and (max-width:1820px) {
  .text-block {
    background-position-x: right 40%;
  }
} */

#contact:target {
  box-shadow: -1px -5px 20px 12px #ffffff0a;
  border-radius: 4px;
  padding: 15px;
  transition: all ease .3s;
}

main {
  overflow: hidden;
}

.banner-full .metaslider .flexslider .caption-wrap,
.banner-full .metaslider .caption-wrap {
  background: transparent !important;
}

.banner-full .metaslider .caption {
  padding: 5px 10px;
  word-wrap: break-word;
  padding-right: 10.1%;
  max-width: 1920px;
  width: 100%;
}

.banner-full .metaslider .caption-wrap h1 {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3.9vw;
  text-align: right;
  color: #e85601;
  opacity: 1;
  background: linear-gradient(185deg, #e85601 0%, #ef7d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.banner-full .metaslider .caption-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  opacity: 1;
}

.banner-full .metaslider .caption-wrap h1 {
  line-height: 1.1;
  width: 29vw;
  margin-left: auto;
  /* max-width: 747px; */
}

@media screen and (min-width:1920px) {
  .banner-full .metaslider .caption {
    padding-right: 195px;
  }
}

@media screen and (max-width:768px) {
  .banner-full .metaslider .caption-wrap h1 {
    font-size: 8vw;
    opacity: 1;
    width: 60vw;
    margin-top: 24%;
  }

  .banner-full .metaslider .caption-wrap {
    align-items: flex-start;
  }
}

/* 2026 site */

.site-menu {
  align-items: center;
}

.site-menu .sub-menu {
  display: none;
}

.site-header .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width:1171px) {
.site-menu>li:focus .sub-menu,
.site-menu>li:hover .sub-menu {
  display: block;
  position: absolute;
  background: #000;
  padding: 10px 20px;
  width: max-content;
  max-width: 270px;
  top: 100%;
  z-index: 1;
}
}

.menu li {
  position: relative;
}

.site-menu .sub-menu li {
  font-size: 16px;
  padding: 5px 0;
  text-align: left;
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  border-bottom: 4px solid #ef7d00;
  margin-bottom: 60px;
  min-height: 190px;
  padding: 20px 8px;
}

.page-title::after {
  content: "";
  background: rgba(30, 30, 30, .588);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title h1 {
  font-size: 70px;
  font-weight: 200;
}

.page-title img {
  width: 100%;
  height: 100%;
  /*min-height: 190px;*/
  object-fit: cover;
  position: absolute;
}

.page-title .content {
  z-index: 1;
}

.breadcrumb,
.breadcrumb a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1428;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .separator {
  padding: 0 4px;
}

@media screen and (max-width:1170.9px) {
  .site-header .menu {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .menu nav {
    width: 100%;
  }

  /* .site-menu>li:active .sub-menu,
  .site-menu>li:focus .sub-menu,
  .site-menu>li:hover .sub-menu {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
    border-top: 2px solid #ef7d00;
    background: #2d2d2d;
    padding: 32px 20px 1px;
    display: block;
  } */

  .menu {
    overflow: auto;
    padding: 40px 35px;
    padding-bottom: 120px;
  }

  .site-menu>li .sub-menu,
  .site-menu>li .sub-menu,
  .site-menu>li .sub-menu {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
    border-top: 2px solid #ef7d00;
    background: #2d2d2d;
    padding: 32px 20px 1px;
    display: block;
  }

  .site-menu .sub-menu li {
    margin-bottom: 24px;
    padding: 0;
  }
}


@media screen and (max-width:768px) {
  .page-title h1 {
    font-size: 28px;
  }

  .page-title .breadcrumb,
  .page-title .breadcrumb a {
    font-size: 10px;
  }

  .page-title {
    min-height: 100px;
    margin-bottom: 32px;
  }
}

.container-md {
  max-width: 1200px;
}

.container-lg {
  max-width: 1350px;
}

.block-banner {
  display: flex;
  justify-content: center;
  margin: 74px auto;
}

.brand-essence {
  margin: 128.5px 0 111.5px;
}

.brand-essence .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  padding: 0;
}

.brand-essence .item {
  padding: 7.5px 15px;
}

.item-essence {
  background: url('./assets/images/bg-essence.svg') center right;
  background-size: cover;
  width: 370px;
  min-height: 170px;
  /* padding-top: 24px; */
  /* padding-left: 32px; */
  padding: 24px 32px;
}

.item-essence h3 {
  font-weight: 400;
  font-size: 38px;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 190px;
  margin-bottom: 10px;
  word-break: break-word;
}

.item-essence a {
  text-transform: uppercase;
}

.brand-essence .item {
  flex: 0 1 400px;
}

@media screen and (max-width:768px) {
  .brand-essence {
    margin: 40px 0 40px;
  }

  .item-essence h3 {
    font-size: 36px;
  }
}

@media screen and (max-width:420px) {
  .brand-essence .item {
    width: 100%;
  }

  .brand-essence .item-essence {
    max-width: 370px;
    width: 100%;
    padding-left: 24px;
  }
}

/* o que nos guia */
.brand-essence.-inner {
  margin: 0;
}

.item-essence.-inner {
  background: none;
  border: 4px solid #ef7d00;
  height: 100%;
  padding: 32px 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.item-essence.-inner h3 {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.19;
  color: #ef7d00;
  max-width: 100%;
  margin-bottom: 14px;
}

.brand-essence.-inner .item {
  padding: 15px;
  flex: 1 1 370px;
}

.brand-essence.-inner .item-essence::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #FFF;
  border: 5px solid #ef7d00;
  transform: rotate(45deg);
  border-left: 4px solid #ef7d00;
  bottom: -28.9px;
  right: -28.8px;
}

.brand-essence.-inner .item.-inner2 {
  flex: 0 1 300px;
}

.brand-essence.-inner h2 {
  font-weight: 300;
  font-size: 42px;
  text-align: center;
  width: 100%;
  margin-bottom: 48px;
  color: #000000;
}

.brand-essence.-inner h2 strong {
  color: #ef7d00;
}

.item-essence.-inner2 h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  text-transform: none;
  max-width: 100%;
}

.item-essence.-inner2 {
  background: #ef7d00;
  /* border: 4px solid #ef7d00; */
  height: 100%;
  padding: 32px 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

.item-essence.-inner2:hover {
  clip-path: none;
}

.brand-essence .item-essence.-inner2:hover::after {
  bottom: -30px;
  right: -30px;
  background-color: #EF7D00;
  border-color: #EF7D00;
}

.brand-essence .item-essence.-inner2:hover {
  background: #000;
}

/* multisolutions */
.item-solution {
  border: 1px solid rgba(239, 125, 0, 0.3);
  border-radius: 0;
  margin: 30px 0;
}

.item-solution .icon {
  max-width: 165px;
  margin-top: 16px;
}

.item-solution ul {
  list-style-type: none;
}

.item-solution li {
  margin-bottom: 16px;
}

.item-solution li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 3px solid #EF7D00;
  margin-right: 20px;
  display: inline-block;
}

/* case */

.cases-group {
  font-weight: 200;
  font-size: 80px;
  line-height: 1.2;
  color: #ffffff;
  padding: 69px 0 98px;
  background: #ef7d00;
}

.cases-group h3 {
  margin-bottom: 40px;
  font-size: 80px;
  text-align: center;
}

.cases-group h3 span {
  color: #FFFFFF;
}

.cases-group p {
  margin-bottom: 64px;
  font-size: 18px;
  font-weight: 400;
}

.cases-group .item {
  padding: 15px;
}

.item-case {
  display: block;
  border: 1px solid #FFFFFF;
  text-align: left;
  height: 100%;
  position: relative;
}

.item-case::before {
  content: "";
  position: absolute;
  background: transparent;
  background: linear-gradient(135deg, rgba(239, 125, 0, 0) 50%, rgba(255, 255, 255, 1) 50%);
  width: 30px;
  height: 30px;
  bottom: 0;
  right: 0;
}


.item-case:hover,
.cases-group .item-more:hover {
  background: #000;
  border-color: #000000;
  outline: 10px solid #000000;
}

.item-case:hover::before {
  background: linear-gradient(135deg, rgba(239, 125, 0, 0) 50%, rgba(239, 125, 0, 1) 50%);
}

.item-case h4,
.item-case p {
  padding: 0 10px;
}

.item-case h4 {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.item-case img {
  width: 100%;
  margin-bottom: 13px;
  background-color: #FFF;
}

.item-case p {
  font-size: 14px;
  text-align: left;
}

.item-more {
  border: 2px solid #FFFFFF;
  height: 100%;
}

.item-more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.item-more svg {
  display: block;
}

.cases-group .item-more:hover svg path {
  fill: #ef7d00;
}

/* page case */
.post-group.-logos {
  padding: 70px 0;
}

.post-group.-logos h3 {
  text-align: center;
  margin-bottom: 29px;
}

.post-group.-logos .items {
  justify-content: center;
}

.post-group.-logos .item {
  padding: 15px;
  text-align: center;
}

/* .brand-essence.-inner h2 strong {
  color: #000;
} */

.page-id-640 table.posts-data-table tbody {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  max-width: 1170px;
  gap: 30px;
}

.page-id-640 table.posts-data-table tbody tr {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #EF7D00;
  margin-top: 68px;
  padding: 0 20px 20px;
  color: #FFFFFF;
}

@media screen and (min-width:769px) {
  .page-id-640 table.posts-data-table tbody tr {
    width: calc(33.333% - 20px);
  }
}

.page-id-640 table.posts-data-table thead {
  display: none;
}

.page-id-640 table.posts-data-table .col-image.dtr-control {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: -68px;
  margin-bottom: 20px;
}

.page-id-640 table.posts-data-table tbody tr img {
  border: 1px solid #ccc;
  display: block;
  background: #FFF;
  /* width: 270px;
  height: 200px;
  object-fit: contain;
  background: #FFF; */
}

.page-id-640 .list-multisolucoes {
  display: flex;
  margin-top: 70px;
  overflow-x: auto;
}

.page-id-640 .posts-table-wrapper {
  margin-top: 77px;
}

.page-id-640 .list-multisolucoes a {
  margin: 0 4.5px;
  border: 1px solid #F07D00;
  padding: 10px;
  color: #F07D00;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -1px;
  text-transform: uppercase;
  min-width: 160px;
}

.page-id-640 .list-multisolucoes a:hover {
  text-decoration: none;
}

.page-id-640 .list-multisolucoes a.active {
  color: #FFF;
  background: #F07D00;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
  text-decoration: none;
}

.page-id-640 .col-title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 8px;
}

.page-id-640 .col-excerpt,
.page-id-640 .col-excerpt p {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 48px;
}

.page-id-640 .col-case_cliente_atendido,
.page-id-640 .col-case_multisolucao {
  font-weight: 500;
  font-size: 14px;
}

.page-id-640 .col-case_cliente_atendido {
  margin-bottom: 4px;
}

.page-id-640 .col-case_cliente_atendido::before {
  content: "Cliente: ";
  font-weight: 400;
}

.page-id-640 .col-case_multisolucao::before {
  content: "Serviço: ";
  font-weight: 400;
}

.page-id-640 table.dataTable tbody th,
.page-id-640 table.dataTable tbody td {
  padding: 0;
}

.page-id-640 table.posts-data-table tbody tr {
  position: relative;
  /*! overflow: hidden; */
}

.page-id-640 table.posts-data-table tbody tr::after {
  content: "";
  width: 30px;
  height: 30px;
  background: #FFF;
  position: absolute;
  right: -15px;
  bottom: -15px;
  transform: rotate(45deg);
}

.page-id-640 .posts-table-above.posts-table-controls,
.page-id-640 .posts-table-below.posts-table-controls,
.page-id-640 .wp-block-heading strong {
  display: none;
}

.page-id-640 table,
.page-id-640 th,
.page-id-640 td,
.page-id-640 table.dataTable.no-footer {
  border: 0;
}

/* .page case */

.text-xl,
.text-xl p {
  font-size: 20px;
}

._start {
  justify-content: flex-start !important;
}

@media screen and (min-width:1200px) {
  ._start-xl {
    justify-content: flex-start !important;
  }
}

@media screen and (min-width:992px) {
  .column-nacional {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
  }

  .column-nacional p {
    font-size: 16px;
  }
}

@media screen and (max-width:991px) {
  .column-nacional>div:last-child {
    margin-top: 20px;
  }
}

/* timeline */
.page-id-343 .ctl-wrapper .timeline-main-title h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 37px;
}

.page-id-343 .ctl-wrapper {
  margin-top: 68px;
}

.page-id-343 .ctl-wrapper .ctl-title a {
  pointer-events: none;
}

@media screen and (max-width:1024px) {
  .page-id-343 .ctl-wrapper .timeline-main-title h2 {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .page-id-343 .ctl-wrapper .ctl-title {
    font-size: 14px;
  }

  .text-xl,
  .text-xl p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  /* multisolucoes */
  .cases-group {
    padding: 45px 0;
  }

  .cases-group h3 {
    font-size: 50px;
  }

  .cases-group p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .cases-group .item.-more {
    min-height: 60vw;
  }

  /* nossos cases */
  .page-id-640 .list-multisolucoes {
    margin-top: 30px;
    padding-bottom: 20px;
  }

  .page-id-640 .list-multisolucoes a {
    font-size: 12px;
    letter-spacing: -0.5px;
  }

  .page-id-640 .posts-table-wrapper {
    margin-top: 30px;
  }

  .page-id-640 table.posts-data-table tbody tr {
    padding: 0 15px 20px;
  }

  .page-id-640 .col-title {
    font-size: 14px;
  }

  .page-id-640 .col-excerpt,
  .page-id-640 .col-excerpt p {
    font-size: 12px;
  }

  .page-id-640 .col-case_cliente_atendido,
  .page-id-640 .col-case_multisolucao {
    font-size: 12px;
  }

  .page-id-640 .col-excerpt,
  .page-id-640 .col-excerpt p {
    margin-bottom: 20px;
  }

}

/* diferenciais */
.item-solution.-s2 {
  border: 0;
  padding: 0;
}

.item-solution.-s2 .icon {
  width: 100%;
  max-width: 175px;
  margin: 0;
  background: transparent;
}

.item-solution.-s2 h4 {
  font-size: 28px;
  line-height: normal;
  margin-bottom: 12px;
}

@media screen and (max-width:768px) {
  .item-solution.-s2 h4 {
    display: flex;
    align-items: center;
    font-size: 22px;
    text-align: left;
  }

  .item-solution.-s2 h4 img {
    max-width: 60px;
  }

  .item-solution.-s2,
  .item-solution.-s2 p,
  .item-solution.-s2 ul {
    font-size: 14px;
  }
}

/* marca */
.block-banner.-brand {
  flex-direction: column;
  align-items: center;
  max-width: 1170px;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 0 15px;
}

.block-banner.-brand h2 {
  font-size: 42px;
  line-height: normal;
  margin-bottom: 62px;
  color: #000000;
  width: 100%;
  text-align: center;
}

.block-banner.-brand h2 strong {
  color: #ef7d00;
}


.block-banner.-brand p {
  font-size: 18px;
  line-height: 1.6;
  width: 100%;
}

.block-banner.-brand img {
  margin-bottom: 48px;
}

.brand-essence._brand {
  padding-bottom: 93px;
}

.item-essence.-inner3 {
  background: #000;
  min-height: 240px;
  width: 100%;
  height: 100%;
}

.item-essence.-inner3 h3 {
  max-width: 100%;
  font-size: 34px;
  font-weight: 700;
  text-transform: none;
  color: #ef7d00;
}

.item-essence.-inner3 p {
  font-size: 24px;
  color: #FFFFFF;
}

.brand-essence.-inner .item-essence.-inner3::after {
  display: none;
}

.manifest-box {
  background: #000;
  padding: 60px 0 30px;
}

.manifest-box .container div:last-child {
  border: 0;
}

.manifest-box h2 {
  color: #FFFFFF;
  font-size: 70px;
  line-height: 1.17;
  margin-bottom: 64px;
}

.manifest-box h2 strong {
  display: block;
  color: #ef7d00;
  font-weight: 200;
}


.item-manifest {
  margin-bottom: 60px;
  border-bottom: 1px solid #EF7D00;
}

.item-manifest .img {
  padding-left: 0;
}

.item-manifest h3 {
  color: #ef7d00;
  font-size: 40px;
  font-weight: 400;
  width: 100%;
  max-width: 640px;
}

.item-manifest .text p {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  max-width: 640px;
}

.item-manifest .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* @media screen and (min-width: 1200px) { */
._brand {
  position: relative;
}

._brand::after {
  content: "";
  background: url("./exportados/bg-1-1920.png") no-repeat left center;
  background-size: auto;
  position: absolute;
  background-size: contain;
  width: 1920px;
  height: 35.6vw;
  bottom: -17.87vw;
  transform: scaleX(-1);
  right: 0;
}

._brand .container {
  position: relative;
  z-index: 1;
}

/* } */

@media screen and (max-width:991px) {
  .manifest-box {
    padding-bottom: 20px;
  }

  .item-manifest {
    border-bottom: 0;
    margin-bottom: 40px;
  }

  .item-manifest .text {
    text-align: center;
  }

  .item-manifest .img {
    text-align: center;
    border-bottom: 1px solid #EF7D00;
    margin-bottom: 15px;
    padding: 0;
  }

  .item-manifest .img img {
    max-width: 50%;
    min-width: 165px;
  }
}

/* case */
.case-details {
  display: flex;
  justify-content: space-between;
}

.resume-box {
  display: flex;
  align-items: flex-start;
  gap: 33px;
  min-height: 310px;
}

.resume-box {
  background: #F07D00;
  padding: 45px 0 32px;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #ffffff;
  /* clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%); */
}

.resume-box img {
  background-color: #FFF;
  border-left: 5px solid #F07D00;
  margin-left: -5px;
  max-width: fit-content;
  width: 100%;
}

.case-details .left {
  padding-left: 0;
}

.resume-box .content {
  max-width: 416px;
}

.details-box h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #ef7d00;
  margin-bottom: 20px;
}

.details-box table {
  font-weight: 400;
  font-size: 14px;
  line-height: 2.6;
  color: #ef7d00;
  word-break: break-word;
}

.details-box th {
  min-width: 170px;
}

.details-box td {
  color: #000000;
  line-height: 1.5;
  padding: 8px 0;
}

.case-details {
  margin-bottom: 60px;
}

.details-box.col-sm-5 {
  max-width: 430px;
}

table,
th,
td {
  border: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table tr {
  border-bottom: 1px solid #EF7D00;
}

.gallery-slide {
  margin-bottom: 95px;
}

.gallery-item img {
  width: 100%;
}

.gallery-slide .container {
  padding: 0;
  margin-bottom: 0;
}

.gallery-slide .slick-arrow {
  background: rgba(255, 255, 255, 0.5);
}

.gallery-slide .slick-arrow,
.gallery-slide .slick-arrow::before {
  width: 70px;
  height: 70px;
  background-position: center;
}

.gallery-slide .slick-arrow:hover {
  background: rgba(255, 255, 255, 1);
}

.gallery-slide .slick-dots {
  bottom: -30px;
  height: auto;
  line-height: 0;
  text-align: left;
}

.gallery-slide .slick-dots li {
  height: 10px;
  margin: 0 10px 0 0;
}

/* cliente */
.resume-box.-client {
  background: transparent;
}

.resume-box.-client img {
  margin: 0;
  border-top: 5px solid #F07D00;
}

.resume-box.-client .content {
  background: #F07D00;
  max-width: 100%;
  width: 100%;
  min-height: 170px;
  display: flex;
  align-items: center;
  padding: 43px 48px;
  margin-top: 32px;
}


/* diferenciais */
.company-group.-differences {
  padding-left: 15px;
  padding-right: 15px;
}

.company-group.-differences h3 {
  color: #EF7D00;
  font-size: 80px;
  margin-bottom: 36px;
}

.company-group.-differences p {
  font-size: 24px
}

.company-group.-differences .content {
  margin-bottom: 17px;
  text-align: center;
}

.company-group.-differences .container {
  max-width: 1170px;
}

.company-group.-differences .item {
  padding: 15px;
}

.company-group.-differences .item-company {
  padding: 0 24px 12px;
  text-align: left;
  border-left: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  width: 100%;
  margin: auto;
}

.company-group.-differences .item-company p,
.company-group.-differences .item-company ul {
  font-size: 16px;
  margin-bottom: 20px;
}


/* esg */

.box-icone.row.-logos .container {
  display: flex;
}

.box-icone.row.-logos .content {
  padding: 0 15px;
}

.box-icone.row.-logos .items {
  display: flex;
}

.box-icone.row.-logos .item {
  padding: 0 15px;
  max-width: 180px;
}

@media screen and (min-width:769px) {
  .box-icone.row.-logos .space {
    width: 100%;
    max-width: 175px;
    margin: 0;
    background: transparent;
    display: block;
  }

  .box-icone.row.index-5.-logos {
    margin-top: -50px;
  }

  .page-id-646 .box-icone.row.-logos .content,
  .page-id-646 .item-solution .col-full {
    padding-left: 50px;
  }

  .page-id-646 .box-icone.row.-logos .content,
  .page-id-646 .item-solution .col-full {
    border-left: 1px solid #ef7d00;
  }
  
  .page-id-646 .item-solution {
    margin: 30px 0 40px;
  }

  .page-id-646 .index-6.-logos {
    margin-bottom: 40px;
  }
}


@media screen and (max-width:768px) {

  /* case */
  .resume-box {
    flex-direction: column;
    align-items: center;
    padding: 0 15px 12px;
    display: flex;
    gap: 16px;
  }

  .case-details .left {
    padding: 0;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .case-details {
    margin-bottom: 37px;
  }

  .details-box table {
    font-size: 12px;
  }

  .details-box td {
    line-height: normal;
  }

  .resume-box img {
    margin: 0 auto;
    display: block;
    margin-top: -30px;
  }

  .details-box {
    padding: 0;
  }

  /* diferenciais */
  .company-group.-differences h3 {
    font-size: 50px;
    margin-bottom: 28px;
  }

  .company-group.-differences p {
    font-size: 14px
  }

  .company-group.-differences .content {
    margin-bottom: 15px;
  }

  .company-group.-differences .item-company {
    padding: 0 24px 12px;
    text-align: center;
    border-left: 0px solid #EAEAEA;
    border-bottom: 0px solid #EAEAEA;
  }

  .company-group.-differences .item-company p,
  .company-group.-differences .item-company ul {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /*  esg */
  .page-id-646 .item-solution.-s2 h4 {
    flex-direction: column;
  }

  .page-id-646 .item-solution.-s2 h4 img {
    margin-bottom: 18px;
    max-width: 100px;
  }

  .page-id-646 .box-icone.row.-logos .content {
    padding: 0;
  }

  /* multisolucoes */
  .page-id-638 .item-solution {
    padding: 24px;
  }

  .page-id-638 .item-solution .icon {
    margin: 0 0 20px;
    background: none;
    max-width: 110px;
  }
}

/* quote */
.cta-quote {
  display: flex;
  min-height: 360px;
  align-items: center;
  background: url(./assets/images/bg-quote.jpg) no-repeat #000;
  color: #FFFFFF;
}

.cta-quote h2 {
  line-height: .9;
}

.cta-quote h2 span {
  display: block;
}

.cta-quote .container {
  display: flex;
  align-items: center;
}

.cta-quote .content {
  flex: 1;
  max-width: 570px;
}

.btn-quote {
  background: #EF7D00;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px 5px 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.18;
  color: #ffffff;
}

.btn-quote:active {
  transform: scale(.95);
}

.btn-quote:hover {
  opacity: 0.8;
}

.btn-quote .icon {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 16px;
  padding-right: 3px;
  margin-left: 24px;
}


.btn-quote .icon svg,
.btn-quote .icon img {
  display: block;
}

.cta-quote h2 {
  color: #FFFFFF;
  margin: 0px 10px 0 0;
}

.cta-quote h2 span {
  color: #ef7d00;
}

.cta-quote p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.67;
}

.cta-quote .container {
  max-width: 1683px;
  margin-left: 0;
  justify-content: flex-end;
}

@media screen and (min-width:2300px) {
  .cta-quote .container {
    max-width: 72vw;
    margin-left: auto;
    justify-content: center;
  }
}

@media screen and (max-width:1640px) {
  .cta-quote {
    background-position-x: right -17vw;
  }
}

@media screen and (max-width:1170.9px) {
  .cta-quote {
    text-align: center;
    background: #000;
  }

  .cta-quote h2 {
    margin-bottom: 24px;
    font-size: 50px;
  }

  .cta-quote p {
    font-size: 14px;
  }

  .cta-quote .container {
    flex-direction: column;
    align-items: center;
  }
}

/* ajustes */
.cases-group .items,
.multisolutions-block .items {
  justify-content: center;
}

.slick-track {
  margin: auto;
}

/* quem somos */
/* o que nos guia */
.page-id-634 .our-team {
  margin-top: 60px;
}

@media screen and (max-width:768px) {
  .page-id-634 .brand-essence.-inner .item {
    padding: 7.5px 15px;
  }
}

/* quem somos */

/* multi */
.single-multisolucao .brand-essence {
  margin: 62px 0 124px;
}

.single-multisolucao .brand-essence.-inner h2 {
  padding: 0 15px;
}


@media screen and (max-width:768px) {
  .single-multisolucao .brand-essence.-inner h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .single-multisolucao .brand-essence.-inner .item.-inner2 {
    flex: 100%;
  }

  .single-multisolucao .brand-essence {
    margin: 54px 0 39px;
  }
}

/* diferenciais */
.page-id-1059 article {
  margin-bottom: 92px;
}

@media screen and (max-width:768px) {
  .page-id-1059 article {
    margin-bottom: 30px;
  }
}

/* nossa marca */
.manifest-box h2 strong {
  font-size: 90px;
}

.page-id-642 .text-block p {
  font-size: 50px;
}

@media screen and (max-width:768px) {
  .block-banner.-brand {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .block-banner.-brand h2 {
    font-size: 28px;
    margin-bottom: 27px;
  }

  .block-banner.-brand img {
    margin-bottom: 26px;
  }

  .block-banner.-brand p {
    font-size: 14px;
  }

  .brand-essence._brand .item.-inner3 {
    padding: 7.5px 15px;
  }

  .brand-essence._brand h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .item-essence.-inner3 h3 {
    font-size: 28px;
  }

  .item-essence.-inner3 p {
    font-size: 18px;
  }

  .manifest-box h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .manifest-box h2 strong {
    font-size: 50px;
  }

  .page-id-642 .text-block p {
    font-size: 32px;
  }


  .item-manifest h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .item-manifest .text p {
    font-size: 14px;
    font-weight: 400;
  }

  .page-id-642 .text-block {
    padding: 49px 15px;
  }
}

/* single case */
/* .single-case .site-main {
  background: url(./assets/images/bg-line_logo.png) bottom -36px right no-repeat;
} */

.single-case article {
  display: flex;
  flex-direction: column;
}

.single-case .container-case {
  background: url(./assets/images/bg-line_logo.png) bottom -36px right no-repeat;
}


@media screen and (max-width:991px) {
  .single-case .site-main {
    background-size: contain;
    background-position-x: right -25vw;
  }
}

/* clients */
.post-group.-logos._clients {
  padding: 0;
  margin: 60px 0;
}

.post-group.-logos._clients h3 {
  color: #ef7d00;
  font-weight: 300;
}

.post-group._clients a.item-logo {
  display: block;
  width: 100%;
  height: 100%;
}

._clients a.item-logo:hover {
  position: relative;
  outline: 2px solid #ef7d00;
}

._clients a.item-logo:hover::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, transparent 50%, #ef7d00 50%);
}

/* interna */
.single-cliente .resume-box.-client {
  margin-bottom: 60px;
}

@media screen and (max-width:768px) {
  .single-cliente .client-details .left {
    padding: 0;
  }

  .single-cliente .resume-box.-client {
    gap: 0;
    padding: 0;
    margin-bottom: 40px;
  }

  .single-cliente .resume-box.-client .content {
    margin-top: 0px;
    padding-top: 96px;
    padding: 96px 15px 42px;
    font-size: 14px;
  }

  .single-cliente .resume-box.-client img {
    margin-bottom: -80px;
    z-index: 1;
    width: 49.2%;
    max-width: 300px;
    height: auto;
  }
}

/* compliance */
.page-id-1386 .site-main {
  margin-bottom: 40px;
}

.page-id-1386 .brand-essence.-inner .item {
  flex: 1 1 530px;
}

.page-id-1386 .item-essence.-inner3 {
  background: url('./exportados/bg-card_top_r1.png') top right,
    url('./exportados/bg-card_bottom_r1.png') bottom right;
  background-repeat: no-repeat;
  background-color: #000;
  max-width: 100%;
}

.page-id-1386 .brand-essence._brand {
  padding: 0;
  margin-top: 41px;
  margin-bottom: 57px;
}

.page-id-1386 ._brand::after {
  display: none;
}

.page-id-1386 .item-solution ul,
.page-id-1386 .item-solution p {
  font-size: 20px;
}

.page-id-1386 .item-solution.-s2 h4 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 20px;
}

.page-id-1386 .item-solution.-s2 .icon {
  max-width: 300px;
  margin-right: 15px;
  display: block !important;
}

.page-id-1386 .item-solution.-s2 .icon img {
  border-top: 5px solid #ef7d00;
  border-left: 5px solid #ef7d00;
  padding: 0 15px;
}

.page-id-1386 .item-solution.-s2 .col-full {
  padding-top: 30px;
  padding-right: 0;
}

.page-id-1386 .item-solution.-s2 h4 img {
  display: none;
}

@media screen and (max-width:1024px) {

  .page-id-1386 .brand-essence._brand {
    padding: 0;
    margin-top: 30px;
    margin-bottom: 41px;
  }

  .page-id-1386 .item-solution.-s2 {
    flex-direction: column;
    align-items: center;
  }

  .page-id-1386 .item-solution.-s2 h4 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 24px;
    justify-content: center;
  }

  .page-id-1386 .item-solution ul,
  .page-id-1386 .item-solution p {
    font-size: 14px;
  }

  .page-id-1386 .item-solution.-s2 .icon {
    max-width: 160px;
    margin: 0 0 37px;
  }

  .page-id-1386 .item-solution.-s2 .icon img {
    padding: 0 8px;
  }

  .page-id-1386 .item-solution.-s2 .col-full {
    padding: 0;
  }
}

/* responsivo */
.about-presence.list-1 .container {
  max-width: 1200px;
}

@media screen and (min-width:1140px) and (max-width:1620px) {
  .home .about-values {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }

  .home .about-values .item {
    width: 25%;
    padding: 10px;
  }

  .home .item-value h3 {
    font-size: 70px;
  }

  .home .item-value p {
    font-size: 22px;
  }

  .home .item-value {
    min-height: 224px;
  }

  .home .item-value sub {
    font-size: 36px;
  }

  .home .about-values {
    padding: 0 5px;
  }

  .home .about-intro {
    padding-right: 15px;
    padding-right: 3%;
  }

  .home .about-intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
  }

  .about-intro .img {
    flex: 1;
  }

  .about-intro .text {
    flex: 2;
  }

}


@media (min-width:1171px) and (max-width:1860px) {
  .menu li {
    font-size: 17px;
  }

  .site-header .cta {
    width: max-content;
    padding: 0;
  }

  .site-header .language {
    position: absolute;
    top: 0;
    padding: 0 10px;
  }

  .site-header .cta,
  .site-header .menu {
    padding-top: 18px;
  }

  .language .gtranslate_wrapper {
    height: 40px;
  }

  .cta .btn {
    width: 100px;
    line-height: 40px;
    font-size: 17px;
  }

  .site-header {
    padding: 0 15px;
  }

  .site-header .container {
    max-width: 1240px;
    padding: 0;
  }

  .site-header .logo {
    /* margin: auto; */
    width: fit-content;
    padding: 0;
  }

  .site-header .menu {
    width: auto;
    padding-left: 5px;
  }


  .logo img {
    max-width: 166px;
    content: url(./exportados/logo-multicargo-header2.svg?2);
  }

  .menu ul li {
    padding: 0px 18px;
  }

  .language a.glink img {
    margin: 0 !important;
    min-width: 30px !important;
  }

  .banner-full .metaslider .caption {
    max-width: 1540px;
    padding-right: 12%;
    padding-top: 3%;
  }

  .menu ul li {
    padding: 0px 15px;
  }

  .menu li {
    font-size: 18px;
  }

  .cta .btn {
    font-size: 18px;
  }

  .site-header .menu {
    width: 100%;
    justify-content: space-around;
  }

}

@media screen and (max-width:1139.9px) {
  .about-intro .img {
    display: none;
  }
}

@media screen and (min-width:1170px) {
  .site-menu a {
    position: relative;
  }

  .site-menu>.current-menu-item>a::after,
  .site-menu>li:hover>a::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #ef7d00;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .site-menu>li>a {
    padding: 8px 0;
  }

  .site-menu>li:focus .sub-menu,
  .site-menu>li:hover .sub-menu {
    margin-top: 8px;
    padding: 20px 20px 15px;
    width: max-content;
    min-width: 100%;
    max-width: 280px;
    background: rgba(45, 45, 45, 0.8);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1.5px);
  }

  .site-menu .sub-menu li {
    line-height: normal;
    margin-bottom: 20px;
    padding: 0;
  }

  .site-menu .sub-menu li:hover a {
    color: #EF7D00;
  }
}

@media screen and (min-width:1200px) {
  .about-presence.list-1 .desktop {
    position: absolute;
    right: 0;
    padding: 0;
  }

  .about-presence.list-1 .container {
    position: relative;
  }

  .about-presence.list-1 .text {
    flex: 1;
    padding-top: 10px;
  }
}

@media screen and (max-width:1270.9px) {
  .menu li {
    font-size: 17px;
  }
}


@media screen and (min-width:1240px) and (max-width:1620.9px) {
  .home .about-intro {
    justify-content: center;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .about-intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    position: absolute;
    right: 0;
    z-index: 1;
    left: 0px;
    width: 41.3vw;
    max-height: 623px;
  }
}

a.item-essence:hover h3 {
    color: #ef7d00;
}

a.item-essence {
    display: block;
}


.item-solution.-small:hover {
    border-color: #EF7D00;
}

.multisolutions-block h2 span {
    color: #FFF;
}

.text-block span {
    color:#ef7d00;
}

.nf-error .ninja-forms-field, 
.nf-error.listimage-wrap .nf-field-element ul {
    border-color: #ef7d00;
}

.nf-error-msg, .ninja-forms-req-symbol {
    color: #ef7d00;
}

/*ajustes prod*/

.page-id-640 .posts-table-below.posts-table-controls {
    display: flex;
}

.page-id-640 .posts-table-controls label,
.page-id-640 div#ptp_5c1529b6fde37c56_1_length {
    display: none;
}

/* .page-id-640 .posts-table-wrapper .posts-table-controls>div {*/
/*    margin-top:24px;*/
/*} */

.page-id-640 .posts-table-wrapper .posts-table-controls>div {
    margin: 24px auto 0;
}

@media screen and (max-width:1170.9px) {
    .multisolutions-block h2 {
        font-size: clamp(40px, 13.2vw, 50px);
    }
}