/* ////////// IMPORTS CSS ////////// */
@import url(./reset.css);

/* ////////// FONTS ////////// */
@import url(../fonts/HelveticaNowDisplay/HelveticaNowDisplay.css);

/* ////////// VARIABLES ////////// */
:root {
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  /* ------- FONTS ------- */
  --ff-display: "HelveticaNowDisplay", var(--font-system);
  --ff-heading: "HelveticaNowDisplay", var(--font-system);
  --ff-text: "HelveticaNowDisplay", var(--font-system);
  --ff-labels: "HelveticaNowDisplay", var(--font-system);
  /* WEIGHTS */
  --fw-thin: 100;
  --fw-extralight: 200;
  --fw-light: 300;
  --fw-regular: normal;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: bold;
  --fw-extrabold: 800;
  --fw-black: 900;
  --fw-extrablack: 950;
  /*  STYLES */
  --fs-normal: normal;
  --fs-italic: italic;
  --fs-oblique: oblique;

  /* FONT DISPLAY */
  --f-display-h1: var(--fs-normal) var(--fw-bold) 6rem/105% var(--ff-display);
  --f-display-h2: var(--fs-normal) var(--fw-bold) 5rem/105% var(--ff-display);
  --f-display-h3: var(--fs-normal) var(--fw-bold) 4rem/105% var(--ff-display);
  --f-display-h4: var(--fs-normal) var(--fw-bold) 3rem/105% var(--ff-display);
  --f-display-h5: var(--fs-normal) var(--fw-bold) 2rem/105% var(--ff-display);
  --f-display-h6: var(--fs-normal) var(--fw-bold) 1.5rem/105% var(--ff-display);
  /* FONT HEADING */
  --f-heading-h1: var(--fs-normal) var(--fw-bold) 6rem/110% var(--ff-heading);
  --f-heading-h2: var(--fs-normal) var(--fw-bold) 5rem/110% var(--ff-heading);
  --f-heading-h3: var(--fs-normal) var(--fw-bold) 4rem/110% var(--ff-heading);
  --f-heading-h4: var(--fs-normal) var(--fw-bold) 3rem/110% var(--ff-heading);
  --f-heading-h5: var(--fs-normal) var(--fw-bold) 2rem/110% var(--ff-heading);
  --f-heading-h6: var(--fs-normal) var(--fw-bold) 1.5rem/110% var(--ff-heading);
  /* FONT TEXT */
  --f-text-2xl: var(--fs-normal) var(--fw-regular) 1.5rem/150% var(--ff-text);
  --f-text-xl: var(--fs-normal) var(--fw-regular) 1.25rem/150% var(--ff-text);
  --f-text-l: var(--fs-normal) var(--fw-regular) 1.125rem/150% var(--ff-text);
  --f-text-m: var(--fs-normal) var(--fw-regular) 1rem/20px var(--ff-text);
  --f-text-s: var(--fs-normal) var(--fw-regular) 0.875rem/16px var(--ff-text);
  --f-text-xs: var(--fs-normal) var(--fw-regular) 0.75rem/14px var(--ff-text);
  --f-text-2xs: var(--fs-normal) var(--fw-regular) 0.625rem/12px var(--ff-text);
  /* FONT LABEL */
  --f-label-xl: var(--fs-normal) var(--fw-bold) 1.25rem/24px var(--ff-labels);
  --f-label-l: var(--fs-normal) var(--fw-bold) 1.125rem/20px var(--ff-labels);
  --f-label-m: var(--fs-normal) var(--fw-bold) 1rem/20px var(--ff-labels);
  --f-label-s: var(--fs-normal) var(--fw-bold) 0.875rem/16px var(--ff-labels);
  --f-label-xs: var(--fs-normal) var(--fw-bold) 0.75rem/14px var(--ff-labels);
  --f-label-2xs: var(--fs-normal) var(--fw-bold) 0.625rem/12px var(--ff-labels);

  /* ------- TRANSITIONS ------- */
  --t100: all 100ms cubic-bezier(0.25, 1, 0.5, 1);
  --t200: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
  --t300: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
  --t400: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
  --t500: all 500ms cubic-bezier(0.25, 1, 0.5, 1);
  --t600: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
  --t700: all 700ms cubic-bezier(0.25, 1, 0.5, 1);
  --t800: all 800ms cubic-bezier(0.25, 1, 0.5, 1);
  --t900: all 900ms cubic-bezier(0.25, 1, 0.5, 1);
  --t1000: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);

  /* ------- COLORS ------- */
  --transparent: #ffffff00;
  --black: #000000;
  --gray: #808080;
  --white: #ffffff;

  /* ------- BRANDING ------- */
  /* PRIMARY */
  --primary-50: #fffcb7;
  --primary-100: #fffba2;
  --primary-200: #fff979;
  --primary-300: #fff751;
  --primary-400: #fff528;
  --primary-500: #fef200;
  --primary-600: #c6bd00;
  --primary-700: #8e8700;
  --primary-800: #565200;
  --primary-900: #1e1c00;
  --primary-950: #020100;
  /* SECONDARY */
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  ---secondary-300: #cbd5e1;
  ---secondary-400: #94a3b8;
  ---secondary-500: #64748b;
  ---secondary-600: #475569;
  ---secondary-700: #334155;
  ---secondary-800: #1e293b;
  ---secondary-900: #0f172a;
  ---secondary-950: #020617;

  /* ------- LIGHTNING ------- */
  /* LIGHT */
  --light-0: #ffffff00;
  --light-10: #ffffff1a;
  --light-20: #ffffff33;
  --light-30: #ffffff4d;
  --light-40: #ffffff66;
  --light-50: #ffffff80;
  --light-60: #ffffff99;
  --light-70: #ffffffb2;
  --light-80: #ffffffcc;
  --light-90: #ffffffe5;
  --light-100: #ffffff;
  /* DARK */
  --dark-0: #00000000;
  --dark-10: #0000001a;
  --dark-20: #00000033;
  --dark-30: #0000004d;
  --dark-40: #00000066;
  --dark-50: #00000080;
  --dark-60: #00000099;
  --dark-70: #000000b2;
  --dark-80: #000000cc;
  --dark-90: #000000e5;
  --dark-100: #000000;

  /* ------- COMMONS ------- */
  /* AMBER */
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --amber-950: #451a03;
  /* BLUE */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  /* CYAN */
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-800: #155e75;
  --cyan-900: #164e63;
  --cyan-950: #083344;
  /* EMERALD */
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --emerald-950: #022c22;
  /* FUCHSIA */
  --fuchsia-50: #fdf4ff;
  --fuchsia-100: #fae8ff;
  --fuchsia-200: #f5d0fe;
  --fuchsia-300: #f0abfc;
  --fuchsia-400: #e879f9;
  --fuchsia-500: #d946ef;
  --fuchsia-600: #c026d3;
  --fuchsia-700: #a21caf;
  --fuchsia-800: #86198f;
  --fuchsia-900: #701a75;
  --fuchsia-950: #4a044e;
  /* GRAY */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
  /* GREEN */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;
  /* INDIGO */
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --indigo-950: #1e1b4b;
  /* LIME */
  --lime-50: #f7fee7;
  --lime-100: #ecfccb;
  --lime-200: #d9f99d;
  --lime-300: #bef264;
  --lime-400: #a3e635;
  --lime-500: #84cc16;
  --lime-600: #65a30d;
  --lime-700: #4d7c0f;
  --lime-800: #3f6212;
  --lime-900: #365314;
  --lime-950: #1a2e05;
  /* NEUTRAL */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
  /* ORANGE */
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --orange-950: #431407;
  /* PINK */
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-800: #9d174d;
  --pink-900: #831843;
  --pink-950: #500724;
  /* PURPLE */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  --purple-950: #3b0764;
  /* RED */
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;
  /* ROSE */
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --rose-800: #9f1239;
  --rose-900: #881337;
  --rose-950: #4c0519;
  /* SKY */
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;
  --sky-950: #082f49;
  /* SLATE */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  /* STONE */
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;
  /* TEAL */
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --teal-950: #042f2e;
  /* VIOLET */
  --violet-50: #f5f3ff;
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --violet-800: #5b21b6;
  --violet-900: #4c1d95;
  --violet-950: #2e1065;
  /* YELLOW */
  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-200: #fef08a;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;
  --yellow-900: #713f12;
  --yellow-950: #422006;

  /* ------- BORDER RADIUS ------- */
  --br0px_0rem: 0rem;
  --br1px_0-0625rem: 0.0625rem;
  --br2px_0-125rem: 0.125rem;
  --br4px_0-25rem: 0.25rem;
  --br6px_0-375rem: 0.375rem;
  --br8px_0-5rem: 0.5rem;
  --br10px_0-625rem: 0.625rem;
  --br12px_0-75rem: 0.75rem;
  --br14px_0-875rem: 0.875rem;
  --br16px_1rem: 1rem;
  --br20px_1-25rem: 1.25rem;
  --br24px_1-5rem: 1.5rem;
  --br32px_2rem: 2rem;
  --br40px_2-5rem: 2.5rem;
  --br48px_3rem: 3rem;
  --br56px_3-5rem: 3.5rem;
  --br64px_4rem: 4rem;
  --br80px_5rem: 5rem;
  --br96px_6rem: 6rem;
  --br112px_7rem: 7rem;
  --br128px_8rem: 8rem;
  --brMax: 100vmax;

  /* ------- SPACINGS ------- */
  --s0px_0rem: 0rem;
  --s2px_0-125rem: 0.125rem;
  --s4px_0-25rem: 0.25rem;
  --s6px_0-375rem: 0.375rem;
  --s8px_0-5rem: 0.5rem;
  --s10px_0-625rem: 0.625rem;
  --s12px_0-75rem: 0.75rem;
  --s14px_0-875rem: 0.875rem;
  --s16px_1rem: 1rem;
  --s20px_1-25rem: 1.25rem;
  --s24px_1-5rem: 1.5rem;
  --s32px_2rem: 2rem;
  --s40px_2-5rem: 2.5rem;
  --s48px_3rem: 3rem;
  --s56px_3-5rem: 3.5rem;
  --s64px_4rem: 4rem;
  --s80px_5rem: 5rem;
  --s96px_6rem: 6rem;
  --s112px_7rem: 7rem;
  --s128px_8rem: 8rem;

  /* ------- SHADOWS ------- */
  --shadow-none: none;
  --shadow-s: 0px 2px 4px -1px rgba(0, 0, 0, 0.1);
  --shadow-m: 0px 4px 8px -2px rgba(0, 0, 0, 0.1);
  --shadow-l: 0px 12px 20px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0px 24px 24px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0px 36px 36px -8px rgba(0, 0, 0, 0.1);
  --shadow-inner: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.1);

  /* ------- UTILITY ------- */
  --navbar-height: 132px;
  --navbar-height-mobile: 92px;
}

