@font-face {
  font-family: Alliance No;
  src: url('../fonts/Alliance-No.1-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Alliance No;
  src: url('../fonts/Alliance-No.1-SemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Alliance No;
  src: url('../fonts/Alliance-No.1-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Alliance No;
  src: url('../fonts/Alliance-No.1-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --neutral--900: black;
  --neutral--100: white;
  --neutral--200: #f3f3f1;
  --neutral--600: #858585;
  --neutral--700: #666;
  --neutral--300: #e2e2e2;
  --_apps---typography--heading-font: "Alliance No", Arial, sans-serif;
  --_apps---typography--body-font: "Alliance No", Arial, sans-serif;
  --_apps---typography--button-font: "Alliance No", Arial, sans-serif;
  --_apps---sizes--radius: .25rem;
  --_apps---colors--background: #fff;
  --_apps---colors--foreground: #030303;
  --_apps---colors--card: #fff;
  --_apps---colors--card-foreground: #060606;
  --_apps---colors--popover: #f2f2f2;
  --_apps---colors--popover-foreground: #060606;
  --_apps---colors--primary: #9fb200;
  --_apps---colors--primary-foreground: #0d0e05;
  --_apps---colors--secondary: #f2fcc6;
  --_apps---colors--secondary-foreground: #0d0e07;
  --_apps---colors--muted: #f8f8f8;
  --_apps---colors--muted-foreground: #7d797a;
  --_apps---colors--accent: #e4e4e4;
  --_apps---colors--accent-foreground: #0d0d0d;
  --_apps---colors--destructive: #d5455f;
  --_apps---colors--border: #ebebeb;
  --_apps---colors--input: #eee;
  --_apps---colors--ring: #9fb020;
  --_apps---charts--chart-1: #8a9c00;
  --_apps---charts--chart-2: #a9b93e;
  --_apps---charts--chart-3: #7c8c00;
  --_apps---charts--chart-4: #819100;
  --_apps---charts--chart-5: #657300;
  --_apps---sidebar--sidebar: #f8f8f8;
  --_apps---sidebar--sidebar-foreground: #060606;
  --_apps---sidebar--sidebar-primary: #9fb200;
  --_apps---sidebar--sidebar-primary-foreground: #0d0e05;
  --_apps---sidebar--sidebar-accent: #e4e4e4;
  --_apps---sidebar--sidebar-accent-foreground: #0d0d0d;
  --_apps---sidebar--sidebar-border: #ebebeb;
  --_apps---sidebar--sidebar-ring: #9fb020;
  --_apps---colors--background-dark: #000;
  --_apps---colors--foreground-dark: #f8f8f8;
  --_apps---colors--card-dark: #020202;
  --_apps---colors--card-foreground-dark: #f8f8f8;
  --_apps---colors--popover-dark: #020202;
  --_apps---colors--popover-foreground-dark: #f8f8f8;
  --_apps---colors--primary-dark: #ddf410;
  --_apps---colors--primary-foreground-dark: #050601;
  --_apps---colors--secondary-dark: #040400;
  --_apps---colors--secondary-foreground-dark: #f8f9f2;
  --_apps---colors--muted-dark: #000;
  --_apps---colors--muted-foreground-dark: #747474;
  --_apps---colors--accent-dark: #121212;
  --_apps---colors--accent-foreground-dark: #f8f8f8;
  --_apps---colors--destructive-dark: #ff6d82;
  --_apps---colors--border-dark: #fff;
  --_apps---colors--input-dark: #fff;
  --_apps---colors--ring-dark: #def16e;
  --_apps---charts--chart-1-dark: #ddf410;
  --_apps---charts--chart-2-dark: #f2ff8d;
  --_apps---charts--chart-3-dark: #bdd300;
  --_apps---charts--chart-4-dark: #f2ff79;
  --_apps---charts--chart-5-dark: #aec100;
  --_apps---sidebar--sidebar-dark: #000;
  --_apps---sidebar--sidebar-foreground-dark: #f8f8f8;
  --_apps---sidebar--sidebar-primary-dark: #ddf410;
  --_apps---sidebar--sidebar-primary-foreground-dark: #050601;
  --_apps---sidebar--sidebar-accent-dark: #121212;
  --_apps---sidebar--sidebar-accent-foreground-dark: #f8f8f8;
  --_apps---sidebar--sidebar-border-dark: #fff;
  --_apps---sidebar--sidebar-ring-dark: #def16e;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--neutral--900);
  color: var(--neutral--100);
  font-family: Alliance No, Arial, sans-serif;
  font-size: 1.1vw;
  line-height: 1.2em;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.8em;
  font-weight: 400;
  line-height: 1.1em;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3.5em;
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1.5;
}

a {
  color: #fff;
  padding-bottom: .15rem;
  text-decoration: none;
}

.section {
  background-color: #000;
  height: 100vh;
}

.section.section-hero {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 13rem;
  padding-bottom: 8rem;
  display: flex;
  position: sticky;
  top: 0;
}

.section.is--grid {
  z-index: 10;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.section-about {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 0;
  display: flex;
  position: relative;
}

.container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.grid-wrapper {
  grid-column-gap: 3rem;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-column {
  grid-row-gap: 3rem;
  flex-direction: column;
  flex: none;
  width: 50vw;
  height: 100%;
  display: flex;
}

.grid-item {
  background-color: #313131;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  flex: none;
  height: 30vw;
}

.grid-item.grid-item-first {
  background-image: url('../images/66afef102605a390da6c70bd_Cover.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item.grid-item-second {
  background-image: url('../images/Frame-483441.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item.grid-item-third {
  background-image: url('../images/Frame.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item.grid-item-4 {
  background-image: url('../images/66afeeef43860e1fe483c6ff_Cover.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item.grid-item-5 {
  background-image: url('../images/Rectangle-42539.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item.grid-item-6 {
  background-image: url('../images/Cover.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item.grid-item-7 {
  background-image: url('../images/66afef43cc4f05829f03f71b_Cover.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item.grid-item-8 {
  background-image: url('../images/Rectangle-42508.jpg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-item.grid-item-9 {
  background-image: url('../images/Rectangle-42507.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.nav {
  z-index: 9999;
  justify-content: space-between;
  padding: 3rem;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.nav.nav-bottom {
  inset: auto 0% 0%;
}

.nav.fixed {
  mix-blend-mode: difference;
  background-color: #ddd0;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  position: fixed;
  overflow: hidden;
}

.links-overlay {
  z-index: 999;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 2rem;
  padding-right: 2rem;
  display: flex;
  position: fixed;
  inset: 0%;
}

.links-overlay-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  pointer-events: auto;
  color: #fff;
  background-color: #4268fb;
  border-bottom-style: none;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  min-width: 13rem;
  padding: .75rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.links-overlay-link.links-overlay-link-black {
  background-color: #0c0c0c;
  border: 1px solid #313131;
}

.links-overlay-link-text-outer-wrapper {
  overflow: hidden;
}

.links-overlay-link-text-inner-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  position: relative;
}

.links-overlay-link-text.links-overlay-link-text-absolute {
  position: absolute;
}

.bottom_menu {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  background-color: #1d1d1d;
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  display: none;
}

.menu_buttom {
  color: #fff;
  background-color: #fffff90d;
  border: 1px #ffffff1a;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding: 1.125rem 1.25rem;
  font-size: .9em;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.menu_buttom:hover {
  background-color: #ff6555;
}

.menu_arrow {
  border: 1px #ffffff1a;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: all .3s;
  display: flex;
}

.menu_arrow:hover {
  background-color: #ff6555;
}

.hero-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
}

.div-block {
  text-align: left;
}

.hero_heading-wrapper {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hero_heading {
  text-transform: uppercase;
  font-size: 4.6em;
  font-weight: 300;
}

.hero_heading.case {
  z-index: 2;
  text-transform: none;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 5.5em;
  font-weight: 300;
  position: relative;
}

.space-xl {
  height: 3em;
}

.text-loop_wrapper {
  display: flex;
}

.text-loop_wrapper._1 {
  grid-column-gap: 3rem;
  margin-left: 8.6rem;
}

.text-loop_wrapper._2 {
  grid-column-gap: 3rem;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: -49.6rem;
}

.text-loop-section {
  padding-top: 8rem;
  padding-bottom: 0;
  overflow: hidden;
}

.button_text {
  color: #fff;
  background-color: #181817;
  border-radius: 9999rem;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.button_text.is--secondary {
  background-color: #18181700;
  border-radius: .5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 1em;
}

.divisor-2 {
  background-color: #f3f3f1;
  width: 100%;
  height: 1px;
  margin-top: .5rem;
  margin-bottom: 3rem;
}

.divisor-2.alternate {
  background-color: #181818;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.about_wrapper {
  grid-column-gap: 13em;
  grid-row-gap: 13em;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.about_wrapper.work {
  padding-bottom: 5em;
}

.text-loop-2 {
  color: var(--neutral--200);
  text-transform: uppercase;
  flex: none;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.2;
}

.about_text-2 {
  margin-bottom: 4rem;
  font-family: Lato, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.about_section {
  width: 100%;
  color: var(--neutral--900);
  text-align: left;
  background-color: #fff;
  padding-top: 10rem;
  padding-bottom: 5em;
  position: relative;
}

.button_arrow-2 {
  background-color: #181817;
  border-radius: 9999rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  display: flex;
}

.button_arrow-2.is--secondary {
  background-color: #292928;
  border-radius: .25rem;
  width: 3rem;
  height: 3rem;
}

.button-2 {
  color: #fff;
  text-align: center;
  border-radius: .25rem;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.button-2.is--secondary {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--neutral--900);
  border-radius: .5rem;
  padding: .5rem;
  display: none;
}

.section_tag {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.tag_text {
  color: var(--neutral--600);
  flex: none;
  font-size: .8em;
}

.about_text-wrapper-2 {
  color: #000;
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.container-medium {
  width: 100%;
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
}

.arrow-icon {
  justify-content: center;
  align-items: center;
  width: 1em;
  display: flex;
  position: absolute;
}

.portfolio_highlights-section-2 {
  background-color: #181817;
  width: 100%;
  height: 100svh;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

.padding-global {
  width: 100%;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.portfolio_highlights-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.portfolio-highlights_list {
  flex-flow: column;
  display: flex;
}

.paragraph1 {
  width: 80%;
  line-height: 1.5;
}

.about_carlos-section {
  z-index: 1;
  color: #fff;
  background-color: #000;
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}

.aut_slider-marquee {
  align-items: center;
  display: flex;
}

.aut-slider_image-outline {
  justify-content: center;
  align-items: center;
  height: 35rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about_wrapper-2 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.automatic-slider_wrapper {
  z-index: 10;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about_text {
  margin-top: 0;
  margin-bottom: 4rem;
  font-size: 3em;
  font-weight: 300;
}

.about_text-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.aut-slider_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: none;
  align-items: center;
  margin-right: 1rem;
  display: flex;
}

.aut-slider_image {
  object-fit: cover;
  width: 40rem;
  height: 100%;
}

.section_tag-2 {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.container-medium-2 {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.whats_section {
  z-index: 1;
  color: #fff;
  background-color: #000;
  width: 100%;
  padding-top: 0;
  position: relative;
}

.accordion_description {
  color: var(--neutral--600);
  padding-left: 0;
  padding-right: 20em;
  font-size: .9em;
  font-weight: 300;
}

.accordion_description._1 {
  display: flex;
}

.about_wrapper-3 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.accordion_item {
  color: #5f5f5f;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.accordion_item._1 {
  color: #fff;
}

.about_text-wrapper-3 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.accordion_title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.25em;
  font-weight: 300;
  transition: all .3s;
}

.accordion_title._1 {
  color: #fff;
  font-weight: 400;
}

.accordion_title.active {
  color: #fff;
}

.footer-link-column {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  display: flex;
}

.footer-bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-top: 2em;
  display: flex;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 3fr .5fr .5fr;
  margin-bottom: 100px;
}

.success-message {
  background-color: #0000;
}

.email-address-wrapper {
  align-items: center;
  display: flex;
}

.footer_section {
  background-color: #000;
  width: 100%;
  padding-top: 1.5em;
  padding-bottom: 4vh;
  position: relative;
}

.footer-line {
  background-color: #505050;
  width: 100%;
  height: 1px;
  margin-top: 3em;
  margin-bottom: 2em;
}

.footer-link {
  color: #666;
  text-align: left;
  letter-spacing: -.02em;
  border-bottom-style: none;
  padding-top: .25rem;
  padding-bottom: .25rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: color .5s;
  display: block;
}

.footer-link:hover {
  color: #c4c2bb;
}

.address {
  color: #4d4d4d;
  text-align: left;
  margin-top: 40px;
  line-height: 24px;
}

.newsletter-field {
  background-color: #0000;
  border: 1px #000;
  width: 100%;
  min-height: 60px;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 10px;
  font-size: 16px;
  transition: all .5s;
}

.newsletter-field:hover {
  border-color: #999;
}

.newsletter-field::placeholder {
  color: #fff;
}

.image {
  width: 100%;
}

.form {
  align-items: center;
  display: flex;
}

.submit-button-wrapper {
  color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  position: absolute;
  inset: auto 20px auto auto;
}

.submit-button {
  background-color: #0000;
  width: 100%;
  height: 100%;
  padding: 5px;
  transition: all .5s;
}

.submit-button:hover {
  color: #7e48ea;
  background-color: #0000;
  border: 1px solid #7e48ea;
}

.email-link {
  color: #666;
  letter-spacing: -.02em;
  margin-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.email-link:hover {
  color: #c4c2bb;
}

.footer-container {
  margin-left: auto;
  margin-right: auto;
}

.huge_logo-hero {
  width: 100%;
}

.form-block {
  background-color: #ffffff1a;
  border-radius: .25rem;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 14px;
  display: flex;
  position: relative;
}

.footer-link-title {
  color: #ccc;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.logo_balmon {
  mix-blend-mode: difference;
}

.hero-caption {
  text-transform: uppercase;
  max-width: 8em;
  font-weight: 300;
}

.hero-text-container {
  grid-column-gap: 20em;
  grid-row-gap: 20em;
  max-width: 100%;
  display: flex;
}

.avatar-cover {
  object-fit: cover;
  border-radius: 100px;
  width: 100%;
  height: 100%;
}

.tabs_menu {
  z-index: 3;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center start;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.tab_panel {
  overflow: hidden;
}

.avatar-img {
  border-radius: 100px;
  flex: none;
  width: 3.25em;
  height: 3.25em;
  margin-right: 1rem;
}

.lightbox_link {
  aspect-ratio: 16 / 9;
  color: #fff;
  width: 100%;
  text-decoration: none;
}

.tab_content-wrapper {
  width: 100%;
}

.play-icon {
  width: 1rem;
}

.play-video {
  z-index: 2;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #ffffff1a;
  border: 1px solid #ffffff1a;
  border-radius: 999rem;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: flex;
  position: relative;
}

.tab-link-bottom {
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: .5rem;
  align-items: center;
  padding: .75em 2em .75em 1em;
  transition: all .3s;
  display: flex;
}

.tab-link-bottom:hover {
  background-color: #ffffff0d;
  border: 1px solid #ffffff0d;
}

.tab-link-bottom.w--current {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #ffffff0d;
  border: 1px solid #ffffff0d;
}

.tabs_content {
  width: 100%;
}

.author-role {
  color: #e2dddb;
  font-size: .8em;
  line-height: 1.2;
}

.testimonial-text {
  z-index: 2;
  text-align: left;
  max-width: 38rem;
  padding-top: 8rem;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  position: relative;
}

.author-name {
  color: #f5f5f5;
  text-align: left;
  letter-spacing: -.02em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.1;
}

.testimonial_tabs {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-testimonial {
  background-color: #000;
  margin-top: 0;
  overflow: hidden;
}

.container-medium-3 {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.padding-global-2 {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
}

.background-video {
  z-index: 1;
  aspect-ratio: 16 / 9;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.slider-item {
  flex: none;
  position: relative;
  overflow: hidden;
}

.slider-item.home {
  width: 40%;
  height: 100%;
}

.display-large {
  margin-bottom: 0;
  font-size: 7em;
}

.slider-navigation-wrapper {
  justify-content: flex-end;
  align-items: flex-start;
  display: none;
}

.arrow-code {
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab_link {
  color: #2c2b2a;
  background-color: #ddd0;
  border: 1px solid #0000001a;
  border-radius: .5rem;
  padding: 1rem 1.5rem;
}

.tab_link.w--current {
  color: #e2dddb;
  background-color: #2c2b2a;
}

.container-2 {
  flex-direction: column;
  align-items: center;
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.slider-wrapper {
  margin-top: 2rem;
  position: relative;
}

.section_machines-list {
  background-color: #efedec;
  padding-top: 0;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.head-left {
  text-align: left;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.slider-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.tabs-content-2 {
  width: 100%;
  overflow: visible;
}

.slider-navigation {
  color: #2c2b2a;
  cursor: pointer;
  border: 1px solid #0000001a;
  border-radius: 999rem;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  transition: all .3s;
  display: flex;
}

.slider-navigation:hover {
  color: #cdc2b1;
  background-color: #2c2b2a;
}

.slider-navigation.prev-slide {
  opacity: 1;
  color: #2c2b2a;
  border-radius: 999rem;
  margin-right: .5rem;
}

.slider-navigation.prev-slide:hover, .slider-navigation.next-slide:hover {
  background-color: var(--neutral--900);
  color: var(--neutral--100);
}

.machines-tabs {
  width: 100%;
  margin-top: 3rem;
}

.tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.cases-wrapper {
  color: var(--neutral--900);
  padding-top: 5rem;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  overflow: visible;
}

.div-block-12 {
  width: 35vw;
  color: var(--neutral--900);
  text-align: left;
  cursor: grab;
}

.image-2 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.swiper {
  width: 100%;
  margin-top: 3em;
}

.swiper.is-swiper-work {
  cursor: grab;
  overflow: visible;
}

.section_services {
  padding-top: 6em;
  padding-bottom: 6em;
  display: none;
}

.cs-bot {
  z-index: 2147483647;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 0% 1rem;
}

.cs-contact-list {
  text-align: center;
  display: none;
}

.link {
  text-decoration: underline;
  transition: opacity .2s, color .2s;
}

.link:hover {
  opacity: .6;
}

.bottom_menu-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  background-color: #1d1d1d;
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  font-size: 1.25rem;
  display: flex;
}

.menu_arrow-2 {
  border: 1px solid #ffffff1a;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  transition: all .3s;
  display: flex;
}

.menu_arrow-2:hover {
  background-color: #ff6555;
}

.div-block-13 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.image-3 {
  width: 100%;
}

.cs-top {
  flex-direction: column;
  justify-content: center;
}

.cs-top.agendamento {
  margin-bottom: 2rem;
}

.cs-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding: 3rem 2rem;
  display: flex;
  position: relative;
}

.cs-bot-2 {
  z-index: 2147483647;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.cs-logo {
  letter-spacing: -.015em;
  width: 10rem;
  max-width: 10rem;
  font-size: 24px;
  font-weight: 500;
  line-height: .9;
  display: block;
}

.cs-logo.w--current {
  width: 12rem;
  max-width: 12rem;
}

.menu_arrow-3 {
  border: 1px solid #ffffff1a;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: all .3s;
  display: flex;
}

.menu_arrow-3:hover {
  background-color: #ff6555;
}

.html-embed-3 {
  width: 100%;
  display: none;
}

.html-embed-3.cal {
  margin-bottom: 0;
  display: block;
  position: relative;
  bottom: -2rem;
}

.icon-svg {
  width: 1.5rem;
}

.menu-center {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.project-subtitle {
  color: var(--neutral--700);
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.2;
}

.menu-link {
  margin-top: .5em;
  font-size: .9em;
}

.button-secondary {
  color: #fff;
  font-size: 1.1em;
  text-decoration: none;
}

.btn-text {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-arrow {
  grid-column-gap: .1em;
  grid-row-gap: .1em;
  flex-flow: column;
  flex: none;
  width: .9em;
  height: .9em;
  display: flex;
  overflow: hidden;
}

.btn-progress {
  height: 1px;
  margin-top: .3em;
}

.btn-progress._2 {
  background-color: var(--neutral--300);
  margin-top: .5em;
}

.progress-line {
  background-color: #fff;
  width: 0;
  height: 1px;
}

.progress-line.main {
  background-color: var(--neutral--900);
}

.button-main {
  color: var(--neutral--900);
  margin-top: .5em;
  font-size: 1.05em;
}

.text-medium {
  color: var(--neutral--600);
  font-size: .9em;
}

.loading-screen {
  z-index: 999999999;
  background-color: var(--neutral--900);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.background-video-2 {
  aspect-ratio: 3 / 2;
  object-fit: fill;
  justify-content: center;
  align-items: center;
  height: 20em;
  margin-top: -3em;
  margin-bottom: 3em;
  display: none;
}

.background-video-2._1 {
  height: 18em;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.loader {
  background-color: #ffffff1a;
  justify-content: flex-start;
  align-items: center;
  width: 15rem;
  height: 1px;
  display: none;
}

.loader.play {
  background-color: var(--neutral--100);
  width: 0%;
}

.testimonial-wrap {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  flex-flow: column;
  display: flex;
}

.body-cases {
  background-color: var(--neutral--100);
}

.case-hero {
  height: 100svh;
  padding: 1em;
}

.case-image-hero {
  object-fit: cover;
  border-radius: .7em;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.case-details {
  padding-top: 8em;
}

.case_video {
  padding: 1em;
  overflow: hidden;
}

.video-bg {
  border-radius: .7em;
  overflow: hidden;
}

.lottie-animation {
  width: 35em;
}

.case-images {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  flex-flow: column;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
}

.collection-list-2 {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.multi-image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: .7em;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.case-image {
  border-radius: .7em;
}

.work_section {
  background-color: #fff;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 7em;
  position: relative;
}

.work_list {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.work_list.is-list {
  grid-template-columns: 1fr;
}

.work_card {
  width: 100%;
  color: var(--neutral--900);
  text-align: left;
}

.work_card.is-list {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  border-top: 1px solid #000;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 1rem;
  display: flex;
}

.work_img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: .5em;
  width: 100%;
  height: 100%;
}

.work_img.is-list {
  width: 10em;
}

.work_wrap {
  width: 100%;
  margin-top: 3em;
  padding-left: 1em;
  padding-right: 1em;
}

.view_toggle {
  background-color: #e7e7e7;
  border: 4px solid #e7e7e7;
  border-radius: 100vw;
  margin-bottom: .5em;
  padding-bottom: 0;
  position: relative;
}

.view_move {
  z-index: 0;
  background-color: #fff;
  border-radius: 100vw;
  width: 50%;
  height: 100%;
  transition: all .3s;
  position: absolute;
}

.view_move.is-list {
  transform: translate(100%);
}

.view_icons {
  display: flex;
}

.view_icon-grid {
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  display: flex;
  position: relative;
}

.view_icon-list {
  opacity: .3;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  display: flex;
  position: relative;
}

.icon-embed {
  justify-content: center;
  align-items: center;
  width: 1em;
  display: flex;
}

.code-embed-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.work_item {
  width: 100%;
}

.work_content {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.work-title {
  margin-top: 0;
}

.work-title.is-list {
  margin-top: 0;
  font-size: 3em;
}

.caption-wrapper {
  grid-column-gap: 1em;
  align-items: center;
  display: flex;
}

.contact-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  width: 100%;
}

.sup {
  letter-spacing: 0;
  width: 2em;
  padding-left: .25em;
  font-size: .5em;
  font-weight: 500;
  position: absolute;
}

.caption {
  color: #666666a3;
  font-variation-settings: "wght" 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .5em;
  font-size: .75em;
  font-weight: 400;
  line-height: 1.3;
}

.form-list {
  grid-row-gap: 2em;
  flex-direction: column;
  display: flex;
}

.success-message-2 {
  background-color: var(--neutral--900);
  color: var(--neutral--100);
  border-radius: .75vw;
  font-size: 1.5vw;
}

.field-label {
  font-variation-settings: "wght" 450;
  letter-spacing: -.01em;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.2;
}

.select-field {
  background-color: #0000;
  border: 1px #000;
  margin-bottom: 0;
  padding: 0;
  font-size: 1em;
}

.submit-wrapper {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.contact-wrapper {
  grid-row-gap: 1em;
  flex-direction: column;
  display: flex;
}

.submit-button-2 {
  color: #0d0d11;
  font-variation-settings: "wght" 550;
  letter-spacing: -.02em;
  text-transform: uppercase;
  background-color: #0000;
  border-bottom: 1px solid #8080804d;
  padding: 0;
  font-size: 1.2em;
  font-weight: 400;
  transition: border-color .3s;
}

.submit-button-2:hover {
  border-bottom-color: #0d0d11;
}

.form-block-2 {
  width: 100%;
  margin-bottom: 0;
}

.text-field {
  color: #333;
  background-color: #0000;
  border: 1px #000;
  border-bottom: .5px solid #8080804d;
  align-items: center;
  height: 10vh;
  margin-bottom: 0;
  padding: 0;
  font-size: 1em;
  display: flex;
}

.text-field:focus {
  border-bottom-color: #0d0d11;
}

.text-field.is-text-area {
  height: auto;
  min-height: 20vh;
  padding-top: 3vh;
}

.line {
  background-color: #8080804d;
  flex: 1;
  height: .5px;
}

.contact_wrapper {
  grid-column-gap: 13em;
  grid-row-gap: 13em;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  margin-top: 4em;
  display: grid;
}

.swiper-slide {
  cursor: grab;
  flex: none;
  overflow: hidden;
}

.descript-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5em;
  transition: all .3s;
  overflow: hidden;
}

.descript-wrap.active {
  height: auto;
}

.title-wrap {
  color: var(--neutral--700);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.title-wrap.active {
  color: var(--neutral--100);
}

.divisor-services {
  background-color: #181818;
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.divisor-services.alternate {
  background-color: #181818;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.divisor-services.active {
  background-color: #4e4e4e;
}

.arrow-embed.active {
  color: var(--neutral--100);
}

.modal {
  z-index: 99999;
  justify-content: center;
  align-items: center;
  height: 100svh;
  display: none;
  position: fixed;
  inset: 0%;
}

.player-container {
  z-index: 2;
  justify-content: center;
  align-items: flex-start;
  width: 130vh;
  max-height: 70svh;
  display: flex;
  position: relative;
}

.custom-styles {
  border-radius: .5em;
}

.video_player-embed {
  border-radius: .5em;
  width: 100%;
  height: 73vh;
  overflow: hidden;
}

.close-video {
  z-index: 2;
  color: #fff;
  cursor: pointer;
  background-color: #19191900;
  border-radius: 999em;
  flex: none;
  justify-content: center;
  align-items: center;
  height: auto;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: -2em 0% auto auto;
}

.close-video:hover {
  color: var(--neutral--600);
}

.close-video.text:hover {
  color: #fff;
}

.close-video.mobile {
  position: absolute;
  inset: -1.5em 0% auto auto;
}

.close-video.mobile:hover {
  color: #fff;
}

.close-icon {
  justify-content: center;
  align-items: center;
  width: 1.25vw;
  display: flex;
}

.overlay-bg {
  cursor: pointer;
  background-color: #000;
  position: absolute;
  inset: 0%;
  transform: translate(0, 100svh);
}

.wrapper-cursor {
  z-index: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
  position: fixed;
  inset: 0%;
}

.cursor {
  background-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.portfolio-1-2 {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.colum-2-2 {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  flex-flow: column;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.colum-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1em;
  width: 100%;
  overflow: hidden;
}

.colum-image.json {
  background-color: #171b1c;
}

.lottie-2 {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  background-color: #f2e8d8;
  border-radius: .7em;
  flex-flow: row;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-left: 5em;
  padding-right: 5em;
  display: flex;
}

.lottie-caren {
  height: 6em;
}

.see-more-cases_section {
  width: 100%;
  color: var(--neutral--900);
  text-align: left;
  background-color: #fff;
  padding-bottom: 5em;
  position: relative;
}

._2x2-wvideo {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.page_title {
  margin-bottom: 0;
  font-size: 7em;
  line-height: 1;
}

.work-case-wrap {
  border-radius: .5em;
  width: 100%;
  overflow: hidden;
}

.work-case-wrap.is-list {
  width: 10em;
}

.logo_logotype {
  flex: none;
  width: auto;
  height: 100%;
}

.navbar_link {
  border-bottom: 2px solid #0000;
  align-items: center;
  padding: .25rem 0;
  font-size: 1rem;
  font-weight: 400;
  transition: all .3s;
  display: flex;
}

.navbar_link:hover {
  border-bottom: 2px solid #ddf410;
}

.navbar_link.w--current {
  color: #000;
  font-weight: 400;
}

.navbar_link.light {
  color: #fff;
}

.navbar_link.light:hover {
  color: #e7f759;
}

.navbar_menu-left {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  padding-left: 1rem;
  display: flex;
}

.navbar_menu {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.navbar_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar_menu-right {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.navbar_component {
  color: #fff;
  background-color: #101820;
  border-bottom: 1px solid #192531;
  align-items: center;
  min-height: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.button {
  grid-column-gap: 1rem;
  color: #101820;
  text-align: center;
  white-space: nowrap;
  background-color: #ddf410;
  border: 1px solid #e7f759;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .875rem 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.button:hover {
  background-color: #e7f759;
}

.button.menu {
  color: #fff;
  background-color: #192531;
  border-style: none;
  height: 3rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  transition: all .3s;
}

.button.menu:hover {
  background-color: #151f28;
}

.navbar_dropdown-link {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: .5rem .75rem;
  text-decoration: none;
  transition: all .3s;
  display: grid;
}

.navbar_dropdown-link:hover {
  background-color: #eaedf0;
}

.navbar_item-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
}

.navbar_button-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
}

.logo_component {
  flex-wrap: nowrap;
  width: auto;
  height: 2.5rem;
  display: flex;
}

.navbar_dropdown-toggle {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  padding: .25rem 0 .25rem 0;
  font-size: 1rem;
  font-weight: 400;
  transition: all .3s;
  display: flex;
}

.navbar_dropdown-toggle.text-align-right {
  color: #fff;
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.navbar_dropdown-toggle.text-align-right:hover {
  color: #e7f759;
}

.navbar_menu-button {
  padding: 0;
}

.navbar_logo-link {
  padding-left: 0;
}

.navbar_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: .5rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.uui-dropdown-icon {
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.text-size-xsmall {
  color: #505a62;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.4;
}

.navbar_menu-dropdown {
  display: flex;
}

.navbar_dropdown-list {
  margin-top: 2rem;
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #10182808;
}

.navbar_dropdown-list.w--open {
  background-color: #fff;
  border: 1px solid #eaedf0;
  border-radius: .5rem;
  width: 18rem;
  padding: .5rem;
  left: -1rem;
  right: auto;
}

.navbar_item-heading {
  color: #192531;
  margin-top: 0;
  margin-bottom: .25rem;
  font-weight: 500;
}

.menu-mob-wrap {
  z-index: 9998;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.case-img-hero {
  justify-content: flex-start;
  align-items: flex-end;
  height: 100%;
  display: flex;
  position: relative;
}

.webflow-badge {
  position: fixed;
  inset: 0% 0% 0% auto;
}

.code-embed-3 {
  height: 100svh;
  max-height: 100svh;
}

@media screen and (min-width: 1280px) {
  .lightbox_link {
    display: flex;
  }

  .play-icon {
    opacity: 1;
    position: relative;
  }

  .play-video {
    z-index: 4;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #fff3;
    border: 1px solid #ffffff1a;
    border-radius: 999rem;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    display: flex;
    position: absolute;
  }

  .author-name {
    margin-bottom: .125em;
  }

  .background-video {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media screen and (min-width: 1440px) {
  h3 {
    line-height: 1.2;
  }

  .bottom_menu {
    padding: .5rem;
  }

  .menu_buttom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    color: #fff;
    width: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-decoration: none;
  }

  .footer-grid {
    grid-template-columns: 3fr .5fr .5fr;
  }

  .huge_logo-hero {
    margin-top: 5rem;
    position: relative;
  }

  .hero-caption {
    font-size: .9em;
  }

  .author-role {
    color: #dfdfdf;
  }

  .background-video {
    position: absolute;
  }

  .loading-screen {
    display: none;
  }

  .background-video-2 {
    justify-content: center;
    align-items: center;
  }

  .case-details {
    padding-top: 5em;
  }

  .video-bg {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .contact-wrapper {
    text-align: left;
    width: 100%;
  }

  .modal {
    display: flex;
  }

  .close-video:hover {
    color: var(--neutral--600);
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 2vw;
  }

  .grid-column.grid-column-second {
    width: 65vw;
  }

  .grid-item {
    height: 40vw;
  }

  .links-overlay {
    display: none;
  }

  .hero-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .hero_heading-wrapper {
    max-width: 100%;
    margin-top: 1em;
  }

  .hero_heading {
    font-size: 3.5em;
  }

  .hero_heading.case {
    font-size: 5em;
  }

  .text-loop-section {
    display: none;
  }

  .about_wrapper {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }

  .about_section {
    padding-top: 6rem;
  }

  .container-medium {
    padding-left: 2em;
    padding-right: 2em;
  }

  .aut-slider_image-outline {
    height: 320px;
  }

  .about_text {
    font-size: 2em;
  }

  .aut-slider_image {
    width: 30rem;
  }

  .footer-grid {
    grid-template-columns: 1fr .25fr .25fr;
  }

  .footer_section {
    padding-top: 2em;
  }

  .footer-link {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .email-link {
    margin-bottom: 10px;
  }

  .hero-caption {
    max-width: 100%;
  }

  .hero-text-container {
    grid-column-gap: 12em;
    grid-row-gap: 12em;
  }

  .tabs_menu {
    grid-template-columns: 1fr 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lightbox_link {
    height: 40rem;
  }

  .padding-global-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .background-video {
    height: 100%;
  }

  .slider-item {
    margin-right: 0;
  }

  .display-large {
    font-size: 4em;
  }

  .display-large.text-color-black {
    font-size: 3rem;
  }

  .tab_link {
    text-align: center;
    flex: none;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;
    display: flex;
  }

  .container-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section_machines-list {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .tabs-menu {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .div-block-12 {
    width: 50vw;
  }

  .html-embed-3 {
    height: 100%;
  }

  .menu-center {
    display: none;
  }

  .menu-link {
    font-size: 4em;
    font-weight: 300;
    line-height: 1.2;
  }

  .menu-link.footer {
    font-size: 1em;
  }

  .btn-text {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .button-arrow {
    width: .8em;
    height: .8em;
  }

  .case-hero {
    height: 70svh;
  }

  .case-details {
    padding-top: 5em;
  }

  .work_section {
    padding-top: 6rem;
  }

  .work_list {
    grid-template-columns: 1fr;
  }

  .contact_wrapper {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }

  .player-container {
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
  }

  .video_player-embed {
    height: 52vw;
  }

  .close-video {
    right: 2em;
  }

  .close-video.mobile {
    width: auto;
    height: auto;
    display: flex;
    position: absolute;
    top: -1.5em;
  }

  .close-icon {
    width: 2vw;
  }

  .wrapper-cursor {
    display: none;
  }

  .lottie-2 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    padding-left: 3em;
    padding-right: 3em;
  }

  .page_title {
    font-size: 5em;
  }

  .page_title.text-color-black {
    font-size: 3rem;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_link {
    color: #101828;
    border-bottom-width: 1px;
    border-bottom-color: #eaedf0;
    justify-content: center;
    width: 100%;
    padding: .75rem 0;
    font-size: 2rem;
  }

  .navbar_link:hover {
    color: #101828;
  }

  .navbar_link.light {
    border-bottom-width: 1px;
    border-bottom-color: #192531;
    justify-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 2rem;
  }

  .navbar_menu-left {
    grid-column-gap: 0px;
    grid-row-gap: 0rem;
    color: #101828;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    display: none;
  }

  .menu-icon_component {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar_menu {
    -webkit-text-fill-color: inherit;
    background-color: #101820;
    background-clip: border-box;
    border-top: 1px solid #192531;
    align-items: flex-start;
    height: 100vh;
    margin-left: 0;
    padding-bottom: 5rem;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    overflow: auto;
  }

  .menu-icon_line-top {
    background-color: #fff;
    width: 32px;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_menu-right {
    flex-direction: column-reverse;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    padding-bottom: 7rem;
  }

  .button.menu {
    height: 4rem;
    margin-top: 2rem;
    margin-left: 0;
    font-size: 1.25rem;
  }

  .navbar_dropdown-link {
    background-color: #fff0;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar_dropdown-link:hover {
    background-color: #0000;
  }

  .menu-icon_line-middle {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 1px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-bottom {
    background-color: #fff;
    width: 32px;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_button-wrapper {
    flex-direction: column-reverse;
    align-items: stretch;
    margin-left: 2rem;
    margin-right: 2rem;
    display: flex;
  }

  .navbar_dropdown-toggle {
    color: #101828;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 2rem;
    display: flex;
  }

  .navbar_dropdown-toggle:hover {
    color: #101828;
  }

  .navbar_dropdown-toggle.text-align-right {
    margin-left: 0;
    margin-right: 0;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 2rem;
  }

  .navbar_menu-button.w--open {
    background-color: #0000;
  }

  .navbar_dropdown-link-list {
    background-color: #151f28;
    border-radius: .5rem;
    margin-left: 0;
    padding: .5rem 1rem;
  }

  .uui-dropdown-icon {
    color: #667085;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .text-size-xsmall {
    color: #fff;
  }

  .navbar_menu-dropdown {
    border-bottom: 1px solid #151f28;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .navbar_dropdown-list {
    margin-bottom: 1rem;
    position: static;
    overflow: hidden;
  }

  .navbar_dropdown-list.w--open {
    width: 100%;
    box-shadow: none;
    background-color: #fff0;
    border-style: none;
    border-color: #0000;
    margin-top: 0;
    padding: 0 2rem;
  }

  .navbar_item-heading {
    color: #fff;
  }

  .menu-mob-wrap {
    background-color: var(--neutral--900);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 2.5vw;
  }

  .section.is--grid {
    height: 75vh;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .grid-wrapper {
    grid-column-gap: 2rem;
  }

  .grid-column.grid-column-first, .grid-column.grid-column-second, .grid-column.grid-column-third {
    grid-row-gap: 2rem;
  }

  .nav.fixed {
    justify-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .bottom_menu {
    position: fixed;
    inset: auto auto 2rem;
  }

  .hero_heading.case {
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about_wrapper {
    grid-template-columns: auto;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .logo-wrapper {
    width: 100%;
  }

  .aut-slider_image-outline {
    height: 320px;
  }

  .automatic-slider_wrapper {
    margin-top: 2rem;
  }

  .about_text {
    font-size: 2.5em;
  }

  .aut-slider_image {
    width: 30rem;
  }

  .footer-link-column {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .footer_section {
    padding-top: 3em;
  }

  .footer-link-title {
    margin-bottom: 20px;
  }

  .tabs_menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: row;
    grid-auto-columns: 1fr;
    width: 100%;
    padding-bottom: 1.5em;
    padding-left: 1rem;
    padding-right: 1rem;
    display: grid;
    overflow: scroll;
  }

  .div-block-11 {
    flex: none;
  }

  .tab-link-bottom {
    min-width: 240px;
  }

  .tab-link-bottom.w--current {
    min-width: 100%;
  }

  .padding-global-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .slider-item {
    width: 100%;
  }

  .display-large {
    font-size: 3em;
  }

  .display-large.text-color-black {
    font-size: 2.5rem;
  }

  .container-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section_machines-list {
    padding-top: 2rem;
  }

  .contact-grid {
    grid-column-gap: 1em;
    grid-row-gap: 0em;
    grid-template-columns: 1fr;
  }

  .contact_wrapper {
    grid-template-columns: auto;
  }

  .video_player-embed {
    height: 50vw;
  }

  .close-icon {
    width: 3vw;
  }

  .page_title {
    font-size: 5em;
  }

  .page_title.text-color-black {
    font-size: 2.5rem;
  }

  .navbar_component {
    min-height: 4.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button {
    width: 100%;
    font-size: 1rem;
  }

  .button:hover {
    background-color: #e7f759;
    border-color: #e7f759;
  }

  .navbar_dropdown-link-list {
    grid-row-gap: .5rem;
    max-width: none;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 4vw;
  }

  .section.section-hero {
    justify-content: center;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .section.is--grid {
    height: 60vh;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grid-wrapper {
    grid-column-gap: 1rem;
  }

  .grid-column.grid-column-first, .grid-column.grid-column-second, .grid-column.grid-column-third {
    grid-row-gap: 1rem;
  }

  .grid-item {
    height: 50vw;
  }

  .nav.fixed {
    padding: 1rem 1.4em;
  }

  .bottom_menu {
    padding: .75rem;
  }

  .hero_heading {
    font-size: 2.5em;
  }

  .hero_heading.case {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 3em;
  }

  .about_wrapper {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .about_text-2 {
    font-size: 2rem;
  }

  .about_section {
    padding-top: 5rem;
  }

  .container-medium {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .paragraph1 {
    width: 100%;
  }

  .aut-slider_image-outline {
    height: 240px;
  }

  .automatic-slider_wrapper {
    margin-top: 1rem;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .about_text {
    margin-bottom: 2rem;
    font-size: 2em;
  }

  .aut-slider_item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .aut-slider_image {
    width: 18rem;
  }

  .footer-grid {
    grid-row-gap: 32px;
  }

  .footer-line {
    margin-top: 2em;
    margin-bottom: 1em;
  }

  .newsletter-field {
    margin-right: 0;
    font-size: 20px;
  }

  .form {
    flex-wrap: wrap;
  }

  .submit-button {
    max-width: none;
  }

  .hero-text-container {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .tabs_menu {
    flex-direction: row;
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
    overflow: visible;
  }

  .lightbox_link {
    height: 27rem;
  }

  .tab-link-bottom {
    min-width: 100%;
    padding: .75rem;
  }

  .tab-link-bottom.w--current {
    padding: .75rem;
  }

  .author-role {
    font-size: .75rem;
  }

  .testimonial-text {
    padding-top: 2rem;
    font-size: 1.5rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .padding-global-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .background-video {
    height: 27rem;
  }

  .slider-item {
    width: 100%;
    height: auto;
  }

  .slider-item.home {
    width: 100%;
  }

  .display-large {
    font-size: 2.5em;
  }

  .display-large.text-color-black {
    font-size: 1.5rem;
  }

  .slider-navigation-wrapper {
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: 0;
  }

  .container-2 {
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .slider-wrapper {
    margin-top: 0;
  }

  .section_machines-list {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .head-left {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .slider-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    margin-top: 1rem;
  }

  .machines-tabs {
    margin-top: 0;
  }

  .tabs-menu {
    flex-flow: column;
  }

  .cases-wrapper {
    padding-top: 3rem;
  }

  .div-block-12 {
    width: 80vw;
  }

  .cs-bot {
    padding-top: 3rem;
  }

  .bottom_menu-2 {
    padding: .75rem;
  }

  .cs-top {
    padding-bottom: 3rem;
  }

  .cs-top.agendamento {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .cs-row {
    padding: 2rem 1rem 1rem;
  }

  .cs-bot-2 {
    padding-top: 3rem;
  }

  .cs-logo.w--current {
    width: 11rem;
    max-width: 11rem;
  }

  .menu-link {
    font-size: 3em;
  }

  .menu-link.footer {
    font-size: 1.2em;
  }

  .button-secondary {
    font-size: 2.5em;
  }

  .button-main {
    flex: none;
  }

  .case-hero {
    height: 40svh;
    padding: .5em .5em 0;
  }

  .case-image-hero {
    border-radius: .5em;
  }

  .case-details {
    padding-top: 4em;
  }

  .case_video {
    padding: 0 .7em .5em;
  }

  .video-bg {
    border-radius: .5em;
  }

  .case-images {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    padding-left: .7em;
    padding-right: .7em;
  }

  .collection-list-2 {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
  }

  .multi-image, .case-image {
    border-radius: .5em;
  }

  .work_list {
    flex-flow: column;
    display: flex;
  }

  .work_card.is-list {
    align-items: center;
  }

  .work_img.is-list {
    border-radius: .5rem;
    width: 7em;
  }

  .work-title {
    font-size: 1.5rem;
  }

  .field-label {
    font-size: 1.25em;
  }

  .player-container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .video_player-embed {
    height: 50vw;
  }

  .close-video {
    right: 1.5em;
  }

  .close-video.mobile {
    top: -2.25em;
  }

  .close-icon {
    width: 6vw;
  }

  .portfolio-1-2, .colum-2-2 {
    grid-column-gap: .7em;
    grid-row-gap: .7em;
  }

  .colum-image {
    border-radius: .5em;
  }

  .lottie-2 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    padding-left: 1em;
    padding-right: 1em;
  }

  ._2x2-wvideo {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
  }

  .page_title {
    font-size: 4em;
  }

  .page_title.text-color-black {
    font-size: 1.5rem;
  }

  .navbar_link.light {
    border-bottom-width: 1px;
    border-bottom-color: #151f28;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar_menu {
    padding-left: 0;
    padding-right: 0;
  }

  .button.menu {
    min-width: 100%;
    height: 4rem;
    margin-top: 1rem;
    font-size: 1.25rem;
  }

  .navbar_dropdown-link {
    background-color: #fff0;
    padding-right: .75rem;
  }

  .navbar_item-right {
    color: #fff;
  }

  .navbar_button-wrapper {
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .navbar_dropdown-toggle {
    font-size: 2rem;
  }

  .navbar_dropdown-toggle.text-align-right {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .navbar_dropdown-link-list {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .navbar_menu-dropdown {
    border-bottom: 1px solid #192531;
  }

  .navbar_dropdown-list.w--open {
    background-color: #fff0;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar_item-heading {
    color: #fff;
  }
}

#w-node-_6b91afb6-7d0c-a820-8ecb-5753a3f60ecc-eae6627f {
  justify-self: center;
}

#w-node-_7055fd90-6056-37a0-aa7e-b3d69f4177a2-2f781b13 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-b8161c14-4b44-0cf4-9217-d142da0ff27a-da0ff276 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7055fd90-6056-37a0-aa7e-b3d69f4177a2-2f781b13, #w-node-baf4bce0-f5bf-9342-30df-2ba213fefd32-2f781b13 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Alliance No';
  src: url('../fonts/Alliance-No.1-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alliance No';
  src: url('../fonts/Alliance-No.1-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alliance No';
  src: url('../fonts/Alliance-No.1-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Alliance No';
  src: url('../fonts/Alliance-No.1-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}