:root {
    /* 1. The primary Regular weight found in Finder.otf */



.coda-regular {
  font-family: "Coda", system-ui;
  font-weight: 400;
  font-style: normal;
}

.coda-extrabold {
  font-family: "Coda", system-ui;
  font-weight: 800;
  font-style: normal;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}



.outfit-<uniquifier> {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


    --font-primary: "Outfit", sans-serif;
    --font-headings: "Inter", sans-serif;
    --font-button: "Outfit", sans-serif;
    
    --font-custom:  "Coda" , sans-serif;
   

  --lead-color:#bfa224;
  --accent-color:#111111;
  --brand-color:#000000   ;
  --surface-color:#000000;
  --contrast-color:#2a2a2a;
  --text-color:#ffffff;

	--lead-btn-color:#000000;
	--accent-btn-color:#ffffff;
    --light:#ffffff;


  --primary-color: var(--lead-surface-2);
  --secondary-color: var(--accent-surface-2);
  --text-color-nav: var(--light);
  --background-color: #141414;
  --hero-text: var(--text-color-1);


  --gap:3em;

  --heading-fw: 400;
  --headline-fw: 400;
  --tite-fw : 600;

  --hero-height: 100dvh;
  --slogan-fs : var(--font-size-custom);
  --slogan-fw : 800;
  --slogan-strong-fs : var(--font-size-7);
  --slogan-strong-fw : 800;

  --font-size-sm: 14px;
  --font-size-md: 18px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;

 --font-size-03: 0.5em;
    --font-size-02: 0.625em;
    --font-size-01: 0.75em;
    --font-size-00: 0.875em;
    --font-size-0: 1em;
    --font-size-1: clamp(1.0625em, calc(.2vw + 1em), 1.125em);
    --font-size-2: clamp(1.125em, calc(.5vw + 1em), 1.25em);
    --font-size-3: clamp(1.25em, calc(1vw + 1em), 1.5em);
    --font-size-4: clamp(1.375em, calc(1.5vw + 1em), 1.75em);
    --font-size-5: clamp(1.5em, calc(2vw + 1em), 2em);
    --font-size-6: clamp(1.625em, calc(2.1vw + 1em), 2.25em);
    --font-size-7: clamp(1.75em, calc(2.2vw + 1em), 2.5em);
    --font-size-8: clamp(1.875em, calc(2.4vw + 1em), 2.75em);
    --font-size-9: clamp(2em, calc(2.6vw + 1em), 3.125em);
    --font-size-10: clamp(2.125em, calc(2.8vw + 1em), 3.375em);
    --font-size-11: clamp(2.25em, calc(3vw + 1em), 3.625em);
    --font-size-12: clamp(2.375em, calc(3.2vw + 1em), 3.875em);
    --font-size-custom: clamp(3.375em, calc(3.6vw + 1em), 5.875em);

  --h1-fs: var(--font-size-12);
  --h2-fs: var(--font-size-7);
  --fs-card-title : var(--font-size-3);
  --fw-card-title : var(--tite-fw);

  --font-size-para : var(--font-size-1);
  --lh-para: 1.6;

   --offset-top: 6.599609375em;


  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  
  --border-radius: 1em;

  --broad : 10vw;
  --wide : 3vw;
  --tight : 17vw;
  --screen : 0vw;
  
  --mq-md-down : (max-width: 768px);

/* Media query for tablets */
@media (max-width: 1440px) {
   --broad : 10vw;
  --wide : 3vw;
  --tight : 10vw;
  --screen : 0vw;
}

/* Media query for tablets */
@media (max-width: 768px) {
   --broad : 1vw;
  --wide : 1vw;
  --tight : 1vw;
  --screen : 0vw;
  --hero-height: 100%;

}
    
/* Media query for mobile devices */
@media (max-width: 480px) {
   --broad : 1vw;
  --wide : 1vw;
  --tight : 1vw;
  --screen : 0vw;
}




}

/* General Styles */

h1 {font-size: var(--h1-fs);}
h2 {font-size: var(--h2-fs);}

h1 , h2 , h3 , h4 , h5 {
    font-weight: var(--heading-fw);
    font-family: var(--font-headings);
}
h1 {
    font-family:var(--font-custom);
    font-weight:400;
}
h2 {
     font-weight:400;
    font-family:var(--font-custom);
}
.blk-txt p {
    font-size: var(--font-size-para);
    line-height: var(--lh-para);
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
}