/* ////////// GLOBAL ////////// */
html {
  font-family: "HelveticaNowDisplay", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  overflow-x: hidden;
}

/* //////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////// */
/* //////////////////// START MAIN CSS //////////////////// */
/* //////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////// */
.button-primary {
  background-color: var(--primary-500);
  color: var(--black);
  padding: var(--s12px_0-75rem) var(--s16px_1rem);
  border-radius: var(--br14px_0-875rem);
  text-decoration: none;
  font: var(--f-label-m);
  transition: var(--t100);
  text-wrap: nowrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  width: fit-content;
  gap: var(--s8px_0-5rem);
  border: none;
  cursor: pointer;
}
.button-primary:hover {
  background-color: var(--primary-300);
  transition: var(--t100);
}
/* section titles */
.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s16px_1rem);
  padding-bottom: var(--s16px_1rem);
}
.section-title {
  font: var(--f-heading-h4);
  text-align: center;
  color: var(--black);
}
.section-subtitle {
  max-width: 36ch;
  font: var(--f-text-xl);
  text-align: center;
  color: var(--black);
}

/* scroll top arrow */
.scroll-top-arrow-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background-color: var(--primary-500);
  color: var(--black);
  padding: var(--s12px_0-75rem) var(--s12px_0-75rem);
  border-radius: var(--brMax);
  border: 1px solid var(--neutral-300);
  text-decoration: none;
  font: var(--f-label-m);
  transition: var(--t300);
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-l);
}
.scroll-top-arrow-sticky:hover {
  transform: translateY(-4px);
  transition: var(--t300);
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s16px_1rem) var(--s96px_6rem);
  background-color: var(--neutral-100);
  transition: var(--t300);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--navbar-height);
  box-shadow: var(--shadow-m);
}

