/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ============================================================
   All Metal Solutions — site styles
   Tokens, utilities, header/footer, and per-section rules.
   ============================================================ */ :root  {
  /* --- Brand palette (primitive names) --- */ --color-navy: #263672;
  --color-navy-dark: #1c2a5c;
  --color-blue: #244ca3;
  --color-blue-dark: #1d3d82;
  --color-sky: #4495d7;
  --color-sky-light: #74b0e1;
  --color-heading: #1d1d1d;
  --color-charcoal: #221e20;
  --color-ink: #080708;
  --color-ink-card: #15161a;
  --color-gray: #373737;
  --color-gray-soft: #676767;
  --color-gray-light: #ededed;
  --color-line: #e2e6ec;
  --color-gold: #f5b50a;
  /* --- Semantic anchors --- */ --color-brand: var(--color-navy);
  --color-text: var(--color-charcoal);
  --color-bg: #ffffff;
  /* --- Form field tokens --- */ --color-form-field-bg: #ffffff;
  --color-form-field-text-color: #221e20;
  --color-form-field-border: #c8cdd6;
  --color-form-field-border-focus: #244ca3;
  --color-form-field-bg-disabled: #f3f3f3;
  --color-form-field-text-disabled: #9a9a9a;
  --color-form-button-bg: #244ca3;
  --color-form-button-text-color: #ffffff;
  --color-checkbox-accent: #244ca3;
}
/* --- Background utility classes --- */ .bg-navy  {
  background-color: var(--color-navy);
}
.bg-navy-dark  {
  background-color: var(--color-navy-dark);
}
.bg-blue  {
  background-color: var(--color-blue);
}
.bg-sky  {
  background-color: var(--color-sky);
}
.bg-sky-light  {
  background-color: var(--color-sky-light);
}
.bg-charcoal  {
  background-color: var(--color-charcoal);
}
.bg-ink  {
  background-color: var(--color-ink);
}
.bg-ink-card  {
  background-color: var(--color-ink-card);
}
.bg-gray-light  {
  background-color: var(--color-gray-light);
}
.bg-white  {
  background-color: #ffffff;
}
/* ============================================================
   Smooth scrolling
   ============================================================ */ html  {
  scroll-behavior: smooth;
}
/* ============================================================
   Base typography
   ============================================================ */ body  {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: var(--text-size-reg);
  letter-spacing: -0.02em;
}
h1, h2, h3, h4  {
  font-family: 'Archivo', 'Inter', sans-serif;
  margin: 0;
  line-height: 1.1;
  color: var(--color-heading);
}
p  {
  margin: 0;
}
a  {
  color: inherit;
}
img  {
  display: block;
  max-width: 100%;
}
/* Eyebrow label */ .eyebrow  {
  font-family: 'Inter', sans-serif;
  font-weight: var(--font-weight-medium);
  font-size: var(--text-size-lg);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}
/* Big section heading */ .section-title  {
  font-family: 'Archivo', sans-serif;
  font-weight: var(--font-weight-xbold);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.018em;
  color: var(--color-heading);
}
.section-title em  {
  font-style: italic;
}
.section-intro  {
  font-size: var(--text-size-lg);
  color: var(--color-gray);
  max-width: 70ch;
}
/* On dark sections */ .is-dark, .is-dark .section-title  {
  color: #fff;
}
.is-dark .eyebrow  {
  color: var(--color-sky-light);
}
.is-dark .section-intro  {
  color: #f3f3f3;
}
/* ============================================================
   Buttons
   ============================================================ */ .btn  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: var(--font-weight-medium);
  font-size: var(--text-size-lg);
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  cursor: pointer;
}
.btn-blue  {
  background: var(--color-blue);
  color: #fff;
}
.btn-blue:hover  {
  background: var(--color-blue-dark);
}
.btn-navy  {
  background: var(--color-navy);
  color: #fff;
}
.btn-navy:hover  {
  background: var(--color-navy-dark);
}
/* ============================================================
   Checklist (tick + text)
   ============================================================ */ .checklist  {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.checklist li  {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-size-lg);
  color: var(--color-gray);
}
.checklist svg  {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--color-blue);
}
.is-dark .checklist li  {
  color: #f3f3f3;
}
.is-dark .checklist svg  {
  color: var(--color-sky);
}


 /** Content Section Styles **/ 

