/* ==========================================================================
   UC DESIGN SYSTEM
   Layer order:
   1) Primitives
   2) Semantic tokens
   3) Typography tokens
   4) Base/reset
   5) Utilities / themes
   6) BEM components

   Intended to sit ON TOP of Bootstrap.
   Bootstrap provides grid/reboot; UC owns colour, typography and components.
   ========================================================================== */

:root {

  /* ==========================================================================
     1. PRIMITIVES
     ========================================================================== */

  /* Blue ramp */
  --uc-palette-blue-900: #001b2f; /* night blue */
  --uc-palette-blue-700: #005b85; /* ocean blue */
  --uc-palette-blue-500: #1794c9; /* UC blue */
  --uc-palette-blue-300: #2fc8ff; /* sky blue */
  --uc-palette-blue-100: #96e3ff; /* ice blue */

  /* Neutral */
  --uc-palette-grey-100: #f4f4f4; /* cloud grey */
  --uc-palette-grey-050: #f6f6f6; /* body light */
  --uc-palette-ink-900: #001924;

  /* Secondary hues */
  --uc-palette-orange-500: #ee5b2a;
  --uc-palette-mustard-500: #f7a430;
  --uc-palette-plum-500: #840431;
  --uc-palette-grape-500: #4b0348;
  --uc-palette-leaf-500: #105c6b;


  /* Tertiary / light hues */
  --uc-palette-orange-200: #feb982;
  --uc-palette-mustard-200: #ebff6c;
  --uc-palette-plum-200: #ffbae4;
  --uc-palette-grape-200: #dbb8ff;
  --uc-palette-leaf-200: #d6ffb9;


  /* ==========================================================================
     2. SEMANTIC / ROLE TOKENS
     Components should reference these rather than raw palette values
     wherever a semantic role exists.
     ========================================================================== */

  /* Brand */
  --uc-color-brand-primary: var(--uc-palette-blue-500);
  --uc-color-brand-primary-strong: var(--uc-palette-blue-900);
  --uc-color-brand-secondary: var(--uc-palette-orange-500);


  /* Action */
  --uc-color-action-default: var(--uc-palette-blue-500);
  --uc-color-action-hover: var(--uc-palette-blue-700);
  --uc-color-action-active: var(--uc-palette-blue-900);
  --uc-color-action-subtle: var(--uc-palette-blue-100);


  /* Feedback / status */
  --uc-color-status-warning: var(--uc-palette-mustard-500);
  --uc-color-status-critical: var(--uc-palette-plum-500);
  --uc-color-status-info: var(--uc-palette-leaf-500);


  /* Text */
  --uc-color-text-primary: var(--uc-palette-ink-900);
  --uc-color-text-secondary: var(--uc-palette-blue-900);
  --uc-color-text-inverse: var(--uc-palette-grey-050);
  --uc-color-text-link: var(--uc-color-action-default);
  --uc-color-text-link-hover: var(--uc-color-action-hover);


  /* Surface / background */
  --uc-color-surface-default: #ffffff;
  --uc-color-surface-subtle: var(--uc-palette-grey-100);
  --uc-color-surface-body: var(--uc-palette-grey-050);
  --uc-color-surface-inverse: var(--uc-palette-blue-900);


  /* Border */
  --uc-color-border-default: var(--uc-palette-grey-100);
  --uc-color-border-strong: var(--uc-palette-blue-500);


  /* Icon */
  --uc-color-icon-default: var(--uc-palette-blue-300);


  /* ==========================================================================
     3. TYPOGRAPHY TOKENS
     ========================================================================== */

  --uc-font-body: "Roboto", sans-serif;
  --uc-font-heading: "STIX Two Text", serif;

  --uc-font-weight-heading-serif: 500;
  --uc-font-weight-heading-sans: 600;

  --uc-font-size-body: 16px;
  --uc-line-height-body: 130%;

  /* Mobile-first heading scale */
  --uc-font-size-heading-xl: 50px;
  --uc-font-size-heading-lg: 40px;
  --uc-font-size-heading-md: 28px;
  --uc-font-size-heading-sm: 24px;
  --uc-font-size-heading-xs: 20px;

  --uc-letter-spacing-heading-xl: -1px;
  --uc-letter-spacing-heading-lg: -0.8px;
  --uc-letter-spacing-heading-md: -0.56px;
  --uc-letter-spacing-heading-sm: -0.48px;
  --uc-letter-spacing-heading-xs: -0.4px;

  --uc-line-height-heading-xl: 110%;
  --uc-line-height-heading-lg: 100%;
  --uc-line-height-heading-md: 110%;
  --uc-line-height-heading-sm: 110%;
  --uc-line-height-heading-xs: 110%;
}


