<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --pri-color: #011b35;
  --pri-color-alpha: #011b35d8;
  --pri-color-alpha-light: #011b3580;
  --sec-color: #00f2f2;
  --sec-color-alpha: #00f2f260;
  --ter-color: #677686;
  --ter-color-alpha: #67768660;
  --hover-color: #fab714;
  --hover-color-alpha: #fab71460;
  --hover-color-dark: #7e691a;

  --navbar-height: 70px;
  --inverse-navbar-height: calc(100vh - var(--navbar-height));
  --navbar-transition-time: 0.2s;
  --stripe-width: 13.125rem;

  --fs-header: 3.7rem;
  --fs-subheader: 2.7rem;
  --fs-showcase-content: 1.5rem;
  --fs-smalltext: 0.6rem;

  --fs-cta: 1.3rem;
  --fs-ct: 1.25rem;

  --fs-xxl: 8.5rem;
  --fs-xl: 6rem;
  --fs-l: 4rem;
  --fs-m: 2.5rem;
  --fs-s: 2rem;
  --fs-xs: 1.2rem;
  --fs-xxs: 1.09rem;
  --fs-xxxs: 0.8rem;

  --carousel-timing: cubic-bezier(0.62, 0.32, 0.12, 0.98);
  --showcase-scaling: 0.7;
  --capabilities-and-solutions-scaling: 1;
  --chip-size: 1.2rem;
  --chip-size-large: 2rem;
  --solutions-chip-size: 1rem;
  --top-right-chip: polygon(
    0% 0%,
    calc(100% - var(--chip-size)) 0%,
    100% var(--chip-size),
    100% 105%,
    0% 105%
  );
  --top-right-chip-large: polygon(
    0% 0%,
    calc(100% - var(--chip-size-large)) 0%,
    100% var(--chip-size-large),
    100% 100%,
    0% 100%
  );
  --no-chip: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

  --blue-card-grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
}

/* For Chrome, Safari, and Edge Scrollbars */

::-webkit-scrollbar-track {
  background-color: lightgray;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #00f2f2;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #00d8db;
}

* {
  font-family: "Helvetica", "Arial", sans-serif;
  scroll-padding-top: calc(var(--navbar-height) + 1rem);
  scroll-behavior: smooth;
  line-height: 110%;
  box-sizing: border-box;
  background-repeat: repeat-x;
  /* For Firefox Scrollbars */
  scrollbar-width: thin;
  scrollbar-color: var(--sec-color) lightgray;
}

a:hover {
  text-decoration: none;
}

html {
  overflow-x: hidden;
  font-size: 15px;
}

@media (max-width: 1199px) {
  :root {
    --showcase-scaling: 0.7;
    --capabilities-and-solutions-scaling: 0.9;
  }
}

