@charset "UTF-8";
a, html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Inicio Font Family */
@font-face {
  font-family: "MWSans-Regular";
  src: url("../fonts/MWSans-Regular.otf") format("opentype"), url("../fonts/MWSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "MWSans-SemiBold";
  src: url("../fonts/MWSans-SemiBold.otf") format("opentype"), url("../fonts/MWSans-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "MWSans-Bold";
  src: url("../fonts/MWSans-Bold.otf") format("opentype"), url("../fonts/MWSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "MWSans-Italic";
  src: url("../fonts/MWSans-Italic.otf") format("opentype"), url("../fonts/MWSans-Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "MWSans-SemiBoldItalic";
  src: url("../fonts/MWSans-SemiBoldItalic.otf") format("opentype"), url("../fonts/MWSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "MWSans-BoldItalic";
  src: url("../fonts/MWSans-BoldItalic.otf") format("opentype"), url("../fonts/MWSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
/* Inicio Css Tags */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: unset;
  display: inline-block;
  text-decoration: none;
}

body {
  background-color: #9188FF;
  color: #000;
  font-family: "MWSans-Regular", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

strong {
  font-family: "MWSans-SemiBold", sans-serif;
}

h1 {
  font-size: 2.5vw;
  line-height: 3vw;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 6vw;
    line-height: 6.5vw;
  }
}

h2 {
  font-size: 2.5vw;
  line-height: 3vw;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 8vw;
    line-height: 8.5vw;
  }
}

h3 {
  font-size: 4.5rem;
  line-height: 5rem;
}
@media screen and (max-width: 1024px) {
  h3 {
    font-size: 11vw;
    line-height: 11.5vw;
  }
}

h4 {
  font-size: 2.5vw;
  line-height: 3vw;
}
@media screen and (max-width: 1024px) {
  h4 {
    font-size: 8vw;
    line-height: 8.5vw;
  }
}

h5 {
  font-size: 3.5rem;
  line-height: 4rem;
}
@media screen and (max-width: 1024px) {
  h5 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

p {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  p {
    font-size: 0.88rem;
    line-height: 1.25;
  }
}

img {
  border: 0;
  display: block;
  margin: 0;
}

video {
  display: block;
  margin: auto;
  width: 100%;
}

#header #cabecalho {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 50%;
  margin: auto;
  padding: 20px 0px;
  position: fixed;
  top: 0;
  transform: translate(-50%, 0%);
  width: 90%;
  z-index: 3;
}
#header #cabecalho img {
  width: 200px;
}
#header #cabecalho #btn-menu .circle {
  align-items: center;
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  height: 80px;
  text-transform: uppercase;
  width: 80px;
}
#header #cabecalho #btn-menu .close {
  cursor: pointer;
  display: none;
  margin: auto;
  height: 80px;
  width: 80px;
}
#header #cabecalho #btn-menu .close span {
  background-color: #000;
  display: block;
  height: 2px;
  margin: auto;
  transition: 0.4s;
  width: 40px;
}
#header #cabecalho #btn-menu .close span:first-child {
  transform: translateY(41px) rotate(-45deg);
}
#header #cabecalho #btn-menu .close span:last-child {
  transform: translateY(40px) rotate(45deg);
}
#header #navigation {
  display: none;
  height: 100%;
  padding: 120px 0px 60px 0px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #header #navigation {
    overflow-y: scroll;
  }
}
#header #navigation .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: auto;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  #header #navigation .container {
    grid-template-columns: 1fr;
    width: 90%;
  }
}
#header #navigation .container .main a {
  font-size: 4vw;
  line-height: 3vw;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #header #navigation .container .main a {
    font-size: 13vw;
    line-height: 14vw;
  }
}
#header #navigation .container .main a:hover {
  color: #fff;
}
#header #navigation .container .sub {
  margin-left: auto;
  width: 245px;
}
@media screen and (max-width: 1024px) {
  #header #navigation .container .sub {
    margin: 0;
    width: 100%;
  }
}
#header #navigation .container .sub div a {
  border-bottom: 1px solid #000;
  font-size: 1.25rem;
  margin-bottom: 5px;
  padding-bottom: 2px;
}
@media screen and (max-width: 1024px) {
  #header #navigation .container .sub div a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  #header #navigation .container .destaque div:first-child img {
    width: 100%;
  }
}
#header #navigation .container .destaque a {
  align-items: center;
  display: flex;
  margin-top: 20px;
}
#header #navigation .container .destaque a span {
  border-bottom: 1px solid #000;
  margin-left: 10px;
}
#header #navigation .container .talk {
  margin-left: auto;
  width: 245px;
}
@media screen and (max-width: 1024px) {
  #header #navigation .container .talk {
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #header #navigation .container .talk .contato {
    margin-bottom: 30px;
  }
}
#header #navigation .container .talk .contato div {
  margin: auto;
}
#header #navigation .container .talk .contato div strong {
  font-family: "MWSans-Bold", sans-serif;
  font-size: 1.25rem;
}
#header #navigation .container .talk .contato div a {
  font-size: 1rem;
  margin-top: 4px;
  text-decoration: underline;
}
#header #navigation .container .talk .social {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 140px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  #header #navigation .container .talk .social {
    margin-top: 0px;
  }
}

.header-active {
  background-color: #9188FF;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 6;
}

.cabecalho-active {
  background-color: #9188FF;
}