/* ==========================================================================
   DESKTOP TYPOGRAPHY
   ========================================================================== */

@media (min-width: 992px) {
  :root {
    --uc-font-size-heading-xl: 70px;
    --uc-font-size-heading-lg: 48px;
    --uc-font-size-heading-md: 28px;
    --uc-font-size-heading-sm: 24px;
    --uc-font-size-heading-xs: 20px;

    --uc-letter-spacing-heading-xl: -1.4px;
    --uc-letter-spacing-heading-lg: -0.96px;
    --uc-letter-spacing-heading-md: -0.56px;
    --uc-letter-spacing-heading-sm: -0.48px;
    --uc-letter-spacing-heading-xs: -0.4px;

    --uc-line-height-heading-xl: 110%;
    --uc-line-height-heading-lg: 100%;
    --uc-line-height-heading-md: 110%;
    --uc-line-height-heading-sm: 110%;
    --uc-line-height-heading-xs: 110%;
  }
}


/* ==========================================================================
   4. BASE / RESET
   Bootstrap provides the base reset/reboot.
   UC provides semantic typography and colour defaults.
   ========================================================================== */

body {
  font-family: var(--uc-font-body);
  font-optical-sizing: auto;
  font-size: var(--uc-font-size-body);
  line-height: var(--uc-line-height-body);
  color: var(--uc-color-text-primary);
}

p {
  font-style: normal;
  font-weight: 400;
}

a {
  color: var(--uc-color-text-link);
  text-decoration: underline;
}

a:hover,
a:focus {
  color: var(--uc-color-text-link-hover);
}

h1,
h2 {
  font-family: var(--uc-font-heading);
  font-weight: var(--uc-font-weight-heading-serif);
}

h3,
h4,
h5,
h6 {
  font-family: var(--uc-font-body);
  font-weight: var(--uc-font-weight-heading-sans);
}


/* ==========================================================================
   5. HEADING COMPONENT + PAGE-CONTEXT MAPPING
   ========================================================================== */

/* XL */
.uc-heading--xl,
:where(.landing-page) h1 {
  font-size: var(--uc-font-size-heading-xl);
  line-height: var(--uc-line-height-heading-xl);
  letter-spacing: var(--uc-letter-spacing-heading-xl);
}

/* LG */
.uc-heading--lg,
:where(.landing-page) h2,
:where(.page-content) h1 {
  font-size: var(--uc-font-size-heading-lg);
  line-height: var(--uc-line-height-heading-lg);
  letter-spacing: var(--uc-letter-spacing-heading-lg);
}

/* MD */
.uc-heading--md,
:where(.landing-page) h3,
:where(.page-content) h2 {
  font-size: var(--uc-font-size-heading-md);
  line-height: var(--uc-line-height-heading-md);
  letter-spacing: var(--uc-letter-spacing-heading-md);
}

/* SM */
.uc-heading--sm,
:where(.landing-page) h4,
:where(.page-content) h3 {
  font-size: var(--uc-font-size-heading-sm);
  line-height: var(--uc-line-height-heading-sm);
  letter-spacing: var(--uc-letter-spacing-heading-sm);
}

/* XS */
.uc-heading--xs,
:where(.landing-page) h5,
:where(.page-content) h4,
:where(.page-content) h5 {
  font-size: var(--uc-font-size-heading-xs);
  line-height: var(--uc-line-height-heading-xs);
  letter-spacing: var(--uc-letter-spacing-heading-xs);
}

/* Inverse */
.uc-heading--inverse {
  color: var(--uc-color-text-inverse);
}


/* ==========================================================================
   6. BACKGROUND UTILITIES
   Background only.
   Text colour and contextual component behaviour are handled separately
   by .uc-theme-* classes.
   ========================================================================== */

.uc-bg-night {
  background-color: var(--uc-palette-blue-900);
}

.uc-bg-ocean {
  background-color: var(--uc-palette-blue-700);
}

.uc-bg-blue {
  background-color: var(--uc-palette-blue-500);
}

.uc-bg-sky {
  background-color: var(--uc-palette-blue-300);
}

.uc-bg-ice {
  background-color: var(--uc-palette-blue-100);
}

.uc-bg-orange {
  background-color: var(--uc-color-brand-secondary);
}

.uc-bg-subtle {
  background-color: var(--uc-color-surface-subtle);
}

.uc-bg-default {
  background-color: var(--uc-color-surface-default);
}


/* ==========================================================================
   7. CONTEXT / THEME
   Themes establish inherited text colour and contextual component defaults.
   Individual components can still override these values.
   ========================================================================== */

