::selection {
  color: #FFF;
  background: var(--color-swatch--terracota);
}
::-webkit-scrollbar {
  width: 17px;
}
::-webkit-scrollbar-track {
  background: #EEE;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border: 4px solid #EEE;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

/* Define o estado inicial dos elementos da animação 
  para evitar o FOUC (Flash of Unstyled Content)
*/
.sidebar_brand,
.sidebar_nav-container,
.hero_mobile-header {
  opacity: 0;
  transform: translateY(-30px);
}
.bg-decor {
  opacity: 0;
  transform: translateX(30px);
}
.hero_item {
  opacity: 0;
  transform: translateY(-30px);
}

:root {
    --bg-color: transparent; 
    --text-color: #a5452d;
    --font-size-base: clamp(2.5rem, 13vw, 4rem);
    --line-height-base: clamp(4rem, 13vw, 5rem);
    --caret-height-base: clamp(2.5rem, 13vw, 4rem); 
    --font-size-md: 4.5rem;
    --line-height-md: 120%;
    --caret-height-md: 4.5rem;
}
.typewriter-container {
    font-family: var(--font--heading);
    font-size: var(--font-size-base);
    color: var(--text-color);
    font-weight: 300;
    line-height: var(--line-height-base);
    width: 100%;
    text-align: left;
}
.line {
    display: flex;
    align-items: left;
    justify-content: left;
    height: var(--line-height-base); 
    white-space: pre; 
    letter-spacing: -0.02em; 
}
.caret {
    display: inline-block;
    width: 0.25rem;
    height: var(--caret-height-base);
    background-color: var(--text-color);
    margin-left: 0.5rem;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* Styles for larger screens to make the text bigger */
@media (min-width: 768px) {
    .typewriter-container {
        font-size: var(--font-size-md);
        line-height: var(--line-height-md);
    }
    .line {
         height: var(--line-height-md);
    }
    .caret {
        height: var(--caret-height-md);
    }
}

/* CSS RESET -------------------------------------------------------------------------------------------------*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  interpolate-size: allow-keywords;
}
a {
  color: inherit;
  transition: all 0.2s ease;
}
body:has(a:hover) .tag-follow div{
  width: 16px;
}
h1,h2,h3,h4,h5,h6,p{
  margin: 0;
  text-wrap: pretty;
}
h1 {
  white-space: pre-line;
}
.h1-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.list-wrapper ul{
  padding: 0;
  list-style-type: none;
}
.list-wrapper li{
  background-image: url(bullet.svg);
  background-repeat: no-repeat;
  padding-top: 0.125rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
  min-height: 24px;
}
.mg-top-small{margin-top: var(--base-unit--1);}
.mg-top-medium{margin-top: var(--base-unit--3);}
.mg-top-large{margin-top: var(--base-unit--7);}
.mg-bottom-small{margin-bottom: var(--base-unit--1);}
.mg-bottom-medium{margin-bottom: var(--base-unit--3);}
.mg-bottom-large{margin-bottom: var(--base-unit--7);}
.pd-top-small{padding-top: var(--base-unit--1);}
.pd-top-medium{padding-top: var(--base-unit--3);}
.pd-top-large{padding-top: var(--base-unit--7);}
.pd-bottom-small{padding-bottom: var(--base-unit--1);}
.pd-bottom-medium{padding-bottom: var(--base-unit--3);}
.pd-bottom-large{padding-bottom: var(--base-unit--7);}
@media only screen and (max-width: 992px) {
  .mg-top-small-md{margin-top: var(--base-unit--1);}
  .mg-top-medium-md{margin-top: var(--base-unit--3);}
  .mg-top-large-md{margin-top: var(--base-unit--7);}
  .mg-bottom-small-md{margin-bottom: var(--base-unit--1);}
  .mg-bottom-medium-md{margin-bottom: var(--base-unit--3);}
  .mg-bottom-large-md{margin-bottom: var(--base-unit--7);}
  .pd-top-small-md{padding-top: var(--base-unit--1);}
  .pd-top-medium-md{padding-top: var(--base-unit--3);}
  .pd-top-large-md{padding-top: var(--base-unit--7);}
  .pd-bottom-small-md{padding-bottom: var(--base-unit--1);}
  .pd-bottom-medium-md{padding-bottom: var(--base-unit--3);}
  .pd-bottom-large-md{padding-bottom: var(--base-unit--7);}
}
@media only screen and (max-width: 480px) {
  :root{
    --text-heading--h1: var(--base-unit--3-75);
    --text-heading--h2: var(--base-unit--3);
    --text-heading--h3: var(--base-unit--2-5);
    --text-heading--h4: var(--base-unit--2);
  }
}
/* FORM --------------------------------------------------------------------------------------------------------*/
label {
  font-size: var(--text-paragraph--regular);
  font-weight: 400;
}
input, textarea, select {
  color: var(--color--neutral--gray-400);
  vertical-align: middle;
  background-color: white;
  border: 1px solid var(--color--neutral--gray-200);
  width: 100%;
  font-size: var(--text-paragraph--regular);
  display: block;
  outline: none;
}
input, select {
  padding-inline: var(--base-unit--1);
  height: 48px;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_5798_7844' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_5798_7844)'%3E%3Cpath d='M12 15L6 9.0997L7.11828 8L12 12.8006L16.8817 8L18 9.0997L12 15Z' fill='%23003052'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem top 60%;
  background-size: 24px auto;
}
textarea {
  padding: var(--base-unit--1);
  vertical-align: top;
  height: var(--base-unit--12);
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  width: var(--base-unit--1);
  height: var(--base-unit--1);
  vertical-align: middle;
  position: relative;
  bottom: 1px;
  margin: 4px 10px 0 0;
  accent-color: #289be3;
}
input:focus,
textarea:focus {
  background-color: var(--color--brand--primary-50);
  border-color: var(--color--brand--primary-100);
}
/* BUTTONS --------------------------------------------------------------------------------------------------*/
/* MENU ------------------------------------------------------------------------------------------------------*/
/* Dropdown CLICK (Adicionar JS) 
.nav-dropdown-open {
  pointer-events: none;
  opacity: 0;
  top: 1rem;
  transition: opacity 0.3s, top 0.3s;
}
.nav-dropdown.active{ 
  .nav-dropdown-open {
    pointer-events: auto;
    display: block;
    opacity: 1;
    top: 3rem;
  }
  .nav-dropdown-link .ico-24{
    transform: rotate(180deg);
  }
}
*/
/* Dropdown HOVER */
.nav-dropdown-open{
  opacity: 0;
  top: 1rem;
  transition: opacity 0.3s, top 0.3s;
}
.nav-dropdown:not(:hover) > .nav-dropdown-open{
  pointer-events: none;
  display: block;
  opacity: 0;
  top: 0;
}
.nav-dropdown:hover > .nav-dropdown-open{
  pointer-events: auto;
  display: block;
  opacity: 1;
  top: 2rem;
}
@media only screen and (max-width: 992px) {
  .nav-mobile-menu.active {
    display: flex;
    transform: translate3d(0px, 0px, 0px);
    box-shadow: 0 0 5rem 1rem #0003;
  }
}
/* FOOTER -----------------------------------------------------------------------------------------------------*/
/*SWIPER -------------------------------------------------------------------------------------------------------*/
.swiper {
  overflow: visible;
}
.swiper-pagination{
  position: relative;
}
/*MARQUEE -----------------------------------------------------------------*/
.marquee {
  --gap: 2rem;
  position: relative;
  display: inline-flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  .marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--gap);
  }
}
.marquee-animation{
  animation: marquee-scroll 10s linear infinite;
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
[data-direction="reverse"] .marquee-animation {
  animation-direction: reverse;
}
/* RESPONSIVO -------------------------------------------------------------------------------*/
@media only screen and (max-width: 1330px) {
  /* REMOVE SPAN DO NAV**/
  nav ul li a span{
    display: none;
  }
}
/* TEXT TRIM  -------------------------------------------------------------------------------*/
:is(h1, h2, h3, h4, h5, h6) {
  display: flow-root;
}
:is(h1, h2, h3, h4, h5, h6)::before {
  content: "";
  display: table;
  margin-bottom: calc(-0.5lh + 0.46em);
}
:is(h1, h2, h3, h4, h5, h6)::after {
  content: "";
  display: table;
  margin-bottom: calc(-0.5lh + 0.26em);
}
/* BG DECOR / Hide -------------------------------------------------------------------------------*/
.bg-decor {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1268px) {
  .bg-decor {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
}
/* BG DECOR / Mask -------------------------------------------------------------------------------*/
.bg-decor {
  /* Máscara com degradê vertical */
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  /* Garante que a máscara cobre tudo */
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  /* Opcional: para suavizar o efeito */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.bg-decor-responsive {
  /* Máscara com degradê vertical */
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 85%);
  /* Garante que a máscara cobre tudo */
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  /* Opcional: para suavizar o efeito */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/** CSS WEBFLOW **/
@font-face {
  font-family: Magallanes;
  src: url('../fonts/MAGALLANESEXTRALIGHT.woff2') format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Magallanes;
  src: url('../fonts/MAGALLANESMEDIUM.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Magallanes;
  src: url('../fonts/MAGALLANESLIGHT.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --_colors---color--secondary--white: var(--color-swatch--white);
  --font--paragraph: Satoshi, Arial, sans-serif;
  --_colors---color--brand--black: var(--color-swatch--black);
  --_typography---text-paragraph--regular: var(--base-unit--1-125);
  --font--heading: Magallanes, Arial, sans-serif;
  --_typography---text-heading--h1: var(--base-unit--4-5);
  --_typography---text-colors--h2: var(--_colors---color--brand--black);
  --_typography---text-heading--h2: var(--base-unit--3-25);
  --_typography---text-heading--h3: var(--base-unit--1-25);
  --_typography---text-colors--paragraph: var(--_colors---color--brand--grey-500);
  --_typography---text-colors--h1: var(--_colors---color--secondary--terracota);
  --_typography---text-colors--h3: var(--_colors---color--secondary--terracota);
  --_typography---text-paragraph--medium: var(--base-unit--1-25);
  --_colors---color--secondary--terracota: var(--color-swatch--terracota);
  --_typography---text-paragraph--small: var(--base-unit--0-75);
  --base-unit--3: 3rem;
  --base-unit--2: 2rem;
  --_colors---color--secondary--grey-300: var(--color-swatch--grey-300);
  --base-unit--0-5: .5rem;
  --_colors---color--secondary--off-white: var(--color-swatch--off-white);
  --base-unit--12: 12rem;
  --base-unit--1-5: 1.5rem;
  --base-unit--1: 1rem;
  --color-swatch--terracota: #a5452d;
  --base-unit--0-875: .875rem;
  --base-unit--1-25: 1.25rem;
  --_colors---color--brand--primary-200\<deleted\|variable-09d74019-a8b9-4b65-b9ce-ca8fc00566bd\>: #0072c3;
  --_colors---color--brand--primary-300\<deleted\|variable-17e6e283-f35b-55e3-86ea-39b44ac71df2\>: #003052;
  --_colors---color--secondary--bege: var(--color-swatch--bege);
  --_colors---color--secondary--creme: var(--color-swatch--creme);
  --base-unit--2-25: 2.25rem;
  --_colors---color--secondary--orange-peel: var(--color-swatch--orange-peel);
  --base-unit--4: 4rem;
  --_typography---text-heading--h5\<deleted\|variable-a0a9f079-d34c-b7f1-7ba1-cca071e7f321\>: var(--base-unit--1-75);
  --_typography---text-paragraph--tiny\<deleted\|variable-43d16be1-783a-5293-b3df-518296bdcba2\>: var(--base-unit--0-75);
  --section-padding--regular: var(--base-unit--8);
  --base-unit--0-25: .25rem;
  --color-swatch--creme: #f1d687;
  --section-padding--small: var(--base-unit--6);
  --color-swatch--off-white: #f1f1f1;
  --_typography---text-colors--paragraph-highlight: var(--_colors---color--brand--black);
  --base-unit--8: 8rem;
  --base-unit--2-5: 2.5rem;
  --base-unit--1-125: 1.125rem;
  --color-swatch--orange-peel: #ec6e3b;
  --color-swatch--grey-300: #b2b7b8;
  --color-swatch--black: black;
  --_colors---color--brand--grey-500: var(--color-swatch--grey-500);
  --color-swatch--grey-500: #666;
  --color-swatch--white: white;
  --section-padding--large: var(--base-unit--9-5);
  --base-unit--0: 0rem;
  --base-unit--0-125: .125rem;
  --color-swatch--bege: #e0a368;
  --base-unit--0-75: .75rem;
  --base-unit--1-75: 1.75rem;
  --base-unit--2-75: 2.75rem;
  --base-unit--3-25: 3.25rem;
  --base-unit--3-5: 3.5rem;
  --base-unit--3-75: 3.75rem;
  --base-unit--4-5: 4.5rem;
  --base-unit--5: 5rem;
  --base-unit--5-5: 5.5rem;
  --base-unit--6: 6rem;
  --base-unit--6-5: 6.5rem;
  --base-unit--7: 7rem;
  --base-unit--7-5: 7.5rem;
  --base-unit--8-5: 8.5rem;
  --base-unit--9: 9rem;
  --base-unit--9-5: 9.5rem;
  --base-unit--10: 10rem;
  --base-unit--11: 11rem;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.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(--_colors---color--secondary--white);
  font-family: var(--font--paragraph);
  color: var(--_colors---color--brand--black);
  font-size: var(--_typography---text-paragraph--regular);
  line-height: 140%;
  overflow-x: clip;
}

h1 {
  font-family: var(--font--heading);
  font-size: var(--_typography---text-heading--h1);
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 90%;
}

h2 {
  font-family: var(--font--heading);
  color: var(--_typography---text-colors--h2);
  font-size: var(--_typography---text-heading--h2);
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 100%;
}

h3 {
  font-family: var(--font--heading);
  font-size: var(--_typography---text-heading--h3);
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 100%;
}

h4 {
  font-family: var(--font--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  line-height: 120%;
}

h5 {
  font-family: var(--font--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}

h6 {
  font-family: var(--font--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: .75rem;
  line-height: 120%;
}

p {
  color: var(--_typography---text-colors--paragraph);
  font-size: var(--_typography---text-paragraph--regular);
  margin-bottom: 10px;
  line-height: 140%;
}

a {
  border-bottom: 1px solid var(--_colors---color--brand--black);
}

.hs-huge {
  font-family: var(--font--heading);
  font-size: var(--_typography---text-heading--h1);
  line-height: 90%;
}

.hs-large {
  font-family: var(--font--heading);
  color: var(--_typography---text-colors--h1);
  font-size: var(--_typography---text-heading--h1);
  font-weight: 300;
  line-height: 120%;
}

.hs-medium {
  font-family: var(--font--heading);
  color: var(--_typography---text-colors--h2);
  font-size: var(--_typography---text-heading--h2);
  font-weight: 200;
  line-height: 100%;
}

.hs-regular {
  font-family: var(--font--heading);
  color: var(--_typography---text-colors--h3);
  font-size: var(--_typography---text-heading--h3);
  font-weight: 500;
  line-height: 120%;
}

.hs-small, .hs-tiny {
  line-height: 120%;
}

.ts-large {
  font-size: 1.25rem;
}

.ts-medium {
  font-size: var(--_typography---text-paragraph--medium);
  text-wrap: balance;
  line-height: 170%;
}

.ts-medium.tw-500.is-link {
  transition: color .2s;
}

.ts-medium.tw-500.is-link:hover {
  color: var(--_colors---color--secondary--terracota);
}

.ts-regular {
  font-size: var(--_typography---text-paragraph--regular);
}

.ts-small {
  font-size: var(--_typography---text-paragraph--small);
}

.ts-small.tc-dark {
  border-bottom-style: none;
}

.ts-small.tc-dark.is_link {
  transition: color .2s;
}

.ts-small.tc-dark.is_link:hover {
  color: var(--_colors---color--secondary--terracota);
}

.ts-tiny {
  font-size: .675rem;
}

.grid-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.styleguide_empty-box {
  z-index: -1;
  background-color: #2186ec1a;
  border: 1px dashed #2186ec;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.styleguide_list {
  margin-bottom: var(--base-unit--3);
  padding: var(--base-unit--2);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--_colors---color--secondary--grey-300);
  border-radius: var(--base-unit--0-5);
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.grid-5 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  padding-bottom: 1rem;
  display: grid;
}

.styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.styleguide_subheading {
  z-index: 3;
  margin-bottom: var(--base-unit--2);
  border: 1px solid var(--_colors---color--secondary--off-white);
  color: var(--_colors---color--secondary--off-white);
  text-transform: uppercase;
  border-radius: 5px;
  align-items: center;
  padding: 1rem 1.3rem;
  font-weight: 700;
  position: static;
}

.styleguide_subheading.is-code {
  background-color: #fafafa;
  border: 1px dashed #bbb;
  font-family: Inconsolata, monospace;
}

.styleguide_label {
  color: #514014;
  cursor: context-menu;
  background-color: #f8c96466;
  border: 1px solid #c29e33;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: .5rem 1rem;
  font-size: .75rem;
  display: inline-block;
}

.grid-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.page-wrapper {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  overflow: clip;
}

.container-large {
  width: 100%;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
}

.horizontal-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.horizontal-wrapper.space-between {
  justify-content: space-between;
  align-items: center;
}

.horizontal-wrapper.align-center {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  justify-content: flex-start;
  align-items: center;
}

.horizontal-wrapper.space-between {
  z-index: 2;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.horizontal-wrapper.space-between.align-bottom {
  justify-content: space-between;
  align-items: flex-end;
}

.main-wrapper {
  height: 100%;
  margin-top: -100svh;
  margin-left: 14rem;
}

.vertical-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-wrapper.gap-8 {
  gap: 8rem;
}

.padding-global {
  padding-left: 3%;
  padding-right: 3%;
}

.text-size-small {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: .875rem;
  line-height: 1.25rem;
}

.col {
  flex: 1;
  padding-left: .5rem;
  padding-right: .5rem;
}

.col.col-lg-10 {
  flex: 83.3333%;
  max-width: 83.3333%;
}

.col.col-lg-3 {
  flex: 25%;
  max-width: 25%;
}

.col.col-lg-2 {
  flex: 16.6667%;
  max-width: 16.6667%;
}

.col.col-lg-6 {
  max-width: 50%;
}

.col.col-lg-8 {
  flex: 66.6667%;
  max-width: 66.6667%;
}

.col.col-lg-5 {
  flex: 1;
  max-width: 41.6667%;
}

.col.col-lg-1 {
  flex: 8.333%;
  max-width: 8.333%;
}

.col.col-lg-9 {
  flex: 75%;
  max-width: 75%;
}

.col.col-lg-7 {
  flex: 58.3333%;
  max-width: 58.3333%;
}

.col.col-lg-12 {
  flex: 1;
  align-self: stretch;
  max-width: 100%;
}

.col.col-lg-11 {
  flex: 91.6667%;
  max-width: 91.6667%;
}

.col.col-lg-4 {
  flex: 33.3333%;
  max-width: 33.3333%;
  position: relative;
}

.col.col-lg-4.is-sticky {
  top: var(--base-unit--3);
  position: sticky;
}

.styleguide_empty-box-grid {
  color: #83b8ec;
  background-color: #2186ec1a;
  border: 1px dashed #2186ec;
  justify-content: center;
  align-items: center;
  margin-bottom: .625rem;
  padding: 1rem;
  font-size: .8rem;
  display: flex;
}

.row {
  aspect-ratio: auto;
  flex-wrap: wrap;
  place-content: stretch flex-start;
  align-self: stretch;
  margin-left: -.5rem;
  margin-right: -.5rem;
  display: flex;
}

.row.is--style-guide-row {
  align-self: stretch;
}

.row.justify-center {
  justify-content: center;
}

.row.justify-start {
  justify-content: flex-start;
}

.row.justify-between {
  justify-content: space-between;
}

.row.align-center {
  align-items: center;
}

.row.align-end {
  align-items: flex-end;
}

.row.justify-end {
  justify-content: flex-end;
}

.row.align-start {
  align-items: flex-start;
}

.row.justify-around {
  justify-content: space-around;
}

.row.align-stretch {
  align-items: stretch;
}

.section {
  padding-bottom: var(--base-unit--12);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
}

.styleguide_title {
  margin-top: var(--base-unit--3);
  margin-bottom: var(--base-unit--3);
  padding: var(--base-unit--1-5) var(--base-unit--2) var(--base-unit--1-5) var(--base-unit--3);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: var(--base-unit--1);
  background-color: var(--_colors---color--secondary--off-white);
  color: var(--_colors---color--secondary--grey-300);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.gap-1 {
  gap: 1rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-2 {
  gap: 2rem;
}

.button {
  padding: var(--base-unit--1) var(--base-unit--2);
  background-color: var(--_colors---color--brand--black);
  font-family: var(--font--heading);
  color: var(--_colors---color--secondary--off-white);
  font-size: var(--_typography---text-paragraph--regular);
  cursor: pointer;
  border-radius: 10rem;
  justify-content: space-between;
  align-items: center;
  height: 3.19rem;
  font-weight: 300;
  line-height: 120%;
  transition: background-color .2s;
  display: flex;
}

.button:hover {
  background-color: var(--color-swatch--terracota);
}

.button.is-medium {
  padding: var(--base-unit--0-875);
  font-size: var(--_typography---text-paragraph--regular);
}

.button.is-small {
  padding: var(--base-unit--0-5) var(--base-unit--1-25);
  font-size: var(--_typography---text-paragraph--small);
  height: 2.75rem;
  line-height: 100%;
}

.button.is-stroke {
  outline-color: var(--_colors---color--brand--primary-200\<deleted\|variable-09d74019-a8b9-4b65-b9ce-ca8fc00566bd\>);
  outline-offset: -1px;
  color: var(--_colors---color--brand--primary-200\<deleted\|variable-09d74019-a8b9-4b65-b9ce-ca8fc00566bd\>);
  background-color: #0000;
  outline-width: 1px;
  outline-style: solid;
}

.button.is-dark {
  background-color: var(--_colors---color--brand--primary-300\<deleted\|variable-17e6e283-f35b-55e3-86ea-39b44ac71df2\>);
}

.button.is-disabled {
  background-color: var(--_colors---color--secondary--terracota);
  outline-color: var(--_colors---color--secondary--bege);
  outline-offset: -1px;
  pointer-events: none;
  color: var(--_colors---color--secondary--creme);
  cursor: not-allowed;
  outline-width: 1px;
  outline-style: solid;
}

.button.is-large {
  padding-right: var(--base-unit--1);
  padding-left: var(--base-unit--1);
}

.ico-24 {
  width: 24px;
  height: 24px;
  transition: transform .2s;
}

.tc-dark {
  color: var(--_typography---text-colors--paragraph);
}

.tc-light {
  color: var(--_colors---color--secondary--off-white);
}

.tw-900 {
  font-weight: 900;
}

.tw-800 {
  font-weight: 800;
}

.tw-700 {
  font-weight: 700;
}

.tw-600 {
  font-weight: 600;
}

.tw-500 {
  font-weight: 500;
}

.tw-400 {
  font-weight: 400;
}

.nav-mobile-list {
  grid-column-gap: var(--base-unit--1);
  grid-row-gap: var(--base-unit--1);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  list-style-type: none;
  display: flex;
}

.nav-item {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.nav-dropdown-item {
  padding-top: var(--base-unit--0-5);
  padding-bottom: var(--base-unit--0-5);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--_colors---color--secondary--off-white);
  font-size: var(--_typography---text-paragraph--regular);
  cursor: pointer;
  border-radius: 1rem;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.nav-dropdown-mobile {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  font-size: .9375rem;
  display: flex;
}

.nav-mobile-menu {
  z-index: 100;
  padding: var(--base-unit--2);
  grid-column-gap: var(--base-unit--1-5);
  grid-row-gap: var(--base-unit--1-5);
  background-color: var(--_colors---color--secondary--grey-300);
  flex-flow: column;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
  transform: translate(100%);
}

.nav-link {
  color: var(--_colors---color--brand--primary-300\<deleted\|variable-17e6e283-f35b-55e3-86ea-39b44ac71df2\>);
  font-size: var(--_typography---text-paragraph--regular);
  padding-top: .625rem;
  padding-bottom: .625rem;
  text-decoration: none;
  transition: color .2s;
}

.nav-desktop-menu {
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  overflow: clip;
}

.nav-dropdown-wrapper {
  padding: var(--base-unit--1) var(--base-unit--1-5);
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  box-shadow: 0 10px 30px #0000001a;
}

.nav-dropdown-wrapper.is-full-page {
  padding-left: 5%;
  padding-right: 5%;
}

.nav-mobile-ctas {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-desktop-ctas {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-desktop-list {
  grid-column-gap: var(--base-unit--2-25);
  grid-row-gap: var(--base-unit--2-25);
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  list-style-type: none;
  display: flex;
}

.nav-dropdown-open {
  padding-top: 1rem;
  display: block;
  position: absolute;
}

.nav-dropdown-open.is-full-width {
  width: 100%;
  max-width: 85vw;
}

.nav-dropdown-open.is-full-page {
  width: 100vw;
  left: 50%;
  overflow: clip;
  transform: translate(-50%);
}

.nav-dropdown-open.is-edit {
  opacity: 1;
  position: static;
}

.nav-dropdown {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-dropdown-mobile-open {
  padding-top: 1rem;
  display: block;
}

.navigation {
  z-index: 5;
  background-color: #fff;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.section_hero {
  min-height: 100dvh;
  position: relative;
}

.ico-40 {
  width: 40px;
  height: 40px;
  transition: all .2s;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

.nav-dropdown-link {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.stack-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hide, .mobile-button-open {
  display: none;
}

.utility-page-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.form-field-wrapper {
  flex: 1;
  align-self: stretch;
  position: relative;
}

.field-label {
  color: #151a21;
  margin-bottom: .5rem;
  font-weight: 400;
}

.form-input {
  background-color: #fff;
  border: 1px solid #000;
  height: 50px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1rem;
  transition: border-color .2s;
}

.form-input:hover {
  border-color: #9fa6ac;
}

.form-input:focus {
  background-color: #fcfaf5;
  border-width: 1px;
  border-color: #01f1a5;
}

.form-input::placeholder {
  color: #0009;
}

.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input.is-select-input {
  color: #080c0f;
  background-image: url('../images/18-Dropdown.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: auto;
}

.form-checkbox {
  color: #080c0f;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 1.25rem;
  font-size: 1rem;
  display: flex;
}

.form-checkbox-icon {
  cursor: pointer;
  border: 1px solid #a2a6b8;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 4px;
  margin-left: -1.25rem;
  margin-right: 1rem;
  transition: all .2s;
}

.form-checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form-checkbox-label {
  margin-bottom: 0;
}

.form-radio {
  color: #080c0f;
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.form-radio-icon {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #a2a6b8;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.form-radio-label {
  margin-bottom: 0;
}

.form {
  grid-column-gap: var(--base-unit--1);
  grid-row-gap: var(--base-unit--1);
  flex-flow: column;
  display: flex;
}

.cover-background {
  background-color: #1d1e20;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.cover_content-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.cover_heading {
  color: #e2e2e2;
  text-align: center;
  letter-spacing: -3px;
  font-family: Open Sans, sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.heading-style-h3 {
  font-size: 3rem;
  line-height: 3rem;
}

.div-swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.restyle-div {
  padding: var(--base-unit--4);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--_colors---color--secondary--terracota);
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.swiper-pagination {
  grid-column-gap: var(--base-unit--0-5);
  grid-row-gap: var(--base-unit--0-5);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.swiper-bullet {
  background-color: var(--_colors---color--secondary--bege);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.swiper-bullet.is-active {
  background-color: var(--_colors---color--brand--primary-200\<deleted\|variable-09d74019-a8b9-4b65-b9ce-ca8fc00566bd\>);
}

.swiper-navigation {
  justify-content: center;
  align-items: center;
  display: flex;
}

.swiper-arrow {
  cursor: pointer;
}

.swiper-arrow.is-disabled {
  opacity: .4;
}

.swiper-controls {
  padding-top: var(--base-unit--2);
  padding-bottom: var(--base-unit--2);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-item {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: background-color .2s;
  display: flex;
  position: relative;
  overflow: clip;
}

.accordion-item:hover {
  background-color: var(--_colors---color--secondary--terracota);
  border-color: #0072c3;
}

.accordion-link {
  padding: var(--base-unit--1);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-link-text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.accordion-link-icon {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transition: transform .2s;
}

.accordion-content-text {
  padding: var(--base-unit--1);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tabs-items {
  justify-content: flex-start;
  align-items: center;
}

.tabs-items.is-vertical {
  padding-right: var(--base-unit--2);
  border-right: 1px solid var(--_colors---color--secondary--bege);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 30%;
  display: flex;
}

.tabs-items.is-horizontal {
  margin-bottom: var(--base-unit--1);
  border-bottom: 1px solid var(--_colors---color--secondary--bege);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tab-item {
  padding: var(--base-unit--1);
  white-space: nowrap;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.tab-item:hover {
  background-color: var(--_colors---color--secondary--terracota);
}

.tab-item.active {
  background-color: var(--_colors---color--secondary--orange-peel);
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.tabs-panels {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.tab-panel {
  padding: var(--base-unit--1);
  overflow: clip;
}

.section-marquee {
  z-index: 1;
  font-size: var(--_typography---text-heading--h5\<deleted\|variable-a0a9f079-d34c-b7f1-7ba1-cca071e7f321\>);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.tabs-container.is-horizontal {
  grid-column-gap: var(--base-unit--2);
  grid-row-gap: var(--base-unit--2);
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.nav-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.bignumber-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.bento-grid-item {
  padding: var(--base-unit--3);
  border-radius: var(--base-unit--1);
  background-color: var(--_colors---color--secondary--orange-peel);
}

.bento-grid-item.main {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.bento-grid-item._03 {
  grid-area: 2 / 4 / 2 / 4;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.bento-grid-item._01 {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: clip;
}

.bento-grid-item._02 {
  grid-area: 2 / 3 / 2 / 3;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.bento_grid-item_content-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.ts-bignumber {
  font-size: clamp(4rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: .8;
}

.ts-bignumber.measure {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
}

.bento-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tab-item-progress {
  background-color: var(--_colors---color--secondary--creme);
  height: 2px;
  position: absolute;
  inset: auto 0% 0%;
}

.mobile-tab {
  padding: var(--base-unit--1);
  background-color: var(--_colors---color--secondary--orange-peel);
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.mobile-tab-subtext {
  display: none;
}

.tooltip {
  background-color: var(--_colors---color--secondary--off-white);
  cursor: help;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  display: flex;
  position: relative;
}

.ico-18 {
  width: 18px;
  height: 18px;
}

.tooltip-wrapper {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  color: var(--_colors---color--secondary--creme);
  transition: bottom .3s, top .3s, opacity .3s;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10px);
}

.tooltip-content {
  padding: var(--base-unit--0-875);
  background-color: var(--_colors---color--secondary--creme);
  color: var(--_colors---color--secondary--grey-300);
  font-size: var(--_typography---text-paragraph--tiny\<deleted\|variable-43d16be1-783a-5293-b3df-518296bdcba2\>);
  text-align: center;
  border-radius: 8px;
  width: 10rem;
  line-height: 130%;
}

.blog-card {
  background-color: var(--_colors---color--secondary--terracota);
  flex-flow: column;
  display: flex;
  overflow: clip;
}

.blog-card-image {
  flex-flow: column;
  display: flex;
}

.blog-card-content {
  padding: var(--base-unit--1-5);
  grid-column-gap: var(--base-unit--0-5);
  grid-row-gap: var(--base-unit--0-5);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blog-card-text {
  grid-column-gap: var(--base-unit--0-5);
  grid-row-gap: var(--base-unit--0-5);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blog-card-date {
  color: var(--_colors---color--secondary--creme);
  font-size: var(--_typography---text-paragraph--small);
  font-weight: 700;
}

.mukutu-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: .875rem;
  display: flex;
}

.mukutu-assinatura {
  font-size: 1rem;
  font-weight: 700;
}

.heading {
  color: var(--_colors---color--brand--black);
}

.sidebar {
  padding: var(--section-padding--regular) var(--base-unit--0-25) var(--section-padding--regular) 2%;
  flex-flow: column;
  justify-content: space-between;
  max-width: 14rem;
  height: 100svh;
  display: flex;
  position: sticky;
  inset: 0% auto 0% 0%;
}

.sidebar_brand {
  border-bottom-style: none;
}

.sidebar_nav-container {
  grid-column-gap: var(--base-unit--3);
  grid-row-gap: var(--base-unit--3);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.sidebar_brand-svg {
  max-width: 9.19rem;
}

.sidebar_nav {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--_typography---text-colors--paragraph);
  font-size: var(--_typography---text-paragraph--regular);
  flex-flow: column;
  list-style-type: none;
  display: flex;
}

.sidebar_locales {
  grid-column-gap: var(--base-unit--0-5);
  grid-row-gap: var(--base-unit--0-5);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.sidebar_locales-item {
  aspect-ratio: 1;
  font-size: var(--_typography---text-paragraph--small);
  text-transform: uppercase;
  background-color: #fff;
  border-bottom-style: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  font-weight: 500;
  display: flex;
}

.sidebar_locales-item.is-terracota {
  background-color: var(--_colors---color--secondary--terracota);
  color: var(--_colors---color--secondary--white);
}

.sidebar_locales-item.is-orange-peel {
  background-color: var(--_colors---color--secondary--orange-peel);
  color: var(--_colors---color--secondary--white);
}

.sidebar_locales-item.is-creme {
  background-color: var(--color-swatch--creme);
  color: var(--_colors---color--secondary--terracota);
}

.section_what-we-do {
  padding-top: var(--section-padding--regular);
  padding-bottom: var(--section-padding--regular);
  position: relative;
}

.section_behind-matrika, .section_affiliations {
  padding-top: var(--section-padding--regular);
  padding-bottom: var(--section-padding--regular);
  border-bottom: 1px solid var(--color-swatch--off-white);
}

.section_contact {
  padding-top: var(--section-padding--regular);
  padding-bottom: var(--section-padding--regular);
}

.div-block {
  background-color: #00fff717;
}

.hero_content-wrapper {
  padding-top: var(--section-padding--regular);
  padding-bottom: var(--section-padding--regular);
  height: 100vh;
}

@media only screen and (max-height: 768px) {
  .hero_content-wrapper {
    min-height: 100vh;
    height: auto;
  }
}

.hero_container {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.hero_container_heading {
  grid-column-gap: var(--base-unit--1-25);
  grid-row-gap: var(--base-unit--1-25);
  flex-flow: column;
  display: flex;
}

@media only screen and (min-width: 992px) {
  .hero_container_heading .typewriter-container {
    min-height: 260px;
  }
}

.hero_container_text {
  grid-column-gap: var(--base-unit--4);
  grid-row-gap: var(--base-unit--4);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 70%;
  display: flex;
  margin-top: 20px;
}

.hero_container_text_wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.paragraph_highlight {
  color: var(--_typography---text-colors--paragraph-highlight);
  font-weight: 500;
}

.icon-component {
  aspect-ratio: 1;
  background-color: var(--color-swatch--off-white);
  min-width: 12rem;
  max-width: 15.88rem;
  min-height: 12rem;
  max-height: 15.88rem;
  position: sticky;
  top: 3rem;
  overflow: clip;
}

.icon-component.is-mobile {
  display: none;
}

.what-we-do_solutions {
  grid-column-gap: var(--base-unit--8);
  grid-row-gap: var(--base-unit--8);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.content-block_item {
  grid-column-gap: var(--base-unit--2-5);
  grid-row-gap: var(--base-unit--2-5);
  flex-flow: column;
  display: flex;
}

.gap-8 {
  gap: 6rem;
}

.content-block_heading {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-self: baseline;
  align-items: center;
  display: inline-flex;
}

.content-block_heading-icon {
  aspect-ratio: 1;
  border: 1px solid var(--color-swatch--off-white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.25rem;
  display: flex;
}

.content-block_text-wrapper {
  flex-flow: column;
  display: flex;
}

.content-block_text-wrapper.gap-2.margin-right {
  padding-right: 5%;
}

.affiliations_grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.affiliations_grid-item {
  background-color: var(--_colors---color--secondary--white);
  justify-content: center;
  align-items: center;
  height: 11.13rem;
  display: flex;
}

.affiliations_grid-item.is-default {
  background-color: var(--_colors---color--secondary--white);
  background-image: url('../images/affiliations-bg.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.contact_content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.contact_content-item {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact_content-item-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.section_footer {
  padding-top: var(--base-unit--1-5);
  padding-bottom: var(--base-unit--1-5);
}

.footer-copyright {
  color: #9fa1a4;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  display: flex;
}

.ts-regular-2 {
  font-size: 1rem;
}

.link {
  font-family: var(--font--heading);
  border-bottom-style: none;
  font-size: .9rem;
}

.image {
  aspect-ratio: 1;
  width: 1.5rem;
}

.sidebar_nav-link {
  border-bottom-style: none;
  transition: all .2s;
}

.sidebar_nav-link:hover {
  color: var(--_typography---text-colors--paragraph-highlight);
}

.sidebar_nav-link.w--current {
  border-left: 2px solid var(--color-swatch--orange-peel);
  color: var(--_typography---text-colors--paragraph-highlight);
  padding-left: 9px;
  font-weight: 500;
}

.icon-wrapper {
  aspect-ratio: 1;
  background-color: var(--_colors---color--secondary--white);
  border-radius: 50%;
  width: 100%;
  overflow: clip;
}

.icon-wrapper-img {
  object-fit: cover;
  width: 100%;
}

.image-2 {
  aspect-ratio: 1;
  width: 100%;
}

.bg-decor {
  background-image: url('../images/page-decoration.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 170px;
  height: 100svh;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.hero_mobile-header {
  justify-content: space-between;
  align-items: center;
  display: none;
}

.bg-decor-responsive {
  background-image: url('../images/page-decoration.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 170px;
  height: 100svh;
  display: none;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.footer-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-wrapper.space-between {
  justify-content: space-between;
  align-items: center;
}

.footer-wrapper.align-center {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  justify-content: flex-start;
  align-items: center;
}

.footer-wrapper.space-between {
  z-index: 2;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.footer-wrapper.space-between.align-bottom {
  justify-content: space-between;
  align-items: flex-end;
}

.icon-component-lottie {
  width: 100%;
  height: 100%;
}

.sidebar_brand_mobo {
  border-bottom-style: none;
}

.tag-follow {
  z-index: 100;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.tag-dot {
  aspect-ratio: 1;
  border: 1px solid var(--color-swatch--grey-300);
  border-radius: 50%;
  width: 32px;
  transition: width .2s cubic-bezier(.645, .045, .355, 1);
}

@media screen and (max-width: 991px) {
  body {
    --_typography---text-paragraph--regular: var(--base-unit--1);
    --_typography---text-heading--h1: var(--base-unit--4);
    --_typography---text-colors--h2: var(--_colors---color--brand--black);
    --_typography---text-heading--h2: var(--base-unit--2-75);
    --_typography---text-heading--h3: var(--base-unit--1-25);
    --_typography---text-colors--paragraph: var(--_colors---color--brand--grey-500);
    --_typography---text-colors--h1: var(--_colors---color--secondary--terracota);
    --_typography---text-colors--h3: var(--_colors---color--secondary--terracota);
    --_typography---text-paragraph--medium: var(--base-unit--1-125);
    --_typography---text-paragraph--small: var(--base-unit--0-75);
    --_typography---text-heading--h5\<deleted\|variable-a0a9f079-d34c-b7f1-7ba1-cca071e7f321\>: var(--base-unit--1-75);
    --_typography---text-paragraph--tiny\<deleted\|variable-43d16be1-783a-5293-b3df-518296bdcba2\>: var(--base-unit--0-75);
    --_typography---text-colors--paragraph-highlight: var(--_colors---color--brand--black);
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .main-wrapper {
    margin-top: 0;
    margin-left: 0;
  }

  .col.col-md-10 {
    flex: 83.3333%;
    max-width: 83.3333%;
  }

  .col.col-md-11 {
    flex: 91.6667%;
    max-width: 91.6667%;
  }

  .col.md--no-margin {
    margin-left: 0;
    margin-right: 0;
  }

  .col.col-md-12 {
    flex: 100%;
    max-width: 100%;
  }

  .col.col-md-9 {
    flex: 75%;
    max-width: 75%;
  }

  .col.col-md-1 {
    flex: 8.33333%;
    max-width: 8.33333%;
  }

  .col.col-lg-8 {
    max-width: 100%;
  }

  .col.col-lg-5 {
    align-self: stretch;
  }

  .col.col-md-6 {
    flex: 50%;
    max-width: 50%;
  }

  .col.col-md-2 {
    flex: 16.6667%;
    max-width: 16.6667%;
  }

  .col.col-md-3 {
    flex: 25%;
    max-width: 25%;
  }

  .col.col-md-8 {
    flex: 66.6667%;
    max-width: 66.6667%;
  }

  .col.col-md-5 {
    flex: 41.6667%;
    max-width: 41.6667%;
  }

  .col.col-md-4 {
    flex: 33.3333%;
    max-width: 33.3333%;
  }

  .col.col-md-7 {
    flex: 58.3333%;
    max-width: 58.3333%;
  }

  .row.space-between {
    justify-content: space-between;
  }

  .nav-mobile-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .nav-item {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.25rem;
    display: flex;
  }

  .nav-dropdown-mobile {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 1.25rem;
  }

  .nav-mobile-menu {
    z-index: 100;
    grid-column-gap: var(--base-unit--1-5);
    grid-row-gap: var(--base-unit--1-5);
    background-color: #fff;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 50vw;
    height: 100vh;
    padding: 2rem;
    transition: box-shadow .5s, transform .5s;
    display: flex;
    position: fixed;
    inset: 0% 0% 0% auto;
    overflow: auto;
    transform: translate(100%);
  }

  .nav-mobile-ctas {
    flex-flow: column;
    align-items: stretch;
    display: flex;
  }

  .nav-desktop-list {
    display: none;
  }

  .nav-item-dropdown {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .nav-dropdown {
    font-size: 1.25rem;
  }

  .nav-dropdown-mobile-open {
    padding-left: var(--base-unit--1);
    display: none;
  }

  .navigation {
    z-index: 999;
  }

  .section_hero {
    height: 100%;
  }

  .nav-dropdown-link {
    font-size: 1.25rem;
  }

  .hide-md {
    display: none;
  }

  .nav-mobile-header {
    padding-bottom: var(--base-unit--1-5);
    border-bottom: 1px solid var(--_colors---color--secondary--orange-peel);
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .mobile-button-open {
    color: var(--_colors---color--secondary--off-white);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex;
  }

  .mobile-button-close {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex;
  }

  .form-field-wrapper {
    width: 100%;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .sidebar {
    display: none;
    position: relative;
  }

  .section_behind-matrika {
    height: 100%;
  }

  .hero_content-wrapper {
    padding-top: 4rem;
    padding-bottom: var(--section-padding--small);
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }

  .hero_container {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }

  .affiliations_grid {
    margin-top: 4rem;
  }

  .contact_content-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-copyright {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .hero_mobile-header {
    display: flex;
  }

  .bg-decor-responsive {
    display: flex;
    transform: translate(79px);
  }

  .footer-wrapper.space-between {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  body {
    --_typography---text-paragraph--regular: var(--base-unit--1-125);
    --_typography---text-heading--h1: clamp(2.5rem, 13vw, 4rem);
    --_typography---text-colors--h2: var(--_colors---color--brand--black);
    --_typography---text-heading--h2: var(--base-unit--2-25);
    --_typography---text-heading--h3: var(--base-unit--1-25);
    --_typography---text-colors--paragraph: var(--_colors---color--brand--grey-500);
    --_typography---text-colors--h1: var(--_colors---color--secondary--terracota);
    --_typography---text-colors--h3: var(--_colors---color--secondary--terracota);
    --_typography---text-paragraph--medium: var(--base-unit--1-25);
    --_typography---text-paragraph--small: var(--base-unit--0-75);
    --_typography---text-heading--h5\<deleted\|variable-a0a9f079-d34c-b7f1-7ba1-cca071e7f321\>: var(--base-unit--1-5);
    --_typography---text-paragraph--tiny\<deleted\|variable-43d16be1-783a-5293-b3df-518296bdcba2\>: var(--base-unit--0-75);
    --_typography---text-colors--paragraph-highlight: var(--_colors---color--brand--black);
  }

  .hs-medium {
    font-weight: 300;
    line-height: 120%;
  }

  .ts-small {
    line-height: 1.3;
  }

  .styleguide_item {
    position: relative;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .col.col-lg-3 {
    align-self: stretch;
    max-width: 100%;
  }

  .col.col-sm-3 {
    flex: 0 25%;
    max-width: 25%;
  }

  .col.col-lg-6 {
    align-self: stretch;
  }

  .col.col-sm-4 {
    flex: 0 33.3333%;
    max-width: 33.3333%;
  }

  .col.col-sm-6 {
    flex: 0 50%;
    max-width: 50%;
  }

  .col.col-sm-12 {
    flex: 0 100%;
    max-width: 100%;
  }

  .col.col-sm-5 {
    flex: 0 41.6667%;
    max-width: 41.6667%;
  }

  .col.col-sm-7 {
    flex: 0 58.3333%;
    max-width: 58.3333%;
  }

  .col.col-sm-2 {
    flex: 0 16.6667%;
    max-width: 16.6667%;
  }

  .col.col-sm-9 {
    flex: 0 75%;
    max-width: 75%;
  }

  .col.col-sm-11 {
    flex: 0 91.6667%;
    max-width: 91.6667%;
  }

  .col.col-sm-8 {
    flex: 0 66.6667%;
    max-width: 66.6667%;
  }

  .col.col-sm-10 {
    flex: 0 83.3333%;
    max-width: 83.3333%;
  }

  .col.col-sm-1 {
    flex: 0 8.33333%;
    max-width: 8.33333%;
  }

  .col.sm--no-margin {
    margin-left: 0;
    margin-right: 0;
  }

  .row.space-between.gap-2-5 {
    gap: 2.5rem;
  }

  .nav-mobile-menu {
    width: 80vw;
  }

  .hide-sm {
    display: none;
  }

  .form-field-wrapper {
    width: 100%;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .tabs-items.is-horizontal {
    overflow: auto;
  }

  .bento-grid-item.main {
    grid-area: 1 / 1 / 2 / span 4;
  }

  .bento-grid-item._03 {
    grid-area: 4 / 1 / auto / span 4;
  }

  .bento-grid-item._01 {
    grid-area: 2 / 1 / auto / span 4;
  }

  .bento-grid-item._02 {
    grid-area: 3 / 1 / auto / span 4;
  }

  .sidebar_locales-item.is-creme {
    background-color: var(--color-swatch--creme);
  }

  .section_what-we-do {
    padding-top: var(--section-padding--small);
  }

  .section_behind-matrika, .section_affiliations, .section_contact {
    padding-top: var(--section-padding--small);
    padding-bottom: var(--section-padding--small);
  }

  .hero_container_text {
    max-width: 100%;
  }

  .icon-component {
    max-width: 12rem;
  }

  .icon-component.is-mobile {
    max-width: 12rem;
    display: flex;
    position: relative;
    top: 0;
  }

  .affiliations_grid-item {
    padding-right: var(--base-unit--1-125);
    padding-left: var(--base-unit--1-125);
  }

  .contact_content-wrapper {
    grid-template-columns: 1fr;
  }

  .bg-decor, .bg-decor-responsive {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hs-large {
    --_typography---text-paragraph--regular: var(--base-unit--1-125);
    --_typography---text-heading--h1: clamp(2.5rem, 13vw, 4rem);
    --_typography---text-colors--h2: var(--_colors---color--brand--black);
    --_typography---text-heading--h2: var(--base-unit--2-25);
    --_typography---text-heading--h3: var(--base-unit--1-25);
    --_typography---text-colors--paragraph: var(--_colors---color--brand--grey-500);
    --_typography---text-colors--h1: var(--_colors---color--secondary--terracota);
    --_typography---text-colors--h3: var(--_colors---color--secondary--terracota);
    --_typography---text-paragraph--medium: var(--base-unit--1-25);
    --_typography---text-paragraph--small: var(--base-unit--0-75);
    --_typography---text-heading--h5\<deleted\|variable-a0a9f079-d34c-b7f1-7ba1-cca071e7f321\>: var(--base-unit--1-5);
    --_typography---text-paragraph--tiny\<deleted\|variable-43d16be1-783a-5293-b3df-518296bdcba2\>: var(--base-unit--0-75);
    --_typography---text-colors--paragraph-highlight: var(--_colors---color--brand--black);
  }

  .hs-medium {
    line-height: 130%;
  }

  .ts-medium.is-smaller {
    font-size: 1.125rem;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .page-wrapper {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global {
    padding-left: 6%;
    padding-right: 6%;
  }

  .col.col-lg-10 {
    max-width: 100%;
  }

  .col.col-xs-1 {
    flex: 8.33333%;
    max-width: 8.33333%;
  }

  .col.col-xs-3 {
    flex: 25%;
    max-width: 25%;
  }

  .col.col-xs-8 {
    flex: 66.6667%;
    max-width: 66.6667%;
  }

  .col.col-xs-4 {
    flex: 33.3333%;
    max-width: 33.3333%;
  }

  .col.col-xs-10 {
    flex: 83.3333%;
    max-width: 83.3333%;
  }

  .col.col-xs-6 {
    flex: 50%;
    max-width: 50%;
  }

  .col.col-xs-2 {
    flex: 16.6667%;
    max-width: 16.6667%;
  }

  .col.col-xs-5 {
    flex: 41.6667%;
    max-width: 41.6667%;
  }

  .col.col-lg-5 {
    align-self: auto;
    max-width: 100%;
  }

  .col.col-xs-11 {
    flex: 91.6667%;
    max-width: 91.6667%;
  }

  .col.col-xs-9 {
    flex: 75%;
    max-width: 75%;
  }

  .col.col-lg-7 {
    max-width: 100%;
  }

  .col.col-xs-7 {
    flex: 58.3333%;
    max-width: 58.3333%;
  }

  .col.col-xs-12 {
    flex: 100%;
    max-width: 100%;
  }

  .col.xs--no-margin {
    margin-left: 0;
    margin-right: 0;
  }

  .button {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .nav-item {
    font-size: 1.25rem;
  }

  .nav-dropdown-item {
    font-size: .9375rem;
  }

  .nav-dropdown-mobile {
    font-size: 1.25rem;
  }

  .nav-mobile-menu {
    width: 100vw;
  }

  .logo {
    min-width: auto;
    max-width: 100px;
  }

  .nav-desktop-ctas {
    grid-column-gap: var(--base-unit--1);
    grid-row-gap: var(--base-unit--1);
  }

  .nav-dropdown, .nav-dropdown-link {
    font-size: 1.25rem;
  }

  .hide-xs {
    display: none;
  }

  .sidebar_brand-svg {
    max-width: 7rem;
  }

  .sidebar_locales-item {
    font-size: .6rem;
  }

  .hero_content-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    width: 100%;
    height: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero_container {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    width: 100%;
  }

  .content-block_heading {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .affiliations_grid {
    grid-template-columns: 1fr;
  }
}

#w-node-_202a2328-fde4-dcd8-99ed-77a7f9591ed6-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c180de-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c180e4-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c180eb-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c180f3-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c180fb-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18105-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18106-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18108-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1810a-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1810b-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1810d-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1810f-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18110-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18112-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18114-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18115-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18117-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18119-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1811a-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1811c-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c1811f-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18120-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18122-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18125-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18126-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1812c-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1812d-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1812f-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c1813c-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c1813d-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c1813e-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18144-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18153-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18184-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c181b9-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c181ee-6d8ecef8 {
  justify-self: start;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18223-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18224-6d8ecef8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b91aabe4-a208-26bc-b796-d8ae12c18225-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c1822b-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18231-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18237-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c1823d-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18243-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18249-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c1824f-6d8ecef8, #w-node-b91aabe4-a208-26bc-b796-d8ae12c18258-6d8ecef8 {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_66deb541-9a29-71ce-5266-a2847753283d-6d8ecef7 {
    order: 9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_66deb541-9a29-71ce-5266-a2847753283d-6d8ecef7 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Magallanes';
  src: url('../fonts/MAGALLANESEXTRALIGHT.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Magallanes';
  src: url('../fonts/MAGALLANESMEDIUM.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Magallanes';
  src: url('../fonts/MAGALLANESLIGHT.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}