footer {
  background-color: #000;
  color: #fff;
}
footer .container {
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 250px 0px 180px 0px;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    padding: 125px 0px 120px 0px;
    width: 90%;
  }
}
footer .container .meet h5 {
  margin-bottom: 30px;
  max-width: 450px;
}
footer .container .meet .about {
  display: flex;
}
@media screen and (max-width: 1024px) {
  footer .container .meet .about {
    flex-direction: column;
  }
}
footer .container .meet .custom-select {
  border-bottom: 1px solid #333;
  color: #fff;
  display: inline;
  font-family: "MWSans-Regular", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-left: 20px;
  padding-bottom: 10px;
  position: relative;
  width: 220px;
}
@media screen and (max-width: 1024px) {
  footer .container .meet .custom-select {
    margin: 20px 0px 60px 0px;
  }
}
footer .container .meet .select-selected {
  background: url(../img/arrow-bottom-form.png) no-repeat 198px 8px;
  color: #fff;
  cursor: pointer;
}
footer .container .meet .select-items {
  background-color: #000;
  cursor: pointer;
  position: absolute;
  top: 36px;
  width: 100%;
  z-index: 9;
}
footer .container .meet .select-item {
  padding: 10px 0px;
}
footer .container .meet .select-hide {
  display: none;
}
footer .container .formulario {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  footer .container .formulario {
    width: 100%;
  }
}
footer .container .formulario form {
  display: flex;
  flex-direction: column;
}
footer .container .formulario form input[type=text],
footer .container .formulario form input[type=email],
footer .container .formulario form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-family: "MWSans-Regular", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  padding-bottom: 20px;
  outline: none;
}
footer .container .formulario form textarea {
  height: 200px;
  resize: none;
}
footer .container .formulario form ::-moz-placeholder {
  color: #fff;
  font-family: "MWSans-Regular", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
footer .container .formulario form ::placeholder {
  color: #fff;
  font-family: "MWSans-Regular", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
footer .container .formulario form button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: "MWSans-SemiBold", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  outline: none;
  text-transform: uppercase;
  width: 150px;
}
footer .container .formulario form button img {
  margin-right: 20px;
}
footer .end {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 100px 0px 80px 0px;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  footer .end {
    flex-direction: column;
    width: 90%;
  }
}
footer .end .pages {
  display: flex;
}
@media screen and (max-width: 1024px) {
  footer .end .pages {
    flex-direction: column;
  }
}
footer .end .main,
footer .end .sub,
footer .end .contato {
  display: flex;
  flex-direction: column;
}
footer .end .main a,
footer .end .sub a,
footer .end .contato a {
  padding-bottom: 30px;
}
footer .end .main {
  margin-right: 10vw;
}
footer .end .main a {
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  footer .end .sub {
    padding-top: 30px;
  }
}
footer .end .sub a:last-child {
  padding-top: 4.5vw;
}
@media screen and (max-width: 1024px) {
  footer .end .sub a:last-child {
    padding-top: 8.5vw;
  }
}
footer .end .contato strong {
  font-family: "MWSans-Bold", sans-serif;
  font-size: 1.25rem;
}
footer .end .contato a {
  font-size: 1rem;
  margin-top: 4px;
  text-decoration: underline;
}
footer .end .social {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 140px;
  margin-top: 40px;
}
footer .group {
  margin: auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  footer .group {
    width: 90%;
  }
}
footer .group img {
  width: 200px;
}
footer .copy {
  color: #3F3F3F;
  margin: auto;
  padding: 80px 0px 40px 0px;
  text-align: center;
  width: 90%;
}

#home .we-are {
  align-items: start;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-top: 20vh;
  margin: auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  #home .we-are {
    padding-top: 25vh;
    width: 90%;
  }
}
#home .we-are h1 {
  width: 85%;
}
@media screen and (max-width: 1024px) {
  #home .we-are h1 {
    width: 100%;
  }
}
#home .we-are h1 span {
  display: block;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #home .we-are h1 span {
    font-size: 2em;
    line-height: 1em;
  }
}
#home .video {
  cursor: pointer;
}
#home .abor {
  background-color: #fff;
}
#home .abor .container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 150px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #home .abor .container {
    flex-direction: column;
    padding: 130px 0px;
  }
}
#home .abor .container .method {
  width: 35%;
}
@media screen and (max-width: 1024px) {
  #home .abor .container .method {
    flex-direction: column;
    margin-bottom: 80px;
    width: 100%;
  }
}
#home .abor .container .method h2 {
  margin-bottom: 40px;
}
#home .abor .container .method a {
  align-items: center;
  display: inline-flex;
  text-decoration: underline;
}
#home .abor .container .method a img {
  margin-left: 15px;
}
#home .abor .container .area {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #home .abor .container .area {
    width: 100%;
  }
}
#home .abor .container .area .item {
  cursor: pointer;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  #home .abor .container .area .item {
    padding-bottom: 20px;
  }
}
#home .abor .container .area .item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #home .abor .container .area .item:not(:first-child) {
    margin-top: 20px;
  }
}
#home .abor .container .area .item:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
#home .abor .container .area .item .answer {
  display: none;
  margin-top: 30px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #home .abor .container .area .item .answer {
    font-size: 1rem;
    line-height: 1.25;
    width: 100%;
  }
}
#home .abor .container .area .active h3 {
  border-bottom: 4px solid #9188FF;
  color: #9188FF;
  display: inline;
  padding-bottom: 4px;
}
#home .we-build {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 110vh;
}
#home .we-build img {
  width: 100%;
}
#home .we-build p {
  font-size: 5.2rem;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #home .we-build p {
    font-size: 2rem;
  }
}
#home .impact {
  margin: auto auto 120px auto;
  width: 90%;
}
#home .impact h4 {
  margin-bottom: 40px;
  width: 28%;
}
@media screen and (max-width: 1024px) {
  #home .impact h4 {
    width: 100%;
  }
}
#home .impact a {
  align-items: center;
  display: inline-flex;
  text-decoration: underline;
}
#home .impact a img {
  margin-left: 15px;
}
#home .cases {
  color: #fff;
  margin: auto auto 120px auto;
  width: 90%;
}
#home .cases div {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 140px;
  padding: 0px 60px;
  height: 90vh;
}
@media screen and (max-width: 1024px) {
  #home .cases div {
    flex-direction: column;
    justify-content: space-evenly;
  }
}
#home .cases div p {
  font-size: 2rem;
}
#home .cases div p:first-of-type {
  align-items: center;
  display: flex;
  font-size: 4.5rem;
}
@media screen and (max-width: 1024px) {
  #home .cases div p:first-of-type {
    font-size: 2rem;
  }
}
#home .cases div p:last-child {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #home .cases div p:last-child {
    text-align: center;
  }
}
#home .cases .clients {
  border-bottom: 4px solid #fff;
  font-size: 7.5rem;
  margin-left: 40px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  #home .cases .clients {
    font-size: 2.5rem;
  }
}
#home .cases .samsung-01 {
  background: url(../img/cases/samsung-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #home .cases .samsung-01 {
    background: url(../img/cases/samsung-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#home .cases .chevrolet-01 {
  background: url(../img/cases/chevrolet-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #home .cases .chevrolet-01 {
    background: url(../img/cases/chevrolet-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#home .cases .mastercard-01 {
  background: url(../img/cases/mastercard-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #home .cases .mastercard-01 {
    background: url(../img/cases/mastercard-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/* Fundo do pop-up */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  cursor: pointer;
}

/* Modal Video */
.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 75%;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.6s;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/* Botão Fechar Modal */
.close {
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: end;
  font-size: 3rem;
  float: right;
  width: 100%;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  transition: 0.5s;
}

svg .arrow:hover {
  animation-name: btnSlide;
  animation-duration: 1s;
}

/* @-webkit-keyframes btnSlide {
    from {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    25% {
        visibility: hidden;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }

    50% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: hidden;
    }

    75% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes btnSlide {
    from {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    25% {
        visibility: hidden;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }

    50% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: hidden;
    }

    75% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
} */
.tooltip {
  align-items: center;
  border-radius: 100%;
  color: #000;
  display: flex;
  font-size: 12px;
  font-weight: bold;
  justify-content: center;
  height: 8vw;
  min-height: 100px;
  max-height: 150px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.3s;
  width: 8vw;
  min-width: 100px;
  max-width: 150px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 999;
}

#cases .biggest {
  align-items: start;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-top: 20vh;
  margin: auto auto 120px auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  #cases .biggest {
    padding-top: 25vh;
    width: 90%;
  }
}
#cases .biggest h1 {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #cases .biggest h1 {
    width: 100%;
  }
}
#cases .biggest h1 span {
  display: block;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #cases .biggest h1 span {
    font-size: 2em;
    line-height: 1em;
  }
}
#cases .impact {
  margin: auto auto 120px auto;
  width: 90%;
}
#cases .impact h4 {
  margin-bottom: 40px;
  width: 28%;
}
@media screen and (max-width: 1024px) {
  #cases .impact h4 {
    width: 100%;
  }
}
#cases .impact a {
  align-items: center;
  display: inline-flex;
}
#cases .impact a p {
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}
#cases .impact a img {
  margin-left: 15px;
}
#cases .cases {
  color: #fff;
  margin: auto auto 120px auto;
  width: 90%;
}
#cases .cases div {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 140px;
  padding: 0px 60px;
  height: 90vh;
}
@media screen and (max-width: 1024px) {
  #cases .cases div {
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
  }
}
#cases .cases div p {
  font-size: 2rem;
}
#cases .cases div p:first-of-type {
  align-items: center;
  display: flex;
  font-size: 4.5rem;
}
@media screen and (max-width: 1024px) {
  #cases .cases div p:first-of-type {
    font-size: 2rem;
  }
}
#cases .cases div p:last-child {
  max-width: 300px;
  text-align: center;
  width: 100%;
}
#cases .cases .clients {
  border-bottom: 4px solid #fff;
  font-size: 7.5rem;
  margin-left: 40px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  #cases .cases .clients {
    font-size: 2.5rem;
    margin-left: 20px;
  }
}
#cases .cases .samsung-01 {
  background: url(../img/cases/samsung-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .samsung-01 {
    background: url(../img/cases/samsung-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .chevrolet-01 {
  background: url(../img/cases/chevrolet-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .chevrolet-01 {
    background: url(../img/cases/chevrolet-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .mastercard-01 {
  background: url(../img/cases/mastercard-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .mastercard-01 {
    background: url(../img/cases/mastercard-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .latam-01 {
  background: url(../img/cases/latam-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .latam-01 {
    background: url(../img/cases/latam-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .sanofi-01 {
  background: url(../img/cases/sanofi-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .sanofi-01 {
    background: url(../img/cases/sanofi-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .sanofi-02 {
  background: url(../img/cases/sanofi-02.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .sanofi-02 {
    background: url(../img/cases/sanofi-02-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .sanofi-03 {
  background: url(../img/cases/sanofi-03.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .sanofi-03 {
    background: url(../img/cases/sanofi-03-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .mastercard-02 {
  background: url(../img/cases/mastercard-02.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .mastercard-02 {
    background: url(../img/cases/mastercard-02-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .latam-02 {
  background: url(../img/cases/latam-02.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .latam-02 {
    background: url(../img/cases/latam-02-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .sanofi-04 {
  background: url(../img/cases/sanofi-04.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .sanofi-04 {
    background: url(../img/cases/sanofi-04-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .bayer-01 {
  background: url(../img/cases/bayer-01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .bayer-01 {
    background: url(../img/cases/bayer-01-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .chevrolet-02 {
  background: url(../img/cases/chevrolet-02.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .chevrolet-02 {
    background: url(../img/cases/chevrolet-02-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .chevrolet-03 {
  background: url(../img/cases/chevrolet-03.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .chevrolet-03 {
    background: url(../img/cases/chevrolet-03-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .latam-03 {
  background: url(../img/cases/latam-03.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .latam-03 {
    background: url(../img/cases/latam-03-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .mastercard-03 {
  background: url(../img/cases/mastercard-03.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .mastercard-03 {
    background: url(../img/cases/mastercard-03-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .mastercard-04 {
  background: url(../img/cases/mastercard-04.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .mastercard-04 {
    background: url(../img/cases/mastercard-04-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
#cases .cases .bayer-02 {
  background: url(../img/cases/bayer-02.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #cases .cases .bayer-02 {
    background: url(../img/cases/bayer-02-mob.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

#clientes .ours {
  align-items: start;
  display: flex;
  flex-direction: column;
  height: 60vh;
  padding-top: 20vh;
  margin: auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  #clientes .ours {
    padding-top: 25vh;
    width: 90%;
  }
}
#clientes .ours h1 {
  width: 85%;
}
@media screen and (max-width: 1024px) {
  #clientes .ours h1 {
    width: 100%;
  }
}
#clientes .ours h1 span {
  display: block;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #clientes .ours h1 span {
    font-size: 2em;
    line-height: 1em;
  }
}
#clientes .clientes {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  #clientes .clientes {
    width: 90%;
  }
}
#clientes .clientes div {
  margin-bottom: 150px;
  padding: 0px 20px;
  width: 25%;
}
@media screen and (max-width: 1024px) {
  #clientes .clientes div {
    width: 50%;
  }
}
#clientes .clientes div img {
  display: block;
  margin: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 70%;
}

#pessoas .together {
  align-items: start;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-top: 20vh;
  margin: auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  #pessoas .together {
    padding-top: 25vh;
    width: 90%;
  }
}
#pessoas .together h1 {
  width: 75%;
}
@media screen and (max-width: 1024px) {
  #pessoas .together h1 {
    width: 100%;
  }
}
#pessoas .together h1 span {
  display: block;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #pessoas .together h1 span {
    font-size: 2em;
    line-height: 1em;
  }
}
#pessoas .together a {
  align-items: center;
  display: inline-flex;
  text-decoration: underline;
}
#pessoas .together a img {
  margin-left: 15px;
}
#pessoas .inclusion {
  align-items: center;
  background: url(../img/inclusion.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}
#pessoas .inclusion .promote {
  margin: 0 auto;
  width: 78%;
}
#pessoas .inclusion .promote p {
  font-size: 1.5rem;
  line-height: 2rem;
  max-width: 550px;
}
@media screen and (max-width: 1024px) {
  #pessoas .inclusion .promote p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
#pessoas .inclusion .promote a {
  align-items: center;
  display: inline-flex;
  margin: 60px 0px;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  #pessoas .inclusion .promote a p {
    font-size: 0.9rem;
    line-height: 1.25rem;
  }
}
#pessoas .inclusion .promote a img {
  margin-left: 15px;
}
#pessoas .inclusion .priority p {
  font-size: 6vw;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #pessoas .inclusion .priority p {
    font-size: 9vw;
  }
}
#pessoas .inclusion .priority p span {
  color: #9188FF;
}
#pessoas .believe {
  background-color: #fff;
}
#pessoas .believe .container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 150px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #pessoas .believe .container {
    flex-direction: column;
    padding: 80px 0px;
  }
}
#pessoas .believe .container .method {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  #pessoas .believe .container .method {
    flex-direction: column;
    margin-bottom: 80px;
    width: 100%;
  }
}
#pessoas .believe .container .method h2 {
  margin-bottom: 40px;
}
#pessoas .believe .container .area {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  #pessoas .believe .container .area {
    width: 100%;
  }
}
#pessoas .believe .container .area .item {
  cursor: pointer;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  #pessoas .believe .container .area .item {
    padding-bottom: 20px;
  }
}
#pessoas .believe .container .area .item .heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#pessoas .believe .container .area .item .heading h3 {
  font-size: 3rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 1024px) {
  #pessoas .believe .container .area .item .heading h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
#pessoas .believe .container .area .item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #pessoas .believe .container .area .item:not(:first-child) {
    margin-top: 20px;
  }
}
#pessoas .believe .container .area .item:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
#pessoas .believe .container .area .item .answer {
  display: none;
  margin-top: 30px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #pessoas .believe .container .area .item .answer {
    font-size: 1rem;
    line-height: 1.25;
    width: 100%;
  }
}
#pessoas .believe .container .area .active h3 {
  color: #9188FF;
  display: inline;
  text-decoration: underline;
}
#pessoas .leader {
  margin: auto;
  width: 90%;
}
#pessoas .leader .description {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .description {
    width: 100%;
  }
}
#pessoas .leader .description h4 {
  font-size: 6vw;
  line-height: 6.5vw;
  margin: 170px 0px 70px 0px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .description h4 {
    font-size: 13vw;
    line-height: 13.5vw;
    margin: 80px 0px 60px 0px;
    width: 100%;
  }
}
#pessoas .leader .description p {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .description p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
#pessoas .leader .chief {
  margin: 200px auto 120px auto;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .chief {
    margin: 80px auto 80px auto;
  }
}
#pessoas .leader .chief .people {
  align-items: center;
  border-bottom: 2px solid #8B83F5;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#pessoas .leader .chief .people:hover {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .chief .people {
    align-items: start;
    flex-direction: column;
  }
}
#pessoas .leader .chief .people img {
  width: 100%;
}
#pessoas .leader .chief .people div:nth-child(1) {
  width: 326px;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .chief .people div:nth-child(1) {
    margin: 20px 0px;
    width: 100%;
  }
}
#pessoas .leader .chief .people div:nth-child(2) {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .chief .people div:nth-child(2) {
    width: 100%;
  }
}
#pessoas .leader .chief .people div:nth-child(3) {
  width: 350px;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .chief .people div:nth-child(3) {
    margin: 20px 0px;
    width: 100%;
  }
}
#pessoas .leader .chief .people div:nth-child(4) {
  width: 20px;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .chief .people div:nth-child(4) {
    width: 100%;
  }
}
#pessoas .leader .chief .people h5 {
  font-size: 4.5vw;
  line-height: 5vw;
}
@media screen and (max-width: 1024px) {
  #pessoas .leader .chief .people h5 {
    font-size: 11vw;
    line-height: 11.5vw;
  }
}
#pessoas .leader .chief .people .pronoun p {
  font-size: 1.5rem;
  line-height: 1.75rem;
  padding-bottom: 5px;
}
#pessoas .leader .chief .people .pronoun a {
  text-decoration: underline;
}

#politica {
  margin: auto;
  width: 90%;
}
#politica #PrivacyNotice {
  padding: 200px 0px;
}
#politica h1,
#politica h2 {
  border-bottom: 1px solid #000;
  margin-bottom: 40px;
  padding-bottom: 30px;
}
#politica a {
  border-bottom: solid 1px #fff;
  color: #fff;
  display: inline;
}
#politica .marge-21 {
  padding: 21px 0px;
}
#politica .marge-21-42 {
  margin: 21px 0px 42px 0px;
}
#politica .marge-21-42-40 {
  margin: 21px 0px 42px 40px;
}
#politica li {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.5rem;
  list-style: disc;
  margin-left: 40px;
  padding-bottom: 10px;
}
#politica ul ul li {
  list-style: circle inside;
  margin-left: 60px;
}
#politica em {
  display: block;
  font-style: italic;
}
#politica strong {
  display: block;
  font-size: 1.1em;
}
@media screen and (max-width: 1024px) {
  #politica .politica li {
    font-size: 18px;
    margin-left: 30px;
  }
  #politica .politica ul ul li {
    list-style: circle;
  }
  #politica .politica li::marker,
  #politica ul ul li::marker {
    font-size: 25px;
  }
  #politica .marge-21-42 {
    margin: 18px 0px 36px 0px;
  }
  #politica .marge-21 {
    margin: 18px 0px;
    padding: 0;
  }
}