.uc-theme-dark {
  color: var(--uc-color-text-inverse);

  --uc-btn-bg: var(--uc-color-surface-default);
  --uc-btn-bg-hover: var(--uc-palette-blue-100);
  --uc-btn-color: var(--uc-color-brand-primary-strong);
  --uc-btn-border: transparent;
}

.uc-theme-light {
  color: var(--uc-color-text-primary);
}


/* ==========================================================================
   8. BUTTON COMPONENT
   ========================================================================== */

.uc-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--uc-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}


/* --------------------------------------------------------------------------
   Button shared properties

   Themes such as .uc-theme-dark can provide these values through inheritance.
   Buttons can also override them directly using data-theme.
   -------------------------------------------------------------------------- */

.uc-btn--primary {
  background-color: var(
    --uc-btn-bg,
    var(--uc-color-action-default)
  );

  color: var(
    --uc-btn-color,
    var(--uc-color-text-inverse)
  );

  border-color: var(
    --uc-btn-border,
    transparent
  );
}

.uc-btn--primary:hover,
.uc-btn--primary:focus {
  background-color: var(
    --uc-btn-bg-hover,
    var(--uc-color-action-hover)
  );

  color: var(
    --uc-btn-color,
    var(--uc-color-text-inverse)
  );
}


/* --------------------------------------------------------------------------
   Secondary / outline button
   -------------------------------------------------------------------------- */

.uc-btn--secondary {
  background-color: var(--uc-btn-bg, transparent);

  border-color: var(
    --uc-btn-border,
    var(--uc-color-action-default)
  );

  color: var(
    --uc-btn-color,
    var(--uc-color-action-default)
  );
}

.uc-btn--secondary:hover,
.uc-btn--secondary:focus {
  background-color: var(
    --uc-btn-bg-hover,
    var(--uc-color-action-subtle)
  );

  color: var(
    --uc-btn-color,
    var(--uc-color-action-default)
  );
}


/* ==========================================================================
   9. BUTTON COLOUR THEMES
   Independent of section/background.
   Named after the palette colour rather than the containing section.

   Example:
   <button class="uc-btn uc-btn--primary" data-theme="orange">
     Buy now
   </button>
   ========================================================================== */

.uc-btn[data-theme="blue"] {
  --uc-btn-bg: var(--uc-palette-blue-500);
  --uc-btn-bg-hover: var(--uc-palette-blue-700);
  --uc-btn-color: var(--uc-color-text-inverse);
}

.uc-btn[data-theme="ocean"] {
  --uc-btn-bg: var(--uc-palette-blue-700);
  --uc-btn-bg-hover: var(--uc-palette-blue-900);
  --uc-btn-color: var(--uc-color-text-inverse);
}

.uc-btn[data-theme="night"] {
  --uc-btn-bg: var(--uc-palette-blue-900);
  --uc-btn-bg-hover: #000d17;
  --uc-btn-color: var(--uc-color-text-inverse);
}

.uc-btn[data-theme="sky"] {
  --uc-btn-bg: var(--uc-palette-blue-300);
  --uc-btn-bg-hover: var(--uc-palette-blue-100);
  --uc-btn-color: var(--uc-palette-ink-900);
}

.uc-btn[data-theme="ice"] {
  --uc-btn-bg: var(--uc-palette-blue-100);
  --uc-btn-bg-hover: var(--uc-palette-blue-300);
  --uc-btn-color: var(--uc-palette-ink-900);
}

.uc-btn[data-theme="orange"] {
  --uc-btn-bg: var(--uc-palette-orange-500);
  --uc-btn-bg-hover: var(--uc-palette-orange-500);
  --uc-btn-color: var(--uc-palette-ink-900);
}

.uc-btn[data-theme="mustard"] {
  --uc-btn-bg: var(--uc-palette-mustard-500);
  --uc-btn-bg-hover: var(--uc-palette-mustard-500);
  --uc-btn-color: var(--uc-palette-ink-900);
}

.uc-btn[data-theme="plum"] {
  --uc-btn-bg: var(--uc-palette-plum-500);
  --uc-btn-bg-hover: var(--uc-palette-plum-500);
  --uc-btn-color: var(--uc-color-text-inverse);
}

.uc-btn[data-theme="grape"] {
  --uc-btn-bg: var(--uc-palette-grape-500);
  --uc-btn-bg-hover: var(--uc-palette-grape-500);
  --uc-btn-color: var(--uc-color-text-inverse);
}

.uc-btn[data-theme="leaf"] {
  --uc-btn-bg: var(--uc-palette-leaf-500);
  --uc-btn-bg-hover: var(--uc-palette-leaf-500);
  --uc-btn-color: var(--uc-color-text-inverse);
}