@media (max-width: 991px) {
  :root {
    --showcase-scaling: 0.6;
    --capabilities-and-solutions-scaling: 0.7;
  }

  html {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  :root {
    --showcase-scaling: 0.6;
    --capabilities-and-solutions-scaling: 1;
  }

  html {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  :root {
    --showcase-scaling: 1;
  }

  html {
    font-size: 12px;
  }
}

h2 {
  font-size: var(--fs-m);
  line-height: 2.4rem;
  letter-spacing: -0.1rem;
}

h3.sub-header {
  font-size: var(--fs-xs);
  font-weight: bold;
}

ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

hr.header-dots {
  background: url("/Images/dots-top.svg") var(--pri-color);
  height: 1.2rem;
  margin-top: -1rem;
  margin-bottom: 0rem;
  background-size: 120rem;
  background-position: center 1%;
  background-repeat: no-repeat;
  border: none;
}

hr.full-width-line {
  border-bottom: 0.125rem solid white;
  position: absolute;
  right: 0px;
  width: 100vw;
  margin: 0px;
  padding: 0px;
}

hr.blue-line {
  border-color: var(--pri-color);
  margin: 0 0 1rem;
}

.solid-page-header {
  background-color: var(--pri-color);
  padding: 0.95rem 0px 1.875rem;
  margin-bottom: 0.95rem;
}

.solid-page-header h2 &gt; span {
  padding: 0px 0.5rem;
  background-color: var(--sec-color);
  color: var(--pri-color);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: var(--fs-m);
}

select:hover {
  cursor: pointer;
}

.border-bottom-white {
  border-bottom: 0.125rem solid white;
}

.bg-pri {
  background-color: var(--pri-color);
}

.bg-ter {
  background-color: var(--ter-color);
}

.light-blue-highlight {
  color: var(--pri-color);
  background-color: var(--sec-color);
  padding: 0 0.15em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Navbar */

nav.txio-navbar {
  background-color: var(--pri-color);
  position: sticky;
  top: 0;
  z-index: 99;
  color: white;
  height: var(--navbar-height);
  border-bottom: 0.125rem solid white;
  transition: height var(--navbar-transition-time) ease-out;
}

.navbar-grid {
  display: grid;
  grid: auto / 1fr auto;
  grid-template-areas: "left menu";
  height: 100%;
}

.navbar-left {
  display: flex;
  align-items: center;
  grid-area: left;
  overflow-x: hidden;
}

.navbar-menu {
  grid-area: menu;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-menu &gt; button {
  background-color: #00000000;
  color: white;
  border: none;
  padding: 0px;
}

.navbar-menu &gt; button:focus {
  outline: none;
}

.navbar-menu &gt; button &gt; span {
  font-size: calc(var(--navbar-height) / 2);
  /* height: calc(var(--navbar-height) / 1) !important;
    width: calc(var(--navbar-height) / 1) !important; */
  /* transition: height var(--navbar-transition-time) ease-out, width var(--navbar-transition-time) ease-out */
  transition: font-size var(--navbar-transition-time) ease-out;
}

#menu-x {
  display: none;
}

.navbar-logo {
  height: calc(var(--navbar-height) / 2);
  transition: height var(--navbar-transition-time) ease-out;
}

/* Burger Nav */

#burger-nav {
  top: var(--navbar-height);
  z-index: 98;
  background-color: var(--pri-color);
  overflow-y: hidden;
  max-height: 0px;
  padding: 0px;
  border-bottom: 0.125rem solid white;
  transition: max-height var(--navbar-transition-time) ease-out,
    padding var(--navbar-transition-time) ease-out;
  /* Same parameters as txio-navbar */
}

.burger-nav-container {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: auto;
  gap: 0.95rem;
  padding-left: 1.55rem;
}

.burger-nav-column {
  flex: 1 1 0;
  padding: 0px 1.25rem;
  margin-bottom: 1.875rem;
  border-left: 0.125rem solid white;
}

.burger-nav-column.first {
  padding-left: 0px;
  border-left: none;
}

.burger-nav-title {
  display: block;
  font-weight: bold;
  font-size: var(--fs-xs);
  margin-bottom: 2.5rem;
  color: white;
}

.burger-nav-title.mb-small {
  margin-bottom: 0.95rem;
}

.burger-nav-column li {
  margin-bottom: 1rem;
}

.burger-nav-column li a {
  font-size: calc(var(--fs-xs) * 0.8);
  color: white;
  display: block;
  line-height: 0.95rem;
}

.burger-nav-column a:hover {
  color: var(--sec-color);
}

/* Homepage */

.homepage-carousel {
  overflow-x: hidden;
}

.stripe-page-header {
  background: repeating-linear-gradient(
    45deg,
    white,
    white var(--stripe-width),
    var(--pri-color) var(--stripe-width),
    var(--pri-color) calc(2 * var(--stripe-width))
  );
  padding: 1.25rem 0px;
  background-repeat: repeat-x;
  color: var(--pri-color);
  border-bottom: 0.125rem solid white;
  display: flex;
  position: relative;
  width: 500vw;
  transition: left 0.8s var(--carousel-timing);
  overflow-x: hidden;
}

.page-header-title {
  display: inline;
  /* vertical-align: middle; */
  width: auto;
  font-size: var(--fs-header);
  padding: 0rem 0.7rem 0px 0.6rem;
  margin-left: -0.625rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-color: var(--sec-color);
  line-height: calc(var(--fs-header) * 1.1);
  clip-path: polygon(30%, 0% 100%, 0% 100%, 100% 30%, 100%);
}

@media (max-width: 500px) {
  .stripe-page-header .page-header-title &gt; span {
    font-size: var(--fs-subheader);
    line-height: calc(var(--fs-subheader) * 1.1);
  }
}

.page-header-subtitle span {
  font-size: var(--fs-subheader);
  padding: 0rem 0.7rem 0px 0.6rem;
  margin-left: -0.6rem;
  background-color: var(--sec-color);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.page-subheader {
  overflow-x: hidden;
  background-color: var(--pri-color);
  padding: 0.95rem 0px;
  color: var(--hover-color);
  display: flex;
  position: relative;
  width: 500vw;
  transition: left 0.8s var(--carousel-timing);
}

.subheader-text {
  margin: 0px;
  font-size: var(--fs-cta);
}

.cta-padding {
  padding: 0.625rem 0.95rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 7px;
}

.cta-padding2 {
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 7px;
}

.cta-link {
  color: var(--hover-color) !important;
  display: flex;
  justify-content: flex-start;
  gap: 0.625rem;
  font-size: var(--fs-cta);
  font-weight: bold;
  margin-bottom: 0px;
  position: relative;
  transition: color var(--navbar-transition-time) ease-in;
  cursor: pointer;
  text-decoration: none !important;
  border-top: 0.125rem solid white;
}

.cta-link svg {
  height: 1.1rem;
  width: 1.1rem;
  fill: var(--hover-color);
  transition: fill var(--navbar-transition-time) ease-in;
  margin-top: auto;
  margin-bottom: auto;
}

.products-subpage-card-cta-section.cta-link {
  color: var(--hover-color);
}

.products-subpage-card-cta-section.cta-link svg {
  fill: var(--hover-color);
}

.cta-link:hover {
  color: black !important;
}

.cta-link:hover svg {
  fill: black;
  z-index: 50;
}

.cta-link span {
  z-index: 50;
}

.showcase-grid {
  display: grid;
  grid: repeat(3, 1fr) auto / repeat(3, 1fr);
  grid-template-areas:
    "sc1  sc2  sc3 "
    "sc4  sc5  sc6 "
    "sc7  sc8  sc9 "
    "sc10 sc10 sc10";
  margin: 1.55rem -0.625rem;
  gap: 0px;
}

.showcase-grid-card-blue {
  background-color: var(--pri-color);
  background-position: bottom left;
  background-size: 100%;
  padding: 0.8rem;
  color: var(--sec-color);
}

.showcase-grid-card-white {
  background-color: white;
  padding: 0.8rem;
}

.sc1 {
  background-image: url("Images/graph-bars.svg");
}

.sc2 {
  background-image: url("Images/world-map2.svg");
  background-size: 150%;
  background-position-y: 30%;
}

.sc3 {
  background-image: url("Images/products.svg");
  background-repeat: no-repeat;
}

.sc4 {
  background-image: url("Images/246.svg");
  background-repeat: no-repeat;
}

.sc5 {
  background-image: url("Images/currency.svg"), url("Images/currency.svg");
  background-size: 115%;
  background-position-y: 110%;
  background-repeat: repeat-x;
}

.sc6 {
  background-image: url("Images/uptime.svg");
  background-position-y: 110%;
  background-repeat: no-repeat;
}

.sc4,
.sc5,
.sc6 {
  border-top: 0.0625rem solid white;
}

.sc1,
.sc2,
.sc4,
.sc5 {
  border-right: 0.0625rem solid white;
}

.sc1,
.sc2,
.sc3 {
  border-bottom: 0.0625rem solid white;
}

.sc2,
.sc3,
.sc5,
.sc6 {
  border-left: 0.0625rem solid white;
}

.sc7,
.sc8,
.sc9 {
  border-top: 0.125rem solid var(--pri-color);
  background-image: url("/Images/dots1.svg");
  background-position-y: 100%;
  background-clip: content-box;
  background-size: 140%;
}

.sc7,
.sc8 {
  border-right: 0.0625rem solid var(--pri-color);
}

.sc9 {
  border-right: 0.125rem solid var(--pri-color);
}

.sc8,
.sc9 {
  border-left: 0.0625rem solid var(--pri-color);
}

.sc7 {
  border-left: 0.125rem solid var(--pri-color);
}

.sc10 {
  grid-column: 1 / span 3;
  border: none;
  padding: 0px;
  border-top: 0.125rem solid var(--pri-color);
}

.showcase-card-title {
  font-size: calc(var(--fs-xxl) * var(--showcase-scaling));
  /* margin-top: calc(-1.75rem * var(--showcase-scaling)); */
  line-height: calc(var(--fs-xxl) * var(--showcase-scaling));
}

.showcase-card-title-small {
  font-size: calc(var(--fs-l) * var(--showcase-scaling) * 0.8);
  padding-bottom: calc(0.625rem * var(--showcase-scaling));
  font-weight: bold;
}

.showcase-card-title-plus {
  vertical-align: text-top;
  font-size: calc(var(--fs-l) * var(--showcase-scaling));
  line-height: calc(var(--fs-l) * var(--showcase-scaling) * 1.3);
}

.showcase-card-title-mini {
  vertical-align: text-top;
  font-size: calc(var(--fs-l) * var(--showcase-scaling));
  line-height: calc(var(--fs-l) * var(--showcase-scaling) * 1.8);
}

.showcase-card-title-1 {
  letter-spacing: calc(-0.9rem * var(--showcase-scaling));
  margin-left: calc(-0.5rem * var(--showcase-scaling));
}

.showcase-card-content {
  font-size: calc(var(--fs-showcase-content) * var(--showcase-scaling));
  margin-top: calc(-1.55rem * var(--showcase-scaling));
  margin-bottom: calc(5rem * var(--showcase-scaling));
  font-weight: bold;
}

.capabilities-and-solutions-section {
  background-color: var(--pri-color);
}

.section-header-white {
  color: white;
  font-size: var(--fs-m);
  background-color: var(--pri-color);
  padding: 1.25rem 0px;
  margin: 0px;
}

.capabilities-and-solutions-grid {
  display: grid;
  grid: auto auto / repeat(6, 1fr);
  grid-template-areas:
    "c1 c2 c3 c4 c5 c6"
    "t1 t1 t1 t2 t2 t2";
  gap: calc(0.625rem * var(--capabilities-and-solutions-scaling));
  margin-top: calc(1.875rem * var(--capabilities-and-solutions-scaling));
  padding-bottom: calc(2rem * var(--capabilities-and-solutions-scaling));
}

.capabilities-and-solutions-grid-card {
  background-color: var(--sec-color);
  padding: calc(0.3rem * var(--capabilities-and-solutions-scaling))
    calc(0.95rem * var(--capabilities-and-solutions-scaling))
    calc(1.25rem * var(--capabilities-and-solutions-scaling));
  clip-path: var(--top-right-chip);
}

.capabilities-and-solutions-grid-card:hover {
  background-color: var(--hover-color);
}

.capabilities-and-solutions-card-title {
  font-size: calc(var(--fs-xl) * var(--capabilities-and-solutions-scaling));
  font-weight: normal;
  color: black;
  margin-bottom: calc(6.25rem * var(--capabilities-and-solutions-scaling));
}

.capabilities-and-solutions-card-content {
  font-weight: bold;
  color: black;
  margin-bottom: 0px;
  font-size: calc(var(--fs-xs) * var(--capabilities-and-solutions-scaling));
  line-height: calc(
    var(--fs-xs) * var(--capabilities-and-solutions-scaling) * 0.85
  );
}

.capabilities-and-solutions-grid-text {
  color: white;
  font-size: var(--fs-xs);
  margin: 0.625rem 1.25rem 0rem;
}

.security-products-background {
  background-color: var(--ter-color);
  margin: 1.55rem 0px;
}

.security-products-background .container {
  padding: 0px 0.3rem;
  background-color: white;
}

.security-products-background .col-12 {
  padding: 0px 0.3rem;
}

.security-section,
.products-section {
  background-color: var(--pri-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  max-height: 20rem;
}

.security-products-section-body {
  padding: 1.25rem;
  color: white;
  font-size: var(--fs-xs);
  margin-bottom: auto;
}

.security-section .cta-link,
.products-section .cta-link {
  border-top: 0.125rem solid white;
}

.dark-yellow-slider,
.yellow-slider {
  width: 0px;
  position: absolute;
  height: calc(100%);
  /* margin: -0.625rem -0.95rem; */
}

.dark-yellow-slider {
  background-color: var(--hover-color-alpha);
  transition: width var(--navbar-transition-time) ease-out;
}

.yellow-slider {
  background-color: var(--hover-color);
  transition: width var(--navbar-transition-time) ease-in;
}

.products-subpage-card-cta-section.cta-link .dark-yellow-slider {
  background-color: var(--hover-color-alpha);
}

.products-subpage-card-cta-section.cta-link .yellow-slider {
  background-color: var(--hover-color);
}

.cta-link:hover &gt; .dark-yellow-slider,
.products-subpage-card-cta-section.cta-link:hover .dark-yellow-slider {
  width: 70%;
}

.cta-link:hover &gt; .yellow-slider,
.products-subpage-card-cta-section.cta-link:hover .yellow-slider {
  width: 60%;
}

.featured-card-cta-section:hover .dark-yellow-slider {
  width: 90%;
}

.featured-card-cta-section:hover .yellow-slider {
  width: 75%;
}

.dark-yellow-slider.carousel-cta-slider,
.yellow-slider.carousel-cta-slider {
  margin: 0px -0.25rem;
}

/* Carousel */

.carousel-buttons {
  background-color: var(--pri-color);
  padding: 0.625rem 0px;
  border-top: 0.125rem solid white;
}

.carousel-control-arrow,
.carousel-control-square {
  background-color: #00000000;
  border: none;
  padding: 0px;
  margin: 0.0625rem;
  fill: var(--ter-color);
}

.carousel-control-arrow {
  width: 0.5rem;
}

.carousel-control-square {
  width: 1rem;
}

.carousel-control-arrow:focus,
.carousel-control-square:focus {
  outline: none;
}

/* Footer */

footer {
  margin-top: 1.875rem;
}

.footer-dots {
  height: 1.25rem;
  width: 100vw;
  background-image: url("/Images/dots2.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  background-image: linear-gradient(
      var(--pri-color-alpha),
      var(--pri-color-alpha)
    ),
    url("Images/toronto-skyline.jpg");
  background-position: 50% 40%;
  background-size: 100vmax;
  padding: 1.25rem 3.125rem;
  height: 15.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 0.125rem solid white;
}

.contact-card {
  background: repeating-linear-gradient(
      -45deg,
      var(--pri-color),
      var(--pri-color) var(--stripe-width),
      var(--ter-color-alpha) var(--stripe-width),
      var(--ter-color-alpha) calc(2 * var(--stripe-width))
    )
    var(--pri-color);
  color: white;
  font-size: var(--fs-xs);
  padding: 1.55rem 0px;
}

.contact-card-row {
  display: flex;
  justify-content: space-between;
  color: white;
  width: 100%;
  font-size: var(--fs-xs);
  padding: 0px 1.55rem;
}

.contact-card a {
  color: white;
}

.contact-bold {
  font-weight: bold;
  font-size: var(--fs-xs);
}

.contact-card a {
  color: white;
}

.contact-card a:hover {
  color: var(--sec-color) !important;
}

.footer-logo {
  width: 9rem;
}

.footer-text {
  color: var(--ter-color);
  font-size: var(--fs-smalltext);
  position: absolute;
  bottom: 0.625rem;
  margin-bottom: 0px;
}

.footer-text a {
  color: var(--ter-color);
}

.footer-text a:hover {
  color: var(--sec-color);
}

.footer-right {
  right: 3.75rem;
}

.footer-left {
  left: 3.75rem;
}

/* Commonly used */

.striped-products-solutions-header {
  /* background: repeating-linear-gradient(-60deg,
            var(--pri-color) 0.00px,
            white 0.90px,
            white 10.00px,
            var(--pri-color) 10.90px,
            var(--pri-color) 16.00px); */
  /* background: var(--pri-color) url("/Images/chevron-small.svg");
    background-position-x: -350px;
    background-size: 200rem; */
  background: repeating-linear-gradient(
      45deg,
      var(--pri-color),
      var(--pri-color) var(--stripe-width),
      var(--ter-color-alpha) var(--stripe-width),
      var(--ter-color-alpha) calc(2 * var(--stripe-width))
    )
    var(--pri-color);
  padding: 1.25rem 0px 2rem;
  color: var(--pri-color);
  border-bottom: 0.125rem solid white;
  overflow-x: hidden;
}

.card-filler {
  background: repeating-linear-gradient(
    -60deg,
    var(--pri-color) 0px,
    white 0.9px,
    white 10px,
    var(--pri-color) 10.9px,
    var(--pri-color) 16px
  );
}

.solutions-products-title {
  background-color: var(--sec-color);
  font-size: var(--fs-header);
  padding: 0px 0.5rem;
  margin-left: -0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: var(--pri-color);
}

.solutions-products-subtitle {
  background-color: var(--sec-color);
  font-size: var(--fs-ct);
  padding: 0px 0.5rem;
  margin-left: -0.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: var(--pri-color);
  letter-spacing: 0px;
  font-weight: bold;
}

.featured-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
  padding: 1.55rem 0px;
  margin-bottom: 0.125rem;
}

.featured-card-wrapper {
  display: flex;
  flex-direction: column;
  background-color: white;
  color: black;
  clip-path: var(--top-right-chip);
  justify-content: space-between;
}

.featured-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.featured-card-cta-section {
  border: 0.2rem solid white;
  border-top: none;
  position: relative;
  background-color: white;
  font-size: var(--fs-cta);
  background-color: var(--pri-color);
}

.featured-card-title {
  font-size: var(--fs-m);
  margin-bottom: 0.95rem;
}

.featured-card-subtitle {
  font-size: var(--fs-xs);
}

.featured-card-content {
  font-size: var(--fs-xxs);
  margin-bottom: 0px;
}

.featured-card-cta-section &gt; span {
  z-index: 50;
  color: var(--hover-color);
  transition: color 0.1s ease-out;
}

.featured-card-cta-section &gt; svg {
  z-index: 50;
  fill: var(--hover-color);
  transition: fill 0.1s ease-out;
}

.featured-card-cta-section:hover &gt; span {
  color: black;
}

.featured-card-cta-section:hover &gt; svg {
  fill: black;
}

.subpage-body-section {
  background-color: var(--pri-color);
  padding: 1.25rem;
  margin: 1.25rem auto;
  clip-path: var(--top-right-chip-large);
}

.subpage-body-section.col-8 {
  margin: 1.25rem 1rem;
}

.subpage-body-title {
  padding: 0px;
  margin-bottom: 1.2rem;
}

.subpage-body-bullets {
  list-style-type: disc;
  padding-left: 1rem;
  padding-top: 1rem;
  color: white;
}

.subpage-body-bullets &gt; li {
  margin-bottom: 0.5rem;
}

.subpage-body-bullets &gt; li:last-child {
  margin-bottom: 0;
}

.related-products-grid-container {
  margin: 0 auto 1.5rem;
}

.related-products-grid {
  background-color: white;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: var(--blue-card-grid-template-columns);
  grid-auto-rows: 1fr;
  margin-bottom: 0.5rem;
}

.related-products-bottom {
  background-color: var(--pri-color);
  margin-bottom: 0.5rem;
}

.blue-card {
  background-color: var(--pri-color);
  color: white;
  padding: 0.8rem;
  display: flex;
  height: 16rem;
  flex-direction: column;
  justify-content: space-between;
}

.blue-card-title {
  font-weight: bold;
  font-size: var(--fs-ct);
  margin-bottom: 0px;
}

.blue-card-content {
  font-size: var(--fs-xxs);
  margin-bottom: 0px;
}

.blue-card:hover {
  background-color: var(--sec-color);
  color: black;
}

.dots-background {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-image: url("/Images/dots-gray.svg");
  background-repeat: no-repeat;
  background-size: 40rem;
  background-position: 50% 30%;
}

/* Products */

.products-body {
  margin: 2rem auto;
  background-color: white;
}

.products-body-text {
  color: white;
  background-color: var(--pri-color);
  padding: 1.5rem;
  font-size: var(--fs-xs);
  /* clip-path: var(--top-right-chip-large); */
}

.products-body-title {
  letter-spacing: initial;
  color: var(--hover-color);
  font-size: var(--fs-s);
}

.products-filter {
  background-color: var(--pri-color);
  display: flex;
  align-items: center;
  padding: 15px;
  column-gap: 30px;
}

.products-filter-text {
  display: inline;
  color: white;
  font-size: var(--fs-xs);
  margin: 0px;
  font-weight: bold;
}

.products-filter-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  /* Fallback color if gradients are not supported */
  background-image: url("/Images/select-arrow.svg");
  background-position: calc(100% - 0.625rem) 50%;
  background-repeat: no-repeat;
  background-size: 1rem;
  border: none;
  border-radius: 0px;
  color: black;
  font-size: inherit;
  margin: 0px;
  overflow: hidden;
  padding: 5px;
  padding-right: 50px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products-filter-dropdown:focus {
  outline: none;
}

.products-filter-results {
  display: grid;
  background-color: white;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: var(--blue-card-grid-template-columns);
  grid-auto-rows: 1fr;
  padding: 0.5rem 0rem;
}

.products-filter-bottom {
  background-color: var(--pri-color);
}

/* Products Subpages */

.products-subpage-header {
  background-color: var(--pri-color);
  padding: 0.95rem 0px 1.875rem;
  margin-bottom: 0.95rem;
}

.products-subpage-header h2 {
  margin-bottom: 0.3rem;
}

.products-subpage-header p {
  margin-bottom: 0px;
  padding-left: 0.625rem;
  color: white;
}

.products-subpage-title {
  font-size: var(--fs-subheader);
  padding: 0px 0.3rem;
  background-color: var(--sec-color);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.products-subpage-body {
  margin: 0px;
  background-color: var(--ter-color);
}

.products-subpage-body-container {
  padding: 0 1.5rem;
}

.products-subpage-grid {
  display: flex;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr; */
  gap: 0.5rem;
  background-color: white;
  padding: 0px 0.5rem;
}

.products-subpage-grid-card {
  min-width: 18.75rem;
  flex: 1 1 0px;
  background-color: var(--pri-color);
  display: flex;
  flex-direction: column;
}

.products-subpage-card-text-wrapper {
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.products-subpage-card-title {
  font-size: var(--fs-s);
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: var(--sec-color);
}

.products-subpage-card-subtitle {
  font-size: var(--fs-xs);
  margin-bottom: 1.25rem;
  color: white;
}

.products-subpage-card-content {
  font-size: var(--fs-xxs);
  color: white;
  margin-top: auto;
}

.products-subpage-card-cta-section {
  background-color: var(--pri-color) !important;
  border-top: 0.125rem solid white;
}

/* Module Subpages */

hr.module-benefits-hr {
  padding: 0px;
  margin: 3rem 0 0;
  border-top: 1px solid var(--ter-color);
}

.module-benefits-row.row {
  margin: 0px;
}

.module-benefits-title {
  background-color: lightgray;
  font-weight: bold;
  padding: 0.4rem;
}

.module-benefits-content {
  background-color: var(--sec-color);
  padding: 0.4rem;
}

/* Solutions */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.solutions-grid-card {
  background-color: var(--pri-color);
  font-size: var(--fs-xs);
  color: var(--sec-color);
  /* clip-path: polygon(0% var(--solutions-chip-size),
            var(--solutions-chip-size) 0%,
            calc(100% - var(--solutions-chip-size)) 0%,
            100% var(--solutions-chip-size),
            100% 100%,
            0% 100%); */
  clip-path: var(--top-right-chip-large);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solutions-grid-card-content {
  padding: calc(var(--solutions-chip-size) + 0.5rem);
  padding-bottom: 0px;
}

.solutions-card-title {
  font-size: var(--fs-m);
  margin-right: 1.875rem;
  line-height: 90%;
}

.solutions-card-list {
  font-size: var(--fs-xs);
  height: 5rem;
}

/* Solutions Subpages */

.solutions-subpage-header {
  background-color: var(--pri-color);
  padding: 0.95rem 0px 1.875rem;
  margin-bottom: 0.95rem;
}

.solutions-subpage-header h2 {
  margin-bottom: 0.3rem;
}

.solutions-subpage-header p {
  margin-bottom: 0px;
  padding-left: 0.625rem;
  color: white;
}

.solutions-subpage-title {
  font-size: var(--fs-subheader);
  padding: 0px 0.3rem;
  background-color: var(--sec-color);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.solutions-subpage-featured-modules {
  padding: 0 1.5rem;
  clip-path: var(--top-right-chip-large);
}

.solutions-subpage-recommended-modules-title {
  margin: 1.5rem auto 0;
}

/* About Us */

.about-us-header {
  background-color: var(--pri-color);
  padding: 0.95rem 0px 1.875rem;
  margin-bottom: 0.95rem;
}

.about-us-header-title {
  padding: 0px 0.5rem;
  background-color: var(--sec-color);
  color: var(--pri-color);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: var(--fs-m);
}

.about-us-body-copy h2 {
  font-size: var(--fs-subheader);
}

.about-us-body-copy p {
  font-size: var(--fs-xs);
}

.about-us-body-copy a {
  text-decoration: underline;
  color: inherit;
}

.about-us-body-copy a:hover {
  color: var(--ter-color);
}

.about-us-introduction {
  margin: 0.2rem 0 2rem 0;
  padding: 2.2rem;
}

.about-us-introduction-card {
  padding: 1rem;
  background-color: var(--pri-color);
  clip-path: var(--top-right-chip-large);
}

.about-us-introduction-title {
  padding-top: 0.5rem;
}

.about-us-introduction-content {
  margin-top: 1rem;
}

.about-us-introduction-card p {
  line-height: 115%;
  color: white;
}

.about-us-introduction-card p:last-child {
  margin-bottom: 0px;
}

/* 
.about-us-security-logos {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
    margin: 4rem 0;
}

.about-us-security-logos&gt;img {
    display: flex;
    flex: 1 1 0;
    width: 1rem
} */

.about-us-leadership {
  margin: 4rem 0;
  background-color: var(--pri-color);
  padding: 0.8rem 0.8rem 0.2rem;
}

#leadership {
  color: white;
}

.about-us-leadership-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-auto-rows: 1fr;
  margin: 2rem 0;
}

.about-us-leadership-grid-card {
  background-color: var(--sec-color);
  clip-path: var(--top-right-chip);
  padding: 1rem;
}

.about-us-leadership-grid-card p:last-child {
  margin-bottom: 0px;
}

/* Contact Us */

.contact-us-header {
  background-color: var(--pri-color);
  padding: 0.95rem 0px 1.875rem;
  margin-bottom: 0.95rem;
}

.contact-us-header-title {
  padding: 0px 0.5rem;
  background-color: var(--sec-color);
  color: var(--pri-color);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: var(--fs-m);
}

.contact-us-body {
  margin: 4rem 0;
  height: 300px;
}

.contact-us-body-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-us-body-card {
  background-color: var(--sec-color);
  clip-path: var(--top-right-chip);
  padding: 1rem;
  color: var(--pri-color);
}

.contact-us-body a {
  color: var(--pri-color);
}

.contact-us-body a:hover {
  color: var(--ter-color);
}

.contact-us-image {
  display: flex;
  width: 100%;
}

.contact-us-background {
  background-image: linear-gradient(var(--pri-color-alpha), #00000000),
    url("Images/toronto-skyline.jpg");
  background-position: 50% 20%;
  background-size: 150vmax;
}

.contact-us-background-2 {
  background-image: linear-gradient(
      var(--pri-color-alpha),
      var(--pri-color-alpha)
    ),
    url("Images/toronto-skyline.jpg");
  background-position: 48% 30%;
  background-size: 150vmax;
}

.contact-us-background-3 {
  background-image: linear-gradient(
      var(--pri-color-alpha),
      var(--pri-color-alpha-light)
    ),
    url("Images/toronto-skyline.jpg");
  background-position: 50% 35%;
  background-size: 100%;
}

.contact-us-background-4 {
  background-image: linear-gradient(var(--pri-color), #00000000),
    url("Images/toronto-skyline.jpg");
  background-position: 50% 20%;
  background-size: 150vmax;
}

/* Terms of Use / Privacy */

.terms-of-use-body,
.privacy-notice-body {
  margin: 4rem 0px;
  font-size: var(--fs-xxs);
}

.privacy-notice-body ul {
  list-style-type: disc;
  padding-left: 3rem;
  margin-bottom: 1rem;
}

.qa-box {
  padding-top: 1.875rem;
}

.qa-question {
  margin: 0.625rem 0px;
  font-weight: bold;
  font-size: var(--fs-xs);
}

.qa-answer {
  font-size: inherit;
}

/* Error page (public/error.html) */

.error-page-header {
  background-color: var(--pri-color);
  text-align: center;
  padding: 1.25rem 0px 1.875rem;
}

.error-page-title {
  padding: 0px 0.3rem;
  background-color: var(--sec-color);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.error-page-text {
  height: 50vh;
  padding: 1.875rem 0px;
  text-align: center;
}

.error-page-warning {
  margin: 1rem 0 2rem;
}

.error-page-back {
  font-size: var(--fs-xs);
}

.error-page-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  color: var(--ter-color);
  fill: var(--ter-color);
}

.error-page-link svg {
  width: 0.8rem;
  height: 0.8rem;
  fill: inherit;
}

.error-page-link:hover {
  color: var(--pri-color-alpha);
  fill: var(--pri-color-alpha);
}

/* Neontra Promo */

.neontra-promo-header {
  text-align: center;
}

.neontra-promo-fade-in-anchor {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1000;
}

.neontra-promo-fade-in-background {
  position: sticky;
  top: 0px;
  bottom: 100vh;
  background-color: #14014aff;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.neontra-promo-fade-in-image {
  width: 20vw;
  position: relative;
  bottom: 10vh;
}

.neontra-promo-fade-in-image-transition {
  width: 20vw;
  position: relative;
  bottom: 100vh;
  transition: bottom 1s cubic-bezier(0.61, -0.21, 0.66, 0.5);
}

.neontra-promo-fade-in-background-transparency {
  background-color: #00000000;
  transition: background-color 0.5s cubic-bezier(0.57, 0.17, 0.87, 0.51);
}

.neontra-promo-body-main-section {
  background-color: white;
  margin: 3rem 0;
}

.neontra-promo-body-subheader {
  text-align: left;
  margin-bottom: 0.5rem;
  padding: 0;
  font-size: 1.6rem;
  font-weight: bold;
}

.neontra-promo-body-cta {
  background-color: var(--pri-color);
  margin-top: 1.55rem;
}

.neontra-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  grid-auto-rows: 1fr;
  text-align: left;
  gap: 2rem 3rem;
}

.neontra-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 1fr);
  grid-auto-rows: 1fr;
  text-align: left;
  gap: 2rem 3rem;
}

.neontra-promo-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 1fr);
  grid-auto-rows: 1fr;
  text-align: left;
  gap: 2rem 3rem;
}

.neontra-promo-card {
  height: 100%;
  clip-path: var(--top-right-chip-large);
  background-color: var(--pri-color);
  padding: 1.5rem;
}

.neontra-promo-card-title {
  gap: 1.5rem;
  font-size: 2em;
  margin-bottom: 1rem;
  color: var(--sec-color);
  margin-right: 1.875rem;
  line-height: 90%;
}

.neontra-promo-card-content p {
  font-size: 1.2em;
  line-height: 105%;
  color: white;
  padding: 0px;
}

.neontra-promo-card-content p:last-child {
  margin: 0px;
}

.neontra-promo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  grid-auto-rows: 1fr;
  text-align: left;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.neontra-promo-benefits-card {
  height: 100%;
  clip-path: var(--top-right-chip-large);
  background-color: white;
  padding: 1.4rem;
  color: var(--pri-color);
}

.neontra-promo-benefits-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.neontra-promo-benefits-card-number {
  font-size: 5rem;
  line-height: 0.8;
  font-weight: bold;
  margin: 0;
}

.neontra-promo-benefits-card-title {
  font-size: 1.75rem;
  margin: 0;
  color: inherit;
  text-decoration: inherit;
}

.neontra-promo-benefits-card &gt; p {
  font-size: 1.1rem;
  margin: 1rem 0 0;
}

.neontra-promo-body-subtext-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.neontra-promo-security-body-text {
  font-size: var(--fs-xs);
  margin-bottom: 0.5rem;
}

.neontra-promo-security-column:last-of-type
  &gt; .neontra-promo-security-body-text {
  color: var(--pri-color);
}

.neontra-promo-download-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.neontra-promo-download-links &gt; .neontra-promo-card {
  flex: 1 1 0;
  height: auto;
  min-width: 18rem;
}

.neontra-promo-download-card-title {
  color: var(--sec-color);
}

.neontra-promo-download-icon-wrapper {
  display: flex;
  padding: 2rem 0;
  justify-content: center;
}

.neontra-promo-download-icon {
  height: 4rem;
}

.neontra-promo-download-big-image {
  width: 100%;
  margin: 2rem 0;
}

.neontra-promo-overview .neontra-promo-card {
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Careers */

.careers-body-copy h2 {
  font-size: var(--fs-subheader);
}

.careers-body-copy p {
  font-size: var(--fs-xs);
}

.careers-body-copy a {
  text-decoration: underline;
  color: inherit;
}

.careers-body-copy a:hover {
  color: var(--ter-color);
}

.careers-introduction {
  margin: 2.5rem 0;
}

.careers-introduction-card {
  padding: 1rem;
  background-color: var(--pri-color);
  clip-path: var(--top-right-chip-large);
  height: 100%;
}

.careers-introduction-card.bg-light-blue {
  background-color: var(--sec-color);
  color: var(--pri-color);
}

.careers-introduction .row {
  margin: 0px;
  gap: 1rem;
  height: 100%;
}

.careers-introduction .col {
  padding: 0px;
}

.careers-introduction-title {
  padding-top: 0.5rem;
  background-color: inherit;
}

.careers-introduction-card.bg-light-blue .careers-introduction-title {
  color: var(--pri-color);
}

.careers-introduction-card.bg-light-blue .full-width-line {
  border-color: var(--pri-color);
  background-color: var(--pri-color);
}

.careers-introduction-content {
  margin-top: 1rem;
}

.careers-introduction-card p {
  line-height: 115%;
  color: white;
}

.careers-introduction-card.bg-light-blue p {
  color: var(--pri-color);
}

.careers-introduction-card p:last-child {
  margin-bottom: 0px;
}

/* Press */

.press-article {
  margin-top: 3.5rem;
}

.press-publisher {
  text-align: left;
  font-weight: bold;
  margin: 0 1rem;
  padding: 0.15rem 0.39rem;
  font-size: 1.25rem;
  background-color: var(--sec-color);
  display: inline;
}

/* Other */

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.fading-in {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

@media (max-width: 991px) {
  .navbar-grid {
    grid: auto / 1fr auto;
    grid-template-areas: "left menu";
  }

  .navbar-right {
    display: none;
  }

  #burger-nav {
    overflow-y: auto;
  }

  .burger-nav-container {
    flex-direction: column;
    padding-left: 1.875rem;
  }

  .burger-nav-column.first {
    padding-left: 1.25rem;
    border-left: 0.125rem solid white;
  }

  .security-products-background .col-12:first-child {
    margin-bottom: 0.625rem;
  }

  .footer-left {
    left: 50%;
    bottom: 1.55rem;
    transform: translate(-50%, 0px);
  }

  .footer-right {
    right: 50%;
    white-space: nowrap;
    transform: translate(50%, 0px);
  }
}

@media (max-width: 767px) {
  .capabilities-and-solutions-grid {
    grid: 1fr 1fr auto auto / repeat(3, 1fr);
    grid-template-areas:
      "c1 c2 c3"
      "c4 c5 c6"
      "t1 t1 t1"
      "t2 t2 t2";
  }

  .contact-card-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }

  .contact-us-body-details {
    flex-direction: row;
    margin-bottom: 1.25rem;
  }

  .contact-us-body-card {
    flex: 1 1 auto;
  }
}

@media (max-width: 575px) {
  .showcase-grid {
    grid: repeat(9, 1fr) auto / 1fr;
    margin: 1.55rem 0px;
  }

  .sc1,
  .sc2,
  .sc3,
  .sc4,
  .sc5 {
    border-bottom: 0.0625rem solid white;
  }

  .sc2,
  .sc3,
  .sc4,
  .sc5,
  .sc6 {
    border-top: 0.0625rem solid white;
  }

  .sc1,
  .sc2,
  .sc3,
  .sc4,
  .sc5,
  .sc6,
  .sc10 {
    border-left: none;
    border-right: none;
  }

  .sc7,
  .sc8 {
    border-bottom: 0.0625rem solid var(--pri-color);
  }

  .sc8,
  .sc9 {
    border-top: 0.0625rem solid var(--pri-color);
  }

  .sc7,
  .sc8,
  .sc9 {
    border-left: 0.125rem solid var(--pri-color);
    border-right: 0.125rem solid var(--pri-color);
  }

  .sc10 {
    grid-column: auto;
  }
}

@media (max-width: 450px) {
  .capabilities-and-solutions-grid {
    grid: repeat(3, 1fr) auto auto / 1fr 1fr;
    grid-template-areas:
      "c1 c2"
      "c3 c4"
      "c5 c6"
      "t1 t1"
      "t2 t2";
  }

  .products-filter {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-us-body-details {
    flex-direction: column;
  }
}
</pre></body></html>