#sobre .relationship {
  align-items: start;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-top: 20vh;
  margin: auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship {
    padding-top: 25vh;
    width: 90%;
  }
}
#sobre .relationship h1 {
  width: 75%;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship h1 {
    width: 100%;
  }
}
#sobre .relationship h1 span {
  display: block;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship h1 span {
    font-size: 1.5em;
    line-height: 1em;
  }
}
#sobre .img {
  background: url(../img/sobre/img.png) no-repeat;
  background-position: center;
  background-size: cover;
  height: 75vh;
}
@media screen and (max-width: 1024px) {
  #sobre .img {
    background-position: left;
  }
}
#sobre .experience {
  background-color: #fff;
  color: #000;
}
#sobre .experience .container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 150px 0px 75px 0px;
  width: 85%;
}
@media screen and (max-width: 1024px) {
  #sobre .experience .container {
    flex-direction: column;
  }
}
#sobre .experience .container .box-1 {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  #sobre .experience .container .box-1 {
    margin-bottom: 60px;
    width: 100%;
  }
}
#sobre .experience .container .box-1 img {
  width: -moz-fit-content;
  width: fit-content;
}
#sobre .experience .container .box-1 span {
  color: #9188FF;
  display: block;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 50px 0px 10px 0px;
  text-transform: uppercase;
}
#sobre .experience .container .box-1 p {
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #sobre .experience .container .box-1 p {
    padding-bottom: 20px;
  }
}
#sobre .experience .container .box-1 p:first-of-type {
  padding-top: 40px;
}
#sobre .experience .container .box-2 {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  #sobre .experience .container .box-2 {
    width: 100%;
  }
}
#sobre .experience .container .box-2 img {
  width: -moz-fit-content;
  width: fit-content;
}
#sobre .experience .container .box-2 strong {
  color: #9188FF;
  display: block;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 50px 0px 10px 0px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #sobre .experience .container .box-2 strong {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
