@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-VariableFont_wght.ttf') format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

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

@font-face {
  font-family: Criteriacf;
  src: url('../fonts/CriteriaCF-DemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Colors — original palette preserved, refined for contrast */
  --neutral-dark: #4d4d4d;
  --neutral-white: #f9f9f9;
  --neutral-light: #e8e8e8;
  --brand-light: #deeeb9;
  --brand-dark: #7f9151;
  --brand: #97b764;
  --brand-accessible: #6d8a3e; /* WCAG AA on white */

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* Typography fluid scale — Round 2: bigger across the board */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --fs-sm: clamp(0.85rem, 0.8rem + 0.25vw, 1rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
  --fs-md: clamp(1.05rem, 0.95rem + 0.5vw, 1.4rem);
  --fs-lg: clamp(1.3rem, 1.1rem + 0.8vw, 1.75rem);
  --fs-xl: clamp(1.6rem, 1.3rem + 1.2vw, 2.5rem);
  --fs-2xl: clamp(2rem, 1.5rem + 1.8vw, 3.25rem);
  --fs-3xl: clamp(2.5rem, 1.8rem + 2.5vw, 4.25rem);
  --fs-hero: clamp(2.8rem, 2rem + 3vw, 4.5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

* {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background-color: var(--brand-light);
  color: var(--neutral-dark);
}

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

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

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

h1, h2 {
  color: var(--neutral-dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, Arial, sans-serif;
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.01em;
}

h3 {
  color: var(--neutral-dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 105%;
  letter-spacing: -0.02em;
}

h4 {
  color: var(--neutral-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 600;
  line-height: 105%;
  letter-spacing: -0.02em;
}

.heading {
  font-family: Spacegrotesk, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.heading.x {
  font-size: 16px;
}

.section-hero {
  width: 100%;
  height: 100vh;
  padding: clamp(4rem, 6vw, 6rem) clamp(5rem, 8vw, 9rem) clamp(3rem, 4vw, 4rem);
}

.section-hero.bg-1 {
  background-image: linear-gradient(#3f4e261a, #3f4e261a), url('../images/1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

/* Hero crossfade slider — pure CSS, 5 slides, no JS library */
.hero-slider-wrap {
  position: relative;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: heroFade 15s ease-in-out infinite;
}

.hero-bg-slide-1 {
  background-image: url('../images/hero-slide-4.jpg');
  animation-delay: 0s;
}

.hero-bg-slide-2 {
  background-image: url('../images/hero-slide-5.jpg');
  animation-delay: 5s;
}

.hero-bg-slide-3 {
  background-image: url('../images/1.jpg');
  animation-delay: 10s;
}

/* 15s total cycle, 3 slides, each visible ~5s (33.3%) */
/* 0-6% fade in, 6-27% hold, 27-33% fade out, 33-100% hidden */
@keyframes heroFade {
  0%    { opacity: 0; }
  6%    { opacity: 1; }
  27%   { opacity: 1; }
  33.3% { opacity: 0; }
  100%  { opacity: 0; }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(63,78,38,0.5) 0%, rgba(63,78,38,0.2) 50%, rgba(63,78,38,0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content-z {
  position: relative;
  z-index: 2;
  height: 100%;
}

.section-hero.bg-3 {
  background-image: url('../images/4.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-hero.bg-4 {
  background-image: url('../images/4_1.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.section-hero.bg-6 {
  background-image: url('../images/6_1.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.section-hero.bg-contacto {
  background-image: linear-gradient(rgba(249,249,249,0.88), rgba(249,249,249,0.88)), url('../images/hero-slide-5.jpg');
  background-position: 0 0, 50% 30%;
  background-size: auto, cover;
}

.section-hero.bg-8 {
  background-image: url('../images/8_1.jpg');
  background-position: 50% 0;
  background-size: cover;
  padding-top: 9.75rem;
  display: block;
}

.section-hero.color-white {
  background-color: var(--neutral-white);
}

.section-hero.color-white.hug {
  height: auto;
}

.section-hero.color-white.contact {
  height: auto;
  padding-top: 9.75rem;
}

.section-hero.color-dark {
  background-color: var(--neutral-dark);
}

.section-hero.color-dark.hug {
  height: auto;
}

.section-hero.bg-7 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

.section-full {
  width: 100%;
  height: 100vh;
  padding: 6.25rem 6.25rem 6.25rem 6.26rem;
}

.section-full.bg-2 {
  background-image: url('../images/2.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-full.bg-5 {
  background-image: url('../images/5.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-full.bg-6 {
  background-image: url('../images/6.jpg');
  background-position: 0 0;
  background-size: auto;
}

.section-full.color-white {
  background-color: var(--neutral-white);
}

.section-full.bg-7 {
  background-image: url('../images/7.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-full.bg-10 {
  background-image: url('../images/9_1.jpg');
  background-position: 0 0;
  background-size: cover;
  flex-flow: row;
  display: block;
}

.section-full.bg-9 {
  background-image: url('../images/81.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-50 {
  width: 100%;
  height: 60vh;
  padding: 6.25rem;
}

.section-50.bg-3 {
  background-image: url('../images/home-pago.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-75 {
  width: 100%;
  height: 85vh;
  padding: 6.25rem;
}

.section-75.bg-3 {
  background-image: url('../images/home-pago.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.section-75.color-light {
  background-color: var(--neutral-light);
  height: 85vh;
}

.section-75.bg-9 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

.section-75.color-dark {
  background-color: var(--neutral-dark);
}

.section-75.bg-white {
  background-color: var(--neutral-white);
}

.image {
  max-width: none;
  height: auto;
  position: absolute;
  inset: 0 0% 0%;
}

.container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: auto;
  object-fit: fill;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: start;
  place-items: start;
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
}

.image-2 {
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.text-large {
  color: var(--neutral-dark);
  font-family: Spacegrotesk, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.text-large.color-light {
  color: var(--neutral-white);
}

.image-3 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.container-100 {
  flex-flow: row;
  max-width: none;
  height: 100%;
  display: flex;
}

.text-body {
  color: var(--neutral-dark);
  text-align: left;
  text-wrap: pretty;
  font-family: Spacegrotesk, Arial, sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 175%;
  overflow: visible;
}

.text-body.color-white {
  color: var(--neutral-white);
  text-decoration: none;
}

.text-body.color-white.position-center {
  background-color: #0000;
}

.text-body.color-white.tight {
  display: block;
}

.text-body.color-white.footer-text {
  overflow: visible;
}

.text-body.color-white.corp {
  display: none;
}

.text-body.left {
  text-align: right;
}

.text-body.justify {
  text-align: justify;
}

.text-body.position-center {
  text-align: center;
  background-color: #0000;
}

.text-body.color-red {
  color: red;
  background-color: #0000;
}

.text-body.center {
  text-align: center;
}

.text-small {
  color: var(--neutral-dark);
  font-family: Spacegrotesk, Arial, sans-serif;
  font-size: .75rem;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.text-small.color-white {
  color: var(--neutral-white);
  text-decoration: none;
}

.text-link {
  color: var(--neutral-dark);
  font-family: Spacegrotesk, Arial, sans-serif;
  font-size: .625rem;
  line-height: 100%;
}

.text-xl {
  color: var(--neutral-dark);
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.01em;
}

.text-xl.color-brandlight {
  color: var(--brand-light);
}

.text-xl.colorbrandark {
  color: var(--brand-dark);
}

.text-xl.color-brand {
  color: var(--brand);
  justify-content: center;
  align-items: center;
  line-height: 100%;
  display: flex;
}

.text-xl.color-white {
  color: var(--neutral-white);
}

.text-xl.color-branddark {
  color: var(--brand-dark);
}

.text-l {
  color: var(--neutral-dark);
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: 110%;
}

.text-l.color-brandlight {
  color: var(--brand-light);
}

.text-l.color-brand {
  color: var(--brand);
}

.text-l.color-white {
  color: var(--neutral-white);
}

.text-l.color-branddark {
  color: var(--brand-dark);
}

.text-l.position-center {
  text-align: center;
}

.text-m {
  color: var(--neutral-dark);
  text-align: center;
  flex: 0 auto;
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: var(--fs-md);
  font-weight: 500;
  line-height: 115%;
}

.text-m.color-brand {
  color: var(--brand);
}

.text-m.position-right {
  text-align: left;
}

.text-m.color-white {
  color: var(--neutral-white);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.text-m.color-branddark {
  color: var(--brand-dark);
}

.text-m.color-branddark.position-left {
  text-align: left;
}

.text-m.color-brandlight {
  color: var(--brand-light);
}

.text-m.color-brandlight.position-left {
  text-align: left;
  line-height: 120%;
}

.text-m.color-brandlight.position-left.phone-corp {
  display: none;
}

.text-m.position-left {
  text-align: left;
}

.text-m.text-icon {
  font-size: 1rem;
  line-height: 130%;
}

.text-s {
  color: var(--neutral-dark);
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 135%;
}

.text-s.color-white {
  color: var(--neutral-white);
}

.text-s.position-right {
  text-align: right;
}

.text-s.position-center {
  text-align: center;
}

.text-s.position-center.color-brand {
  color: var(--brand);
}

.text-s.center {
  text-align: center;
}

.section-hug {
  width: 100%;
  height: auto;
  padding: clamp(5.5rem, 9vw, 10rem) clamp(5rem, 8vw, 9rem);
}

.section-hug.bg-9 {
  background-image: url('../images/10.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-hug.bg-11 {
  background-image: url('../images/11.jpg');
  background-position: 50% 0;
  background-size: cover;
  padding-bottom: 3rem;
}

.section-hug.color-brandlight {
  background-color: var(--brand-light);
}

.section-hug.color-brandlight.special {
  padding-top: 3rem;
}

.section-hug.color-dark {
  background-color: var(--neutral-dark);
}

.section-hug.bg-white {
  background-color: var(--neutral-white);
}

.section-hug.bg-8 {
  background-image: url('../images/8.jpg');
  background-position: 0 0;
  background-size: cover;
  padding-top: 10rem;
}

.section-hug.bg-2 {
  background-image: url('../images/2_1.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-hug.bg-3 {
  background-image: linear-gradient(#3f4e261a, #3f4e261a), url('../images/3.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
}

.section-hug.bg-5 {
  background-image: url('../images/5_1.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-hug.bg-7 {
  background-image: url('../images/7.jpg');
  background-position: 0 0;
  background-size: cover;
}

.section-hug.color-light {
  background-color: var(--neutral-light);
}

.section-hug.color-white {
  background-color: var(--neutral-white);
}

.section-hug.bg-8-1 {
  background-image: url('../images/81.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.section-hug.bg-10 {
  background-image: url('../images/9_2.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.button {
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 3rem;
  padding: .5rem 1rem;
  text-decoration: none;
  display: flex;
}

.button-2 {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.subcontainer-100 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.button-base {
  background-color: var(--brand);
  color: var(--neutral-white);
  text-align: center;
  border-radius: var(--radius-lg);
  justify-content: center;
  align-items: center;
  width: 12rem;
  min-height: 3.25rem;
  padding: 0.65rem 1.75rem;
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: .95rem;
  font-weight: 500;
  display: flex;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.button-base:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button-base:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.button-base:focus-visible {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.button-base.primary {
  width: 16rem;
  min-height: 3.5rem;
  padding: 0.75rem 2rem;
}

.button-base.primary:hover {
  background-color: var(--brand-dark);
  box-shadow: var(--shadow-lg);
}

.button-base.primary.navbar-button {
  width: 11rem;
  height: 2.5rem;
}

.button-base.primary.variant {
  width: 20rem;
  min-height: 3.75rem;
  font-size: 1rem;
}

.button-base.secondary {
  background-color: var(--neutral-white);
  color: var(--neutral-dark);
  width: 16rem;
  min-height: 3.5rem;
  padding: 0.75rem 2rem;
}

.button-base.secondary:hover {
  background-color: #fff;
  box-shadow: var(--shadow-lg);
}

.button-base.secondary.short {
  width: 12rem;
}

.button-base.minor-light {
  border: .1rem solid var(--neutral-white);
  background-color: #0000;
  width: 10rem;
}

.button-base.minor-light:hover {
  background-color: rgba(249, 249, 249, 0.15);
  box-shadow: var(--shadow-md);
}

.button-base.minor-dark {
  border: .1rem solid var(--neutral-dark);
  color: var(--neutral-dark);
  background-color: #0000;
  width: 10rem;
  min-height: 3.25rem;
}

.button-base.minor-dark:hover {
  background-color: var(--neutral-dark);
  color: var(--neutral-white);
  box-shadow: var(--shadow-md);
}

.button-base.minor-dark.navbar-button {
  width: 10rem;
  height: 2.5rem;
  display: flex;
}

.button-base.corp-primary {
  background-color: var(--neutral-dark);
  color: var(--brand-light);
}

.button-base.corp-primary:hover {
  background-color: #3a3a3a;
  box-shadow: var(--shadow-lg);
}

.button-base.corp-primary.small {
  height: 2.5rem;
}

.button-base.corp-primary.navbar-button {
  display: flex;
}

.button-base.corp-secondary {
  background-color: var(--brand-light);
  color: var(--neutral-dark);
}

.button-base.corp-secondary.corp-mobile {
  display: none;
}

.button-base.navbar-primary-button {
  width: 11rem;
  height: 2.5rem;
  display: flex;
}

.button-base.navbar-button {
  width: 10rem;
  height: 2.5rem;
  display: flex;
}

.div-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.div-block.hero {
  margin-top: 2rem;
}

.heading-2 {
  color: var(--neutral-white);
  flex: 0 1 auto;
  width: auto;
  margin-top: auto;
  margin-bottom: 1.5rem;
  font-size: var(--fs-hero);
  letter-spacing: -0.03em;
  line-height: 110%;
}

.heading-2.hero {
  justify-content: flex-start;
  align-items: center;
  font-size: var(--fs-hero);
  display: flex;
  max-width: 700px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.container-101 {
  width: 100%;
  margin-left: 6rem;
  margin-right: 6rem;
}

.navbar {
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-no-shadow {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: var(--neutral-white);
  width: 100%;
  max-width: none;
  margin-top: 100px;
  padding: 1rem 6.25rem;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-no-shadow-container.corp {
  inset: 0% 0% auto;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

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

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--neutral-dark);
  letter-spacing: .25px;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-family: Spacegrotesk, Arial, sans-serif;
  font-size: .95rem;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--brand-dark);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  border-bottom: none;
}

.nav-link.w--current::after {
  width: 100%;
  background-color: var(--neutral-dark);
}

.nav-link.color-brandlight {
  color: var(--brand-dark);
}

.nav-link.color-brandlight.w--current::after {
  background-color: var(--brand-dark);
}

.nav-link.color-branddark {
  color: var(--brand-dark);
}

.nav-link.color-branddark.w--current::after {
  background-color: var(--brand-dark);
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.menu-button {
  display: none;
}

.navbar-links {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.footer-dark {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.container-102 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.footer {
  background-image: url('../images/0.jpg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: clamp(4rem, 5vw, 6rem) clamp(1.5rem, 5vw, 6.25rem);
}

.footer a {
  transition: opacity var(--duration-fast) var(--ease-out);
}

.footer a:hover {
  opacity: 0.8;
}

.text-mail {
  color: var(--neutral-white);
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
}

.footer-div {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-div.footer-sm {
  justify-content: space-between;
}

.div-block-3 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.footer-contactinfo {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.div-block-4 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.title-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  height: auto;
  display: flex;
  margin-bottom: 2rem;
}

.heading-3 {
  border-top: none;
  border-bottom: 0 #000;
  width: auto;
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding-top: 1rem;
  position: relative;
}

.heading-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background-color: var(--neutral-dark);
  border-radius: 2px;
}

.heading-3.color-brand {
  color: var(--brand);
}

.heading-3.color-brand::before {
  background-color: var(--brand);
}

.heading-3.color-brand.right {
  text-align: right;
}

.heading-3.color-brand.right::before {
  left: auto;
  right: 0;
}

.heading-3.color-white {
  color: var(--neutral-white);
  -webkit-text-stroke-color: var(--neutral-white);
}

.heading-3.color-white::before {
  background-color: var(--neutral-white);
}

.heading-3.color-branddark {
  color: var(--brand-dark);
}

.heading-3.color-branddark::before {
  background-color: var(--brand-dark);
}

.heading-3.color-branddark.position-right {
  text-align: right;
}

.heading-3.color-branddark.position-right::before {
  left: auto;
  right: 0;
}

.heading-3.color-brandlight {
  color: var(--brand-light);
}

.heading-3.color-brandlight::before {
  background-color: var(--brand-light);
}

.heading-3.color-brandlight.position-right {
  text-align: right;
}

.heading-3.color-brandlight.position-right::before {
  left: auto;
  right: 0;
}

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

.heading-4.right {
  text-align: right;
}

.heading-4.right.color-white, .heading-4.color-white {
  color: var(--neutral-white);
}

.heading-4.color-brand {
  color: var(--brand);
}

.div-block-6 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-benefits {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.div-block-8 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.info_icon {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 1 1 0%;
  min-height: 14rem;
  min-width: 0;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-md);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.info_icon:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.content-50-body {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  display: flex;
}

.div-block-10 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.content-body {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 3rem auto 2rem;
  display: flex;
}

.content-body.small {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-end;
  align-items: stretch;
  margin-bottom: 0;
}

.content-body.medium {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 0 auto;
  justify-content: flex-end;
}

.content-body.hug {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 3rem;
}

.content-body.short {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 3rem;
  margin-bottom: 0;
}

.content-body.long {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.content-body.special {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.content-body.hug-content {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.content-body.hug-content.long {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.content-body.hero_short {
  margin-top: 8rem;
}

.div-block-12 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.div-block-12.hug {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: stretch;
}

.div-block-13 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .25rem;
  display: flex;
}

.div-block-13.hide {
  display: none;
}

.info-text {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
  flex: 1 1 0%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
}

.info-text:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.info-text.hide {
  display: none;
}

.div-block-14 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

/* Corporate contact band — replaces plain-text snapshot */
.contact-band {
  margin-top: 3rem;
  padding: 2.5rem 3rem;
  background-color: var(--neutral-light);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-band-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-band-header .heading-3 {
  margin-bottom: 0;
}

.contact-band-channels {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--neutral-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: box-shadow var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.contact-channel:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-channel-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-channel-label {
  color: var(--neutral-dark);
  opacity: 0.7;
  margin-right: 0.25rem;
}

.contact-band-divider {
  width: 1px;
  height: 2.5rem;
  background-color: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .contact-band {
    padding: 2rem 1.5rem;
  }

  .contact-band-channels {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .contact-band-divider {
    width: 100%;
    height: 1px;
  }
}

.div-block-15 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.banner-whatsapp {
  clear: left;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 3.5rem;
  display: flex;
  position: sticky;
  top: 90vh;
}

.div-block-16 {
  background-color: var(--neutral-white);
  border-radius: 2rem;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 3.25rem;
  margin-left: auto;
  margin-right: 2.5rem;
  padding: .5rem;
  display: flex;
}

.link-block {
  border: .1rem none var(--brand);
  background-color: var(--neutral-white);
  border-radius: var(--radius-full);
  justify-content: center;
  align-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-left: auto;
  margin-right: 2.5rem;
  padding: .5em .5rem .5rem;
  display: flex;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.link-block:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.link-block.whatsapp {
  position: sticky;
  top: 88vh;
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25), var(--shadow-lg); }
}

.dropdown-toggle {
  flex-flow: row;
  display: flex;
}

.content-faq {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: block;
}

.content-faq.corp {
  padding-bottom: .25rem;
}

.title-faq {
  border-top: .1rem solid var(--brand);
  flex-flow: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  margin-bottom: .5rem;
  padding-top: .75rem;
  text-decoration: none;
  display: flex;
  cursor: pointer;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.title-faq:hover {
  opacity: 0.8;
}

.title-faq.corp {
  border-top-color: var(--brand-light);
  margin-bottom: .75rem;
  padding-top: 1rem;
}

.div-faq {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  display: flex;
}

.content-answer {
  margin-bottom: .5rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.link, .link-2, .bold-text, .link-3, .link-4, .link-5, .link-6, .link-7, .link-8, .link-9, .link-10, .link-11 {
  color: var(--neutral-dark);
}

.div-block-17 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.content-result {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

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

.link-12 {
  color: var(--brand-dark);
}

.container-full-body {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 4rem;
  display: flex;
}

.container-full-body.large {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
}

.container-full-body.legal {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
}

.div-block-19 {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.div-block-20 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  display: flex;
}

.div-block-21 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-22, .div-block-23 {
  margin-top: 2rem;
}

.link-13 {
  color: var(--neutral-white);
}

.div-block-24 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.link-14, .link-15 {
  color: var(--brand-light);
}

.div-block-25 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.div-block-26 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  align-items: center;
  margin-bottom: .75rem;
  display: flex;
}

.div-block-27, .div-block-28 {
  flex: 1;
}

.text-field {
  border: .1rem solid var(--neutral-white);
  color: var(--neutral-white);
  background-color: #f9f9f940;
  border-radius: 2rem;
  flex: 1;
  margin-bottom: 0;
  padding: .5rem 1.25rem;
  font-family: Spacegrotesk, Arial, sans-serif;
  font-size: .875rem;
  line-height: 100%;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.text-field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(151, 183, 100, 0.2);
}

.text-field::placeholder {
  color: var(--neutral-white);
}

.text-field.color-dark {
  border-color: var(--neutral-dark);
  color: var(--neutral-dark);
  background-color: #0000;
}

.text-field.color-dark:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(151, 183, 100, 0.15);
}

.text-field.color-dark::placeholder {
  color: var(--neutral-dark);
}

.div-block-29 {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2rem;
  display: flex;
}

.div-block-29.smal {
  margin-top: 1rem;
}

.form-block {
  margin-bottom: 0;
}

.form-contact {
  color: var(--neutral-dark);
  flex-flow: column;
  justify-content: flex-end;
  display: flex;
}

.form-contact.corp {
  height: 100%;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.form-corp {
  margin-top: 2rem;
}

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

.div-block-31 {
  justify-content: space-between;
  align-items: center;
  margin-top: .5rem;
  display: flex;
}

.div-block-32 {
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-around;
  align-self: stretch;
  align-items: flex-end;
  display: flex;
}

.div-block-33 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}

.div-block-34 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.div-block-35 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}

.utility-page-wrap {
  background-color: var(--neutral-dark);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 260px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-field-2 {
  border: .1rem solid var(--neutral-white);
  color: var(--neutral-white);
  background-color: #f9f9f940;
  border-radius: 3rem;
  margin-bottom: 0;
  padding: .25rem 1rem;
  font-family: Spacegrotesk, Arial, sans-serif;
}

.text-field-2::placeholder, .image-4 {
  color: var(--neutral-white);
}

.div-block-36 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab-link {
  border-bottom: .1rem solid var(--brand);
  background-color: #0000;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.tab-link.w--current {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: .125rem solid var(--neutral-dark);
  color: var(--neutral-dark);
  background-color: #0000;
  flex-flow: column;
  flex: 1;
  padding: 0;
  display: flex;
}

.tab-link.tab-color {
  color: var(--brand);
  flex-flow: column;
  display: flex;
}

.tab-link.tab-color.w--current {
  color: var(--neutral-dark);
}

.tabs-menu {
  justify-content: space-around;
  align-items: stretch;
  display: flex;
}

.tab-link-tab-2 {
  border-bottom: .0875rem solid var(--brand);
  background-color: #0000;
  flex: 1;
  padding: 0;
}

.tab-link-tab-3, .tab-link-tab-4, .tab-link-tab-5 {
  flex: 1;
}

.div-block-37 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  margin-top: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.text-block {
  text-align: center;
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
}

.text-block-2 {
  text-align: center;
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: .875rem;
  font-weight: 500;
}

.div-block-38 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.div-block-39 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
}

.logo-tab {
  background-color: rgba(249, 249, 249, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.logo-tab:hover {
  background-color: rgba(249, 249, 249, 0.8);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.logo-tab.w--current {
  border: 2px solid var(--neutral-dark);
  background-color: rgba(249, 249, 249, 0.85);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.tabs-menu-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  display: flex;
}

.div-block-40 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 0 auto;
  margin-top: 0;
  display: flex;
}

.div-block-41 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.div-block-42 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.div-block-43 {
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-top: 2rem;
  display: flex;
}

.div-block-44 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.navbar-component {
  z-index: 5;
  background-color: rgba(249, 249, 249, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  padding: .5rem 6.25rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  transition: background-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.navbar-component.scrolled {
  background-color: rgba(249, 249, 249, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.container-regular-2 {
  flex: 1;
  width: 100%;
  max-width: none;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar-brand-2 {
  flex: 0 auto;
  width: 3rem;
}

.cont-w-nav-menu {
  flex: 1;
}

._w-nav-menu {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.nav-link-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-2 {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle-2 {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-2:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-2:focus-visible, .nav-dropdown-toggle-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon-2 {
  margin-right: 10px;
}

.nav-dropdown-list-2 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-2.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link-2 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link-2:focus-visible, .nav-dropdown-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.mobile-margin-top-11 {
  flex: 0 auto;
}

.nav-button-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-left: 120px;
  display: flex;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.navlink {
  color: var(--neutral-dark);
}

.list-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  list-style-type: none;
  display: flex;
}

.image-5 {
  width: 100%;
  max-width: none;
}

.image-7 {
  display: none;
}

.minus-symbol {
  color: var(--brand);
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.div-block-47 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.plus-symbol {
  color: var(--brand);
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.big-plus, .big-minus {
  color: var(--brand-light);
  font-family: Criteriacf, Georgia, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.div-block-48 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.metrics-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: center;
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--duration-normal) var(--ease-out);
}

.metrics-content:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.div-block-49 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .section-hero {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .section-hero.bg-1 {
    background-position: 50% 0;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .section-hero.bg-4 {
    background-image: linear-gradient(#f9f9f980, #f9f9f980), url('../images/4_1.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-hero.bg-6 {
    background-image: linear-gradient(rgba(232,232,232,0.35), rgba(232,232,232,0.35)), url('../images/6_1.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-hero.bg-8 {
    background-image: linear-gradient(#4d4d4d80, #4d4d4d80), url('../images/8_1.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-full {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .section-full.bg-10 {
    background-image: linear-gradient(#f9f9f980, #f9f9f980), url('../images/9_1.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-50, .section-75 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .section-75.color-light, .section-75.bg-white {
    height: auto;
  }

  .section-hug {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .section-hug.bg-9 {
    background-image: linear-gradient(#4d4d4d80, #4d4d4d80), url('../images/9.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-hug.bg-11 {
    background-image: linear-gradient(#deeeb980, #deeeb980), url('../images/11.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-hug.bg-8 {
    background-image: linear-gradient(#4d4d4d80, #4d4d4d80), url('../images/8.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-hug.bg-8-1 {
    background-image: linear-gradient(#f9f9f980, #f9f9f980), url('../images/81.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-hug.bg-10 {
    background-image: linear-gradient(#f9f9f980, #f9f9f980), url('../images/9_2.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .subcontainer-50.sc-100 {
    align-items: stretch;
    width: 100%;
  }

  .subcontainer-50.sc-0 {
    width: 0%;
    display: block;
  }

  .subcontainer-100 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .button-base.secondary.short {
    width: 10rem;
  }

  .div-block {
    justify-content: center;
    align-items: center;
  }

  .div-block.hero {
    justify-content: flex-start;
    align-items: center;
  }

  .heading-2.hero {
    font-size: 4.4rem;
  }

  .navbar-no-shadow-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .navbar-brand.w--current {
    flex: 0 auto;
    width: 3rem;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    padding: 12px;
    display: block;
  }

  .menu-button.w--open {
    color: var(--neutral-dark);
    background-color: #0000;
  }

  .navbar-buttons {
    display: block;
  }

  .container-102 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .footer {
    height: auto;
    padding: 4rem 3rem;
  }

  .footer-div.footer-sm {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    display: flex;
  }

  .div-block-3 {
    justify-content: space-around;
    width: 100%;
  }

  .footer-legaltext {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .footer-contactinfo {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
  }

  .div-block-10 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

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

  .content-body.long {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .div-block-12.hug {
    flex: 1;
  }

  .link-block.whatsapp {
    width: 3rem;
    height: 3rem;
  }

  .content-resultdivs {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    margin-top: 4rem;
  }

  .div-block-20 {
    width: 100%;
  }

  .tabs-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .div-block-44 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    display: flex;
  }

  .div-block-45 {
    display: block;
  }

  .navbar-component {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .cont-w-nav-menu {
    background-color: #0000;
    padding-left: 0;
  }

  ._w-nav-menu {
    background-color: var(--neutral-white);
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    display: flex;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrap {
    width: 100%;
    margin-left: 0;
  }

  ._w-nav-button {
    padding: 12px;
  }

  ._w-nav-button.w--open {
    color: var(--neutral-dark);
    background-color: #0000;
  }

  .tabs {
    flex: 0 auto;
  }

  .image-6 {
    display: none;
  }

  .image-7 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .section-hero {
    height: auto;
    padding: 4rem 1.5rem 3rem;
  }

  .section-hero.bg-1 {
    background-image: url('../images/1.jpg');
    background-position: 50% 0;
    background-size: cover;
    height: 100vh;
    padding: 4rem 1.5rem;
  }

  .section-hero.hero-slider-wrap {
    height: 100vh;
    padding: 4rem 1.5rem;
  }

  .section-hero.bg-8 {
    background-image: linear-gradient(#4d4d4d80, #4d4d4d80), url('../images/8_1.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    padding-top: 7.5rem;
  }

  .section-hero.color-white {
    height: auto;
    padding-top: 7.5rem;
  }

  .section-full {
    height: auto;
    padding: 3rem 1.5rem;
  }

  .section-full.bg-2 {
    padding: 3rem 1.5rem;
  }

  .section-full.bg-10 {
    height: auto;
  }

  .section-50 {
    height: auto;
    padding: 3rem 1.5rem;
  }

  .section-50.bg-3, .section-75 {
    padding: 3rem 1.5rem;
  }

  .section-75.color-dark {
    height: auto;
  }

  .text-body.color-white {
    text-align: left;
  }

  .text-body.color-white.footer-text {
    text-align: center;
  }

  .text-m.color-brandlight.position-left {
    flex-flow: column;
    flex: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .section-hug {
    padding: 3rem 1.5rem;
  }

  .section-hug.bg-11 {
    background-image: linear-gradient(#deeeb980, #deeeb980), url('../images/11.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .section-hug.bg-8 {
    padding-top: 8rem;
  }

  .subcontainer-50.sc-100.hero {
    height: 90%;
  }

  .button-base.primary, .button-base.secondary {
    width: 20rem;
  }

  .button-base.minor-dark.navbar-button {
    width: 14rem;
    height: 3rem;
  }

  .button-base.corp-secondary.corp-mobile {
    display: none;
  }

  .button-base.navbar-button {
    width: 14rem;
    height: 3rem;
  }

  .div-block.hero {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
  }

  .heading-2.hero {
    font-size: 3.8rem;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    text-align: right;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.4rem;
    display: inline-block;
  }

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

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer-contactinfo {
    flex-flow: column;
  }

  .div-benefits {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .content-50-body {
    margin-top: 3rem;
  }

  .content-body {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 3rem;
  }

  .content-body.hug {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .content-body.short {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 3rem;
  }

  .content-resultdivs {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    margin-top: 3rem;
  }

  .container-full-body {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .div-block-24 {
    width: 100%;
    margin-bottom: 1rem;
  }

  .link-14 {
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .div-block-29 {
    justify-content: space-between;
    align-items: flex-end;
  }

  .div-block-29.smal {
    margin-top: 0;
  }

  .form-contact.corp {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .form-corp {
    padding-top: 2rem;
  }

  .div-block-31 {
    flex-flow: column;
  }

  .div-block-32 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: space-around;
    align-items: flex-start;
  }

  .tab-link.tab-color {
    flex-flow: row;
    justify-content: space-between;
  }

  .tab-link.tab-color.w--current {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .text-block-2 {
    text-align: right;
    font-size: 1.1rem;
    line-height: 100%;
  }

  .navbar-component {
    height: 4rem;
    padding: 0 1.5rem;
  }

  .navbar-brand-2 {
    width: 2rem;
    padding-left: 0;
  }

  ._w-nav-menu {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-end;
    height: 100vh;
    padding-bottom: 1.5rem;
    padding-left: 1.5px;
    padding-right: 3rem;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list-2.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-11 {
    margin-top: 0;
  }

  .nav-button-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    margin-left: 0;
  }

  .list-item {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    text-align: right;
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-end;
    width: auto;
  }
}

@media screen and (max-width: 479px) {
  .section-hero {
    height: auto;
    padding-bottom: 6rem;
  }

  .section-hero.bg-1,
  .section-hero.hero-slider-wrap {
    flex-flow: column;
    justify-content: space-between;
    height: 90vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
    display: flex;
  }

  .section-hero.bg-4 {
    background-image: linear-gradient(to bottom, null, null), url('../images/9_1.jpg');
  }

  .section-full, .section-full.bg-2 {
    height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-50.bg-3, .section-75 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .container {
    align-items: stretch;
    height: 100%;
  }

  .text-body {
    font-size: 1rem;
  }

  .text-l.color-brandlight, .text-m, .text-m.color-brand, .text-m.position-right.color-brand, .text-m.color-white, .text-m.color-branddark, .text-s {
    line-height: 120%;
  }

  .text-s.position-right {
    text-align: left;
  }

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

  .subcontainer-50.sc-100 {
    flex: 1;
    justify-content: space-between;
    align-items: stretch;
  }

  .subcontainer-50.sc-100.hero {
    flex: 1;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: auto;
  }

  .subcontainer-50.sc-0 {
    display: none;
  }

  .subcontainer-100 {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .button-base.primary {
    width: 100%;
    height: 4rem;
    font-size: 1.2rem;
  }

  .button-base.primary.variant {
    width: 100%;
  }

  .button-base.secondary {
    width: 100%;
    height: 4rem;
    font-size: 1.2rem;
  }

  .button-base.secondary.short {
    width: 100%;
  }

  .button-base.minor-dark.navbar-button {
    width: 100%;
    height: 4rem;
  }

  .button-base.corp-secondary {
    display: none;
  }

  .button-base.corp-secondary.corp-mobile {
    display: block;
  }

  .button-base.navbar-button {
    width: 100%;
    height: 4rem;
    font-size: 1.2rem;
  }

  .div-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    flex: 0 auto;
    justify-content: space-between;
    align-items: stretch;
  }

  .div-block.hero {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex: 0 auto;
    align-items: center;
    margin-top: 2rem;
  }

  .heading-2 {
    flex: 1;
  }

  .heading-2.hero {
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-link {
    font-size: 1.4rem;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .container-102 {
    max-width: none;
  }

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

  .div-block-3 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: space-between;
  }

  .footer-contactinfo {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .div-block-4 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: space-between;
  }

  .div-block-6 {
    width: 100%;
  }

  .div-benefits {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .div-block-10 {
    flex-flow: column;
  }

  .content-body.short {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    margin-bottom: 2rem;
  }

  .content-body.special {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

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

  .content-resultdivs {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 4rem;
  }

  .container-full-body {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 2rem;
  }

  .container-full-body.large {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .div-block-20 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .div-block-24 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
  }

  .div-block-26 {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
  }

  .text-field {
    flex: 0 auto;
  }

  .div-block-29 {
    flex-flow: column;
    margin-top: 0;
  }

  .div-block-29.smal {
    margin-top: 1rem;
  }

  .div-block-31 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .div-block-32 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .div-block-36, .tabs-menu-2 {
    flex-flow: column;
  }

  .div-block-44 {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

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

  .cont-w-nav-menu {
    flex: 0 auto;
    width: 100%;
    height: 100vh;
  }

  ._w-nav-menu {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    height: 100vh;
    padding-top: 5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mobile-margin-top-11 {
    width: 100%;
  }

  .nav-button-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    align-items: flex-end;
    width: 100%;
  }

  .list-item {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .div-block-46 {
    width: 100%;
  }

  .image-6 {
    display: none;
  }

  .metrics-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}


/* ========================================
   Modern Enhancements — Scroll Reveal
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ========================================
   Modern Enhancements — General Links
   ======================================== */

a {
  transition: color var(--duration-fast) var(--ease-out);
}

.text-body.color-white.footer-text:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================================
   Modern Enhancements — Mail link
   ======================================== */

.text-mail {
  transition: opacity var(--duration-fast) var(--ease-out);
}

.text-mail:hover {
  opacity: 0.85;
}

/* ========================================
   Modern Enhancements — Image Polish
   ======================================== */

.info_icon img {
  transition: transform var(--duration-slow) var(--ease-out);
}

.info_icon:hover img {
  transform: scale(1.05);
}

/* ========================================
   Reduced Motion — Accessibility
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}