.content-section-2211  {
  &.content-section  {
    background: #fff;
    border-bottom: 1px solid var(--color-line);
  }
  .content-section-inner  {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .header-topbar  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 32px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-line);
  }
  .header-locations  {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
  }
  .header-locations span, .header-phone  {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-size-reg);
    color: var(--color-charcoal);
    text-decoration: none;
  }
  .header-locations svg, .header-phone svg  {
    width: 18px;
    height: 18px;
    color: var(--color-navy);
  }
  .header-phone  {
    font-weight: var(--font-weight-semibold);
    color: var(--color-navy);
    white-space: nowrap;
  }
  .header-main  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
  }
  .header-logo img  {
    height: 56px;
    width: auto;
  }
  .header-cta  {
    white-space: nowrap;
  }
  @media (max-width: 1023px)  {
    .header-main  {
      gap: 16px;
    }
  }
  @media (max-width: 767px)  {
    .header-main  {
      flex-wrap: wrap;
    }
  }
}
.content-section-2212  {
  &.content-section  {
    color: #fff;
  }
  .content-section-inner  {
    padding-top: 72px;
    padding-bottom: 36px;
  }
  .footer-top  {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px 80px;
    align-items: start;
    padding-bottom: 48px;
  }
  .footer-logo img  {
    width: 220px;
    height: auto;
  }
  .footer-col h4  {
    font-family: 'Inter', sans-serif;
    font-weight: var(--font-weight-semibold);
    font-size: var(--text-size-xl);
    color: #fff;
    margin-bottom: 22px;
  }
  .footer-col ul  {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
  }
  .footer-col a  {
    text-decoration: none;
    color: rgba(255,255,255,0.82);
    font-size: var(--text-size-lg);
  }
  .footer-col a:hover  {
    color: #fff;
  }
  .footer-contact  {
    display: grid;
    gap: 16px;
  }
  .footer-contact .footer-line  {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.82);
  }
  .footer-contact svg  {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
    color: rgba(255,255,255,0.6);
  }
  .footer-contact a  {
    text-decoration: none;
    color: rgba(255,255,255,0.82);
  }
  .footer-bottom  {
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .footer-bottom p  {
    color: rgba(255,255,255,0.7);
    font-size: var(--text-size-reg);
  }
  .footer-bottom a  {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
  }
  .footer-bottom a:hover  {
    color: #fff;
    text-decoration: underline;
  }
  @media (max-width: 1023px)  {
    .footer-top  {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 767px)  {
    .footer-top  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2213  {
  &.content-section  {
    background: linear-gradient(90deg, rgba(8,7,8,0.9) 0%, rgba(8,7,8,0.62) 42%, rgba(8,7,8,0.18) 100%), url('/site-assets/images/hero.jpg') center / cover no-repeat;
    color: #fff;
    min-height: 78vh;
    display: flex;
    align-items: center;
  }
  .content-section-inner  {
    width: 100%;
  }
  .hero-inner  {
    max-width: 60rem;
  }
  .eyebrow  {
    color: var(--color-sky-light);
  }
  h1  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-xbold);
    font-size: clamp(2rem, 6.5vw, 4rem);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 20ch;
    overflow-wrap: break-word;
  }
  h1 em  {
    font-style: italic;
  }
  .hero-lede  {
    font-size: var(--text-size-lg);
    color: rgba(255,255,255,0.9);
    max-width: 46rem;
    margin-top: 24px;
  }
  .hero-trusted  {
    margin-top: 40px;
  }
  .hero-trusted-label  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    color: var(--color-sky);
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }
  .hero-logos  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  .trusted-logo  {
    display: inline-block;
    height: 40px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  .hero-cta  {
    margin-top: 36px;
  }
}
.content-section-2214  {
  .smarter-row  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .smarter-row + .smarter-row  {
    margin-top: 64px;
  }
  .smarter-media img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }
  .smarter-copy h2  {
    margin-bottom: 18px;
  }
  .smarter-copy p:not(.eyebrow)  {
    color: var(--color-gray);
    font-size: var(--text-size-lg);
  }
  .smarter-copy .checklist  {
    margin-top: 24px;
  }
  .smarter-copy .checklist li  {
    color: var(--color-blue);
  }
  .smarter-stat  {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: var(--color-blue);
    color: #fff;
    padding: 24px 32px;
    border-radius: 12px;
  }
  .smarter-stat .stat-icon  {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  .smarter-stat .stat-label  {
    font-size: var(--text-size-xl);
    text-transform: uppercase;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    max-width: 15ch;
    color: #fff;
  }
  .smarter-stat .stat-figure  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-xbold);
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    line-height: 1;
    color: #fff;
    margin-left: 4px;
  }
  @media (max-width: 1023px)  {
    .smarter-row  {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
  @media (max-width: 767px)  {
    .smarter-stat  {
      width: 100%;
    }
  }
}
.content-section-2215  {
  .capability-head  {
    text-align: center;
    max-width: 62rem;
    margin: 0 auto 48px;
  }
  .capability-head .eyebrow, .capability-head .section-title  {
    text-align: center;
  }
  .capability-head .section-intro  {
    margin: 18px auto 0;
    color: #BABABA;
  }
  .capability-cards  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .cap-card  {
    background: var(--color-ink-card);
    border-radius: 20px;
    overflow: hidden;
  }
  .cap-card-media img  {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
  .cap-card-body  {
    padding: 30px;
  }
  .cap-card-body h3  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-size-4xl);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
  }
  .cap-card-body .cap-card-sub  {
    color: #f3f3f3;
    font-size: var(--text-size-lg);
    margin-bottom: 22px;
  }
  .cap-card-body .checklist li  {
    color: #f3f3f3;
  }
  .capability-table  {
    margin-top: 30px;
    background: var(--color-ink-card);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1px 1fr;
    gap: 40px;
  }
  .capability-table .table-divider  {
    background: rgba(255,255,255,0.12);
  }
  .capability-table h3  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-size-3xl);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
  }
  .capability-table .table-cols  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
  }
  .capability-table .checklist li  {
    color: #f3f3f3;
  }
  @media (max-width: 1023px)  {
    .capability-cards  {
      grid-template-columns: 1fr;
    }
    .capability-table  {
      grid-template-columns: 1fr;
    }
    .capability-table .table-divider  {
      display: none;
    }
  }
}
.content-section-2216  {
  .process-head  {
    text-align: center;
    margin-bottom: 56px;
  }
  .process-head .eyebrow, .process-head .section-title  {
    text-align: center;
  }
  .process-steps  {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
  }
  .process-step  {
    text-align: center;
    position: relative;
  }
  .process-num  {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    border-radius: 10px;
    background: var(--color-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-size-4xl);
    position: relative;
    z-index: 1;
  }
  .process-step h3  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-size-3xl);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
  }
  .process-step p  {
    color: var(--color-gray);
    font-size: var(--text-size-reg);
  }
  @media (max-width: 1023px)  {
    .process-steps  {
      grid-template-columns: repeat(2, 1fr);
      gap: 36px;
    }
  }
  @media (max-width: 767px)  {
    .process-steps  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2217  {
  .advantage-head  {
    text-align: center;
    max-width: 62rem;
    margin: 0 auto 56px;
  }
  .advantage-head .eyebrow, .advantage-head .section-title  {
    text-align: center;
  }
  .advantage-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .adv-card  {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.10);
    padding: 34px;
  }
  .adv-icon  {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 24px;
  }
  .adv-card h3  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-size-3xl);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.2;
    border-top: 1px solid var(--color-line);
    padding-top: 24px;
  }
  .adv-card p  {
    color: var(--color-gray);
    font-size: var(--text-size-reg);
  }
  @media (max-width: 1023px)  {
    .advantage-grid  {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px)  {
    .advantage-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2218  {
  .carousel-head  {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
  }
  .carousel-nav  {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .carousel-arrow  {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--color-navy);
    background: #fff;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-arrow svg  {
    width: 22px;
    height: 22px;
  }
  .carousel-arrow:hover  {
    background: var(--color-navy);
    color: #fff;
  }
  .industries-intro  {
    color: var(--color-gray);
    font-size: var(--text-size-lg);
    margin-bottom: 36px;
    max-width: 70ch;
  }
  /* The core slider's wrapper + track clip overflow, which chops the cards'
   40px box-shadow glow on every side. Let the glow render by removing the
   wrapper clip and giving the (still horizontally-scrolling) track generous
   padding so the shadow has room to fade out inside the scroll area. */ .core-content-slider  {
    overflow: visible;
    padding-bottom: 8px;
  }
  .slider-track  {
    overflow-x: auto;
    overflow-y: visible;
    padding: 30px 30px 40px;
    margin: -30px -30px -10px;
  }
  .industry-card  {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.10);
    overflow: hidden;
    height: 100%;
  }
  .industry-card .industry-media img  {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }
  .industry-card .industry-body  {
    padding: 28px;
  }
  .industry-card h3  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-size-3xl);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 20px;
    min-height: 2.3em;
  }
  .industry-card .checklist li  {
    font-size: var(--text-size-reg);
  }
  .industry-dummy .industry-tag  {
    display: inline-block;
    font-size: var(--text-size-2xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-blue);
    background: var(--color-gray-light);
    border-radius: 4px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }
  @media (max-width: 767px)  {
    .carousel-head  {
      flex-direction: column;
      align-items: flex-start;
    }
  }
}
.content-section-2219  {
  .self-assessment-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .self-assessment-media img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    min-height: 420px;
    aspect-ratio: 1 / 1;
  }
  .self-assessment-copy h2  {
    margin-bottom: 18px;
  }
  .self-assessment-copy .lede  {
    color: #bababa;
    font-size: var(--text-size-lg);
    margin-bottom: 28px;
  }
  .self-assessment-copy .closing  {
    color: #bababa;
    font-size: var(--text-size-lg);
    margin: 28px 0;
  }
  @media (max-width: 1023px)  {
    .self-assessment-grid  {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
}
.content-section-2220  {
  .reviews-head  {
    text-align: center;
    margin-bottom: 48px;
  }
  .reviews-head .eyebrow, .reviews-head .section-title  {
    text-align: center;
  }
  .review-card  {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(26,26,26,0.10);
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .review-stars  {
    display: flex;
    gap: 4px;
    color: var(--color-gold);
    margin-bottom: 22px;
  }
  .review-stars svg  {
    width: 22px;
    height: 22px;
  }
  .review-quote  {
    font-size: var(--text-size-3xl);
    color: var(--color-gray-soft);
    line-height: 1.5;
    font-weight: var(--font-weight-normal);
  }
  .review-divider  {
    height: 1px;
    background: var(--color-line);
    margin: 26px 0 20px;
  }
  .review-name  {
    font-family: 'Inter', sans-serif;
    font-weight: var(--font-weight-medium);
    font-size: var(--text-size-xl);
    color: #000;
  }
  .core-content-slider  {
    overflow: visible;
  }
  .slider-track  {
    overflow-y: visible;
    padding: 30px 30px 40px;
    margin: -30px -30px -10px;
  }
  .slider-dots  {
    justify-content: center;
    margin-top: 24px;
  }
  .slider-dot  {
    background: #d0d5dd;
    width: 10px;
    height: 10px;
  }
  .slider-dot.active  {
    background: var(--color-navy);
  }
  @media (max-width: 767px)  {
    .review-quote  {
      font-size: var(--text-size-xl);
    }
  }
}
.content-section-2221  {
  .locations-grid  {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: center;
  }
  .locations-copy h2  {
    margin: 14px 0 22px;
  }
  .locations-copy p:not(.eyebrow)  {
    color: var(--color-gray);
    font-size: var(--text-size-lg);
  }
  .location-cards  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .location-card  {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .location-card img  {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .location-card .location-body  {
    padding: 20px;
  }
  .location-card h3  {
    font-family: 'Archivo', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-size-2xl);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--color-heading);
    margin-bottom: 8px;
  }
  .location-card p  {
    color: var(--color-gray);
    font-size: var(--text-size-reg);
  }
  @media (max-width: 1023px)  {
    .locations-grid  {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .location-cards  {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 767px)  {
    .location-cards  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2222  {
  background: linear-gradient(rgba(8,7,8,0.82), rgba(8,7,8,0.82)), url('/site-assets/images/cta-bg.jpg') center / cover no-repeat;
  &.content-section  {
    text-align: center;
  }
  .content-section-inner > *  {
    margin-left: auto;
    margin-right: auto;
  }
  h2  {
    margin: 8px auto 20px;
    max-width: 22ch;
  }
  .cta-lede  {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-size-lg);
    max-width: 48rem;
  }
  .btn  {
    margin-top: 32px;
  }
  .cta-contact  {
    margin-top: 26px;
    color: rgba(255,255,255,0.9);
    font-size: var(--text-size-lg);
  }
  .cta-contact a  {
    color: #fff;
    text-decoration: underline;
  }
  .cta-contact .core-eml-reveal  {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    font-size: var(--text-size-lg);
  }
}
