@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.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-LightItalic.woff2') format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.woff2') format("woff2"), url('../fonts/Satoshi-VariableItalic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  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;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.woff2') format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.woff2') format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color--backgroung: #efefef;
  --font--satoshi: Satoshi, sans-serif;
  --color--font: #151515;
  --text-size--regular: 1rem;
  --heading--h1: 5rem;
  --heading--h2: 3.5rem;
  --heading--h3: 1.9rem;
  --heading--h4: 1.375rem;
  --heading--h5: 1.25rem;
  --heading--h6: 1.125rem;
  --text-size--medium: 1.125rem;
  --color--primary: #c2d33c;
  --text-size--display: 13.125rem;
  --text-size--small: .875rem;
  --color--card: white;
  --text-size--large: 1.5rem;
  --text-size--huge: 3.5rem;
  --color--button: #151515;
  --font--satoshi-variable: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --border--radius: .2rem;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--color--backgroung);
  font-family: var(--font--satoshi);
  color: var(--color--font);
  font-size: var(--text-size--regular);
  cursor: default;
  line-height: 1.5;
  text-decoration: none;
}

h1 {
  font-size: var(--heading--h1);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1;
}

h2 {
  font-size: var(--heading--h2);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  font-size: var(--heading--h3);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

h4 {
  font-size: var(--heading--h4);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

h5 {
  font-size: var(--heading--h5);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

h6 {
  font-size: var(--heading--h6);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

p {
  font-size: var(--text-size--regular);
  margin-bottom: 0;
}

a {
  color: var(--color--font);
  font-size: var(--text-size--regular);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  font-size: var(--text-size--regular);
  font-weight: 400;
}

img {
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
}

blockquote {
  font-size: var(--text-size--medium);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 0;
  padding: 10px 20px;
  line-height: 1.1;
}

.container {
  width: 100%;
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.container.container-small {
  max-width: 80rem;
}

.container.container-large {
  width: 90vw;
  max-width: none;
}

.heading-1 {
  font-size: var(--heading--h2);
  color: #00a659;
  font-weight: 400;
  line-height: 1;
}

.heading-1.bold {
  font-weight: 700;
}

.heading-1.bold.breve {
  font-size: var(--heading--h4);
}

.heading-1.negro {
  color: #000;
}

.rich-text p {
  font-size: var(--text-size--regular);
  margin-bottom: 0;
}

.rich-text h1, .rich-text h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text li {
  font-size: var(--text-size--regular);
}

.rich-text h3 {
  font-size: var(--heading--h3);
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text h4, .rich-text h5 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text blockquote {
  margin-bottom: 1rem;
}

.rich-text h6 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text.rich-text-size {
  text-align: center;
  max-width: 60ch;
}

.text-weight-medium {
  font-weight: 700;
  line-height: 1.2;
}

.text-weight-medium.caps {
  color: #fff;
  font-weight: 400;
}

.text-weight-medium.caps.tit {
  color: #5fa65e;
  font-weight: 500;
}

.text-size-medium {
  font-size: var(--text-size--medium);
  line-height: 1.1;
}

.text-size-medium.text-weight-medium.caps {
  color: #5fa65e;
  font-weight: 500;
}

.text-size-display {
  color: var(--color--primary);
  font-size: var(--text-size--display);
  letter-spacing: -.5975rem;
  font-weight: 300;
  line-height: 1;
}

.button-primary {
  grid-row-gap: .25rem;
  color: var(--color--backgroung);
  font-size: var(--text-size--medium);
  text-transform: uppercase;
  cursor: pointer;
  background-color: #00a659;
  border-radius: .8rem;
  flex-direction: column;
  padding: .8rem 2.5rem;
  text-decoration: none;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-primary:hover {
  background-color: var(--color--primary);
}

.text-size-small {
  font-size: var(--text-size--small);
  line-height: 1.5;
}

.heading-2 {
  font-size: var(--heading--h2);
  color: #00a659;
  font-weight: 500;
  line-height: 1;
}

.heading-2.text-weight-regular {
  font-weight: 500;
}

.heading-2.verde {
  color: #00a659;
}

.heading-2.destaque {
  color: #000;
}

.hero-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 15vh;
  padding-bottom: 4rem;
  display: flex;
  position: relative;
}

.hero-header {
  z-index: 3;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
  position: relative;
}

.tag-wrapper {
  grid-column-gap: .6875rem;
  grid-row-gap: .6875rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.elipse {
  background-color: var(--color--primary);
  border-radius: 50%;
  width: .4rem;
  height: .4rem;
}

.elipse.hide-mobile {
  background-color: var(--color--primary);
}

.caps {
  text-transform: uppercase;
}

.heading {
  max-width: 80ch;
}

.heading.smaller {
  max-width: 60ch;
}

.hero-component {
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-big-text {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.hero-content {
  justify-content: space-between;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
}

.hero-left-content {
  text-align: left;
  max-width: 30ch;
}

.big-elipse {
  background-color: var(--color--primary);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}

.hero-marquee {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: center;
  display: flex;
}

.button-line-wrap {
  background-color: #1515151a;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 1px;
  margin-top: 3px;
  display: flex;
}

.button-line-animation {
  background-color: #151515;
  width: 30%;
  height: 1px;
}

.hero-grid {
  z-index: 0;
  pointer-events: none;
  width: 74vw;
  max-width: 80rem;
  margin-top: -4vw;
  position: absolute;
}

.hero-interaction-wrapper {
  z-index: 2;
  pointer-events: none;
  cursor: none;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 4vh;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-images-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.text-images {
  max-width: 112ch;
}

.big-numbers {
  font-size: 5.3vw;
  font-weight: 400;
  line-height: 1;
}

.big-numbers-card {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.big-numbers-wrapper {
  grid-column-gap: 10.5rem;
  grid-row-gap: 10.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  place-items: center;
  display: flex;
}

.span {
  text-align: left;
  white-space: nowrap;
  vertical-align: bottom;
  object-fit: cover;
  background-image: url('../images/Placeholder.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 3.75rem 3.75rem;
  border: 2px solid #0000;
  border-radius: 4.75rem;
  width: 6.5rem;
  height: 4rem;
  font-size: .875rem;
  line-height: 7.5;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.span.three {
  pointer-events: none;
  cursor: default;
  background-image: url('../images/Text-Images-03.png');
  background-size: cover;
  border-radius: 5rem;
}

.span.one {
  pointer-events: none;
  white-space: nowrap;
  cursor: default;
  background-image: url('../images/Text-Images-01.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 5rem;
}

.span.two {
  pointer-events: none;
  cursor: default;
  background-image: url('../images/Text-Images-02.png');
  background-size: cover;
  border-radius: 5rem;
}

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

.card {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--color--card);
  text-align: left;
  border-radius: 17px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  padding: 4rem 3.5rem 4.3rem;
  display: flex;
}

.top-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 29ch;
  display: flex;
}

.big-text {
  color: #c6d24c;
  font-size: 10.5rem;
  line-height: 1;
}

.section {
  margin-top: 12rem;
}

.number {
  opacity: .2;
}

.button-hero {
  color: var(--color--font);
  border-radius: .25rem;
}

.logos-component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.logos-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto auto auto;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  padding-left: 33px;
  padding-right: 40px;
  display: grid;
}

.logos {
  justify-content: center;
  align-items: center;
  height: 2.6rem;
  display: flex;
}

.section-logos {
  margin-top: 12rem;
}

.big-gap {
  grid-column-gap: 12rem;
  grid-row-gap: 12rem;
  flex-flow: column;
  display: flex;
}

.testimonial-wrapper {
  grid-column-gap: 4.9rem;
  grid-row-gap: 4.9rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.header {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 55ch;
  display: flex;
}

.max-width-45ch {
  max-width: 45ch;
}

.testimonial-text {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  flex-flow: column;
  justify-content: space-between;
  margin-top: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.testimonial-image {
  border-radius: .5rem;
  height: 20rem;
  max-height: 20rem;
  overflow: hidden;
}

.name {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  flex-flow: column;
  display: flex;
}

.icon {
  object-fit: contain;
}

.display-none {
  display: none;
}

.clip {
  border-radius: .5rem;
  overflow: hidden;
}

.opacity-50 {
  opacity: .5;
}

.testimonial-info {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.testimonial-slider-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  height: auto;
  padding: 1.5rem 2.8rem 1.5rem 1.5rem;
  display: flex;
}

.card-testimonial {
  background-color: var(--color--card);
  border-radius: 1rem;
  width: 55rem;
  max-width: 55rem;
  box-shadow: 0 4px 8px #0000000d, 0 15px 15px #0000000a, 0 33px 20px #00000008, 0 59px 24px #00000003, 0 92px 26px #0000;
}

.quote {
  max-width: 50ch;
  margin-right: .4rem;
}

.testimonial-slider {
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 80rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image {
  width: 100%;
  height: 100%;
}

.text-size-large {
  font-size: var(--text-size--large);
}

.text-size-large.height-1-15 {
  color: #00a659;
  line-height: 1.15;
}

.slider-arrow-right {
  border: 1px solid #ddd;
  border-radius: 100%;
  order: 1;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 1rem .5rem;
  transition: all .2s;
  display: flex;
}

.slider-arrow-right:hover {
  background-color: var(--color--primary);
}

.text-size-regular {
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

.text-size-regular.height-1-15 {
  line-height: 1.15;
}

.slider-arrow-left {
  border: 1px solid #ddd;
  border-radius: 100%;
  order: -1;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 1rem .5rem;
  transition: all .2s;
  display: flex;
}

.slider-arrow-left:hover {
  background-color: var(--color--primary);
}

.slider-star {
  grid-column-gap: .1rem;
  grid-row-gap: .1rem;
  justify-content: flex-end;
  display: flex;
}

.footer-component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.credits-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-links {
  grid-column-gap: 1.1rem;
  grid-row-gap: 1.1rem;
  align-items: center;
  display: flex;
}

.footer-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 46px;
  display: flex;
}

.footer-heading {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.credits {
  text-decoration: none;
  transition: opacity .2s;
}

.credits:hover {
  opacity: .8;
}

.footer-link {
  font-size: 1rem;
  font-weight: 500;
  transition: all .25s;
}

.footer-link:hover {
  color: #15151599;
  transform: translate(0, -2px);
}

.footer-social {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: .7rem;
  transition: all .3s;
  display: flex;
}

.footer-social:hover {
  background-color: var(--color--primary);
  transform: translate(0, -2px);
}

.icon-links {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.credits-text {
  color: #15151599;
}

.footer-social-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.vertical-line {
  background-color: #8e8c87;
  width: 1px;
  height: .8rem;
}

.section-footer {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.font-color {
  color: var(--color--font);
}

.footer-links-component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  display: flex;
}

.tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.heading-3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.heading-4 {
  margin-top: 0;
}

.text-box {
  max-width: 60ch;
}

.text-box.large {
  max-width: 60rem;
}

.heading-3 {
  font-size: var(--heading--h3);
  font-weight: 400;
  line-height: 1;
}

.hero-style-guide-wrapper {
  background-color: #1a1a1a;
  border-radius: 1rem;
  width: 100%;
  margin-top: 6rem;
  padding: 13rem 2rem 2rem;
  overflow: hidden;
}

.hero-style-guide-content {
  grid-row-gap: 1.5rem;
  color: #f3f3f3;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-guide-header {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 4.5rem;
  display: flex;
}

.text-weight-bold {
  font-weight: 700;
}

.color-palette-text {
  margin-bottom: 2rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.heading-4 {
  font-size: var(--heading--h4);
  font-weight: 400;
  line-height: 1;
}

.style-guide-content {
  margin-bottom: 8rem;
}

.text-weight-light {
  font-weight: 300;
}

.style-guide-menu {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.color-palette {
  width: 100%;
  height: 10rem;
}

.color-palette.background {
  background-color: var(--color--backgroung);
}

.color-palette.card {
  background-color: var(--color--card);
}

.color-palette.primary-color {
  background-color: var(--color--primary);
}

.color-palette.font-color {
  background-color: var(--color--font);
}

.heading-6 {
  font-size: var(--heading--h6);
  font-weight: 400;
  line-height: 1;
}

.style-guide-menu-links {
  grid-row-gap: 1.5rem;
  opacity: .5;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.style-guide-menu-links:hover, .style-guide-menu-links.w--current {
  opacity: 1;
}

.typography-content {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-weight-regular {
  font-weight: 400;
}

.style-guide-menu-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.class-name-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.class-name-wrapper.margin-bottom-0 {
  margin-bottom: 0;
}

.text-size-tiny {
  font-size: .75rem;
  line-height: 1.15;
}

.typography-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.heading-5 {
  font-size: var(--heading--h5);
  font-weight: 400;
  line-height: 1;
}

.text-opacity {
  opacity: .7;
}

.divider-line {
  background-color: var(--color--font);
  opacity: .1;
  width: 100%;
  height: 1px;
}

.text-size-huge {
  font-size: var(--text-size--huge);
  line-height: 1.25;
}

.style-gudie-content {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-gudie-content.grid {
  grid-column-gap: 3rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  font-size: 2rem;
  display: grid;
}

.sticky-menu {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 4rem;
}

.style-guide-component {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  margin-top: 8rem;
  margin-bottom: 10rem;
}

.style-tag {
  color: #121212;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fbfbfb;
  border: 1px solid #fbfbfb33;
  border-radius: 10rem;
  padding: .625rem 1.5rem;
  font-weight: 500;
}

.color-palette-card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--color--card);
  flex-flow: column;
  display: flex;
}

.works-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

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

.collection-list-wrapper {
  width: 100%;
}

.works-card {
  background-color: var(--color--card);
  border-radius: .5rem;
  overflow: hidden;
}

.works-link {
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 55vh;
  display: flex;
}

.works-image {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work-content {
  justify-content: space-between;
  padding: 1.5rem 1.5rem 2.8125rem;
  display: flex;
}

.max-width-35ch {
  max-width: 35ch;
}

.works-hover-follow {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  background-color: #fff6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.blog-image-wrapper {
  border-radius: 1.5rem;
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.mask-frame {
  z-index: 2;
  background-color: var(--color--primary);
  opacity: 1;
  position: absolute;
  inset: auto 0% 0%;
}

.work-template-images {
  width: 100%;
  height: 60vh;
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.work-template-images.margin-bottom {
  margin-bottom: 8rem;
}

.work-template-images.vertical {
  width: 50%;
  height: 90vh;
  margin-bottom: 6rem;
  margin-left: 6vw;
  margin-right: auto;
}

.work-template-images.vertical.right {
  margin-left: auto;
  margin-right: 6vw;
}

.work-template-images.no-margin {
  margin-bottom: 0;
}

.hero-section {
  padding-top: 15vh;
  padding-bottom: 6rem;
}

.content-section {
  padding-top: 12rem;
  padding-bottom: 2.5rem;
}

.work-content-cms {
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.hero-works {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.works-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  max-width: 60ch;
  display: flex;
}

.text-size-medium-contact {
  font-size: 1.125rem;
}

.form {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-field-contact {
  color: var(--color--font);
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #1515151a;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  transition: all .4s;
}

.text-field-contact:hover {
  color: var(--color--font);
  border-width: 1px;
  border-color: #1515151a;
  padding-left: 1.2rem;
}

.text-field-contact:active {
  color: #212121;
}

.text-field-contact:focus {
  color: var(--color--font);
  border-color: #212121;
}

.form-content {
  width: 100%;
}

.success-message {
  color: #000;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: .6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-size-medium-vw {
  font-size: 1vw;
  font-weight: 400;
}

.form-wrapper {
  margin-top: 1rem;
}

.form-wrapper.full-width {
  width: 100%;
}

.text-size-contact {
  font-size: 1.375rem;
}

.name-wrapper-contact {
  width: 100%;
}

.submit-button {
  z-index: 3;
  color: #0000;
  background-color: #0000;
  position: absolute;
  inset: 0%;
}

.contact-button {
  background-color: #1d1d1f;
  border-radius: .3rem;
  transition: all .25s;
}

.contact-button.align-center {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.error-message {
  color: #fbfbfb;
  text-align: center;
  background-color: #ec3c3c;
  border-radius: .7rem;
  margin-top: 2rem;
  padding: 1.5rem 1.1rem;
}

.form-component {
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  display: flex;
}

.hero-card {
  background-color: var(--color--font);
  border-radius: 1vh;
  width: 45vh;
  height: 55vh;
  position: absolute;
  overflow: hidden;
}

.hero-card.first {
  z-index: 3;
  border-radius: 3vh;
  transform: rotate(-4.89deg);
}

.hero-card.second {
  z-index: 2;
  background-color: var(--color--primary);
  border-radius: 3vh;
  transform: rotate(-.463deg);
}

.hero-card.third {
  z-index: 1;
  background-color: #aa4646;
  border-radius: 3vh;
  transform: rotate(3.712deg);
}

.utility-page-wrap {
  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;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.hero-form {
  padding-top: 0;
}

.nav-menu-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.right-navbar-content {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  align-items: center;
  display: flex;
}

.navbar-component {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  display: flex;
}

.link-block-navbar {
  color: #151515;
  justify-content: center;
  align-items: center;
  padding: .46rem .75rem;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.link-block-navbar:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.brand {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 1.8rem;
  display: flex;
}

.brand.w--current {
  width: 10rem;
}

.nav-link {
  color: #fbfbfb;
  padding-top: .2rem;
  padding-bottom: .2rem;
  text-decoration: none;
  transition: all .25s;
  position: relative;
}

.nav-link:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.nav-menu {
  z-index: 2;
  grid-column-gap: 2.875rem;
  grid-row-gap: 2.875rem;
  align-items: center;
  display: none;
}

.navbar {
  background-color: #0000;
  width: 100%;
  position: absolute;
  top: 0;
}

.empty-state {
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: flex;
}

.hero-section-works {
  padding-top: 15vh;
  padding-bottom: 6rem;
}

.grid-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout.desktop-3-column {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-layout.desktop-3-column.grid-gap-m {
  justify-content: end;
}

.grid-layout.grid-gap-m {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.utility-image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}

.utility-aspect-4x3 {
  aspect-ratio: 4 / 3;
  position: relative;
}

.utility-margin-bottom-2rem {
  margin-bottom: 2rem;
}

.button-group {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #0000;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-wrapper {
  display: flex;
}

.button-secondary {
  grid-row-gap: .25rem;
  border: 1px solid var(--color--font);
  color: var(--color--font);
  font-size: var(--text-size--medium);
  text-transform: uppercase;
  cursor: pointer;
  background-color: #0000;
  border-radius: .2rem;
  flex-direction: column;
  padding: .8rem 2.5rem;
  text-decoration: none;
  transition: all .3s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-secondary:hover {
  border-color: var(--color--primary);
  background-color: var(--color--primary);
}

.delete-this {
  z-index: 20;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fbfbfb;
  border-radius: .75rem;
  flex-flow: column;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
}

.modal-button {
  color: #fbfbfb;
  text-align: center;
  cursor: pointer;
  background-color: #101011;
  border-radius: .5rem;
  width: 100%;
  padding: .8rem 1rem;
  text-decoration: none;
  transition: all .25s;
}

.modal-button:hover {
  background-color: #101011cc;
  transform: scale(.98);
}

.modal-text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  flex-flow: column;
  display: flex;
}

.modal-embed {
  display: flex;
}

.webflix-link {
  color: #101828;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.code-embed {
  width: .8rem;
  height: .8rem;
  display: flex;
}

.modal-buttons {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.opacity-80 {
  opacity: .8;
}

.exit {
  z-index: 5;
  cursor: pointer;
  background-color: #efefef;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  bottom: 1rem;
  left: .5rem;
}

.max-width-37ch {
  max-width: 37ch;
}

.modal-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.modal-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.image-2 {
  max-width: 104px;
}

.ha-heading {
  width: 100%;
  max-width: 740px;
}

.form-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px solid #ffffff26;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.form-text {
  color: #ffffff4d;
  font-size: 14px;
}

.faq {
  width: 100%;
}

.fb-links {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-heading-2 {
  color: #fff;
  max-width: 950px;
  margin-bottom: 70px;
  margin-left: auto;
}

.from-inner {
  width: 100%;
}

.big-image {
  object-fit: cover;
  border-radius: 19px;
  width: 100%;
  height: 500px;
}

.header-border {
  grid-column-gap: 240px;
  color: #a8463f;
  border: 0 solid #a8463f33;
  border-top-width: 1px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 5px;
  padding-top: 20px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.header-border._2 {
  color: #fff;
  border-top-color: #ffffff1a;
}

.paragraph-18px {
  letter-spacing: -.01em;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

.paragraph-18px.faq-text {
  padding-top: 70px;
}

.faq-content {
  border-top: 1px solid #a8463f33;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.faq-content.last {
  border-bottom: 1px solid #a8463f33;
}

.hh-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.checkbox-label {
  color: #ffffffb3;
  margin-left: 10px;
  font-weight: 400;
}

.nav-links-wrapper {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.checkbox {
  border-radius: 8px;
  width: 27px;
  height: 27px;
}

.home-expertise {
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 70px;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.nav-link-2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: letter-spacing .35s;
}

.nav-link-2:hover {
  letter-spacing: .03em;
}

.hu-grid-border {
  grid-row-gap: 10px;
  color: #a8463f;
  border: 0 solid #a8463f4d;
  border-top-width: 1px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 10px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.hu-content {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.button {
  grid-column-gap: 50px;
  color: #a8463f;
  border: .7px solid #a8463f;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-radius .35s;
  display: flex;
  position: relative;
}

.button:hover {
  border-radius: 20px;
}

.button.button-faq {
  -webkit-text-stroke-color: #00a659;
  text-transform: uppercase;
  border-color: #00a659;
  margin-bottom: 5px;
}

.button.button-footer {
  color: #fff;
  border-color: #fff;
  padding: 10px 17px;
}

.faq-wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.button-wrapper-2 {
  grid-column-gap: 20px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.form-button-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container-2 {
  width: 100%;
  padding: 100px 50px;
}

.container-2.c-nav {
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.container-2.c-footer {
  padding-bottom: 50px;
}

.home-about {
  grid-row-gap: 70px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.home-ups {
  grid-row-gap: 70px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 100px;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.home-ups.categorias {
  margin-bottom: -20px;
}

.carousel {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.home-strategy {
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 70px;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.hu-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 970px;
  margin-left: auto;
}

.footer-bottom {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-top: 1px solid #ffffff26;
  flex-flow: column;
  padding-top: 50px;
  display: flex;
}

.menu-button-2 {
  display: none;
}

.submit-button-2 {
  background-color: #3898ec00;
  position: absolute;
  inset: 0%;
}

.text-field {
  background-color: #fff0;
  border: 1px #000;
  height: 23px;
  margin-bottom: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  overflow: visible;
}

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

.text-field.text-area {
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.fb-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: letter-spacing .35s;
}

.fb-link:hover {
  letter-spacing: .03em;
}

.faq-button {
  justify-content: center;
  align-items: center;
  margin-right: 18px;
  display: flex;
  position: relative;
}

.hh-background {
  z-index: -1;
  opacity: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.carousel-circle {
  background-color: #a8463f;
  border-radius: 100%;
  width: 9px;
  height: 9px;
}

.hero-heading {
  max-width: 614px;
  font-size: 81px;
  line-height: 90%;
}

.hero-home {
  color: #fff;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.hero-home.mobile {
  height: 60vh;
}

.faq-inner {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 516px;
  padding-top: 0;
  display: flex;
  overflow: hidden;
}

.faq-inner.tumarca {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: -90px;
  padding-left: 0;
}

.paragraph-14px {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.faq-trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hu-grid-wrapper {
  grid-row-gap: 35px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 310px;
  padding-right: 10px;
  text-decoration: none;
  display: flex;
}

.paragraph-16px {
  font-size: 16px;
  line-height: 130%;
}

.he-heading {
  max-width: 950px;
  margin-left: auto;
}

.hs-paragraph {
  max-width: 613px;
}

.checkbox-link {
  color: #fff;
  text-decoration: none;
}

.ha-content {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.ha-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 780px;
  height: 647px;
  text-decoration: none;
  display: flex;
}

.hu-heading {
  font-size: var(--heading--h1);
  width: 100%;
  max-width: 879px;
}

.carousel-heading {
  color: #a8463f;
  font-size: 153px;
  font-style: italic;
  line-height: 100%;
}

.form-content-2 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.hh-image {
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.faq-line {
  background-color: #a8463f;
  width: 1px;
  height: 36px;
}

.faq-line._2 {
  background-color: #00a659;
  width: 36px;
  height: 1px;
  position: absolute;
  inset: auto;
}

.faq-line._1 {
  background-color: #00a659;
}

.fb-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hu-grid-text-wrapper {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.hh-linear {
  opacity: .64;
  background-image: linear-gradient(#152e2466, #152e24);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.footer {
  background-color: #0f231b;
  background-image: url('../images/bg_vibra.png');
  background-position: 0 0;
  background-size: auto;
}

.page-wrapper {
  contain: paint;
}

.hs-text-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  max-width: 950px;
  margin-bottom: 70px;
  margin-left: auto;
  display: flex;
}

.carousel-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-text-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 255px;
  margin-left: auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}

.form-block {
  color: #fff;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
}

.success-message-2 {
  background-color: #ddd0;
}

.fb-text-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #fff9;
  flex-flow: column;
  font-size: 14px;
  display: flex;
}

.logo-dr-mush {
  max-width: 80%;
}

.image-3 {
  color: #00a659;
  -webkit-text-stroke-color: #00a659;
}

.text-block-2, .text-block-3 {
  color: #00a659;
}

.heading-7, .heading-8, .heading-9, .heading-10 {
  font-weight: 500;
}

.text-block-4 {
  color: #00a659;
  -webkit-text-stroke-color: #00a659;
}

.text-block-5.green, .text-block-6.green, .text-block-7, .text-block-8 {
  color: #00a659;
}

.heading-11, .heading-12, .heading-13, .heading-14 {
  font-weight: 500;
}

.sello {
  text-align: center;
  width: 80%;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.button-2 {
  grid-column-gap: .5rem;
  color: #fff;
  text-align: center;
  text-transform: none;
  background-color: #131313;
  border: 1px solid #131313;
  border-radius: 100rem;
  align-items: center;
  padding: .25rem .25rem .25rem 1.25rem;
  font-size: 1rem;
  transition: transform .3s;
  display: flex;
}

.button-2:active {
  transform: scale(.95);
}

.button-2.w--current {
  border-radius: 100rem;
}

.button-2.is-alternate {
  color: #000;
  background-color: #fff;
  border-style: solid;
  border-color: #fff;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.button-group-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  display: flex;
}

.button-group-2.is-center {
  justify-content: center;
}

.about-image-wrapper {
  border-radius: 6px;
  overflow: hidden;
}

.container-large {
  width: 100%;
  max-width: 105rem;
  margin-left: auto;
  margin-right: auto;
}

.heading-style-h2 {
  letter-spacing: 0;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
}

.heading-style-h2.text-allcaps {
  color: #08a85a;
}

.button-arrow {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  display: flex;
}

.text-size-medium-3 {
  font-size: 1.125rem;
  font-weight: 400;
}

.about-component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 62px;
  display: grid;
}

.section-padding-large {
  padding-top: 0;
  padding-bottom: 6.2rem;
}

.margin-bottom, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.about-image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 17px;
  width: 100%;
  height: 100%;
}

.header-about-image {
  width: 12.5rem;
  min-width: 12.5rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.section-3 {
  position: relative;
}

.section-3.black {
  color: #fff;
  background-color: #000;
}

.header-about-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-style-h1 {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 14rem;
  font-weight: 700;
  line-height: .8;
}

.spacing-section {
  background-image: url('../images/bg_vibra3.jpg');
  background-position: 0 100%;
  background-size: 100%;
  padding-top: 3.9rem;
  padding-bottom: 3.4rem;
}

.label-detail {
  text-align: left;
  letter-spacing: 0;
  -webkit-text-stroke-width: .5px;
  text-transform: uppercase;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.25;
  display: inline-block;
}

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

.overflow {
  overflow: hidden;
}

.container-3 {
  width: 100%;
  max-width: 92.5rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.no-wrap {
  white-space: nowrap;
}

.header-about-wrapper {
  margin-top: 1rem;
  margin-bottom: 3rem;
  display: flex;
}

.label {
  z-index: 5;
  letter-spacing: .1em;
  -webkit-text-stroke-width: 0px;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  display: inline;
  position: relative;
}

.image-4 {
  height: 80px;
}

.heading-15 {
  font-style: italic;
  font-weight: 700;
}

.animation-text {
  color: #434548;
  -webkit-text-stroke-color: #434548;
  text-transform: capitalize;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6.5rem;
  font-weight: 500;
  line-height: .9;
}

.animation-text.back {
  color: #dce2e2;
  -webkit-text-stroke-color: #dce2e2;
}

.first-line {
  display: block;
}

.text-animation-wrapper {
  flex-flow: column;
  display: flex;
}

.team-members-tab {
  padding-top: 1.6em;
}

.slide-nav {
  display: none;
}

.spacer-small {
  padding-top: .3em;
  padding-bottom: .3em;
}

.team-slider {
  background-color: #0000;
  height: auto;
  padding-bottom: 4.5em;
}

.team-slider-slide {
  margin-right: 2em;
}

.title-wrap {
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1em;
  display: flex;
}

.animation-text-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.spacer-medium {
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
}

.spacer-medium.have--border-bottom {
  border-bottom: 1px solid #434548;
}

.team-member-image {
  border-radius: 1.5em;
  width: 250px;
  height: 300px;
}

.section-4 {
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

.slider-arrow {
  color: #404145;
  background-color: #a6a9b033;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  transition: transform .2s;
  display: flex;
  inset: auto auto 0% 0%;
}

.slider-arrow:hover {
  transform: scale(1.2);
}

.slider-arrow.is--right {
  left: 5%;
}

.title-wrapper {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  display: flex;
}

.team-member-image-wrapper {
  position: relative;
}

.team-members-tab-link {
  color: #404145;
  text-transform: capitalize;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 1.5em;
  padding: .7em 1.5em;
  font-size: 1.1rem;
  transition: background-color .2s;
}

.team-members-tab-link:hover {
  background-color: #ff000024;
}

.team-members-tab-link.w--current {
  color: #fff;
  background-color: #c6d24c;
}

.team-member-details-wrapper {
  grid-column-gap: .3em;
  grid-row-gap: .3em;
  flex-flow: column;
  display: flex;
}

.team-slider-mask {
  width: 50%;
  height: auto;
  overflow: visible;
}

.team-member-detail-text {
  text-transform: capitalize;
  font-size: 1.2rem;
  font-weight: 500;
}

.team-member-detail-text.size-small {
  font-size: 1rem;
  font-weight: 400;
}

.text-line-block {
  z-index: 6;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.team-member-content-wrapper {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  flex-flow: column;
  display: flex;
}

.team-member-content-wrapper.have--transform {
  transform: translate(0, 10%);
}

.heading-text-animation-wrapper {
  flex-flow: column;
  display: flex;
}

.team-member-wrap {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-flow: column;
  display: flex;
}

.team-member-category {
  color: #fff;
  text-transform: capitalize;
  background-color: #00a659;
  border-radius: 2em;
  padding: .5em 1em;
  font-size: .8rem;
  position: absolute;
  inset: 5% auto auto 5%;
  overflow: hidden;
}

.team-members-tab-pane {
  padding-top: 3em;
  padding-bottom: 5em;
}

.container-4 {
  max-width: 1100px;
  height: 100%;
  padding: 5em 2em;
}

.team-members-tab-menu {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  display: flex;
}

.team-members-row {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  display: flex;
}

.header-image {
  object-fit: cover;
  border-radius: 18px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.button-3 {
  grid-column-gap: .5rem;
  color: #fff;
  text-align: center;
  text-transform: none;
  background-color: #131313;
  border: 1px solid #131313;
  border-radius: 100rem;
  align-items: center;
  padding: .25rem .25rem .25rem 1.25rem;
  font-size: 1rem;
  transition: transform .3s;
  display: flex;
}

.button-3:active {
  transform: scale(.95);
}

.button-3.w--current {
  border-radius: 100rem;
}

.button-3.is-alternate {
  color: #000;
  background-color: #fff;
  border-style: solid;
  border-color: #fff;
}

.heading-style-h1-2 {
  letter-spacing: 2px;
  font-size: 7rem;
  font-weight: 600;
  line-height: 1;
}

.heading-style-h1-2.text-allcaps {
  color: #00a659;
  line-height: .85;
}

.text-size-large-2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.text-size-large-2.weight-normal {
  font-weight: 400;
}

.text-size-large-2.weight-normal.z-index-2 {
  z-index: 2;
  padding-left: 126px;
  padding-right: 128px;
  position: relative;
}

.mid-grey-span {
  color: #818181;
}

.header-image-wrapper {
  border-radius: 6px;
  width: 100%;
  padding-top: 120%;
  position: relative;
  overflow: hidden;
}

.header-image-wrapper.is-image-1 {
  width: 22vw;
}

.header-image-wrapper.is-image-3 {
  width: 20vw;
  margin-top: -5vw;
  left: 4vw;
}

.header-image-wrapper.is-image-6 {
  opacity: .75;
  width: 18vw;
  margin-top: -44vw;
  right: 54vw;
}

.header-image-wrapper.is-image-4 {
  width: 18vw;
  margin-top: -45vw;
  left: 64vw;
}

.header-image-wrapper.is-image-5 {
  opacity: .75;
  width: 20vw;
}

.header-image-wrapper.is-image-2 {
  width: 22vw;
  margin-top: -46vw;
  left: 58vw;
}

.header-content {
  align-items: center;
  max-width: 65rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: flex;
  position: relative;
}

.text-align-center {
  text-align: center;
  width: 100%;
}

.button-secondary-2 {
  grid-column-gap: .5rem;
  color: #131313;
  text-align: center;
  background-color: #0000;
  border: 1px solid #131313;
  border-radius: 100rem;
  align-items: center;
  padding: .25rem .25rem .25rem 1.25rem;
  font-size: 1rem;
  transition: transform .3s;
  display: flex;
}

.button-secondary-2:active {
  transform: scale(.95);
}

.button-secondary-2.is-alternate {
  color: #fff;
  border-color: #fff;
}

.header-component {
  height: 300vh;
  position: relative;
}

.header-content-wrapper {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.header-images-wrapper {
  z-index: 1;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.header-images-wrapper.images-wrapper-right {
  z-index: 0;
  inset: 0% 0% 0% auto;
}

.header-image-list {
  z-index: 1;
  grid-row-gap: 26vw;
  flex-direction: column;
  padding-top: 70vh;
  display: flex;
}

.header-ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.paragraph-2 {
  text-align: left;
}

.flipcard-back-title {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #90ca5a, #d7d65a 50%, #dac355);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 44px;
  line-height: 48px;
}

.flipcard-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 56px;
  line-height: 62px;
}

.flipcard-back {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-color: #fff;
  border-radius: 30px;
  flex-direction: column;
  align-items: flex-start;
  height: 600px;
  padding-top: 66px;
  padding-left: 44px;
  padding-right: 107px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
  box-shadow: 7px 7px 40px 6px #00000017;
}

.flipcard-wrapper {
  position: relative;
}

.flipcard-wrapper._1 {
  overflow: visible;
}

.flipcard-subtitle {
  text-align: left;
  max-width: 215px;
  font-weight: 700;
  line-height: 21px;
}

.container-5 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  perspective: 1500px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 840px;
  max-width: 90%;
  display: grid;
}

.flipcard-front {
  backface-visibility: hidden;
  color: #fff;
  background-image: url('../images/card-bg.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 30px;
  height: 600px;
  padding-top: 72px;
  padding-left: 40px;
  padding-right: 51px;
  position: relative;
  box-shadow: 7px 7px 40px 6px #00000017;
}

.flipcard-front._1 {
  overflow: visible;
}

.flipcard-more, .flipcard-less {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media screen and (min-width: 1280px) {
  .image-2 {
    max-width: 104px;
  }

  .hero-home.mobile {
    height: 60vh;
  }

  .faq-inner.tumarca {
    margin-left: -99px;
  }

  .animation-text {
    font-size: 11rem;
  }

  .team-member-image {
    width: 300px;
    height: 330px;
  }

  .container-4 {
    max-width: 1200px;
  }

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

  .text-size-large-2.weight-normal.z-index-2 {
    padding-left: 134px;
    padding-right: 134px;
  }
}

@media screen and (min-width: 1440px) {
  .image-2 {
    max-width: 104px;
  }

  .footer-bottom {
    border: 1px solid #0000;
  }

  .hero-home.mobile {
    height: 60vh;
  }

  .faq-inner.tumarca {
    margin-left: 62px;
  }

  .footer {
    background-size: auto 120%;
  }

  .animation-text {
    font-size: 12rem;
  }

  .team-member-image {
    height: 350px;
  }

  .overflow-hidden {
    justify-content: flex-start;
    align-items: center;
  }

  .second-line {
    justify-content: space-between;
    align-items: center;
  }

  .container-4 {
    max-width: 1350px;
  }

  .text-size-large-2.weight-normal.z-index-2 {
    padding-left: 150px;
    padding-right: 148px;
  }
}

@media screen and (min-width: 1920px) {
  .image-2 {
    max-width: 145px;
  }

  .footer-heading-2._1920 {
    margin-left: 482px;
  }

  .hero-home.mobile {
    height: 100vh;
  }

  .faq-inner.tumarca {
    margin-left: 160px;
  }

  .footer {
    background-position: 0 0;
    background-repeat: repeat;
    background-size: 100%;
    background-attachment: fixed;
  }

  .animation-text {
    height: 120%;
    font-size: 9.3rem;
  }

  .animation-text.back {
    width: 110%;
  }

  .team-member-image {
    width: 350px;
    height: 400px;
  }

  .text-line-block {
    height: 120%;
  }

  .team-member-category {
    background-color: #00a659;
  }

  .container-4 {
    max-width: 1650px;
  }

  .heading-style-h1-2.text-allcaps {
    color: #5fa65e;
    line-height: .85;
  }

  .text-size-large-2.weight-normal.z-index-2 {
    padding-left: 113px;
    padding-right: 98px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: auto;
    max-width: 110rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .container.container-large {
    width: auto;
  }

  .heading-1 {
    font-size: 4rem;
  }

  .text-size-medium {
    color: #00a659;
    font-size: 1.125rem;
  }

  .text-size-display {
    letter-spacing: 0;
    font-size: 8rem;
  }

  .button-primary {
    background-color: #00a659;
  }

  .heading-2 {
    color: #00a659;
    font-size: 2.5rem;
  }

  .hero-wrapper {
    height: auto;
    padding-bottom: 0;
  }

  .heading {
    max-width: 60ch;
  }

  .hero-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .hero-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: center;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .hero-left-content {
    text-align: center;
  }

  .hero-interaction-wrapper {
    justify-content: center;
    align-items: center;
    height: 50vh;
    padding-bottom: 0;
    position: relative;
  }

  .text-images-wrapper {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .text-images {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .big-numbers {
    color: #000;
    font-size: 5.4rem;
  }

  .big-numbers-card {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .big-numbers-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    place-items: center;
    width: 100%;
    display: flex;
  }

  .span {
    border-radius: 1rem;
    width: 3rem;
    height: 3rem;
    line-height: 6;
  }

  .span.three, .span.one, .span.two {
    width: 4rem;
  }

  .grid {
    grid-row-gap: 2rem;
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .card {
    flex-flow: row;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .top-content {
    max-width: none;
  }

  .big-text {
    color: #c6d24c;
  }

  .section {
    margin-top: 8rem;
  }

  .logos-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    flex-flow: wrap;
  }

  .section-logos {
    margin-top: 8rem;
  }

  .big-gap {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
  }

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

  .testimonial-text {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .testimonial-image {
    height: 100%;
    max-height: none;
  }

  .clip {
    height: 100%;
  }

  .card-testimonial {
    width: auto;
    max-width: none;
    height: auto;
  }

  .testimonial-slider {
    max-width: none;
  }

  .slider-arrow-right, .slider-arrow-left {
    display: none;
  }

  .footer-component {
    min-height: 0;
  }

  .section-footer {
    padding-top: 8rem;
  }

  .footer-links-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .text-box {
    max-width: 26ch;
  }

  .heading-3 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .heading-4 {
    font-size: 1.75rem;
  }

  .style-guide-menu {
    grid-column-gap: 5rem;
    flex-flow: wrap;
    width: 100%;
  }

  .color-palette.primary-color {
    background-color: #fbfbfb;
  }

  .heading-6 {
    font-size: 1.25rem;
  }

  .heading-5 {
    font-size: 1.5rem;
  }

  .text-size-huge {
    font-size: 2rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
  }

  .style-guide-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .works-link {
    justify-content: flex-start;
    min-height: 50vh;
  }

  .works-image {
    height: 73%;
  }

  .work-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    padding-bottom: 1.5rem;
  }

  .works-hover-follow {
    display: none;
  }

  .blog-image-wrapper {
    justify-content: flex-start;
  }

  .mask-frame {
    z-index: 4;
  }

  .work-template-images.vertical {
    margin-bottom: 6rem;
  }

  .content-section {
    padding-top: 8rem;
  }

  .form {
    justify-content: flex-start;
    align-items: center;
  }

  .text-size-medium-vw {
    font-size: 1.125rem;
  }

  .form-wrapper, .form-wrapper.full-width {
    width: 100%;
  }

  .form-component {
    margin-top: -.3rem;
  }

  .hero-card {
    width: 30vh;
    height: 38vh;
  }

  .hero-form {
    padding-bottom: 0;
  }

  .nav-menu-wrap {
    justify-content: flex-end;
    align-items: center;
  }

  .menu-button {
    border-radius: 4px;
    overflow: hidden;
  }

  .menu-button.w--open {
    color: #fbfbfb;
    background-color: #009452;
  }

  .right-navbar-content {
    display: none;
  }

  .navbar-component {
    padding-top: .6rem;
    padding-bottom: .6rem;
  }

  .brand, .brand.w--current {
    width: 8rem;
  }

  .nav-link {
    color: #151515;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    display: flex;
  }

  .nav-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: #151515;
    background-color: #efefef;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    display: flex;
    position: absolute;
  }

  .grid-layout.tablet-1-column {
    grid-template-columns: 1fr;
  }

  .image-2 {
    max-width: 87px;
  }

  .big-image {
    height: 400px;
  }

  .paragraph-18px {
    font-size: 22.5px;
  }

  .hh-content {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .nav-links-wrapper {
    z-index: 98;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #152e24;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    display: none;
    position: absolute;
    inset: 100px 0% auto auto;
    overflow: hidden;
  }

  .home-expertise {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .nav-link-2 {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .container-2.c-nav {
    z-index: 99;
    position: relative;
  }

  .home-about {
    grid-row-gap: 50px;
  }

  .home-strategy {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .footer-bottom {
    border: 1px solid #0000;
  }

  .menu-button-2 {
    z-index: 99;
    cursor: pointer;
    width: 40px;
    display: flex;
    position: relative;
  }

  .faq-inner {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .ha-content {
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .ha-wrapper {
    height: auto;
  }

  .carousel-heading {
    font-size: 130px;
  }

  .hs-text-wrapper {
    margin-bottom: 0;
  }

  .brand-2 {
    z-index: 99;
    position: relative;
  }

  .hero-text-wrapper {
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h2 {
    font-size: 3.5rem;
  }

  .about-component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .section-padding-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .about-image {
    aspect-ratio: 3 / 2;
  }

  .heading-style-h1 {
    font-size: 12rem;
  }

  .spacing-section {
    background-image: url('../images/bg_vibra2.jpg');
    background-size: 120%;
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .label-detail {
    font-size: 2.4rem;
  }

  .header-about-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .label {
    font-size: 1rem;
  }

  .animation-text {
    font-size: 7rem;
    line-height: .85;
  }

  .title-wrap {
    flex-flow: wrap;
  }

  .slider-arrow.is--right {
    left: 8%;
  }

  .team-members-tab-link.tablet {
    padding-left: .1em;
    padding-right: .2em;
  }

  .team-member-category {
    background-color: #00a659;
  }

  .container-4 {
    max-width: 100vw;
  }

  .team-members-tab-menu.tablet {
    grid-column-gap: .1em;
    grid-row-gap: .1em;
    width: 129px;
  }

  .heading-style-h1-2 {
    font-size: 4rem;
  }

  .header-image-wrapper.is-image-1 {
    width: 28vw;
  }

  .header-image-wrapper.is-image-3 {
    width: 26vw;
  }

  .header-image-wrapper.is-image-6, .header-image-wrapper.is-image-4 {
    width: 24vw;
  }

  .header-image-wrapper.is-image-5 {
    width: 26vw;
  }

  .header-image-wrapper.is-image-2 {
    width: 28vw;
  }

  .header-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .text-block-9 {
    font-size: 1.1rem;
  }

  .text-block-10 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .heading-1 {
    font-size: 3rem;
  }

  .heading-2 {
    font-size: 2.375rem;
  }

  .hero-content {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .text-images-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .big-numbers {
    color: #000;
    font-size: 6rem;
  }

  .big-numbers-card {
    text-align: center;
    max-width: none;
  }

  .big-numbers-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    display: flex;
  }

  .span {
    background-size: 2.5rem 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .card {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .big-text {
    font-size: 9rem;
  }

  .section {
    margin-top: 4rem;
  }

  .logos-grid {
    grid-row-gap: 3rem;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-logos {
    margin-top: 6rem;
  }

  .big-gap, .testimonial-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .testimonial-text {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .testimonial-image {
    object-position: 50% 0%;
    height: 20rem;
    max-height: none;
  }

  .testimonial-slider-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    padding: 1rem;
  }

  .card-testimonial {
    width: 100%;
  }

  .image {
    object-position: 50% 20%;
  }

  .credits-wrapper {
    flex-flow: column;
  }

  .section-footer {
    padding-top: 6rem;
  }

  .heading-3 {
    font-size: 2.875rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 8rem;
  }

  .style-guide-header {
    font-size: .875rem;
  }

  .heading-4 {
    font-size: 1.625rem;
  }

  .style-guide-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-6 {
    font-size: 1.125rem;
  }

  .heading-5 {
    font-size: 1.375rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .style-guide-component {
    grid-row-gap: 4rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    margin-top: 4rem;
    display: flex;
  }

  .works-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .collection-list {
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .works-link {
    min-height: 0;
  }

  .works-hover-follow {
    width: 8rem;
    height: 8rem;
  }

  .work-template-images.margin-bottom {
    margin-bottom: 6rem;
  }

  .work-template-images.vertical {
    width: 100%;
    margin-bottom: 4rem;
    margin-left: auto;
  }

  .work-template-images.vertical.right {
    width: 100%;
  }

  .content-section {
    padding-top: 4rem;
  }

  .form-component {
    margin-top: 4rem;
  }

  .navbar-component {
    padding-top: .3rem;
    padding-bottom: .3rem;
  }

  .brand, .brand.w--current {
    width: 10rem;
  }

  .hero-section-works {
    padding-bottom: 4rem;
  }

  .grid-layout.grid-gap-m {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .utility-margin-bottom-2rem {
    margin-bottom: 1rem;
  }

  .delete-this {
    left: 1.5rem;
  }

  .text-size-medium-2 {
    font-size: 1.2rem;
  }

  .grid-block {
    display: none;
  }

  .big-image {
    height: 300px;
  }

  .paragraph-18px {
    font-size: 20px;
  }

  .container-2 {
    padding: 70px 20px;
  }

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

  .hero-heading {
    font-size: 90px;
  }

  .faq-inner.tumarca {
    margin-left: -163px;
  }

  .carousel-heading {
    font-size: 100px;
  }

  .button-2 {
    padding: .25rem 1rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .text-size-medium-3 {
    font-size: 1rem;
  }

  .about-component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .section-padding-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .header-about-image {
    width: 4.5rem;
    min-width: 4.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .heading-style-h1 {
    font-size: 4rem;
  }

  .spacing-section {
    background-size: 160%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .label-detail {
    font-size: 1.75rem;
  }

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

  .header-about-wrapper {
    margin-top: 1rem;
    margin-bottom: 1.75rem;
  }

  .animation-text {
    font-size: 5.5rem;
  }

  .title-wrap {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .team-member-image {
    width: 100%;
    height: 250px;
  }

  .slider-arrow.is--right {
    left: 10%;
  }

  .team-members-tab-link.tablet {
    padding-left: 1.1em;
    padding-right: 1em;
  }

  .team-member-content-wrapper {
    width: 45%;
  }

  .team-member-content-wrapper.have--transform {
    transform: none;
  }

  .team-member-wrap {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .team-member-category {
    background-color: #00a659;
  }

  .container-4 {
    max-width: 95vw;
  }

  .team-members-tab-menu {
    flex-flow: wrap;
  }

  .team-members-tab-menu.tablet {
    width: 100%;
  }

  .team-members-row {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .button-3 {
    padding: .25rem 1rem;
  }

  .heading-style-h1-2 {
    font-size: 6.5vw;
  }

  .text-size-large-2 {
    font-size: 1.125rem;
  }

  .header-image-wrapper.is-image-1 {
    width: 30vw;
  }

  .header-image-wrapper.is-image-3 {
    width: 28vw;
  }

  .header-image-wrapper.is-image-6 {
    width: 26vw;
    right: 50vw;
  }

  .header-image-wrapper.is-image-4 {
    width: 26vw;
  }

  .header-image-wrapper.is-image-5 {
    width: 28vw;
  }

  .header-image-wrapper.is-image-2 {
    width: 30vw;
    left: 52vw;
  }

  .header-content {
    padding-top: 4rem;
  }

  .header-component {
    height: 150vh;
  }

  .header-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-ix-trigger {
    margin-top: 35rem;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-1 {
    font-size: 2.3rem;
  }

  .heading-1.bold {
    font-size: 2.9rem;
  }

  .rich-text {
    width: 100%;
  }

  .text-weight-medium {
    font-size: var(--heading--h4);
  }

  .text-size-medium.text-weight-medium.caps {
    font-size: var(--heading--h6);
  }

  .text-size-display.break-mobile {
    word-break: break-all;
  }

  .button-primary {
    background-color: #00a659;
    align-items: center;
    width: 100%;
  }

  .heading-2 {
    color: #08a85a;
    font-size: 2.25rem;
  }

  .hero-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    height: auto;
    overflow: hidden;
  }

  .tag-wrapper {
    justify-content: center;
    align-items: center;
  }

  .elipse.hide-mobile {
    display: none;
  }

  .hero-interaction-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 60vh;
    position: relative;
  }

  .hero-interaction-wrapper.mobile {
    margin-top: -117px;
    margin-bottom: -115px;
  }

  .big-numbers {
    color: #000;
    font-size: 5rem;
  }

  .big-text {
    color: var(--color--primary);
    font-size: 8rem;
  }

  .logos-grid {
    grid-column-gap: 2.2rem;
    grid-row-gap: 2.2rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
    padding-left: 18px;
    padding-right: 28px;
    display: grid;
  }

  .logos {
    height: auto;
  }

  .big-gap {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

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

  .testimonial-slider-content {
    padding: 1rem 1rem 1.3rem;
  }

  .card-testimonial {
    width: 100%;
  }

  .text-size-large {
    font-size: var(--text-size--medium);
  }

  .credits-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-links-wrapper {
    text-align: center;
    margin-top: 0;
    margin-bottom: 45px;
    padding-bottom: 0;
  }

  .vertical-line.hide-mobile {
    display: none;
  }

  .section-footer {
    padding-top: 0;
  }

  .tag.vertical-mobile {
    flex-flow: column;
  }

  .heading-3 {
    font-size: 2.75rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .style-guide-content {
    margin-bottom: 6rem;
  }

  .style-guide-menu {
    grid-column-gap: 0rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .heading-6 {
    font-size: 1rem;
  }

  .class-name-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .heading-5 {
    font-size: 1.25rem;
  }

  .style-guide-content-wrapper {
    flex-flow: column;
    align-items: stretch;
    display: flex;
  }

  .divider-line {
    width: 100%;
  }

  .style-gudie-content {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .style-guide-component {
    grid-template-columns: auto;
    grid-auto-columns: auto;
  }

  .works-hover-follow {
    width: 6rem;
    height: 6rem;
  }

  .blog-image-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .mask-frame {
    z-index: 4;
  }

  .form, .form-wrapper {
    width: 100%;
  }

  .hero-card {
    width: 45vh;
    height: 60vh;
    position: absolute;
  }

  .hero-card.first {
    width: 30vh;
    height: 40vh;
  }

  .hero-card.second {
    width: 35vh;
    height: 40vh;
  }

  .hero-card.third {
    width: 30vh;
    height: 40vh;
  }

  .navbar-component {
    padding-top: .2rem;
    padding-bottom: .2rem;
  }

  .brand {
    width: 15rem;
  }

  .brand.w--current {
    width: 14rem;
  }

  .nav-menu {
    width: 100%;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .button-secondary {
    align-items: center;
    width: 100%;
  }

  .text-size-medium-2 {
    font-size: 1.125rem;
  }

  .modal-link {
    flex-flow: wrap;
  }

  .image-2 {
    max-width: 87px;
  }

  .text-block {
    font-weight: 900;
  }

  .footer-heading-2 {
    margin-top: 20px;
    font-size: 35px;
  }

  .big-image {
    height: 200px;
  }

  .big-image.mobile {
    height: 160px;
  }

  .hu-grid-border {
    color: #c6d24c;
  }

  .button-wrapper-2 {
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .form-button-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .carousel {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .hu-grid {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    grid-template-columns: 1fr;
  }

  .hero-heading {
    font-size: 18vw;
  }

  .hero-home.mobile {
    height: 100%;
  }

  .faq-inner.tumarca {
    margin-left: 0;
  }

  .faq-trigger {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .hu-grid-wrapper {
    max-width: none;
    padding-right: 0;
  }

  .hu-heading {
    font-size: var(--text-size--large);
    font-weight: 500;
  }

  .hu-heading.mobile {
    margin-top: -38px;
    margin-bottom: -1px;
  }

  .carousel-heading {
    font-size: 70px;
  }

  .form-content-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .fb-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .hh-linear {
    opacity: .67;
  }

  .carousel-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .checkbox-field {
    margin-top: 0;
    margin-bottom: 0;
  }

  .logo-dr-mush {
    max-width: 70%;
    margin-top: -22px;
  }

  .heading-7, .heading-8, .heading-9, .heading-10 {
    font-size: var(--heading--h3);
    font-weight: 700;
    line-height: 1;
  }

  .text-block-4 {
    color: #00a659;
    -webkit-text-stroke-color: #00a659;
  }

  .text-block-5, .text-block-6, .text-block-7, .text-block-8 {
    color: #00a659;
  }

  .paragraph {
    padding-left: 9px;
    padding-right: 8px;
  }

  .padding-global {
    padding-left: 5%;
    padding-right: 5%;
  }

  .padding-global.mobile {
    margin-top: -705px;
    margin-bottom: -369px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .button-2 {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-right: .25rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .button-group-2 {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .about-image-wrapper {
    padding-top: 46px;
  }

  .section-about.background-black.mobile {
    margin-top: -110px;
    margin-bottom: -32px;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .button-arrow {
    width: 1.5rem;
  }

  .text-size-medium-3.text-colour-grey {
    margin-bottom: -58px;
  }

  .text-size-medium-3.text-colour-grey.mobile {
    margin-bottom: -24px;
  }

  .about-component {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .section-padding-large {
    padding-top: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small.mobile {
    margin-top: 2.3rem;
    margin-bottom: 1px;
  }

  .about-image {
    aspect-ratio: 1;
  }

  .spacing-section {
    background-image: url('../images/bg_vibra2.jpg');
    background-size: 140%;
  }

  .heading-15 {
    font-size: var(--heading--h2);
  }

  .animation-text {
    color: #000;
    text-transform: capitalize;
    font-size: 3.3rem;
    font-weight: 500;
  }

  .spacer-medium {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .team-member-image {
    height: 275px;
  }

  .slider-arrow.is--right {
    left: 15%;
  }

  .team-members-tab-link {
    font-size: 1rem;
  }

  .team-members-tab-link.w--current {
    background-color: #c6d24c;
  }

  .team-members-tab-link.tablet {
    padding-left: .8em;
    padding-right: 1.2em;
  }

  .team-slider-mask {
    width: 100%;
  }

  .team-member-detail-text {
    font-size: 1rem;
  }

  .team-member-detail-text.size-small {
    font-size: .85rem;
  }

  .text-line-block {
    height: 200%;
  }

  .team-member-content-wrapper {
    width: 100%;
  }

  .team-member-wrap {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .team-member-category {
    background-color: #00a659;
  }

  .team-members-tab-pane {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .container-4 {
    max-width: 100vw;
    padding: 3em 1em;
  }

  .container-4.mobile {
    padding-top: .4em;
  }

  .team-members-tab-menu.tablet {
    width: 100%;
  }

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

  .button-3 {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-right: .25rem;
  }

  .heading-style-h1-2 {
    font-size: 3rem;
  }

  .heading-style-h1-2.text-allcaps {
    font-size: 2.3rem;
  }

  .heading-style-h1-2.text-allcaps.mobile {
    margin-top: -183px;
  }

  .text-size-large-2.weight-normal.z-index-2.mobile {
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
  }

  .mid-grey-span {
    font-size: 2.3rem;
  }

  .header-image-wrapper {
    width: 30vw;
    height: 35vw;
  }

  .header-content {
    z-index: 3;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-content.mobile {
    margin-top: 0;
    margin-bottom: -479px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .button-secondary-2 {
    padding: .25rem .25rem .25rem 1rem;
  }

  .header-component {
    margin-top: -216px;
    margin-bottom: 12px;
    padding-top: 0;
  }

  .header-component.mobile {
    margin-top: -324px;
    margin-bottom: -194px;
  }

  .header-content-wrapper {
    padding-top: 0;
  }

  .header-content-wrapper.mobile {
    margin-top: 40px;
    margin-bottom: -317px;
    padding-top: 219px;
    padding-bottom: 0;
  }

  .paragraph-2.mobile {
    margin-top: -37px;
    margin-bottom: -32px;
  }
}

#w-node-d648bfc2-25a2-dbf3-03e5-3dbd360912a7-ae1636bd, #w-node-d648bfc2-25a2-dbf3-03e5-3dbd360912b3-ae1636bd, #w-node-e8a626ba-6404-5954-90fe-b7308454dba2-ae1636bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c75f7370-df5d-a55e-f41f-50de0bfa708e-ae1636bd, #w-node-a0214055-a5b9-6870-0c35-2638d43cc460-ae1636bd {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec20-ae1636bd {
  place-self: center;
}

#w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec22-ae1636bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec24-ae1636bd, #w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec26-ae1636bd, #w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec28-ae1636bd, #w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec2a-ae1636bd, #w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec2c-ae1636bd, #w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec2e-ae1636bd, #w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec30-ae1636bd, #w-node-_8c09f274-22f7-e716-7c2e-3f9c1e0aec32-ae1636bd {
  place-self: center;
}

#w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3b46-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3b5d-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3b62-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3b79-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3ba3-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3bf1-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3c0f-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3c11-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3c16-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3c1c-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3c21-ae1636be, #w-node-ba76b263-3d2a-d3b9-f18e-51e1d7ee4fba-ae1636be {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aade02f1-0735-d459-71c2-fd6566d1df24-ae1636be {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_84481c42-673d-6a5f-41de-081ad5139fd9-ae1636be, #w-node-_5694a351-f82a-c1d3-4c92-e8310d3c3c2a-ae1636be, #w-node-_26a777eb-10e2-1b72-279a-7fef8d114ddf-ae1636c0, #w-node-_26a777eb-10e2-1b72-279a-7fef8d114de1-ae1636c0, #w-node-_26a777eb-10e2-1b72-279a-7fef8d114de5-ae1636c0, #w-node-_26a777eb-10e2-1b72-279a-7fef8d114de7-ae1636c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_1af93a0f-02ae-0fb1-39b8-a79c00b212e1-ae1636bd {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1af93a0f-02ae-0fb1-39b8-a79c00b212e6-ae1636bd {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_1af93a0f-02ae-0fb1-39b8-a79c00b212eb-ae1636bd {
    grid-area: 3 / 1 / 3 / 2;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.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-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'), url('../fonts/Satoshi-VariableItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  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;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}