:root {
  --dark-translucent: #26262680;
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  height: 5rem;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem;
  display: grid;
}

.image {
  max-width: none;
  max-height: 100%;
}

.body {
  background-image: linear-gradient(158deg, #ccc, #fff);
  font-family: Figtree, sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
}

.body.primary {
  background-color: #fff;
  background-image: none;
}

.body.home {
  background-color: #000;
  background-image: url('../images/claronav_logo_dark.svg');
  background-position: 5% 0;
  background-repeat: no-repeat;
  background-size: auto 175vh;
}

.header {
  z-index: 5;
  grid-column-gap: 1svw;
  grid-row-gap: 1svw;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  object-fit: fill;
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 5rem;
  padding: 1svw;
  display: grid;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.header.white-back {
  background-color: #ffffff80;
}

.header.black-back {
  background-color: #00000080;
}

.claronav-logo {
  max-width: 100%;
  max-height: 100%;
}

.claronav-logo.mobile {
  display: none;
}

.link {
  color: #fff;
  text-align: center;
  letter-spacing: .2ch;
  font-family: Figtree, sans-serif;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
}

.link:hover {
  color: #4dabf7;
}

.link.mb1 {
  margin-bottom: 1svw;
}

.link.tal {
  text-align: left;
}

.link-2, .link-3 {
  text-align: center;
  font-family: Figtree, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.divisions {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 3svw;
  display: grid;
}

.division {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-backdrop-filter: brightness(150%) blur(10px);
  backdrop-filter: brightness(150%) blur(10px);
  background-image: linear-gradient(#cce8ff1a, #cce8ffb3 50%, #cce8ff);
  border: 1px #000;
  grid-template: "Title"
                 "Description" 1fr
                 / 1fr;
  grid-auto-columns: 1fr;
  max-width: 90svw;
  max-height: 30rem;
  transition: transform .3s, box-shadow .3s;
  display: grid;
  position: relative;
}

.division:hover {
  box-shadow: 0 0 30px 10px #e6f4ff4d;
}

.division:active {
  box-shadow: none;
  transform: scale(.97);
}

.division-description {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 2rem;
  display: block;
}

.division-title {
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 3rem 3rem 1rem;
}

.readable {
  color: #000;
  max-width: 45ch;
}

.readable.small {
  max-width: 20ch;
}

.readable.large {
  max-width: 60ch;
}

.readable.no-touch {
  pointer-events: none;
}

.container-2 {
  width: 100%;
  max-width: none;
  height: 100%;
}

.paragraph-2, .paragraph-3 {
  color: #fff;
  text-align: center;
}

.section {
  background-color: #4dabf7;
}

.slide {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  max-width: none;
  height: 40rem;
  margin-left: 0;
  margin-right: 0;
  padding: 3svw;
  display: grid;
}

.slider {
  background-color: #0000;
  height: auto;
}

.temp-image {
  background-image: url('../images/robotics.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  max-width: none;
}

.temp-image.clearance {
  background-image: url('../images/clearance.webp');
  background-position: 100%;
}

.temp-box {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(90deg, #404040, #bfbfbf00);
  width: 100%;
  max-width: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.temp-box.left {
  background-image: linear-gradient(90deg, #bfbfbf00, #404040);
}

.slide-b {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: ". . . . Image Image Image" minmax(0, 1fr)
                 ". . . . Image Image Image" minmax(0, 1fr)
                 ". . . . Image Image Image" minmax(0, 1fr)
                 ". . . . Image Image Image" minmax(0, 1fr)
                 ". . . . Image Image Image" minmax(0, 1fr)
                 / minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  max-width: none;
  height: 100%;
  position: relative;
}

.temp-image-b {
  aspect-ratio: auto;
  background-image: linear-gradient(135deg, #3d9977, #3d3f99 25%, #993d3d 54%, #3d9943 82%, #ff66eb);
  width: 50%;
  max-width: none;
  height: auto;
  position: absolute;
  top: 3svw;
  bottom: 3svw;
  right: 3svw;
}

.temp-box-b {
  background-image: linear-gradient(90deg, #bfbfbf00, #e6e6e6);
  width: 66%;
  max-width: none;
  height: 33%;
  position: absolute;
  top: 50%;
  left: 3svw;
}

.footer {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  background-image: linear-gradient(162deg, var(--dark-translucent) 50%, #0000);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 24rem;
  padding: 3svw;
  display: grid;
}

.image-2 {
  object-fit: fill;
}

.temp-image-r {
  background-image: url('../images/clearance.webp');
  background-position: 100%;
  background-size: cover;
  max-width: none;
  position: absolute;
  inset: 3svw 3svw 20% 40%;
}

.temp-box-r {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(90deg, #bfbfbf00, #e6e6e6);
  max-width: none;
  position: absolute;
  inset: 75% 20% 3svw 3svw;
}

.division-link {
  position: absolute;
  inset: 0%;
}

.social {
  grid-template-rows: auto minmax(0, auto);
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: flex-start center;
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
}

.company, .contact {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
}

.image-3 {
  color: #fff;
}

.image-4, .image-5, .image-6, .image-7, .image-8, .image-9, .image-10 {
  max-height: 100%;
}

.icon {
  filter: invert();
  width: 2rem;
  max-width: none;
}

.links {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.link---airy {
  color: #fff;
  text-align: center;
  letter-spacing: .1ch;
  font-family: Figtree, sans-serif;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
}

.link---airy:hover {
  color: #4dabf7;
}

.link---airy.mb1 {
  margin-bottom: 1svw;
}

.info {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.paragraph-4 {
  color: #fff;
  letter-spacing: .2ch;
  margin-top: 1svw;
  margin-bottom: 1svw;
  font-weight: 300;
}

.link---dark {
  color: #000;
  text-align: center;
  letter-spacing: .2ch;
  font-family: Figtree, sans-serif;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
}

.link---dark:hover {
  color: #4dabf7;
}

.link-block {
  max-height: 100%;
}

.image-link-block {
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-link-block.w--current {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.sidekicks {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 3svw;
  display: grid;
}

.sidekick {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: none;
  height: 500px;
  display: grid;
}

.image-11 {
  width: 100%;
  height: 100%;
}

.image-placeholder {
  background-image: url('../images/square-xmark-solid.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
}

.image-placeholder.small {
  aspect-ratio: 1;
  width: 20ch;
  height: auto;
}

.sidekick-description {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 3svw;
  display: flex;
}

.button {
  text-align: center;
  letter-spacing: .1ch;
  transition: color .3s, background-color .3s;
}

.button.primary {
  color: #fff;
  background-color: #4dabf7;
}

.button.primary:hover {
  background-color: #74c0fc;
}

.button.primary.fillx {
  width: 100%;
}

.social-logo {
  grid-column-gap: 1svw;
  grid-row-gap: 1svw;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  place-items: center;
  max-width: 45ch;
  display: grid;
}

.footer-background {
  background-color: #353535;
  max-width: none;
}

.heading {
  letter-spacing: .1ch;
}

.heading.firm-line {
  white-space: nowrap;
}

.text-block {
  color: #000;
  text-align: center;
  letter-spacing: .2ch;
  font-weight: 300;
}

.text-block.inactive:hover {
  transform: translate(0, 2px)scale(.97);
}

.tabs-menu {
  display: flex;
}

.tab-link-hardware {
  background-color: #fff;
  border-bottom: 2px solid #fff;
  flex: 1;
  transition: border-color .3s;
}

.tab-link-hardware.w--current {
  background-color: #fff;
  border-bottom: 2px solid #000;
  transition: border-color .3s;
}

.tab-link-software {
  background-color: #fff;
  border-bottom: 2px solid #fff;
  flex: 1;
  transition: border-color .3s;
}

.tab-link-software.w--current {
  background-color: #fff;
  border-bottom: 2px solid #000;
  transition: border-color .3s;
}

.container-3 {
  text-align: center;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 3svw;
}

.collapsible-toggle {
  grid-column-gap: 1svw;
  grid-row-gap: 1svw;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 1svw;
  display: flex;
}

.collapsible-toggle:hover {
  color: #4dabf7;
}

.image---text-size {
  height: 1rem;
}

.svg---text-size {
  justify-content: center;
  height: 1rem;
  display: flex;
}

.svg---text-size.primary {
  color: #228be6;
}

.collapsible {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto 0;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: none;
  display: grid;
}

.collapsible.open {
  grid-template-rows: auto 300px;
}

.dropdown-list {
  position: relative;
}

.oem-nav {
  grid-column-gap: 1svw;
  grid-row-gap: 1svw;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  max-width: none;
  padding: 1svw;
  display: grid;
}

.companion {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 1svw 3svw;
  display: flex;
}

.companion-description {
  max-width: 60ch;
  margin-left: 0;
  margin-right: 0;
}

.image-12 {
  width: 20ch;
  max-width: 80%;
  margin-bottom: 1svw;
}

.title {
  text-align: center;
  letter-spacing: .1ch;
}

.title.primary {
  color: #228be6;
}

.title.primary.wordbreak {
  margin-top: 0;
  margin-bottom: 0;
}

.title.primary.wordbreak.mobile {
  display: none;
}

.link-block---slider {
  color: #a5d8ff;
  text-decoration: none;
  transition: color .3s;
}

.link-block---slider:hover {
  color: #4dabf7;
}

.temp-image-copy {
  background-image: url('../images/robotics.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  max-width: none;
}

.image-13 {
  pointer-events: none;
}

.link-copy {
  color: #fff;
  text-align: center;
  letter-spacing: .2ch;
  font-family: Figtree, sans-serif;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
}

.link-copy:hover {
  color: #4dabf7;
}

.link-copy.mb1 {
  margin-bottom: 1svw;
}

.link-copy.tal {
  text-align: left;
}

.readable-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  object-fit: fill;
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 800px;
  margin-bottom: 0;
  padding: 0 0;
  display: flex;
}

.subtitle {
  text-align: center;
  letter-spacing: .05ch;
  margin-top: 10px;
  padding-bottom: 20px;
  font-size: 40px;
  font-weight: 600;
}

.subtitle.primary {
  color: #228be6;
}

.image-14 {
  float: none;
  clear: none;
  text-align: left;
  vertical-align: baseline;
  background-color: #000;
  flex: 1;
  text-decoration: none;
  display: block;
  position: static;
}

.container-4 {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  overflow: clip;
}

.paragraph-5 {
  margin-top: 1rem;
}

.oem-title {
  flex-flow: wrap;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
}

.div-block {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
  max-width: 800px;
  margin-bottom: 0;
  margin-left: 0;
  display: flex;
}

.div-block.readable {
  width: 100%;
  max-width: none;
  margin-left: 0%;
}

.image-15 {
  height: 120px;
  padding-right: 0;
}

.image-15.pad {
  padding: .25rem .25rem .25rem 2rem;
}

.div-block-2 {
  margin-bottom: 1rem;
  display: flex;
}

.image-16 {
  height: 120px;
}

.image-17 {
  height: 13rem;
  padding-left: 35px;
}

.container-6 {
  height: 10rem;
}

.container-7 {
  background-image: url('../images/navix_software.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
}

.mt3-highlights {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
}

.mt3-highlight-image {
  height: 4rem;
}

.mt3-highlight-image-holder {
  justify-content: center;
  margin-bottom: 1rem;
  display: flex;
}

.heading-2.primary {
  color: #228be6;
}

.heading-2.primary.centered, .heading-2.centered, .paragraph.centered {
  text-align: center;
}

.spacer {
  height: 1rem;
}

.dropdown-toggle {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-3 {
  display: inline-block;
}

.benefits-dropdown-toggle-contents {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.benefits-dropdown-icon {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  position: static;
}

.benefits-dropdown-heading {
  margin-top: 0;
  margin-bottom: 0;
}

.benefits-dropdown {
  width: 100%;
  height: 4rem;
  position: static;
}

.benefits-dropdown-list {
  position: relative;
}

.benefits-dropdown-toggle {
  height: 100%;
}

.heading-4 {
  text-align: center;
}

.container-8 {
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(207px, 207px));
  justify-content: center;
  max-width: 1035px;
  display: grid;
}

.container-8.gap {
  grid-column-gap: 1rem;
  grid-row-gap: .5rem;
}

.container-8-copy {
  grid-column-gap: 1rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(207px, 207px));
  justify-content: center;
  margin-bottom: 1rem;
  display: grid;
}

.our-team-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  max-width: 1200px;
  padding: 1rem;
  display: grid;
}

.paragraph-6 {
  max-height: 8rem;
  overflow: hidden;
}

.team-card-image {
  float: left;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.team-card-text {
  text-align: justify;
  font-size: .9rem;
  position: relative;
}

.team-card-holder {
  max-height: 33rem;
  overflow: hidden;
}

.team-card-container {
  padding: 1rem;
}

.div-block-5 {
  pointer-events: none;
}

.first-team-card-block {
  z-index: 1;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}

.long-name-heading {
  word-break: break-all;
}

.image-18 {
  object-fit: cover;
  object-position: 50% 10%;
  width: 100%;
  height: 30rem;
  margin-bottom: 1rem;
}

.div-block-6 {
  flex-flow: column;
  align-items: flex-start;
  margin-left: 0%;
  display: flex;
}

.container-9 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-7 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-10 {
  justify-content: space-between;
  max-width: 64ch;
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.image-19 {
  width: 100%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.link-4, .link-5, .link-6, .link-7, .link-8, .link-9 {
  margin-top: 10px;
  display: block;
}

.link-10 {
  display: block;
}

.link-10.w--current {
  margin-top: 10px;
}

.link-11, .link-12, .link-13, .link-14, .link-15, .link-16, .link-17, .link-18, .link-19, .link-20, .link-21 {
  margin-top: 10px;
  display: block;
}

.our-team-container-copy, .our-team-container-copy-copy {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  display: grid;
}

.div-block-9 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  word-break: normal;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-20 {
  max-width: 400px;
  padding-top: 0;
}

.paragraph-7 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 600px;
  margin-bottom: 0;
  display: flex;
}

.paragraph-8 {
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
}

.paragraph-9 {
  flex-flow: column;
  max-width: none;
  display: flex;
}

.paragraph-10 {
  flex-flow: column;
  display: flex;
}

.image-21 {
  height: 120px;
  padding-right: 40px;
}

.paragraph-11 {
  flex-flow: column;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.paragraph-12 {
  flex-flow: column;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}

.image-22 {
  max-width: 400px;
}

.container-11 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  height: 550px;
  display: flex;
}

.heading-5 {
  color: #2d89c2;
  padding-top: 0;
  padding-bottom: 20px;
  font-weight: 600;
}

.paragraph-13 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.container-12 {
  background-color: #2d89c2;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 50px;
  max-height: none;
  display: flex;
}

.heading-6 {
  color: #fff;
  margin-top: 10px;
}

.div-block-10 {
  justify-content: center;
  align-items: flex-start;
  max-width: 800px;
  display: flex;
}

.div-block-11 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  padding-top: 0;
  display: flex;
}

.image-23 {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  max-width: 300px;
  height: auto;
  padding-left: 0;
  padding-right: 0;
}

.paragraph-14 {
  max-width: none;
  margin-bottom: 0;
  padding-top: 0;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.2rem;
}

.div-block-12 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.paragraph-15 {
  color: #281818;
}

.bold-text {
  color: #2d89c2;
  font-size: 1rem;
  line-height: 1.5rem;
}

.paragraph-16 {
  margin-bottom: 0;
}

.paragraph-17 {
  max-width: 500px;
  padding-top: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.list {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  color: #2d89c2;
  flex-flow: column;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 20px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
}

.container-13 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  max-width: 840px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.container-14 {
  max-width: 840px;
}

.container-15 {
  flex-flow: column;
  max-width: 840px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.heading-7 {
  padding-bottom: 0;
}

.list-2 {
  color: #2d89c2;
  flex-flow: column;
  padding-left: 15px;
  font-weight: 700;
  line-height: 1.6rem;
  display: flex;
}

.div-block-13 {
  flex-flow: column;
  display: flex;
}

.div-block-14 {
  flex: 0 auto;
}

.div-block-15 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.div-block-16 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-17 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 180px;
  display: flex;
}

.div-block-18 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  min-width: 405px;
  max-width: none;
  display: flex;
}

.image-24 {
  max-width: none;
  max-height: 60px;
}

.div-block-19 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.image-25 {
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  max-width: none;
  max-height: 100px;
}

.paragraph-18 {
  margin-bottom: 0;
  padding-right: 0;
}

.container-16 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  max-width: 840px;
  margin-bottom: 20px;
  display: flex;
}

.div-block-20 {
  align-items: flex-end;
  display: flex;
}

.div-block-21 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.heading-8 {
  padding-bottom: 20px;
}

.paragraph-19 {
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.2rem;
}

.image-26 {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-width: 500px;
  max-width: 500px;
}

.div-block-22, .div-block-23 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.div-block-24 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.container-17 {
  background-color: #cce5f2;
  justify-content: center;
  align-items: flex-end;
  max-width: 100%;
  height: 350px;
  display: flex;
}

.div-block-25 {
  display: flex;
}

.div-block-26 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 840px;
  display: flex;
}

.div-block-27 {
  background-color: #e3f4fc;
  flex-flow: column;
  max-width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.image-27 {
  max-width: none;
  max-height: 100px;
}

.container-18 {
  background-color: #2d89c2;
  max-width: 100%;
  height: 20px;
}

.div-block-28 {
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 20px;
  display: flex;
}

.button-2 {
  border-radius: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.container-19 {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.div-block-29 {
  padding-left: 0;
  display: flex;
}

@media screen and (max-width: 991px) {
  .divisions {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .division {
    object-fit: fill;
  }

  .temp-image, .temp-image-r {
    max-width: none;
  }

  .sidekicks {
    grid-column-gap: 3svw;
    grid-row-gap: 3svw;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .image-placeholder {
    max-width: none;
  }

  .social-logo {
    max-width: 45ch;
  }

  .collapsible-toggle, .collapsible, .oem-nav {
    max-width: none;
  }

  .companion-description {
    max-width: 45ch;
  }

  .temp-image-copy {
    max-width: none;
  }

  .container-4 {
    height: 100%;
  }

  .div-block {
    width: auto;
    margin-left: 0%;
  }

  .image-18 {
    height: 18rem;
  }

  .div-block-6 {
    margin-left: 0%;
  }
}

@media screen and (max-width: 767px) {
  .header {
    grid-template-areas: "Logo Logo Logo";
    height: auto;
  }

  .claronav-logo.mobile {
    flex: 1;
    max-height: 2rem;
    display: block;
  }

  .claronav-logo.desktop {
    display: none;
  }

  .link.nav {
    font-size: .75rem;
  }

  .slide {
    grid-template-areas: ".";
  }

  .temp-image {
    right: 15%;
  }

  .temp-box {
    left: 15%;
  }

  .slide-b {
    grid-template-areas: ". . Image Image Image Image Image"
                         ". . Image Image Image Image Image"
                         ". . Image Image Image Image Image"
                         ". . Image Image Image Image Image";
  }

  .temp-image-b {
    width: 80%;
  }

  .temp-box-b {
    height: 43%;
    top: 40%;
  }

  .footer {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    height: auto;
  }

  .temp-image-r {
    left: 15%;
    right: 2rem;
  }

  .temp-box-r {
    left: 2rem;
    right: 15%;
  }

  .social {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
    display: flex;
  }

  .links, .info {
    align-items: center;
  }

  .paragraph-4 {
    text-align: center;
  }

  .link---dark {
    font-size: .75rem;
  }

  .social-logo {
    width: 90svw;
  }

  .companion {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 3svw;
    padding-bottom: 3svw;
  }

  .temp-image-copy {
    right: 15%;
  }

  .link-copy {
    font-size: .75rem;
  }

  .image-17 {
    margin-left: auto;
    margin-right: auto;
  }

  .mt3-highlights {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .our-team-container {
    grid-template-columns: 1fr;
  }

  .image-18 {
    height: 19rem;
  }

  .container-9 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .our-team-container-copy, .our-team-container-copy-copy {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .body {
    background-repeat: no-repeat;
  }

  .header {
    grid-template: "."
                   "."
                   / 1fr 1fr 1fr;
    padding: .5rem 1rem;
  }

  .divisions {
    grid-template-rows: auto auto auto;
    padding: 1rem;
  }

  .division-description, .slide {
    padding: 1rem;
  }

  .sidekick {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    place-items: center;
    height: auto;
  }

  .image-placeholder {
    height: auto;
  }

  .sidekick-description {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    height: auto;
  }

  .sidekick-description.reverse {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .container-3 {
    height: auto;
  }

  .oem-nav {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .title.primary.wordbreak.non-mobile {
    display: none;
  }

  .title.primary.wordbreak.mobile {
    display: block;
  }

  .image-14 {
    flex: 1;
    max-width: 100%;
    height: auto;
    overflow: clip;
  }

  .container-4 {
    max-width: none;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block, .div-block-2 {
    flex-flow: column;
  }

  .benefits-dropdown-heading {
    white-space: normal;
  }

  .benefits-dropdown-toggle {
    width: 100%;
  }

  .image-18 {
    height: 18rem;
  }

  .container-10 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .div-block-9 {
    flex-flow: column;
    display: flex;
  }

  .image-20 {
    max-width: 100%;
  }

  .image-22 {
    max-width: 300px;
  }

  .container-11 {
    height: 250px;
  }

  .container-12 {
    height: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-6 {
    text-align: center;
  }

  .div-block-12 {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-13 {
    flex-flow: column;
  }

  .container-15 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-15 {
    padding-top: 20px;
  }

  .div-block-16 {
    flex-flow: column;
  }

  .div-block-17 {
    align-items: center;
    max-width: 100%;
  }

  .div-block-18 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-width: auto;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-19 {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-18 {
    text-align: center;
  }

  .container-16 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-20 {
    padding-top: 20px;
  }

  .div-block-21 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .image-26 {
    min-width: 100%;
    max-width: 100%;
  }

  .div-block-24 {
    padding-top: 20px;
  }

  .container-17 {
    height: 150px;
  }

  .div-block-27 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-28 {
    padding-left: 0;
  }

  .paragraph-20 {
    text-align: center;
  }

  .div-block-29 {
    flex-flow: column;
  }
}

#w-node-eda7407a-69e7-9857-74f7-80237a26ca79-93273140 {
  grid-area: Title;
}

#w-node-_5ca06d5f-ef39-b30b-4308-f349bdcf40d4-93273140 {
  grid-area: Description;
}

#w-node-fa8c3cb0-04e6-619b-ffea-65724026736a-93273140 {
  grid-area: Title;
}

#w-node-b988c1e3-00f3-5ed1-fda3-2f2fb8ad8e59-93273140 {
  grid-area: Description;
}

#w-node-_15e37787-8a15-3ac5-f39c-4bab101a6bb7-93273140 {
  grid-area: Title;
}

#w-node-_39739923-7323-02d2-1303-b38b8280c3fd-93273140 {
  grid-area: Description;
}

#w-node-f6611bcd-fc7d-2350-d7dc-2908bc706d0d-93273140 {
  grid-area: 1 / 1 / 20 / 9;
}

#w-node-_5ddd2de6-eecd-80a2-e487-0b75770c87c0-93273140 {
  grid-area: 19 / 3 / 21 / 11;
}

#w-node-_1f4654cb-852a-7cee-7b4c-868bd6b1c828-93273140 {
  grid-area: 1 / 3 / 20 / 11;
}

#w-node-_1f4654cb-852a-7cee-7b4c-868bd6b1c829-93273140 {
  grid-area: 19 / 1 / 21 / 9;
}

#w-node-fd912b2c-551e-3313-cf11-1b52de01ade1-de01addf {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-fb757721-47b3-301d-edef-ae0b023f614c-de01addf, #w-node-fd912b2c-551e-3313-cf11-1b52de01ade2-de01addf {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_33b24e68-2663-b0de-c900-09e03bb173b3-de01addf, #w-node-fd912b2c-551e-3313-cf11-1b52de01ade3-de01addf {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-dfe87a1f-3130-c66e-f9dc-0621fa9ec5d0-de01addf, #w-node-fd912b2c-551e-3313-cf11-1b52de01ade4-de01addf {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-_6e9105a9-2388-4d4b-c466-73cef3d173f0-6f04f8bd {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: end;
}

#w-node-e02b7590-5f77-9282-31c6-00e5363891b6-6f04f8bd {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-b3c2e3a6-d465-d9fc-9470-da467c5c92c8-6f04f8bd {
  grid-area: 1 / 6 / 2 / 7;
  justify-self: start;
}

#w-node-_026336cb-193a-8d21-dfe5-7d67d98bf65b-6f04f8bd {
  order: 2;
  grid-area: 1 / 1 / 2 / 2;
  place-self: auto;
}

#w-node-_972942e8-3726-e7ed-1565-3fc7859da7b1-6f04f8bd {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-d772654b-29a2-9d8d-817c-15a069bcd666-6f04f8bd {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_972942e8-3726-e7ed-1565-3fc7859da7a9-6f04f8bd {
  order: 2;
  grid-area: 1 / 2 / 2 / 3;
  justify-self: auto;
}

#w-node-_4e8e09e9-9591-5408-5c89-86f667da6d65-6f04f8bd {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center start;
}

#w-node-_9faef9bd-c686-5a4c-638d-e3e7d0055230-6f04f8bd {
  order: 2;
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_3a4fc69a-f00b-73a9-d9c5-90b1f7fca04b-6f04f8bd {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-d6f0e921-9a29-61e5-861e-4a26b2a79f1a-6f04f8bd {
  order: 2;
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_667c04a0-0cff-41c0-b2f0-33bcf206aaaa-828efecf, #w-node-b3475bcf-de42-c88c-469e-9c3f265f16c1-828efecf, #w-node-_016f1502-f96b-775e-9555-16cd839fc24b-828efecf, #w-node-_10f3a05d-7c42-a481-4062-f7ae39bce55d-828efecf, #w-node-_5d55a9aa-85e8-76d0-58b4-8429570dde11-c2e68c54 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_05595373-9238-0923-9293-2e504b541b6e-c2e68c54, #w-node-_5831fea5-66b5-35b8-cfdd-f1d9d2b3d989-c2e68c54 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d18e9198-a417-be2a-6e2c-ae924a936ed7-656943c1 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_718d4178-a2b1-5674-71e9-afb195555214-656943c1, #w-node-_164e1289-d3c2-d542-ee0f-5e36602e0ab0-656943c1, #w-node-_87dff9e7-2b36-5526-4cd1-09b044d969c8-656943c1, #w-node-_4a1bcaa0-7366-5805-550e-69b2b27d2eef-656943c1, #w-node-c6dcf9e2-affa-9882-e3e4-1d46e523bfba-656943c1, #w-node-fc3149ef-4a83-2c7f-26a1-33e9d9af757c-656943c1, #w-node-dc2b116d-e3c8-c745-fe12-3960bd32aea8-656943c1, #w-node-_3970e510-5dbf-d399-9bca-61feb79a039e-656943c1, #w-node-bc6cdb76-1b04-f682-f466-70c688a62948-656943c1, #w-node-ba4cc5fa-209a-f649-1816-1ea1b22b2ca2-656943c1, #w-node-b3ed649d-bb7f-3466-ea32-f03bb9e7f98f-656943c1, #w-node-d6559e7d-dfc3-35f9-8140-bf0919500fb3-656943c1, #w-node-_5ba8c784-98cd-9fbf-fe97-dd1142669447-656943c1, #w-node-_47002bd9-429b-94c0-c199-e0cb20fb7141-656943c1, #w-node-_74a4c697-183a-8b90-aaa3-1b8e8641caf5-656943c1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d18e9198-a417-be2a-6e2c-ae924a936ed7-30209d53 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_718d4178-a2b1-5674-71e9-afb195555214-30209d53 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d18e9198-a417-be2a-6e2c-ae924a936ed7-1acc657e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_718d4178-a2b1-5674-71e9-afb195555214-1acc657e, #w-node-_87dff9e7-2b36-5526-4cd1-09b044d969c8-1acc657e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e67269a5-c1d4-2913-3baf-a535c467f08e-e8bc2432 {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 767px) {
  #w-node-f6611bcd-fc7d-2350-d7dc-2908bc706d0d-93273140 {
    grid-column-end: 10;
  }

  #w-node-_5ddd2de6-eecd-80a2-e487-0b75770c87c0-93273140 {
    grid-column-start: 2;
  }

  #w-node-_1f4654cb-852a-7cee-7b4c-868bd6b1c828-93273140 {
    grid-column: 2 / 11;
  }

  #w-node-_1f4654cb-852a-7cee-7b4c-868bd6b1c829-93273140 {
    grid-column: 1 / 10;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f6611bcd-fc7d-2350-d7dc-2908bc706d0d-93273140 {
    grid-column-end: 11;
  }

  #w-node-_5ddd2de6-eecd-80a2-e487-0b75770c87c0-93273140 {
    grid-column-start: 1;
  }

  #w-node-_1f4654cb-852a-7cee-7b4c-868bd6b1c828-93273140, #w-node-_1f4654cb-852a-7cee-7b4c-868bd6b1c829-93273140 {
    grid-column: 1 / 11;
  }

  #w-node-_8a59fa25-1ba3-d581-7bc4-0fd64b7ca7ff-4b7ca7fb {
    justify-self: end;
  }

  #w-node-_8a59fa25-1ba3-d581-7bc4-0fd64b7ca801-4b7ca7fb {
    justify-self: start;
  }

  #w-node-_8a59fa25-1ba3-d581-7bc4-0fd64b7ca805-4b7ca7fb {
    justify-self: end;
  }

  #w-node-_6e9105a9-2388-4d4b-c466-73cef3d173f0-6f04f8bd {
    grid-column: 1 / 2;
  }

  #w-node-e02b7590-5f77-9282-31c6-00e5363891b6-6f04f8bd {
    grid-column: 2 / 3;
  }

  #w-node-b3c2e3a6-d465-d9fc-9470-da467c5c92c8-6f04f8bd {
    grid-column: 3 / 4;
  }

  #w-node-_026336cb-193a-8d21-dfe5-7d67d98bf65b-6f04f8bd {
    grid-row: 2 / 3;
    grid-column-end: 3;
  }

  #w-node-_972942e8-3726-e7ed-1565-3fc7859da7b1-6f04f8bd, #w-node-d772654b-29a2-9d8d-817c-15a069bcd666-6f04f8bd {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_972942e8-3726-e7ed-1565-3fc7859da7a9-6f04f8bd {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_9faef9bd-c686-5a4c-638d-e3e7d0055230-6f04f8bd {
    grid-row: 2 / 3;
    grid-column-end: 3;
  }

  #w-node-d6f0e921-9a29-61e5-861e-4a26b2a79f1a-6f04f8bd {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-ccfb160b-6a16-ab2f-66fc-02fbf7f60e6d-f7f60e69 {
    justify-self: end;
  }

  #w-node-ccfb160b-6a16-ab2f-66fc-02fbf7f60e6f-f7f60e69 {
    justify-self: start;
  }

  #w-node-ccfb160b-6a16-ab2f-66fc-02fbf7f60e73-f7f60e69 {
    justify-self: end;
  }
}