#sobre .experience .container .box-2 p {
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #sobre .experience .container .box-2 p {
    padding-bottom: 20px;
  }
}
#sobre .experience .container .box-2 p:first-of-type {
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  #sobre .experience .container .box-2 p:first-of-type {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
#sobre .relationship-lines {
  background-color: #fff;
  color: #000;
}
#sobre .relationship-lines .container {
  margin: auto;
  padding-bottom: 150px;
  width: 85%;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship-lines .container {
    padding-bottom: 120px;
  }
}
#sobre .relationship-lines .container .hide {
  display: block;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship-lines .container .hide {
    display: none;
  }
}
#sobre .relationship-lines .container .data-science {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship-lines .container .data-science {
    margin-bottom: 0px;
  }
}
#sobre .relationship-lines .container .data-science div:nth-child(2) {
  margin: 0px 20px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship-lines .container .data-science div:nth-child(2) {
    margin: 0px 0px 20px 0px;
  }
}
#sobre .relationship-lines .container .data-science div:nth-child(2) p {
  font-size: 1.25rem;
  line-height: 1.5;
}
#sobre .relationship-lines .container .data-science div img {
  width: 100%;
}
#sobre .relationship-lines .container .centers {
  align-items: center;
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship-lines .container .centers {
    margin-bottom: 0px;
  }
}
#sobre .relationship-lines .container .centers div {
  align-items: center;
  display: flex;
}
#sobre .relationship-lines .container .centers p {
  margin: 0px 10px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship-lines .container .centers p {
    font-size: 1rem;
    line-height: 1.25;
    margin: 0px;
  }
}
#sobre .relationship-lines .container .excellence img,
#sobre .relationship-lines .container .execution img {
  width: 100%;
}
#sobre .relationship-lines .container .excellence {
  margin-right: 20px;
}
#sobre .relationship-lines .container .execution {
  margin-left: 20px;
}
#sobre .relationship-lines .container .arrow-mobile-l {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship-lines .container .arrow-mobile-l {
    display: block !important;
    margin-bottom: 40px;
  }
}
#sobre .relationship-lines .container .arrow-mobile-l img {
  width: 100%;
}
#sobre .relationship-lines .container .arrow-mobile-s {
  display: none !important;
  width: 72%;
}
@media screen and (max-width: 1024px) {
  #sobre .relationship-lines .container .arrow-mobile-s {
    display: block !important;
  }
}
#sobre .relationship-lines .container .arrow-mobile-s img {
  width: 122px;
}
#sobre .total-human {
  margin: auto;
  padding: 150px 0px 0px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human {
    padding-top: 120px;
  }
}
#sobre .total-human .box1 {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box1 {
    flex-direction: column;
  }
  #sobre .total-human .box1:last-child {
    flex-direction: column-reverse;
  }
}
#sobre .total-human .box1:first-child {
  margin-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box1:first-child {
    margin-bottom: 0px;
  }
}
#sobre .total-human .box1 div {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box1 div {
    margin-bottom: 0px;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box1 div:first-child {
    margin-bottom: 0px;
  }
}
#sobre .total-human .box1 img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box1 img {
    margin-top: 80px;
  }
}
#sobre .total-human .box1 .block {
  display: block;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box1 .block {
    display: none;
  }
}
#sobre .total-human .box1 .hide {
  display: none;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box1 .hide {
    display: block;
  }
}
#sobre .total-human .box1 p {
  margin-top: 35px;
}
#sobre .total-human .box2 {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box2 {
    flex-direction: column;
    padding-top: 80px;
  }
  #sobre .total-human .box2:last-child {
    flex-direction: column-reverse;
  }
}
#sobre .total-human .box2:first-child {
  margin-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box2:first-child {
    margin-bottom: 0px;
  }
}
#sobre .total-human .box2 div {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box2 div {
    margin-bottom: 0px;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box2 div:first-child {
    margin-bottom: 0px;
  }
}
#sobre .total-human .box2 img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #sobre .total-human .box2 img {
    margin-top: 80px;
  }
}
#sobre .total-human .box2 p {
  margin-top: 35px;
}
#sobre .mineration {
  margin: auto;
  padding: 150px 0px 270px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #sobre .mineration {
    padding: 80px 0px;
  }
}
#sobre .mineration .title {
  margin-bottom: 120px;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  #sobre .mineration .title {
    margin-bottom: 80px;
    width: 100%;
  }
}
#sobre .mineration .title h4 {
  margin-bottom: 40px;
}
#sobre .mineration .cards {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #sobre .mineration .cards {
    flex-direction: column;
  }
}
#sobre .mineration .cards div {
  width: 32%;
}
@media screen and (max-width: 1024px) {
  #sobre .mineration .cards div {
    margin-bottom: 80px;
    width: 100%;
  }
}
#sobre .mineration .cards div img {
  width: 100%;
}
#sobre .mineration .cards div p {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
#sobre .mineration .cards div p:first-of-type {
  font-size: 2rem;
  line-height: 2.25rem;
  padding: 70px 0px 40px 0px;
  height: 182px;
}
#sobre .partners {
  margin: auto;
  width: 90%;
}
#sobre .partners p {
  font-size: 2rem;
  line-height: 2.25rem;
  max-width: 650px;
}
#sobre .partners .logos {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 60px 0px 250px 0px;
}
@media screen and (max-width: 1024px) {
  #sobre .partners .logos {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
#sobre .partners .logos div {
  width: 13%;
}
@media screen and (max-width: 1024px) {
  #sobre .partners .logos div {
    margin-bottom: 80px;
    width: 50%;
  }
}
#sobre .partners .logos div img {
  margin: auto;
  width: 80%;
}
#sobre .mrm img {
  width: 100%;
}
#sobre .creativity {
  background-color: #fff;
  color: #000;
  padding: 170px 0px;
}
@media screen and (max-width: 1024px) {
  #sobre .creativity {
    padding: 120px 0px;
  }
}
#sobre .creativity .container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 85%;
}
@media screen and (max-width: 1024px) {
  #sobre .creativity .container {
    flex-direction: column;
  }
}
#sobre .creativity .container .title {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  #sobre .creativity .container .title {
    width: 100%;
  }
}
#sobre .creativity .container .awards {
  display: flex;
  flex-direction: column;
  width: 65%;
}
@media screen and (max-width: 1024px) {
  #sobre .creativity .container .awards {
    width: 100%;
  }
}
#sobre .creativity .container .awards .trophy {
  align-items: center;
  border-bottom: 1px solid #ededed;
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
}
#sobre .creativity .container .awards .trophy div:last-of-type {
  max-width: 20%;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  #sobre .creativity .container .awards .trophy div:last-of-type {
    max-width: 40%;
  }
}
#sobre .creativity .container .awards .trophy .box {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 66%;
}
@media screen and (max-width: 1024px) {
  #sobre .creativity .container .awards .trophy .box {
    align-items: start;
    flex-direction: column;
  }
}
#sobre .creativity .container .awards .trophy .box p {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #sobre .creativity .container .awards .trophy .box p {
    width: 100%;
  }
}
#sobre .creativity .container .awards .trophy .box p:first-of-type {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
#sobre .creativity .container .awards p {
  font-size: 1rem;
  line-height: 1.25rem;
}
#sobre .impossible {
  margin: 160px auto 200px auto;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible {
    margin: 120px auto 120px auto;
  }
}
#sobre .impossible .tecnology {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .tecnology {
    flex-direction: column;
  }
}
#sobre .impossible .tecnology div:first-of-type {
  width: 32%;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .tecnology div:first-of-type {
    width: 100%;
  }
}
#sobre .impossible .tecnology div:last-of-type {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .tecnology div:last-of-type {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .tecnology div:last-of-type p {
    margin-top: 20px;
  }
}
#sobre .impossible .tecnology div:last-of-type p:last-of-type {
  margin-top: 20px;
}
#sobre .impossible .big-partners p {
  font-size: 2rem;
  line-height: 2.25rem;
  width: 45%;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .big-partners p {
    width: 100%;
  }
}
#sobre .impossible .big-partners .logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#sobre .impossible .big-partners .logos div {
  margin-top: 70px;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .big-partners .logos div {
    width: 50%;
  }
}
#sobre .impossible .big-partners .logos div img {
  margin: auto;
  width: 60%;
}
#sobre .impossible .inovation {
  display: grid;
  gap: 0px 20%;
  grid-template-columns: auto auto;
  margin: 240px 0px;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .inovation {
    grid-template-columns: auto;
    margin: 80px 0px;
  }
}
#sobre .impossible .inovation .item-3 {
  grid-row: 1/3;
  grid-column: 2;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .inovation .item-3 {
    grid-row: 2;
    grid-column: 1;
  }
}
#sobre .impossible .inovation img {
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .inovation img {
    margin: auto;
  }
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .inovation div:last-of-type {
    margin-top: 40px;
  }
}
#sobre .impossible .inovation div:last-of-type p:last-of-type {
  margin-top: 20px;
}
#sobre .impossible .lab13 {
  border-bottom: 1px solid #746DCC;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .lab13 {
    border-bottom: none;
  }
}
#sobre .impossible .lab13 span {
  text-transform: uppercase;
}
#sobre .impossible .lab13 p {
  font-size: 2rem;
  line-height: 2.25rem;
}
#sobre .impossible .lab13 .logos {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .lab13 .logos {
    flex-direction: column;
  }
}
#sobre .impossible .lab13 .logos div {
  padding: 80px 0px 40px 0px;
  width: 25%;
}
@media screen and (max-width: 1024px) {
  #sobre .impossible .lab13 .logos div {
    border-bottom: 1px solid #746DCC;
    padding: 40px 0px 20px 0px;
    width: 100%;
  }
}
#sobre .impossible .lab13 .logos div p {
  padding-top: 10px;
}