.uc-btn[data-theme="subtle"] {
  --uc-btn-bg: var( --uc-color-surface-subtle);
  --uc-btn-bg-hover: var(--uc-color-surface-subtle);
  --uc-btn-color: var(--uc-color-brand-primary-strong);
}


/* ==========================================================================
   10. SECONDARY BUTTON + COLOUR THEMES
   ========================================================================== */

/*
   For secondary buttons, the selected theme colour becomes the border/text
   colour while the button background remains transparent.
*/

.uc-btn--secondary[data-theme] {
  --uc-btn-border: var(--uc-btn-bg);
  --uc-btn-color: var(--uc-btn-bg);
  --uc-btn-bg: transparent;
}


/* ==========================================================================
   11. ANIMATED TEXT HIGHLIGHT
   ========================================================================== */

.uc-text-highlight {
  --uc-text-highlight-color: var(--uc-palette-blue-300);

  background: linear-gradient(
    to right,
    var(--uc-text-highlight-color) 0%,
    var(--uc-text-highlight-color) 100%
  );

  background-repeat: no-repeat;
  background-size: 0% 100%;
  animation: uc-text-highlight 0.8s ease-out forwards;
}

.uc-text-highlight--orange {
  --uc-text-highlight-color: var(--uc-palette-orange-500);
}

.uc-text-highlight--sky {
  --uc-text-highlight-color: var(--uc-palette-blue-300);
}

.uc-text-highlight--mustard {
  --uc-text-highlight-color: var(--uc-palette-mustard-500);
}

.uc-text-highlight--plum {
  --uc-text-highlight-color: var(--uc-palette-plum-200);
}

@keyframes uc-text-highlight {
  from {
    background-size: 0% 100%;
  }

  to {
    background-size: 100% 100%;
  }
}

  /* =========================================================
   HERO
   ========================================================= */

  .uc-hero {
    /*background-color: var(--section-bg);*/
  }
  .uc-hero__content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .uc-hero__title {
    color: var(--uc-color-text-primary);
    /*font-family: "STIX Two Text";*/
  }
   .info-title{
   
   }

  /* =========================================================
   CONTACT
   ========================================================= */

  .uc-contact {

  }
  .uc-contact__heading {
    color: #f6f6f6;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px; /* 100% */
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }
  .uc-contact__title {
  }
  .uc-contact__icon {
    color: #f6f6f6;
    margin-right: 0.3rem;
  }
  .uc-contact__text {
    color: #f6f6f6;
    font-family: "STIX Two Text";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px; /* 133.333% */
    letter-spacing: 1.333px;
  }
  .uc-contact__description {
  }
  .uc-contact__link {
    color: #f6f6f6;
  }
  .uc-contact__link:hover {
    color: #f6f6f6;
    font-weight: 700;
  }


.table-dark{
   background-color:var(--uc-color-surface-inverse);
   color: var(--uc-color-text-inverse);
}
.table{

}
.stix-two-text{
  font-family: var(--uc-font-heading);
  font-weight: 500;
}
  /* =========================================================
  NON GENERIC
   ========================================================= */
    /* Logo spacing */
.logo-downloads img {
    display: block;
    margin-bottom: 1rem;
    width:200px;
}

/* Download link */
.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #005B85;
    text-decoration: none;
    font-weight: 500;
}

.download-link:hover {
    text-decoration: underline;
    font-weight:700;
}

.download-link i {
    font-size: 1rem;
}
.colour-palette {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.colour-palette-secondary {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.colour-card {
  width: 100%;
  min-width: 0;
  min-height: 250px;
  border-radius:4px;
  /*background: #fff;*/
  box-sizing: border-box;
}

.colour-card .card-body {
  min-width: 0;
}

.colour-swatch {
  /*background: var(--bgcolor);*/
  /*color: var(--color);*/
}

dl > div {
     display: flex;
    gap: 0.2rem;
    align-items: baseline;
    font-weight: 500;
    justify-content: flex-start;
}

dl dd {
  margin: 0;
}

dl code {
  white-space: nowrap;
  font-size: 0.7rem;
 
}
dt{
     font-weight:500;
       font-size: 0.7rem;
}
@media (max-width: 576px) {
  .colour-palette {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .colour-card {
    min-height: 280px;
  }
}
@media (max-width: 991px) and (min-width: 575.9px) {
  .colour-palette {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .colour-secondary-palette {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .colour-card {
    min-height: 280px;
  }
}
.colour-palette .btn{
  padding-left: 0;
  padding-right: 0;
 font-size: 0.82rem;
  color:var(--color-text);
}