@charset "UTF-8";
@layer reset, base, components, utilities, templates;
@layer reset {
  /* Box sizing rules */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  /* Remove default margin */
  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }
  div,
  section,
  article,
  aside,
  main {
    position: relative;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
  }
  ul,
  ol {
    margin-block-start: 0;
    margin-block-end: 0;
  }
  /* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
  ul.navigation,
  ol.navigation {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul.navigation li,
  ol.navigation li {
    padding: 0;
    margin: 0;
  }
  /* Set core root defaults */
  html:focus-within {
    scroll-behavior: smooth;
  }
  /* Set core body defaults */
  body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
  }
  /* A elements that don't have a class get default styles */
  a:not([class]) {
    -webkit-text-decoration-skip: ink;
            text-decoration-skip-ink: auto;
  }
  /* Make images easier to work with */
  img,
  picture {
    max-width: 100%;
    display: block;
    height: auto;
  }
  /* Inherit fonts for inputs and buttons */
  input,
  button,
  textarea,
  select {
    font: inherit;
  }
  /* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
  @media (prefers-reduced-motion: reduce) {
    html:focus-within {
      scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}
@layer base {
  .grid {
    display: grid;
    gap: 0 2rem;
    grid-template-columns: minmax(0, auto) repeat(4, minmax(auto, 1fr)) minmax(0, auto);
  }
  @media screen and (min-width: 480px) {
    .grid {
      grid-template-columns: minmax(0, auto) repeat(8, minmax(auto, 1fr)) minmax(0, auto);
    }
  }
  @media screen and (min-width: 992px) {
    .grid {
      grid-template-columns: minmax(0, auto) repeat(12, minmax(0, 4.5rem)) minmax(0, auto);
    }
  }
  .grid > * {
    grid-column: 2/span 4;
  }
  @media screen and (min-width: 480px) {
    .grid > * {
      grid-column: 2/span 8;
    }
  }
  @media screen and (min-width: 992px) {
    .grid > * {
      grid-column: 2/span 12;
    }
  }
  .three-col-grid {
    display: grid;
    gap: 4rem 2rem;
  }
  @media screen and (min-width: 768px) {
    .three-col-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media screen and (min-width: 992px) {
    .three-col-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .three-col-grid .item.center {
    text-align: center;
  }
  .three-col-grid .item.center .icon,
  .three-col-grid .item.center .photo {
    display: flex;
    justify-content: center;
  }
  .three-col-grid .item.center .headline,
  .three-col-grid .item.center .copy {
    max-width: 18rem;
    margin: 0 auto;
  }
  .four-col-grid {
    display: grid;
    gap: 4rem 2rem;
    align-items: center;
  }
  @media screen and (min-width: 480px) {
    .four-col-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (min-width: 768px) {
    .four-col-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media screen and (min-width: 992px) {
    .four-col-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .four-col-grid .item.center {
    text-align: center;
  }
  .four-col-grid .item.center .headline,
  .four-col-grid .item.center .copy {
    max-width: 18rem;
    margin: 0 auto;
  }
  .four-col-grid .icon,
  .four-col-grid .photo,
  .four-col-grid .logo {
    display: flex;
    justify-content: center;
  }
  .page-title {
    font-weight: 400;
    font-size: clamp(1.8rem, 1.54rem + 1.29vw, 2.34rem);
    line-height: 1.125em;
  }
  @media screen and (min-width: 992px) {
    .page-title {
      font-size: clamp(2.16rem, 1.85rem + 1.54vw, 2.81rem);
    }
  }
  .page-title.blue {
    color: #2d77f8;
  }
  .page-title.dark-blue {
    color: #0a2d6b;
  }
  .section-title {
    font-weight: 900;
    font-size: clamp(1.8rem, 1.54rem + 1.29vw, 2.34rem);
    line-height: 1.125em;
  }
  @media screen and (min-width: 768px) {
    .section-title {
      font-size: clamp(2.16rem, 1.85rem + 1.54vw, 2.81rem);
    }
  }
  .section-title.small {
    font-size: clamp(1.5rem, 1.29rem + 1.07vw, 1.95rem);
  }
  .section-title.x-small {
    font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
  }
  .module-title {
    font-weight: 700;
    font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
    line-height: 1.125em;
    text-transform: none;
  }
  .copy {
    font-weight: 300;
  }
  .copy.secondary-color {
    color: #5c5c5c;
  }
  .copy.extended > * + * {
    margin-top: 2rem;
  }
  .copy.extended li + li {
    margin-top: 1rem;
  }
  .copy.extended figure {
    width: 100% !important;
  }
  .copy.extended figure figcaption {
    padding-top: 0.5rem;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    font-style: italic;
  }
  .copy.copy-1 {
    font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
    line-height: 1.5em;
  }
  .copy.copy-2 {
    font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
    line-height: 1.5em;
  }
  .copy.copy-3 {
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    line-height: 1.5em;
  }
  .copy.copy-4 {
    font-size: clamp(0.6rem, 0.52rem + 0.43vw, 0.78rem);
    line-height: 1.6em;
  }
  .copy a {
    color: #074dcf;
    text-decoration: underline;
  }
  .copy .btn {
    text-decoration: none;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-Medium.woff2") format("woff2"), url("../../src/fonts/CircularStd-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-Black.woff2") format("woff2"), url("../../src/fonts/CircularStd-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std Book";
    src: url("../../src/fonts/CircularStd-Book.woff2") format("woff2"), url("../../src/fonts/CircularStd-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-BlackItalic.woff2") format("woff2"), url("../../src/fonts/CircularStd-BlackItalic.woff") format("woff");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-Light.woff2") format("woff2"), url("../../src/fonts/CircularStd-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-BoldItalic.woff2") format("woff2"), url("../../src/fonts/CircularStd-BoldItalic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-LightItalic.woff2") format("woff2"), url("../../src/fonts/CircularStd-LightItalic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-Bold.woff2") format("woff2"), url("../../src/fonts/CircularStd-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-BookItalic.woff2") format("woff2"), url("../../src/fonts/CircularStd-BookItalic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "Circular Std";
    src: url("../../src/fonts/CircularStd-MediumItalic.woff2") format("woff2"), url("../../src/fonts/CircularStd-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
  }
  body {
    background-color: #f8f8f8;
  }
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    font-family: "Circular Std", sans-serif;
    color: #000;
  }
  ::-moz-selection {
    background: #2d77f8;
    color: #fff;
    text-shadow: none;
  }
  ::selection {
    background: #2d77f8;
    color: #fff;
    text-shadow: none;
  }
  a {
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
  }
}
@layer components {
  aside.banner {
    text-align: center;
    font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
  }
  @media screen and (min-width: 992px) {
    aside.banner {
      position: sticky;
      top: 0;
      z-index: 5555;
    }
  }
  aside.banner a {
    display: inline-block;
  }
  nav.company-nav {
    display: none;
    background-image: linear-gradient(90deg, #a510f8 0%, #00a3ff 100%);
  }
  @media screen and (min-width: 992px) {
    nav.company-nav {
      display: block;
    }
  }
  nav.company-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
  }
  nav.company-nav ul li {
    padding: 0 1rem;
  }
  @media screen and (min-width: 1280px) {
    nav.company-nav ul li {
      padding: 0 2rem;
    }
  }
  nav.company-nav ul a {
    color: #fff;
  }
  nav.company-nav ul a:hover {
    text-decoration: underline;
  }
  .cta.center {
    text-align: center;
  }
  .cta .btn {
    text-transform: uppercase;
    display: inline-block;
    padding: 0.75rem 1.75rem 0.625rem;
    border-radius: 25px;
    font-size: clamp(0.6rem, 0.52rem + 0.43vw, 0.78rem);
    font-family: "Rubik", sans-serif;
    letter-spacing: 0.1em;
    transition: all 400ms ease;
  }
  .cta .btn.blue {
    background: #206cf8;
    color: #fff;
  }
  .cta .btn.white {
    background: #fff;
    color: #206cf8;
  }
  .cta .btn.purple-gradient {
    color: #fff;
    background-image: linear-gradient(90deg, #a510f8 0%, #00a3ff 100%);
  }
  .cta .btn.white-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
  .cta .btn.white-outline:hover {
    background: #fff;
    color: #206cf8;
  }
  .cta .btn.black-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
  }
  .cta .btn.black-outline:hover {
    background: #000;
    color: #fff;
  }
  .cta .btn.alt {
    background: #206cf8;
    color: #fff;
    border-radius: 0;
    text-transform: unset;
    font-size: 1rem;
    letter-spacing: unset;
    padding: 0.25rem 1.5rem;
    font-weight: 300;
    line-height: 1em;
  }
  .cta .btn.orange {
    border-radius: 4px;
    background: #ff7b00;
    color: #fff;
    font-weight: 500;
  }
  .cta .btn.orange:hover {
    background: #ff7b00;
    color: #fff;
  }
  .cta .underline {
    text-transform: uppercase;
    display: inline-block;
    padding: 0 0 0.125rem 0;
    font-size: clamp(0.6rem, 0.52rem + 0.43vw, 0.78rem);
    font-weight: bold;
    font-family: "Rubik", sans-serif;
    letter-spacing: 0.1em;
    transition: all 400ms ease;
  }
  .cta .underline.white {
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  }
  .cta .underline.blue {
    color: #000;
    border-bottom: 3px solid #206cf8;
  }
  .cta .underline.arrow::after {
    content: " →";
  }
  .cta .basic {
    color: #206cf8;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .cta .basic:hover {
    text-decoration: underline;
  }
  .cta .basic.arrow::after {
    content: " →";
  }
  .rich-cta {
    max-width: 28rem;
  }
  .rich-cta a {
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
    box-shadow: rgba(50, 50, 93, 0.2) 0px 40px 60px -8px, rgba(0, 0, 0, 0.12) 0px 18px 36px -18px;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(-90deg, #a510f8 0%, #00a3ff 100%);
    transition: all 1000ms ease;
  }
  .rich-cta a:hover .text {
    background: rgba(255, 255, 255, 0.95);
  }
  .rich-cta .photo {
    aspect-ratio: 1/1;
    width: 7.5rem;
  }
  .rich-cta .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .rich-cta .photo img {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
  }
  .rich-cta .text {
    font-size: clamp(0.6rem, 0.52rem + 0.43vw, 0.78rem);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    transition: all 1000ms ease;
    font-family: "Rubik", sans-serif;
  }
  @media screen and (min-width: 480px) {
    .rich-cta.half .photo {
      display: none;
    }
  }
  @media screen and (min-width: 768px) {
    .rich-cta.half .photo {
      display: block;
    }
  }
  @media screen and (min-width: 480px) {
    .rich-cta.half .text {
      border-top-left-radius: 7px;
      border-bottom-left-radius: 7px;
    }
  }
  @media screen and (min-width: 768px) {
    .rich-cta.half .text {
      border-top-left-radius: unset;
      border-bottom-left-radius: unset;
    }
  }
  .o-btn,
  .copy .o-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2e76f8;
    color: #fff;
    text-decoration: none;
    line-height: 1em;
    padding: 0.25rem 0.5rem;
  }
  .o-btn::after,
  .copy .o-btn::after {
    display: block;
    content: "";
    background: url(../src/svg/o-logo-fill.svg) no-repeat 0 0;
    width: 1.5rem;
    height: 1.5rem;
    transform: translateY(2px);
  }
  .customer-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .customer-grid .logo {
    padding: 1rem 2rem;
  }
  .customer-grid .logo .image {
    width: 6rem;
    height: 3rem;
  }
  .customer-grid .logo .image svg,
  .customer-grid .logo .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  @media screen and (min-width: 480px) {
    section.ecosystem {
      display: flex;
      flex-wrap: wrap;
    }
  }
  section.ecosystem .product {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: clamp(2.5rem, 10vh, 5rem);
    padding-bottom: clamp(2.5rem, 10vh, 5rem);
  }
  @media screen and (min-width: 992px) {
    section.ecosystem .product {
      padding-top: clamp(5rem, 15vh, 7.5rem);
      padding-bottom: clamp(5rem, 15vh, 7.5rem);
    }
  }
  section.ecosystem .product.current .deck {
    opacity: 0.33;
  }
  section.ecosystem .product .info {
    max-width: 20rem;
  }
  section.ecosystem .product .logo {
    width: 100%;
    height: 5.25rem;
  }
  section.ecosystem .product .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left center;
       object-position: left center;
  }
  section.ecosystem .product .deck {
    padding: 2rem 0;
  }
  @media screen and (min-width: 480px) {
    section.ecosystem .product:nth-child(1) {
      width: 100%;
    }
  }
  @media screen and (min-width: 768px) {
    section.ecosystem .product:nth-child(1) {
      width: 50%;
    }
    section.ecosystem .product:nth-child(1) .info {
      margin-left: auto;
    }
  }
  section.ecosystem .product:nth-child(2) {
    margin-bottom: calc(clamp(5rem, 15vh, 7.5rem) * -1);
    padding-bottom: calc(clamp(5rem, 15vh, 7.5rem) * 1.5);
  }
  @media screen and (min-width: 480px) {
    section.ecosystem .product:nth-child(2) {
      width: 100%;
    }
  }
  @media screen and (min-width: 768px) {
    section.ecosystem .product:nth-child(2) {
      width: 50%;
    }
  }
  @media screen and (min-width: 992px) {
    section.ecosystem .product:nth-child(2) {
      margin-bottom: calc(clamp(10rem, 30vh, 15rem) * -1);
      padding-bottom: clamp(10rem, 30vh, 15rem);
    }
  }
  @media screen and (min-width: 768px) {
    section.ecosystem .product:nth-child(1),
    section.ecosystem .product:nth-child(2) {
      margin-bottom: calc(clamp(5rem, 15vh, 7.5rem) * -1);
      padding-bottom: calc(clamp(5rem, 15vh, 7.5rem) * 1.5);
    }
  }
  @media screen and (min-width: 992px) {
    section.ecosystem .product:nth-child(1),
    section.ecosystem .product:nth-child(2) {
      margin-bottom: calc(clamp(10rem, 30vh, 15rem) * -1);
      padding-bottom: clamp(10rem, 30vh, 15rem);
    }
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-label {
    color: #000 !important;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem) !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-description,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-description p {
    font-weight: normal !important;
    font-size: clamp(0.6rem, 0.52rem + 0.43vw, 0.78rem) !important;
    font-style: italic !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-multiselect,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-input,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-textarea {
    background: #fff !important;
    border-radius: 0 !important;
    border-color: #d5d5d5 !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-multiselect:hover, .opendrives-form .forminator-ui.forminator-design--default .forminator-multiselect:active, .opendrives-form .forminator-ui.forminator-design--default .forminator-multiselect:focus,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-input:hover,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-input:active,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-input:focus,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-textarea:hover,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-textarea:active,
  .opendrives-form .forminator-ui.forminator-design--default .forminator-textarea:focus {
    background: #fff !important;
    border-color: #2d77f8 !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-multiselect {
    padding: 0 !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-multiselect .forminator-option {
    margin: 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-multiselect .forminator-option:hover {
    background: #2d77f8 !important;
    color: #fff !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-multiselect .forminator-option.forminator-is_checked {
    background: #2d77f8 !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select .selection .select2-selection--single[role=combobox] {
    background: #fff !important;
    border-radius: 0 !important;
    border-color: #d5d5d5 !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select .selection .select2-selection--single[role=combobox]:hover, .opendrives-form .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select .selection .select2-selection--single[role=combobox]:active, .opendrives-form .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select .selection .select2-selection--single[role=combobox]:focus {
    background: #fff !important;
    border-color: #2d77f8 !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-button-submit {
    text-transform: uppercase !important;
    display: inline-block !important;
    padding: 0.75rem 1.75rem 0.625rem !important;
    border-radius: 25px !important;
    font-size: clamp(0.6rem, 0.52rem + 0.43vw, 0.78rem) !important;
    font-family: "Rubik", sans-serif !important;
    letter-spacing: 0.1em !important;
    transition: all 400ms ease !important;
    background: #2d77f8 !important;
    color: #fff !important;
  }
  .opendrives-form .forminator-ui.forminator-design--default .forminator-button-submit:hover {
    box-shadow: unset !important;
    background: #2d77f8 !important;
  }
  .form-modal .section-title {
    font-size: clamp(1.5rem, 1.29rem + 1.07vw, 1.95rem);
  }
  body .forminator-select-dropdown-container--open .forminator-dropdown--default {
    background-color: #fff !important;
  }
  body .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select.select2-container--open .selection .select2-selection--single[role=combobox] {
    background: #fff !important;
  }
  body .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select.select2-container--open .selection .select2-selection--single[role=combobox]:hover, body .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select.select2-container--open .selection .select2-selection--single[role=combobox]:active, body .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select.select2-container--open .selection .select2-selection--single[role=combobox]:focus {
    background: #fff !important;
  }
  body .forminator-select-dropdown-container--open .forminator-dropdown--default .select2-results .select2-results__options .select2-results__option.select2-results__option--selected {
    background: #2d77f8 !important;
  }
  body .forminator-select-dropdown-container--open .forminator-dropdown--default .select2-results .select2-results__options .select2-results__option:not(.select2-results__option--selected).select2-results__option--highlighted {
    background: #fff !important;
  }
  body .forminator-select-dropdown-container--open .forminator-dropdown--default .select2-results .select2-results__options .select2-results__option:not(.select2-results__option--selected).select2-results__option--highlighted:hover, body .forminator-select-dropdown-container--open .forminator-dropdown--default .select2-results .select2-results__options .select2-results__option:not(.select2-results__option--selected).select2-results__option--highlighted:active, body .forminator-select-dropdown-container--open .forminator-dropdown--default .select2-results .select2-results__options .select2-results__option:not(.select2-results__option--selected).select2-results__option--highlighted:focus {
    background: #2d77f8 !important;
    color: #fff !important;
  }
  .hero .info {
    grid-row: 1;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
  }
  .hero .info .headline {
    text-align: center;
  }
  .hero .info .headline h1 {
    font-size: clamp(2.16rem, 1.85rem + 1.54vw, 2.81rem);
    font-weight: 400;
    font-family: "Anton", sans-serif;
    line-height: 1.125em;
  }
  @media screen and (min-width: 768px) {
    .hero .info .headline h1 {
      font-size: clamp(3.11rem, 2.67rem + 2.22vw, 4.625em);
    }
  }
  .hero .info .deck {
    text-align: center;
    padding-top: 1rem;
  }
  .hero .info .deck p {
    font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
    font-weight: 300;
    font-family: "Rubik", sans-serif;
  }
  .hero .photo {
    grid-column: 1/-1;
    grid-row: 1;
    z-index: 5;
  }
  .hero .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero .photo img {
    max-height: 90vh;
    aspect-ratio: 1/1;
  }
  @media screen and (min-width: 768px) {
    .hero .photo img {
      aspect-ratio: unset;
    }
  }
  .hero-compact {
    height: 6rem;
  }
  @media screen and (min-width: 768px) {
    .hero-compact {
      height: 8rem;
    }
  }
  .hero-compact img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .icon-four-col {
    padding-top: clamp(2.5rem, 10vh, 5rem);
    padding-bottom: clamp(2.5rem, 10vh, 5rem);
  }
  @media screen and (min-width: 992px) {
    .icon-four-col {
      padding-top: clamp(5rem, 15vh, 7.5rem);
      padding-bottom: clamp(5rem, 15vh, 7.5rem);
    }
  }
  .icon-four-col .section-header {
    text-align: center;
    padding-bottom: 3rem;
  }
  .icon-four-col .container {
    display: grid;
    gap: 2rem;
  }
  @media screen and (min-width: 768px) {
    .icon-four-col .container {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media screen and (min-width: 1280px) {
    .icon-four-col .container {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .icon-four-col .item {
    text-align: center;
  }
  .icon-four-col .item .icon {
    display: flex;
    justify-content: center;
    padding-bottom: 1.5rem;
  }
  .icon-four-col .item .icon img {
    width: 100%;
    height: 3.5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .icon-four-col .item .headline {
    padding-bottom: 0.5rem;
  }
  .icon-three-col {
    color: #fff;
    padding-top: clamp(2.5rem, 10vh, 5rem);
    padding-bottom: clamp(2.5rem, 10vh, 5rem);
  }
  @media screen and (min-width: 992px) {
    .icon-three-col {
      padding-top: clamp(5rem, 15vh, 7.5rem);
      padding-bottom: clamp(5rem, 15vh, 7.5rem);
    }
  }
  .icon-three-col .section-header {
    text-align: center;
    padding-bottom: 3rem;
  }
  .icon-three-col .container {
    display: grid;
    gap: 4rem;
  }
  @media screen and (min-width: 480px) {
    .icon-three-col .container {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media screen and (min-width: 768px) {
    .icon-three-col .container {
      grid-template-columns: repeat(6, 1fr);
      gap: 4rem 6rem;
    }
  }
  @media screen and (min-width: 768px) {
    .icon-three-col .container.items-5 .item-4 {
      grid-column: 2/span 2;
    }
  }
  @media screen and (min-width: 768px) {
    .icon-three-col .container.items-5 .item-5 {
      grid-column: 4/span 2;
    }
  }
  .icon-three-col .item {
    text-align: center;
  }
  @media screen and (min-width: 480px) {
    .icon-three-col .item {
      grid-column: span 2;
    }
  }
  .icon-three-col .item .icon {
    display: flex;
    justify-content: center;
    padding-bottom: 1.5rem;
  }
  .icon-three-col .item .icon img {
    width: 100%;
    height: 3.5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .icon-three-col .item .headline {
    padding-bottom: 1.5rem;
  }
  .in-use {
    padding-top: 4rem;
  }
  .in-use .section-header {
    padding-bottom: 1rem;
  }
  .in-use .module-title {
    color: #2d77f8;
  }
  .in-use .item + .item {
    margin-top: 2rem;
  }
  .in-use .item a {
    display: grid;
    grid-template-columns: 6rem 1fr;
    align-items: center;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.1) 0px 20px 30px -12px, rgba(0, 0, 0, 0.0625) 0px 9px 18px -18px;
    border-radius: 10px;
  }
  @media screen and (min-width: 992px) {
    .in-use .item a {
      grid-template-columns: 4rem 1fr;
    }
  }
  @media screen and (min-width: 1280px) {
    .in-use .item a {
      grid-template-columns: 6rem 1fr;
    }
  }
  .in-use .item .photo {
    aspect-ratio: 1/1;
  }
  .in-use .item .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .in-use .item .photo img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .in-use .item .info {
    padding: 1rem;
  }
  .in-use .item .info h4 {
    font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
    line-height: 1.125em;
  }
  @media screen and (min-width: 992px) {
    .in-use .item .info h4 {
      font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
    }
  }
  @media screen and (min-width: 1280px) {
    .in-use .item .info h4 {
      font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
    }
  }
  .logo-gallery {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  @media screen and (min-width: 480px) {
    .logo-gallery {
      gap: 4rem;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (min-width: 768px) {
    .logo-gallery {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media screen and (min-width: 992px) {
    .logo-gallery.four-col {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .logo-gallery .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .noscroll {
    overflow: hidden;
  }
  .modal {
    display: none;
  }
  .modal.is-open {
    display: block;
  }
  .modal__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85);
  }
  .modal__container {
    background-color: #fff;
    padding: clamp(1rem, 5vh, 3rem);
    width: calc(100% - 4rem);
    max-width: 64rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: rgba(50, 50, 93, 0.2) 0px 30px 60px -12px, rgba(0, 0, 0, 0.15) 0px 18px 36px -18px;
  }
  .modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
  }
  .modal__close {
    background: #2d77f8;
    color: #fff;
    border-radius: 50%;
    border: 0;
    position: absolute;
    top: 1.75rem;
    right: 1.25rem;
    width: 2rem;
    height: 2rem;
  }
  @media screen and (min-width: 992px) {
    .modal__close {
      width: 2.625rem;
      height: 2.625rem;
    }
  }
  .modal__close:before {
    content: "✕";
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  @media screen and (min-width: 992px) {
    .modal__close:before {
      font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
    }
  }
  .modal__close:hover {
    cursor: pointer;
  }
  @keyframes mmfadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes mmfadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes mmslideIn {
    from {
      transform: translateY(15%);
    }
    to {
      transform: translateY(0);
    }
  }
  @keyframes mmslideOut {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-10%);
    }
  }
  .micromodal-slide {
    display: none;
  }
  .micromodal-slide.is-open {
    display: block;
  }
  .micromodal-slide[aria-hidden=false] .modal__overlay {
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .micromodal-slide[aria-hidden=false] .modal__container {
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .micromodal-slide[aria-hidden=true] .modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .micromodal-slide[aria-hidden=true] .modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .micromodal-slide .modal__container,
  .micromodal-slide .modal__overlay {
    will-change: transform;
  }
  .nab-modal .modal__container,
  .nab-modal .modal__header {
    padding: 0;
  }
  .nab-modal .modal__overlay {
    background: rgba(0, 0, 0, 0.85);
  }
  .nab-modal .modal__container {
    max-width: 43.75rem;
    background: transparent;
    box-shadow: none;
  }
  .nab-modal .modal__close {
    z-index: 10;
    top: 0.75rem;
    right: 0.75rem;
  }
  .nab-modal .modal__content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  .nab-modal .modal__content a {
    display: block;
  }
  .nab-modal .modal__content a:focus, .nab-modal .modal__content a:active {
    outline: none;
  }
  .nab-banner {
    display: block;
    background-size: cover;
    background-position: center center;
  }
  .nab-banner .link-wrapper {
    display: flex;
    gap: 1rem 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-decoration: none;
  }
  @media screen and (min-width: 768px) {
    .nab-banner .link-wrapper {
      width: unset;
    }
  }
  .nab-banner .icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    width: unset;
  }
  .nab-banner img {
    max-width: 8rem;
    max-height: 4rem;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0 1rem 0 auto;
  }
  .nab-banner .date-time {
    width: 100%;
    text-align: left;
    border-left: 1px solid #fff;
    padding-left: 1rem;
  }
  .nab-banner .date-time p {
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.25em;
  }
  .nab-banner .copy {
    padding-right: 0;
    display: grid;
    gap: 1rem;
    padding-top: 1rem;
    text-align: center;
  }
  @media screen and (min-width: 768px) {
    .nab-banner .copy {
      display: flex;
      justify-content: space-between;
      padding-top: 0;
      flex: 1;
      max-width: 60rem;
      text-align: left;
    }
  }
  .nab-banner .copy__desktop {
    display: none;
  }
  @media screen and (min-width: 768px) {
    .nab-banner .copy__desktop {
      display: block;
    }
  }
  .nab-banner .copy__mobile {
    display: block;
  }
  @media screen and (min-width: 768px) {
    .nab-banner .copy__mobile {
      display: none;
    }
  }
  .nab-banner .copy-wrapper p + p {
    padding-top: 0.5rem;
  }
  .nab-banner.bg-image {
    background-size: cover;
    background-position: right top;
  }
  .nab-banner .link-wrapper {
    display: flex;
    justify-content: center;
  }
  .nab-banner.has-icon .link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media screen and (min-width: 768px) {
    .nab-banner.has-icon .icon {
      flex: 1;
    }
  }
  @media screen and (min-width: 768px) {
    .nab-banner.has-icon .copy {
      flex: 1;
    }
  }
  .nab-banner.has-icon img {
    width: 100%;
    transform: translateY(3px);
    height: auto;
  }
  .nab-banner.has-icon .cta .btn {
    white-space: nowrap;
  }
  .nab-banner.has-icon .cta .btn.orange {
    color: #08226b;
    background: #f9a009;
    padding: 0.5rem 1.5rem 0.375rem 1.5rem;
  }
  .nab-banner .copy {
    text-align: center;
  }
  .nab-banner p {
    line-height: 1.125em;
  }
  .nab-banner p .btn {
    text-shadow: none;
    display: inline-block;
    margin-left: 0.5rem;
    border: 1px solid;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 0.75rem;
    padding: 0.675rem 1rem 0.5rem 1rem;
    transition: all 0.2s ease;
  }
  .nab-banner p .btn:hover {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
  }
  .nab-banner strong {
    color: #fff;
  }
  .nab-banner .copy {
    display: flex;
    align-items: center;
    text-align: left;
  }
  .nab-banner .copy-wrapper {
    margin-right: 1rem;
  }
  .nab-banner .copy-wrapper p {
    font-size: 0.8125rem;
    line-height: 1.375em;
  }
  .nab-banner .copy-wrapper p + p {
    margin-top: 0;
  }
  section.page-header {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  @media screen and (min-width: 992px) {
    section.page-header {
      padding-top: 4rem;
    }
  }
  .related-grid {
    display: grid;
    gap: 2rem;
  }
  @media screen and (min-width: 768px) {
    .related-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media screen and (min-width: 992px) {
    .related-grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .related .item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.1) 0px 20px 30px -12px, rgba(0, 0, 0, 0.0625) 0px 9px 18px -18px;
    border: 1px solid #e5e5e5;
  }
  .related .item .photo {
    aspect-ratio: 16/9;
    border-radius: 3px;
    border: 1px solid #f5f5f5;
  }
  .related .item .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .related .item__label {
    display: inline-block;
    color: #074dcf;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-family: "Rubik", sans-serif;
    font-size: clamp(0.6rem, 0.52rem + 0.43vw, 0.78rem);
    font-family: "Rubik", sans-serif;
    margin-bottom: 0.25rem;
  }
  .related .item .info {
    padding-top: 1rem;
  }
  .related .item .info h3 {
    font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
    margin: 0;
    line-height: 1.1;
  }
  .related .item .info .copy {
    padding-top: 0.5rem;
  }
  .related .item.customer-story, .related .item.page {
    padding: 0;
  }
  .related .item.customer-story .photo img, .related .item.page .photo img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .related .item.customer-story .info, .related .item.page .info {
    padding: 1.5rem 2rem;
  }
  .section-header.center {
    text-align: center;
  }
  .share-links {
    padding: 1rem;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
  }
  .share-links h4 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(0.66rem, 0.58rem + 0.48vw, 0.88rem);
    letter-spacing: 0.1em;
    line-height: 1em;
    transform: translateY(1px);
  }
  .share-links .share-link {
    margin-left: 1.5rem;
  }
  .share-links .share-link a {
    display: block;
    height: 1rem;
    width: 1rem;
    transition: all 200ms ease;
  }
  @media screen and (min-width: 768px) {
    .share-links .share-link a {
      height: 1.25rem;
      width: 1.125rem;
    }
  }
  .share-links .share-link.facebook a {
    height: 1rem;
    width: 1rem;
  }
  @media screen and (min-width: 768px) {
    .share-links .share-link.facebook a {
      height: 1rem;
      width: 0.9375rem;
    }
  }
  .share-links .share-link svg {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    fill: rgba(0, 0, 0, 0.4);
    transition: all 200ms ease;
  }
  .share-links .share-link svg path,
  .share-links .share-link svg g {
    transition: all 200ms ease;
    fill: rgba(0, 0, 0, 0.4);
  }
  .share-links .share-link a:hover svg,
  .share-links .share-link a:hover path,
  .share-links .share-link a:hover g {
    fill: rgba(0, 0, 0, 0.8);
  }
}
@layer utilities {}
@layer components {
  .site-logo {
    display: flex;
    align-items: center;
  }
  .site-logo a {
    display: flex;
    align-items: center;
  }
  .desktop-nav {
    flex: 1;
    position: static;
  }
  @media screen and (min-width: 1280px) {
    .desktop-nav {
      padding-left: 2rem;
    }
  }
  .desktop-nav__list {
    display: none;
    position: static;
  }
  @media screen and (min-width: 992px) {
    .desktop-nav__list {
      display: flex;
      align-items: stretch;
      justify-content: center;
      height: 100%;
    }
  }
  .desktop-nav__list-item {
    position: static;
    display: flex;
    align-items: center;
    height: 100%;
  }
  @media screen and (min-width: 992px) {
    .desktop-nav__list-item {
      height: 4rem;
    }
  }
  @media screen and (min-width: 768px) {
    .desktop-nav__list-item[data-featured=false] {
      display: none;
    }
  }
  @media screen and (min-width: 1280px) {
    .desktop-nav__list-item[data-featured=false] {
      display: flex;
    }
  }
  .desktop-nav__list-item[data-state=active] .desktop-nav__sub-nav {
    top: 4rem;
    opacity: 1;
    z-index: 99999;
  }
  .desktop-nav__link {
    display: block;
    font-size: clamp(0.66rem, 0.58rem + 0.48vw, 0.88rem);
    font-family: "Rubik", sans-serif;
    transition: all 200ms ease;
    white-space: nowrap;
    padding: 0 0.75rem;
  }
  @media screen and (min-width: 992px) {
    .desktop-nav__link {
      height: 100%;
      display: flex;
      align-items: center;
    }
  }
  @media screen and (min-width: 1280px) {
    .desktop-nav__link {
      font-size: clamp(0.66rem, 0.58rem + 0.48vw, 0.88rem);
      padding: 0 1rem;
    }
  }
  .desktop-nav__link[data-state=active], .desktop-nav__link:hover {
    background: #2d77f8;
    color: #fff;
  }
  .desktop-nav__sub-nav {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -777;
    width: 100%;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    background: #f5f5f7;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  @media screen and (min-width: 1280px) {
    .desktop-nav__sub-nav {
      gap: 1rem 2rem;
    }
  }
  .desktop-nav__sub-nav-link {
    font-size: clamp(0.66rem, 0.58rem + 0.48vw, 0.88rem);
    font-family: "Rubik", sans-serif;
  }
  .desktop-nav__sub-nav-link:hover {
    text-decoration: underline;
  }
  .search-container {
    display: none;
  }
  @media screen and (min-width: 992px) {
    .search-container {
      background: #fff;
      display: flex;
      align-items: center;
    }
  }
  .search-toggle {
    width: 1.25rem;
    height: 1.25rem;
  }
  .search-toggle:hover {
    cursor: pointer;
  }
  .search-toggle svg {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    fill: black;
  }
  .search-modal {
    position: absolute;
    top: 4.5rem;
    right: -0.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.4) 0px 40px 60px -12px, rgba(0, 0, 0, 0.25) 0px 18px 36px -18px;
    padding: 2rem;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: all 400ms ease 50ms;
    width: 80vw;
    transform: translateY(-1rem);
  }
  @media screen and (min-width: 768px) {
    .search-modal {
      width: 30rem;
    }
  }
  .search-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
  }
  .search-close:hover {
    cursor: pointer;
  }
  .search-close:hover svg rect {
    fill: #2d77f8;
  }
  .search-close svg {
    width: 1rem;
    height: 1rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .search-close svg rect {
    fill: #999;
    transition: fill 200ms ease;
  }
  .search-form {
    display: flex;
    width: 100%;
    align-items: center;
  }
  .search-input {
    flex: 1;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
    font-weight: 300;
    height: 2.5rem;
    line-height: 2.5rem;
    font-family: "Rubik", sans-serif;
    transition: all 200ms ease;
  }
  .search-input::-webkit-input-placeholder {
    color: #bbb;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .search-input::-moz-placeholder {
    color: #bbb;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .search-input:-moz-placeholder {
    color: #bbb;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .search-input:-ms-input-placeholder {
    color: #bbb;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .search-input:focus, .search-input:active {
    outline: none;
    border-bottom-color: rgba(0, 0, 0, 0.75);
  }
  .search-submit {
    border: none;
    background: none;
    padding: 0;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    font-family: "Rubik", sans-serif;
    transition: all 200ms ease;
  }
  .search-submit:hover {
    cursor: pointer;
    color: #2d77f8;
    border-bottom-color: #2d77f8;
  }
  .search-submit:focus, .search-submit:active {
    outline: none;
  }
  .search-container.show .search-modal {
    opacity: 1;
    z-index: 50;
    pointer-events: unset;
    transform: translateY(0);
  }
  .queries__header {
    padding: 1.5rem 0 0 0;
  }
  .queries__header h5 {
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    font-weight: 700;
  }
  .queries__list {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
  }
  .queries__list-item {
    margin-right: 0.75rem;
    margin-top: 0.75rem;
  }
  .queries__link {
    display: inline-block;
    font-family: "Rubik", sans-serif;
    font-size: clamp(0.5rem, 0.42rem + 0.38vw, 0.675rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem 0.375rem;
    border: 1px solid;
    border-radius: 25px;
    transition: all 400ms ease;
  }
  .queries__link:hover {
    background: #2d77f8;
    border-color: #2d77f8;
    color: #fff;
  }
  .cta.navigation-cta {
    display: flex;
    align-items: center;
    background: #fff;
  }
  @media screen and (max-width: 350px) {
    .cta.navigation-cta {
      display: none;
    }
  }
  .cta.navigation-cta__login {
    display: none;
  }
  @media screen and (min-width: 1440px) {
    .cta.navigation-cta__login {
      display: flex;
    }
  }
  .cta.navigation-cta .btn {
    white-space: nowrap;
    padding: 0.5rem 1rem 0.375rem;
    background: #206cf8;
    color: #fff;
  }
  @media screen and (min-width: 992px) {
    .cta.navigation-cta .btn {
      padding: 0.75rem 1.75rem 0.625rem;
    }
  }
  .cta.navigation-cta .btn__login {
    background: #fff;
    color: #000;
  }
  .cta.navigation-cta .btn__login:hover {
    background: #000;
  }
  .hamburger {
    display: flex;
    align-items: center;
    background: #fff;
  }
  @media screen and (min-width: 1280px) {
    .hamburger-mobile {
      display: none;
    }
  }
  .hamburger a {
    display: block;
    width: 2rem;
    height: 22px;
    position: relative;
  }
  .hamburger a .patty {
    width: 2rem;
    height: 2px;
    background: #000;
    margin-left: auto;
    transition: all 0.2s;
    position: relative;
    transform: translateY(10px);
  }
  .hamburger a .patty:after, .hamburger a .patty:before {
    content: "";
    display: block;
    width: 2rem;
    height: 2px;
    background: #000;
    position: absolute;
    z-index: 1;
    transition: all 0.2s;
  }
  .hamburger a .patty:before {
    top: -8px;
  }
  .hamburger a .patty:after {
    top: 8px;
  }
  .search-container {
    display: none;
  }
  @media screen and (min-width: 992px) {
    .search-container {
      background: #fff;
      display: flex;
      align-items: center;
    }
  }
  .search-toggle {
    width: 1.25rem;
    height: 1.25rem;
  }
  .search-toggle:hover {
    cursor: pointer;
  }
  .search-toggle svg {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    fill: black;
  }
  .search-modal {
    position: absolute;
    top: 4.5rem;
    right: -0.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.4) 0px 40px 60px -12px, rgba(0, 0, 0, 0.25) 0px 18px 36px -18px;
    padding: 2rem;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: all 400ms ease 50ms;
    width: 80vw;
    transform: translateY(-1rem);
  }
  @media screen and (min-width: 768px) {
    .search-modal {
      width: 30rem;
    }
  }
  .search-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
  }
  .search-close:hover {
    cursor: pointer;
  }
  .search-close:hover svg rect {
    fill: #2d77f8;
  }
  .search-close svg {
    width: 1rem;
    height: 1rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .search-close svg rect {
    fill: #999;
    transition: fill 200ms ease;
  }
  .search-form {
    display: flex;
    width: 100%;
    align-items: center;
  }
  .search-input {
    flex: 1;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
    font-weight: 300;
    height: 2.5rem;
    line-height: 2.5rem;
    font-family: "Rubik", sans-serif;
    transition: all 200ms ease;
  }
  .search-input::-webkit-input-placeholder {
    color: #bbb;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .search-input::-moz-placeholder {
    color: #bbb;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .search-input:-moz-placeholder {
    color: #bbb;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .search-input:-ms-input-placeholder {
    color: #bbb;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .search-input:focus, .search-input:active {
    outline: none;
    border-bottom-color: rgba(0, 0, 0, 0.75);
  }
  .search-submit {
    border: none;
    background: none;
    padding: 0;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    font-family: "Rubik", sans-serif;
    transition: all 200ms ease;
  }
  .search-submit:hover {
    cursor: pointer;
    color: #2d77f8;
    border-bottom-color: #2d77f8;
  }
  .search-submit:focus, .search-submit:active {
    outline: none;
  }
  .search-container.show .search-modal {
    opacity: 1;
    z-index: 50;
    pointer-events: unset;
    transform: translateY(0);
  }
  .queries__header {
    padding: 1.5rem 0 0 0;
  }
  .queries__header h5 {
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    font-weight: 700;
  }
  .queries__list {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
  }
  .queries__list-item {
    margin-right: 0.75rem;
    margin-top: 0.75rem;
  }
  .queries__link {
    display: inline-block;
    font-family: "Rubik", sans-serif;
    font-size: clamp(0.5rem, 0.42rem + 0.38vw, 0.675rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem 0.375rem;
    border: 1px solid;
    border-radius: 25px;
    transition: all 400ms ease;
  }
  .queries__link:hover {
    background: #2d77f8;
    border-color: #2d77f8;
    color: #fff;
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    width: 100vw;
    left: -100vw;
    height: 100vh;
    background: #fff;
    z-index: 5555;
    box-shadow: 0.5rem 0 1rem rgba(0, 0, 0, 0.25);
    transition: all 200ms ease;
    opacity: 0;
  }
  @media screen and (min-width: 768px) {
    .mobile-nav {
      width: 28rem;
      left: -28rem;
    }
  }
  @media screen and (min-width: 1280px) {
    .mobile-nav {
      display: none !important;
    }
  }
  .mobile-nav.open {
    left: 0;
    opacity: 1;
  }
  .mobile-nav-wrapper {
    height: 100vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 3rem;
  }
  .mobile-nav-wrapper::-webkit-scrollbar {
    display: none;
  }
  @media screen and (min-width: 480px) {
    .mobile-nav-wrapper {
      padding: 4rem;
    }
  }
  .mobile-nav-close {
    display: block;
    position: absolute;
    right: 2rem;
    top: 2rem;
  }
  .mobile-nav-close svg,
  .mobile-nav-close rect {
    fill: #000;
  }
  .mobile-nav a {
    color: #000;
    font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
    font-family: "Rubik", sans-serif;
  }
  .mobile-nav-logo {
    padding-bottom: 1rem;
  }
  .mobile-nav-logo a {
    display: block;
  }
  .mobile-nav-logo a svg {
    width: 8rem;
  }
  @media screen and (min-width: 480px) {
    .mobile-nav-logo a svg {
      width: 10rem;
    }
  }
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
  }
  .mobile-nav-toggle .label {
    font-family: "Rubik", sans-serif;
  }
  .mobile-nav-toggle .icon {
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.5rem;
    transition: all 200ms ease;
  }
  .mobile-nav-toggle .icon svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform: translateY(-8px);
  }
  .mobile-nav-toggle .icon svg,
  .mobile-nav-toggle .icon path {
    fill: #000;
  }
  .mobile-nav-toggle.active .icon {
    transform: rotate(-90deg);
  }
  .mobile-nav-section {
    padding-bottom: 1rem;
  }
  .mobile-nav-section.basic a {
    font-family: "Rubik", sans-serif;
  }
  .mobile-nav-body {
    display: none;
    padding-top: 0.5rem;
  }
  .mobile-nav-body.active {
    display: block;
  }
  .mobile-nav-body .mobile-nav-link {
    padding-left: 1rem;
  }
  .mobile-nav-body .mobile-nav-link + .mobile-nav-link {
    padding-top: 0.5rem;
  }
  .mobile-nav-body .mobile-nav-link a {
    font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
    font-weight: 400;
  }
  .mobile-nav .search-container {
    background: #fff;
    display: flex;
    align-items: center;
  }
  .mobile-nav .search-modal {
    right: auto;
    left: 0;
    width: 100%;
    top: 2.5rem;
  }
  .mobile-nav .mobile-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
  }
  .link-list {
    display: flex;
    align-items: center;
  }
  @media screen and (min-width: 992px) {
    .link-list {
      width: 33.33vw;
      background-color: rgba(255, 255, 255, 0.02);
      border-right: 1px solid rgba(255, 255, 255, 0.07);
      right: -33.33vw;
      top: 0;
    }
    .link-list.slide-in {
      right: 0;
      transition: right 800ms ease 300ms;
    }
    .link-list.slide-out {
      right: -33.33vw;
      transition: right 800ms ease 375ms;
    }
  }
  @media screen and (min-width: 1680px) {
    .link-list {
      width: 36rem;
      right: -36rem;
    }
    .link-list.slide-out {
      right: -36rem;
    }
  }
  .link-list ul {
    padding: 0 clamp(2rem, 5vw, 3rem);
    margin: 0;
  }
  @media screen and (min-width: 1680px) {
    .link-list ul {
      padding: 0 clamp(4rem, 10vw, 8rem);
    }
  }
  .link-list ul a {
    padding: 1rem 0;
    display: inline-block;
    color: #fff;
    font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
    font-weight: 300;
    font-family: "Rubik", sans-serif;
    text-transform: uppercase;
    position: relative;
    transition-property: all;
    transition-duration: 250ms;
    transition-timing-function: ease;
    opacity: 0;
  }
  @media screen and (min-width: 1280px) {
    .link-list ul a {
      font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
    }
  }
  @media screen and (max-height: 800px) {
    .link-list ul a {
      padding: 0.5rem 0;
    }
  }
  .link-list ul a:before {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;
  }
  .link-list ul a:after {
    position: absolute;
    bottom: 1rem;
    left: 0;
    display: block;
    content: "";
    width: 0;
    height: 1px;
    transition: all 450ms ease 75ms;
    background-image: linear-gradient(90deg, #a510f8 0%, #00a3ff 100%);
  }
  .link-list ul a:hover:after, .link-list ul a.active:after {
    width: 100%;
  }
  .link-list ul li:nth-child(1) a {
    transition-delay: 100ms;
  }
  .link-list ul li:nth-child(1) a:before {
    transition-delay: 100ms;
  }
  .link-list ul li:nth-child(2) a {
    transition-delay: 200ms;
  }
  .link-list ul li:nth-child(2) a:before {
    transition-delay: 200ms;
  }
  .link-list ul li:nth-child(3) a {
    transition-delay: 300ms;
  }
  .link-list ul li:nth-child(3) a:before {
    transition-delay: 300ms;
  }
  .link-list ul li:nth-child(4) a {
    transition-delay: 400ms;
  }
  .link-list ul li:nth-child(4) a:before {
    transition-delay: 400ms;
  }
  .link-list ul li:nth-child(5) a {
    transition-delay: 500ms;
  }
  .link-list ul li:nth-child(5) a:before {
    transition-delay: 500ms;
  }
  .link-list ul li:nth-child(6) a {
    transition-delay: 600ms;
  }
  .link-list ul li:nth-child(6) a:before {
    transition-delay: 600ms;
  }
  .link-list ul li:nth-child(7) a {
    transition-delay: 700ms;
  }
  .link-list ul li:nth-child(7) a:before {
    transition-delay: 700ms;
  }
  .link-list ul li:nth-child(8) a {
    transition-delay: 800ms;
  }
  .link-list ul li:nth-child(8) a:before {
    transition-delay: 800ms;
  }
  .link-list ul li:nth-child(9) a {
    transition-delay: 900ms;
  }
  .link-list ul li:nth-child(9) a:before {
    transition-delay: 900ms;
  }
  .link-list ul.show a {
    opacity: 1;
  }
  .link-list ul.show a:before {
    height: 0;
    inset: 0;
  }
  .tab-initial .tab-header__banner {
    padding-bottom: 4rem;
  }
  .tab-initial .tab-header__banner-link {
    display: block;
  }
  .tab-initial .tab-header .logo {
    margin-bottom: 1rem;
  }
  .tab-initial .content-columns {
    padding-top: 1rem;
    display: grid;
    gap: 2rem;
  }
  @media screen and (min-width: 1280px) {
    .tab-initial .content-columns {
      gap: 3rem;
      grid-template-columns: repeat(6, 1fr);
    }
    .tab-initial .content-columns .about-column {
      grid-column: 1/span 2;
    }
    .tab-initial .content-columns .promo {
      grid-column: 3/span 4;
    }
    .tab-initial .content-columns .connect {
      grid-column: 1/span 6;
    }
  }
  @media screen and (min-width: 1440px) {
    .tab-initial .content-columns .promo {
      grid-column: 3/span 2;
    }
    .tab-initial .content-columns .connect {
      grid-column: 5/span 2;
    }
  }
  .tab-initial .header {
    padding-bottom: 1rem;
  }
  .tab-initial .header h4 {
    color: #7f7f7f;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: "Rubik", sans-serif;
  }
  .tab-initial .social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 0 3rem;
  }
  @media screen and (min-width: 1280px) {
    .tab-initial .social {
      grid-template-columns: 1fr 2fr;
    }
  }
  @media screen and (min-width: 1440px) {
    .tab-initial .social {
      grid-template-columns: repeat(1, 1fr);
      gap: 0;
    }
  }
  .tab-initial .social ul {
    display: flex;
    align-items: center;
  }
  .tab-initial .social li + li {
    margin-left: 1.5rem;
  }
  .tab-initial .social-link {
    display: flex;
    width: 1.25rem;
    height: 1.5rem;
  }
  .tab-initial .social-link svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    fill: #fff;
    transition: all 200ms ease;
  }
  .tab-initial .social-link svg:hover {
    fill: #2d77f8;
  }
  .tab-initial .social p {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  @media screen and (min-width: 1440px) {
    .tab-initial .social p {
      padding-top: 2rem;
    }
  }
  .tab-initial .social p span,
  .tab-initial .social p a {
    display: block;
    padding-bottom: 0.25rem;
  }
  .tab-initial .social p a:hover {
    text-decoration: underline;
  }
  .tab-initial .promo a {
    text-decoration: none;
  }
  .tab-initial .promo .logo {
    max-width: 12rem;
    margin-bottom: 1rem;
  }
  @media screen and (min-width: 1440px) {
    .latest {
      display: block;
      font-family: "Rubik", sans-serif;
      font-weight: 300;
      margin-top: 4rem;
    }
  }
  @media screen and (min-width: 1680px) {
    .latest {
      margin-top: 6rem;
    }
  }
  @media screen and (max-height: 800px) {
    .latest {
      display: none;
    }
  }
  .latest .header {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
  }
  .latest .header h3 {
    font-size: clamp(0.66rem, 0.58rem + 0.48vw, 0.88rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .latest .posts {
    display: grid;
    gap: 2rem;
  }
  @media screen and (min-width: 1280px) {
    .latest .posts {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (min-width: 1280px) {
    .latest .post:nth-child(even):before {
      display: block;
      content: "";
      width: 1px;
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      position: absolute;
      left: -1.5rem;
    }
  }
  .latest .post a {
    display: flex;
    align-items: flex-start;
  }
  .latest .post .photo {
    aspect-ratio: 1/1;
    width: 5rem;
    background: rgba(255, 255, 255, 0.1);
  }
  .latest .post .photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .latest .post .info {
    flex: 1;
    padding-left: 1rem;
  }
  .latest .post .type {
    margin-bottom: 0.25rem;
  }
  .latest .post .type h5 {
    background: #fff;
    color: #000;
    line-height: 1em;
    padding: 0.25rem 0.5rem 0.125rem;
    text-align: center;
    display: inline-block;
    border-radius: 10px;
    font-size: clamp(0.5rem, 0.42rem + 0.38vw, 0.675rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .latest .post .headline h4 {
    font-weight: 700;
    font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
    font-family: "Circular Std", sans-serif;
  }
  .latest .post .copy {
    max-width: 28rem;
  }
  .nav-content {
    color: #fff;
  }
  .nav-content a {
    color: #fff;
  }
  @media screen and (min-width: 992px) {
    .nav-content {
      width: 66.67vw;
      padding-top: 94px;
      display: flex;
      align-items: center;
      opacity: 0;
      transition: opacity 400ms ease 1000ms;
      padding: 0 3rem;
      padding-top: 5rem;
    }
  }
  @media screen and (min-width: 1280px) {
    .nav-content {
      padding-top: 0;
    }
  }
  @media screen and (min-width: 1440px) {
    .nav-content {
      width: auto;
      flex: 1;
      padding: 0 6rem;
    }
  }
  @media screen and (min-width: 1920px) {
    .nav-content {
      padding: 0 clamp(6rem, 15vw, 12rem);
    }
  }
  @media screen and (max-width: 991px) {
    .nav-content {
      display: none;
    }
  }
  .nav-content .tab-panel {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto 0 0;
    opacity: 0;
    transform: translateY(3rem);
    transition: all 700ms ease;
  }
  .nav-content .tab-panel[data-tab-panel=initial], .nav-content .tab-panel.show {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-content .tab-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.25rem;
  }
  .nav-content .tab-header h2 {
    font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
    text-transform: uppercase;
    font-size: "Rubik", sans-serif;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
  .nav-content .parent-link {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-content .nav-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .nav-content .nav-grid a {
    display: block;
    text-align: center;
    padding: 2.5rem;
  }
  @media screen and (min-width: 1680px) {
    .nav-content .nav-grid a {
      padding: 3rem;
    }
  }
  @media screen and (max-height: 800px) {
    .nav-content .nav-grid a {
      padding: 2rem;
    }
  }
  .nav-content .nav-grid span.label {
    display: block;
    padding-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(0.6rem, 0.52rem + 0.43vw, 0.78rem);
    font-weight: 400;
    max-width: 15rem;
    margin: 0 auto;
  }
  @media screen and (min-width: 1440px) {
    .nav-content .nav-grid span.label {
      font-size: clamp(0.66rem, 0.58rem + 0.48vw, 0.88rem);
    }
  }
  .nav-content .nav-grid span.icon {
    display: block;
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 3rem;
    margin: 0 auto;
  }
  @media screen and (min-width: 1680px) {
    .nav-content .nav-grid span.icon {
      max-width: 4rem;
    }
  }
  .nav-content .nav-grid span.icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .nav-content .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-content .partners-grid span.icon {
    max-width: 4rem;
  }
  @media screen and (min-width: 1680px) {
    .nav-content .partners-grid span.icon {
      max-width: 8rem;
    }
  }
  .nav-content .company-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .nav-content .company-grid .grid-item {
    grid-column: span 2;
  }
  @media screen and (min-width: 1440px) {
    .nav-content .products-grid a {
      padding: 4rem;
    }
  }
  .nav-content .products-grid span.label {
    display: none;
  }
  .nav-content .products-grid span.icon {
    display: block;
    aspect-ratio: 2/1;
    width: 100%;
    max-width: 100%;
  }
  .nav-content .products-grid span.icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .nav-content .products-grid .grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-navigation {
    background: #000;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 4444;
    top: 0;
    right: -100%;
    display: flex;
  }
  .site-navigation.slide-in {
    right: 0;
    transition: right 625ms ease 50ms;
  }
  .site-navigation.slide-out {
    right: -100% !important;
    transition: right 725ms ease 400ms;
  }
  .site-navigation .tab-container {
    display: none;
  }
  body.nav-overlay-open {
    overflow: hidden;
  }
  body.nav-overlay-open .site-header .desktop-nav,
  body.nav-overlay-open .site-header .search-container,
  body.nav-overlay-open .site-header .cta,
  body.nav-overlay-open .site-header .hamburger {
    background-color: #000;
    transition: background-color 500ms ease 50ms;
  }
  body.nav-overlay-open .site-header .site-logo:before {
    background-color: #2d77f8;
  }
  body.nav-overlay-open .site-header .site-logo:before {
    opacity: 1;
  }
  body.nav-overlay-open .site-header .site-logo svg #background {
    fill: #000;
  }
  body.nav-overlay-open .site-header .desktop-nav__list {
    opacity: 0;
  }
  body.nav-overlay-open .site-header .desktop-nav__link {
    color: #fff;
  }
  body.nav-overlay-open .site-header .search-toggle svg {
    fill: #fff;
  }
  body.nav-overlay-open .site-header .hamburger .bun .patty {
    background: none;
  }
  body.nav-overlay-open .site-header .hamburger .bun .patty:after {
    top: 0;
    transform: rotate(45deg);
    background: #fff;
  }
  body.nav-overlay-open .site-header .hamburger .bun .patty:before {
    top: 0;
    transform: rotate(-45deg);
    background: #fff;
  }
  body.nav-overlay-open .nav-content {
    opacity: 1;
    transition: all 400ms ease 1000ms;
  }
  .site-header {
    z-index: 5555;
    transition: all 200ms ease;
    background: #fff;
    position: sticky;
    top: 0;
  }
  @media screen and (min-width: 992px) {
    .site-header.has-banner {
      top: 86px;
    }
  }
  .site-header-wrapper {
    display: flex;
    align-content: center;
    gap: 0 1rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    position: static;
  }
  @media screen and (min-width: 992px) {
    .site-header-wrapper {
      padding: 0 2rem;
    }
  }
  @media screen and (min-width: 992px) {
    body.nav-overlay-open .site-header.has-banner {
      transform: translateY(-86px);
    }
  }
  body.page-template-atlas .desktop-nav__link-products,
  body.page-template-solutions .desktop-nav__link-solutions,
  body.page-template-company .desktop-nav__link-company,
  body.parent-pageid-30 .desktop-nav__link-solutions,
  body.post-type-archive-customer_stories .desktop-nav__link-customer-stories,
  body.post-type-archive-resources .desktop-nav__link-resources,
  body.single-customer_stories .desktop-nav__link-customer-stories {
    background: #2d77f8;
    color: #fff;
  }
}
@layer components {
  .footer-container {
    padding: clamp(3rem, 12vh, 7.5rem) 0 0 0;
  }
  @media screen and (min-width: 480px) {
    .footer-container {
      padding-right: 1rem;
      padding-left: 1rem;
    }
  }
  @media screen and (min-width: 768px) {
    .footer-container {
      grid-column: 2/span 8;
      padding-right: 0;
      padding-left: 0;
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(3, 1fr);
    }
    .footer-container .newsletter-form {
      grid-column: 2/span 2;
    }
    .footer-container .footer-nav {
      grid-column: 1/-1;
    }
  }
  @media screen and (min-width: 992px) {
    .footer-container {
      grid-column: 2/span 12;
    }
  }
  .newsletter-form {
    border-radius: 8px;
    background-image: linear-gradient(90deg, #a510f8 0%, #00a3ff 100%);
    padding: 2px;
    margin-top: 2rem;
  }
  @media screen and (min-width: 768px) {
    .newsletter-form {
      margin-top: 0;
    }
  }
  .newsletter-form-container {
    background: #000;
    border-radius: 8px;
  }
  .newsletter-form form {
    background: unset !important;
  }
  .newsletter-form .field-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .newsletter-form ._form-title {
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: "Rubik", sans-serif;
    padding-bottom: 0.5rem;
  }
  .newsletter-form .email-input {
    flex: 1 !important;
  }
  @media screen and (min-width: 480px) {
    .newsletter-form .email-input {
      padding-right: 1rem;
    }
  }
  .newsletter-form .email-input input {
    width: 100% !important;
    border-radius: 4px !important;
    height: 2.75rem !important;
    font-family: "Rubik", sans-serif !important;
    padding: 0 0.75rem !important;
  }
  .newsletter-form .email-input input:focus, .newsletter-form .email-input input:active {
    outline: 1px solid #a510f8 !important;
  }
  .newsletter-form .cta {
    width: 100%;
    margin-top: 1rem;
  }
  @media screen and (min-width: 768px) {
    .newsletter-form .cta {
      width: unset;
      margin-top: 0;
    }
  }
  .newsletter-form .g-recaptcha {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .newsletter-form .g-recaptcha > div,
  .newsletter-form .g-recaptcha iframe {
    width: 100% !important;
  }
  @media screen and (min-width: 480px) {
    .newsletter-form .g-recaptcha > div,
    .newsletter-form .g-recaptcha iframe {
      max-width: 340px;
    }
  }
  .pre-footer {
    margin-top: clamp(-8rem, -25vh, -16rem);
    background-image: linear-gradient(90deg, #a510f8 0%, #00a3ff 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
  }
  @media screen and (min-width: 992px) {
    .pre-footer {
      justify-content: space-between;
      padding: 3rem;
    }
  }
  @media screen and (min-width: 1280px) {
    .pre-footer {
      padding: 4rem;
    }
  }
  .pre-footer .headline {
    padding-bottom: 1rem;
  }
  @media screen and (min-width: 1280px) {
    .pre-footer .headline {
      padding-bottom: 0.25rem;
    }
  }
  .pre-footer .headline h3 {
    font-size: clamp(1.5rem, 1.29rem + 1.07vw, 1.95rem);
    font-weight: 400;
    line-height: 1em;
  }
  .pre-footer ul {
    list-style-type: none;
    padding: 0;
  }
  @media screen and (min-width: 768px) {
    .pre-footer ul {
      display: flex;
      align-items: center;
    }
  }
  .pre-footer ul li {
    font-weight: 300;
    font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
    display: flex;
    align-items: center;
  }
  .pre-footer ul li + li {
    margin-top: 0.5rem;
  }
  @media screen and (min-width: 768px) {
    .pre-footer ul li + li {
      margin-top: 0;
      margin-left: 2rem;
    }
  }
  .pre-footer ul li .checkmark {
    display: block;
    margin-right: 0.5rem;
  }
  .pre-footer ul li .checkmark svg {
    width: 0.75rem;
    height: 0.75rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .pre-footer .ctas {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  @media screen and (min-width: 1280px) {
    .pre-footer .ctas {
      padding-top: 0;
    }
  }
  .pre-footer .ctas .cta {
    margin-top: 1rem;
    margin-right: 1rem;
  }
  @media screen and (min-width: 768px) {
    .pre-footer .ctas .cta {
      margin-right: 0;
      margin-top: 0;
    }
    .pre-footer .ctas .cta + .cta {
      margin-left: 1rem;
    }
  }
  .pre-footer .ctas .cta .btn:hover {
    text-decoration: none;
  }
  .footer-nav {
    display: grid;
    gap: 4rem 2rem;
    padding-top: clamp(2rem, 5vh, 4rem);
  }
  @media screen and (min-width: 992px) {
    .footer-nav {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .footer-nav a {
    color: #fff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-nav .header h4 {
    color: #7f7f7f;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: "Rubik", sans-serif;
  }
  .footer-nav ul {
    padding-top: 0.5rem;
  }
  .footer-nav ul li {
    padding-bottom: 0.25rem;
  }
  .footer-nav ul li a {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .social ul {
    display: flex;
    align-items: center;
  }
  .social li + li {
    margin-left: 1.5rem;
  }
  .social-link {
    display: flex;
    width: 1.25rem;
    height: 1.5rem;
  }
  .social-link svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    fill: #fff;
    transition: all 200ms ease;
  }
  .social-link svg:hover {
    fill: #2d77f8;
  }
  .social p {
    padding-top: 2rem;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
  }
  .social p span,
  .social p a {
    display: block;
    padding-bottom: 0.25rem;
  }
  .social p a:hover {
    text-decoration: underline;
  }
  .badges {
    padding-top: 2rem;
    display: flex;
    align-items: center;
  }
  .badges .badge {
    width: 2rem;
    height: 2rem;
  }
  @media screen and (min-width: 480px) {
    .badges .badge {
      width: 4rem;
      height: 4rem;
    }
  }
  .badges .badge + .badge {
    margin-left: 1rem;
  }
  .badges .badge img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .legal {
    margin-top: clamp(2rem, 5vh, 4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 0 clamp(3rem, 12vh, 7.5rem) 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  @media screen and (min-width: 768px) {
    .legal {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 0;
    }
  }
  .legal__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  @media screen and (min-width: 768px) {
    .legal__links {
      flex-direction: row;
      align-items: center;
      justify-content: flex-end;
      gap: 1rem;
    }
  }
  .legal-link {
    display: block;
    color: #ccc;
    font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
    line-height: 1.5em;
    font-weight: 300;
  }
  .legal-link:hover {
    text-decoration: underline;
  }
  .site-footer {
    background: #000;
    color: #fff;
    margin-top: clamp(5rem, 15vh, 7.5rem);
  }
  @media screen and (min-width: 992px) {
    .site-footer {
      margin-top: clamp(10rem, 30vh, 15rem);
    }
  }
}
/*# sourceMappingURL=global.css.map */