#dei .culture {
  align-items: start;
  display: flex;
  flex-direction: column;
  height: 150vh;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-top: 20vh;
  margin: auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  #dei .culture {
    padding-top: 25vh;
    width: 90%;
  }
}
#dei .culture h1 {
  width: 85%;
}
@media screen and (max-width: 1024px) {
  #dei .culture h1 {
    width: 100%;
  }
}
#dei .culture h1 span {
  display: block;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #dei .culture h1 span {
    font-size: 2em;
    line-height: 1em;
  }
}
#dei .culture h1 .white {
  color: #fff;
}
#dei .hands img {
  width: 100%;
}
#dei .hands .block {
  display: block;
}
@media screen and (max-width: 1024px) {
  #dei .hands .block {
    display: none;
  }
}
#dei .hands .hide {
  display: none;
}
@media screen and (max-width: 1024px) {
  #dei .hands .hide {
    display: block;
  }
}
#dei .initial {
  background-color: #fff;
}
#dei .initial .container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 150px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #dei .initial .container {
    flex-direction: column;
    padding: 80px 0px 40px 0px;
  }
}
#dei .initial .container .method {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  #dei .initial .container .method {
    flex-direction: column;
    margin-bottom: 80px;
    width: 100%;
  }
}
#dei .initial .container .area {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  #dei .initial .container .area {
    width: 100%;
  }
}
#dei .initial .container .area .item {
  cursor: pointer;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  #dei .initial .container .area .item {
    padding-bottom: 40px;
  }
}
#dei .initial .container .area .item .heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#dei .initial .container .area .item .heading h3 {
  font-size: 3rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 1024px) {
  #dei .initial .container .area .item .heading h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
#dei .initial .container .area .item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #dei .initial .container .area .item:not(:first-child) {
    margin-top: 40px;
  }
}
#dei .initial .container .area .item:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
#dei .initial .container .area .item .answer {
  display: none;
  margin-top: 30px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #dei .initial .container .area .item .answer {
    font-size: 1rem;
    line-height: 1.25;
    width: 100%;
  }
}
#dei .initial .container .area .item .answer img {
  padding-top: 40px;
  width: 100%;
}
#dei .initial .container .area .active h3 {
  color: #9188FF;
  display: inline;
  text-decoration: underline;
}
#dei .promise {
  margin: auto;
  padding: 150px 0 0;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #dei .promise {
    padding: 80px 0px 90px 0px;
  }
}
#dei .promise .container {
  align-items: start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #dei .promise .container {
    flex-direction: column;
  }
}
#dei .promise .container img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #dei .promise .container img {
    padding-top: 40px;
  }
}
#dei .promise .container .association {
  align-items: center;
  display: inline-flex;
  margin-top: 40px;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  #dei .promise .container .association {
    width: 60%;
  }
}
#dei .promise .container .association img {
  display: inline;
  margin-left: 10px;
  width: 24px;
}
@media screen and (max-width: 1024px) {
  #dei .promise .container .association img {
    padding-top: 0px;
  }
}
#dei .inclusion {
  margin: auto;
  width: 90%;
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  #dei .inclusion {
    padding-bottom: 90px;
  }
}
#dei .inclusion .container {
  align-items: start;
  display: flex;
  flex-direction: column;
}
#dei .inclusion .container h4 {
  font-weight: bold;
}
#dei .inclusion .container div > p {
  margin-top: 40px;
}
#dei .inclusion .container .association {
  align-items: center;
  display: inline-flex;
  margin: 40px 0;
  text-decoration: underline;
}
#dei .inclusion .container .association img {
  display: inline;
  margin-left: 10px;
  width: 24px;
}
#dei .inclusion .container .inclusion-guide {
  width: 100%;
}
#dei .inclusion .container .inclusion-guide a {
  width: 100%;
}
#dei .inclusion .container .inclusion-guide a img {
  width: 100%;
  height: auto;
}
#dei .pronoun .container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 150px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #dei .pronoun .container {
    flex-direction: column;
    padding: 0px 0px 60px 0px;
  }
}
#dei .pronoun .container .method {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  #dei .pronoun .container .method {
    flex-direction: column;
    margin-bottom: 80px;
    width: 100%;
  }
}
#dei .pronoun .container .method p {
  margin-top: 40px;
}
#dei .pronoun .container .area {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  #dei .pronoun .container .area {
    width: 100%;
  }
}
#dei .pronoun .container .area .item {
  cursor: pointer;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  #dei .pronoun .container .area .item {
    padding-bottom: 20px;
  }
}
#dei .pronoun .container .area .item .heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#dei .pronoun .container .area .item .heading h3 {
  font-size: 3rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 1024px) {
  #dei .pronoun .container .area .item .heading h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
#dei .pronoun .container .area .item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #dei .pronoun .container .area .item:not(:first-child) {
    margin-top: 20px;
  }
}
#dei .pronoun .container .area .item:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
#dei .pronoun .container .area .item .answer {
  display: none;
  margin-top: 30px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #dei .pronoun .container .area .item .answer {
    font-size: 1rem;
    line-height: 1.25;
    width: 100%;
  }
}
#dei .pronoun .container .area .item .answer img {
  padding-top: 40px;
}
#dei .pronoun .container .area .active h3 {
  color: #fff;
  display: inline;
  text-decoration: underline;
}