.navbar-logo {
  width: 120px;
}

.navbar-links-wrapper {
  display: flex;
  gap: var(--s32px_2rem);
  text-decoration: none;
}

.navbar-links-item {
  list-style: none;
  text-decoration: none;
  font: var(--f-text-m);
  color: var(--black);
  cursor: pointer;
}
.navbar-links-item a {
  text-decoration: none;
  color: inherit;
  text-wrap: nowrap;
  font-weight: var(--fw-bold);
  border-bottom: 2px solid var(--neutral-100);
  transition: var(--t300);
  cursor: pointer;
}
.navbar-links-item a:hover {
  border-bottom: 2px solid var(--primary-500);
  transition: var(--t300);
}

/* Footer */
.footer {
  background-color: var(--neutral-200);
  padding: var(--s16px_1rem) var(--s96px_6rem);
  display: flex;
  flex-direction: column;
  gap: var(--s4px_0-25rem);
  justify-content: center;
  align-items: center;
}

.footer-legals {
  font: var(--f-text-s);
  text-align: center;
  color: var(--neutral-700);
  margin-bottom: var(--s8px_0-5rem);
}

.footer-text {
  font: var(--f-text-s);
  text-align: center;
  color: var(--neutral-700);
}

.footer-link {
  text-decoration: none;
  color: var(--blue-700);
  font: var(--f-text-s);
}
.footer-link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1280px) {
  .navbar {
    padding: var(--s16px_1rem) var(--s64px_4rem);
  }
  .footer {
    padding: var(--s16px_1rem) var(--s48px_3rem);
  }
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: var(--navbar-height-mobile);
  }
  .navbar {
    padding: var(--s16px_1rem) var(--s48px_3rem);
    height: var(--navbar-height-mobile);
  }
  .navbar-links-wrapper {
    display: none;
  }
  .navbar-logo {
    width: 70px;
  }
  .footer {
    padding: var(--s16px_1rem) var(--s48px_3rem);
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: var(--s16px_1rem) var(--s32px_2rem);
  }
  .footer {
    padding: var(--s16px_1rem) var(--s32px_2rem);
  }
}