#health .culture {
  align-items: start;
  display: flex;
  flex-direction: column;
  height: 140vh;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-top: 20vh;
  margin: auto;
  width: 78%;
}
@media screen and (max-width: 1024px) {
  #health .culture {
    height: 115vh;
    padding-top: 25vh;
    width: 90%;
  }
}
#health .culture h1 {
  width: 85%;
}
@media screen and (max-width: 1024px) {
  #health .culture h1 {
    font-size: 5vw;
    width: 100%;
  }
}
#health .culture h1 span {
  display: block;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #health .culture h1 span {
    font-size: 2em;
    line-height: 1em;
  }
}
#health .culture h1 .white {
  color: #fff;
}
#health .hands img {
  width: 100%;
}
#health .hands .block {
  display: block;
}
@media screen and (max-width: 1024px) {
  #health .hands .block {
    display: none;
  }
}
#health .hands .hide {
  display: none;
}
@media screen and (max-width: 1024px) {
  #health .hands .hide {
    display: block;
  }
}
#health .promise {
  margin: auto;
  padding: 150px 0px 200px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #health .promise {
    padding: 100px 0px 60px 0px;
  }
}
#health .promise .container {
  align-items: start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #health .promise .container {
    flex-direction: column;
  }
}
#health .promise .container .title {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  #health .promise .container .title {
    padding-bottom: 50px;
    width: 100%;
  }
}
#health .promise .container .title h4 span {
  display: block;
  font-size: 0.75em;
}
#health .promise .container .text {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #health .promise .container .text {
    width: 100%;
  }
}
#health .promise .container .text p:first-of-type {
  padding-bottom: 40px;
}
#health .work {
  background-color: #fff;
}
#health .work .container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 150px 0px 120px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #health .work .container {
    flex-direction: column;
    padding: 100px 0px 70px 0px;
  }
}
#health .work .container .journey {
  width: 27%;
}
@media screen and (max-width: 1024px) {
  #health .work .container .journey {
    flex-direction: column;
    margin-bottom: 40px;
    width: 100%;
  }
}
#health .work .container .journey h2 {
  margin-bottom: 40px;
}
#health .work .container .area {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  #health .work .container .area {
    width: 100%;
  }
}
#health .work .container .area .item {
  cursor: pointer;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  #health .work .container .area .item {
    padding-bottom: 20px;
  }
}
#health .work .container .area .item .heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#health .work .container .area .item .heading h3 {
  font-size: 3rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 1024px) {
  #health .work .container .area .item .heading h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
#health .work .container .area .item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #health .work .container .area .item:not(:first-child) {
    margin-top: 20px;
  }
}
#health .work .container .area .item:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
#health .work .container .area .item .answer {
  display: none;
  margin-top: 30px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #health .work .container .area .item .answer {
    font-size: 1rem;
    line-height: 1.25;
    width: 100%;
  }
}
#health .work .container .area .item .answer img {
  padding-top: 40px;
}
#health .work .container .area .active h3 {
  color: #9188FF;
  display: inline;
  text-decoration: underline;
}
#health .decoding {
  margin: auto;
  padding: 150px 0px 150px 0px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #health .decoding {
    padding: 80px 0px 90px 0px;
  }
}
#health .decoding .container {
  align-items: start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #health .decoding .container {
    flex-direction: column;
  }
}
#health .decoding .container .title {
  width: 34%;
}
@media screen and (max-width: 1024px) {
  #health .decoding .container .title {
    padding-bottom: 50px;
    width: 65%;
  }
}
#health .decoding .container .title h4 span {
  display: block;
  font-size: 0.75em;
}
#health .decoding .container .text {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  #health .decoding .container .text {
    width: 100%;
  }
}
#health .global {
  margin: auto;
  padding-bottom: 150px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #health .global {
    padding: 0px 0px 80px 0px;
  }
}
#health .global .container {
  align-items: start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #health .global .container {
    flex-direction: column;
  }
}
#health .global .container .title {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  #health .global .container .title {
    padding-bottom: 50px;
    width: 100%;
  }
}
#health .global .container .title h4 span {
  display: block;
  font-size: 0.75em;
}
#health .global .container .title a {
  align-items: center;
  display: inline-flex;
  padding-top: 40px;
  text-decoration: underline;
}
#health .global .container .title a img {
  margin-left: 15px;
}
#health .global .container .text {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  #health .global .container .text {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */