@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
@import url("https://cloud.typenetwork.com/projects/6208/fontface.css/");
/********************
   TRANSFORMATIONS
 ********************/
/****************
   UI ELEMENTS
 ****************/
:root {
  --color-dark-blue: #0C467D;
  --color-dark-gray: #3E484C;
  --color-medium-gray: #aaaaaa;
  --color-light-gray: #f2f2f2;
  --color-light-blue: #4896D6;
  --color-light-orange: #FCF6EC;
  --color-orange: #F99841;
  --color-dark-orange: #E37D43;
  --color-dark-orange-002: #E37D4333;
  --page-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

html {
  min-height: 100vh;
}

body {
  font-family: Roboto;
  line-height: 1.6em;
  color: var(--color-dark-gray);
  font-weight: 300;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: "Stainless Bd";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  color: var(--color-dark-blue);
  margin: 0;
  padding: 0;
}

h1.content, h2.content, h3.content, h4.content, h5.content {
  margin-bottom: 1em;
}

h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

h3.related-heading {
  color: var(--color-dark-blue);
  border-top: 3px solid var(--color-dark-blue);
  width: 100%;
  max-width: 300px;
  padding-top: 5px;
}

p {
  font-weight: 300;
}

p.content {
  margin-bottom: 2em;
}

ol {
  padding-left: 30px;
}

li {
  margin-bottom: 1em;
}

a {
  font-weight: 300;
  color: var(--color-light-blue);
  text-decoration: none;
}

.button,
button {
  border: 0;
  font-weight: 500;
  font-size: 1em;
  padding: 0.75em 1.5em;
  border-radius: 5px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.button.primary,
button.primary {
  background-color: var(--color-orange);
  color: white;
}

.button.secondary,
button.secondary {
  background-color: white;
  color: var(--color-dark-blue);
}

.jumbo {
  font-size: 3rem;
  line-height: 1em;
  letter-spacing: -1px;
}

section,
footer {
  padding: 6em 0;
}

section.collapsed,
footer.collapsed {
  padding: 0;
}

.wrapper {
  max-width: var(--page-width);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header {
  background-color: white;
}

header .header-content {
  padding: 1em 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.hero:not(.banner-style) .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hero:not(.banner-style) .wrapper .page-title-group {
  width: var(--page-width);
  color: white;
}

.hero:not(.banner-style) .wrapper .page-title-group .pre-title {
  text-transform: uppercase;
  margin-bottom: 1em;
}

.hero:not(.banner-style) .wrapper .page-title-group h1 {
  margin-bottom: 0;
  color: white;
}

.hero.banner-style .wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hero.banner-style .wrapper h1 {
  line-height: normal;
  font-size: 2em;
}

.hero.banner-style .wrapper:before {
  content: '';
  position: absolute;
  left: -50vw;
  top: 0;
  width: 50vw;
  height: 100px;
  background: var(--color-dark-blue);
}

.hero.banner-style .page-title-group {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 100px;
  position: relative;
  top: 50%;
  -webkit-transform: none;
          transform: none;
  left: 0;
  top: unset;
  background: var(--color-dark-blue);
}

.hero.banner-style .page-title-group:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  border-style: solid;
  border-width: 100px 0 0 80px;
  border-color: transparent transparent transparent var(--color-dark-blue);
}

.hero.banner-style .page-title-group h1 {
  margin-bottom: 0;
  color: white;
}

.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo {
  max-width: 125px;
}

.logo img {
  width: 100%;
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
}

nav li {
  margin-bottom: 0;
}

nav li a {
  color: #0C467D;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
}

.image-text .wrapper,
.team-member .wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.image-text .image,
.team-member .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30%;
  padding: 2em;
}

.image-text .image img,
.team-member .image img {
  width: auto;
  height: 150px;
}

.image-text .text,
.team-member .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 70%;
}

@media (max-width: 40em) {
  .image-text,
  .team-member {
    padding-top: 0;
    padding-bottom: 2em;
  }
  .image-text .wrapper,
  .team-member .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .image-text .image,
  .team-member .image {
    width: 100%;
    height: 300px;
  }
  .image-text .image img,
  .team-member .image img {
    height: 100%;
  }
  .image-text .text,
  .team-member .text {
    width: 95%;
    margin: 2em auto 0;
    padding: 1em;
  }
}

.team-member h1 {
  margin-bottom: 0.25em;
}

.team-member h3 {
  font-family: Roboto !important;
  font-weight: 300 !important;
  margin-bottom: 1em;
}

.team-member .image {
  width: 40%;
  padding: 0;
}

.team-member .image:before {
  padding-top: 100%;
  content: "";
}

.team-member .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100% !important;
}

.team-member .text {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 0 0 2em;
}

.capabilities .wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.capabilities h3 {
  position: relative;
  margin-bottom: 2em;
}

.capabilities h3::after {
  content: '';
  width: 40%;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-bottom: 2px solid var(--color-dark-blue);
}

.capabilities .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60%;
  padding: 2em;
}

.capabilities .image img {
  width: auto;
  height: 150px;
}

.capabilities .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3em 3em 3em 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  width: 40%;
}

.text-only .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.text-only .text p {
  margin-bottom: 1em;
}

.left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.image-text .left {
  border-right: 1px solid var(--color-dark-gray);
}

.right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.two-by-two-grid .page-excerpt {
  margin-bottom: 2em;
  max-width: 100ch;
  font-size: 120%;
}

.two-by-two-grid .grid2x2 {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width:500px){
    .two-by-two-grid .grid2x2 {
    min-height:100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction:column;
  }
}
.two-by-two-grid .grid-item {
  border-radius: 10px;
  margin-bottom: 3%;
  -ms-flex-preferred-size: calc(50% - 1.5%);
      flex-basis: calc(50% - 1.5%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden !important;
  -webkit-box-shadow: 5px 5px 14px #c9c9c9,  -5px -5px 14px #ffffff;
          box-shadow: 5px 5px 14px #c9c9c9,  -5px -5px 14px #ffffff;
}

.two-by-two-grid .grid-item:nth-child(odd) {
  margin-right: 3%;
}

.two-by-two-grid .grid-item .grid-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.two-by-two-grid .grid-item img {
  max-width: 100px !important;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.two-by-two-grid .grid-item button {
  width: 100%;
}

.two-by-two-grid .grid-item .grid-item-footer {
  background-color: #f2f2f2;
  padding: 2em;
}

.video-banner {
  background: #1e5286;
  background: -webkit-gradient(linear, left top, right top, from(#1e5286), to(#2ba5c0));
  background: linear-gradient(90deg, #1e5286 0%, #2ba5c0 100%);
  color: white;
}

.video-banner .wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.video-banner h2 {
  color: white;
}

.video-banner hr {
  width: 60%;
  color: white;
  border: 0.5px solid;
  margin: 1em 0;
}

.video-banner .video-banner-text {
  padding-right: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.video-banner .founder-message {
  font-weight: 500;
}

footer {
  background-color: var(--color-light-gray);
  font-size: 0.75em;
}

footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer .footer-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

footer .footer-col ul {
  list-style-type: none;
}

footer .footer-col li {
  margin-bottom: 0;
}

footer .footer-col p {
  font-weight: 300;
  line-height: 1.7em;
  margin-bottom: 1em;
}

footer .footer-notices {
  margin-top: 2em;
}

footer .footer-notices .copyright-year {
  display: inline;
}

@media (max-width: 40em) {
  footer {
    padding: 2em 0;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
    margin: auto;
  }
  footer .footer-notices {
    width: 95%;
    margin: 1em auto;
  }
}

.banner-heading {
  background-color: var(--color-dark-blue);
  padding: 2em;
  color: white;
}

.banner-heading h1 {
  margin-bottom: 0.5em;
  color: white;
}

.banner-heading p {
  max-width: 100ch;
}

.related .related-heading {
  margin-bottom: 2em;
}

.related .grid3x1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

.related .grid3x1 .grid-item {
  background-color: var(--color-light-gray);
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
  border-radius: 6px;
}

.related .grid3x1 .grid-item .grid-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.related .grid3x1 .grid-item .pre-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.75em;
  margin-bottom: 0;
}

.related .grid3x1 .grid-item img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border-radius: 6px;
}

.about-the-rebrand {
  background: #1e5286;
  background: -webkit-gradient(linear, left top, right top, from(#1e5286), to(#2ba5c0));
  background: linear-gradient(90deg, #1e5286 0%, #2ba5c0 100%);
  color: white;
}

.about-the-rebrand .wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.about-the-rebrand .wrapper div {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.about-the-rebrand .wrapper .about-the-rebrand-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-the-rebrand .wrapper .about-the-rebrand-heading h2 {
  text-align: center;
  margin-bottom: 1em;
  color: white;
}

.about-the-rebrand .wrapper .about-the-rebrand-text {
  padding-right: 4em;
}

@media (max-width: 40em) {
  .about-the-rebrand {
    padding: 4em 0;
  }
  .about-the-rebrand .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-the-rebrand .wrapper .about-the-rebrand-text {
    padding: 3em;
    text-align: center;
  }
}

.testimonials {
  position: relative;
}

.testimonials h2 {
  position: absolute;
  top: 3em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: var(--color-dark-gray);
}

.testimonials-slider {
  width: 100%;
  text-align: center;
  position: relative;
}

.testimonials-slider > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 10px;
  height: 10px;
  background: var(--color-medium-gray);
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 1em 2px 0;
  position: relative;
}

.testimonials-slider > a:active {
  top: 1px;
}

.testimonials-slider > a:focus {
  background: #000;
}

.testimonials-slider .testimonial-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.testimonials-slider .testimonial-slide .testimonial-quote {
  font-weight: 300;
  margin-bottom: 1em;
  max-width: 100ch;
  font-size: 1.5em;
}

.testimonials-slider .testimonial-slide .testimonial-author {
  text-transform: uppercase;
  font-size: 0.75em;
}

.testimonials-slider .testimonial-slide .testimonial-author::before {
  content: "– ";
}

.testimonials-slider .testimonial-slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonials-slider .testimonial-slides::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.testimonials-slider .testimonial-slides > div {
  scroll-snap-align: start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 300px;
  margin-right: 50px;
  border-radius: 10px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials-slider .testimonial-slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.testimonials-slider .testimonial-slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}

.testimonials-slider .testimonial-slides::-webkit-scrollbar-track {
  background: transparent;
}

.slider-controls {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 2em;
  pointer-events: none;
}

.slider-controls .left-arrow {
  margin-left: 0.5em;
  pointer-events: auto;
}

.slider-controls .right-arrow {
  margin-right: 0.5em;
  pointer-events: auto;
}

.bullets > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 10px;
  height: 10px;
  background: var(--color-medium-gray);
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 1em 0.25em 0;
  position: relative;
}

.bullets > a:active {
  top: 1px;
}

.bullets > a:focus {
  background: #000;
}

.team-highlights {
  background-color: var(--color-dark-orange);
  padding: 0;
}

.team-highlights .wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.team-highlights .highlights-slider {
  width: 100%;
  text-align: center;
  position: relative;
}

.team-highlights .highlights-slider .slider-controls a {
  color: white;
}

.team-highlights .highlights-slider .bullets {
  position: absolute;
  bottom: 20px;
  right: 18em;
}

.team-highlights .highlights-slider .bullets a {
  background-color: white;
}

.team-highlights .highlights-slider .highlight-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  scroll-snap-align: start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 300px;
  margin-right: 50px;
  border-radius: 10px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.team-highlights .highlights-slider .highlight-slide .highlight-heading {
  font-weight: 300;
  margin-bottom: 1em;
  max-width: 100ch;
  font-size: 1.5em;
}

.team-highlights .highlights-slider .highlight-slide .left-col {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 2em 0 6em;
}

.team-highlights .highlights-slider .highlight-slide .right-col {
  width: 50%;
  padding: 0 6em 0 2em;
  color: white;
}

.team-highlights .highlights-slider .highlight-slide .team-image {
  height: 100%;
}

.team-highlights .highlights-slider .highlight-slide .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.team-highlights .highlights-slider .highlight-slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.team-highlights .highlights-slider .highlight-slides::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.team-highlights .highlights-slider .highlight-slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.team-highlights .highlights-slider .highlight-slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}

.team-highlights .highlights-slider .highlight-slides::-webkit-scrollbar-track {
  background: transparent;
}

#client-overview {
  background-color: var(--color-light-gray);
  padding: 3em;
}

#the-challenge {
  background-color: var(--color-dark-orange);
  padding: 3em;
}

#the-challenge h3,
#the-challenge p {
  color: white;
}

#case-study-icons {
  background-color: var(--color-light-gray);
  padding: 3em;
}

#case-study-icons ul {
  height: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

#case-study-icons .icon {
  width: 70px;
  height: 70px;
  font-size: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  color: white;
  background-color: var(--color-orange);
  border-radius: 50%;
}

#case-study-icons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#case-study-icons li p {
  margin-top: 1em;
}

#icons {
  padding: 3em;
}

#icons ul {
  height: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#icons .icon {
  width: 70px;
  height: 70px;
  font-size: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  color: var(--color-dark-blue);
  background-color: var(--color-light-gray);
  border-radius: 50%;
}

#icons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30%;
  text-align: center;
}
#icons li{
  position:relative;
}
.link_spanner{
  position:absolute; 
  width:100%;
  height:100%;
  top:0;
  left: 0;
  z-index: 1;
}
  
#icons li p {
  margin-top: 1em;
  color: var(--color-dark-blue);
  font-weight: 400;
}
#icons li a {
  margin-top: 1em;
  color: var(--color-dark-blue);
  font-weight: 400;
}

#case-study-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media screen and (max-width: 640px) {
  #what-we-did,
  #the-process {
    height: auto;
  }
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (50%)[2];
      grid-template-columns: repeat(2, 50%);
}

@media (max-width: 40em) {
  .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .grid > * {
    -ms-grid-column: 1;
    grid-column: 1/1;
  }
}

#what-we-did {
  padding: 3em;
}

#what-we-did-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#what-we-did-photo img {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#the-process {
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  grid-row: 3/5;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  padding: 3em;
}

#the-process-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.features .intro {
  margin-bottom: 2em;
}

.features .features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.features .features-list .choices {
  width: 30%;
}

.features .features-list .choices ul {
  height: 100%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.features .features-list .choices li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.25em 0;
  margin: 0;
  text-transform: uppercase;
}

.features .features-list .choices li:not(last-child) {
  border-bottom: 1px solid var(--color-dark-gray);
}

.features .features-list .content {
  padding-left: 8em;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.features .features-list .content .image {
 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2em;
}

.features .features-list .content .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.features .features-list .content ul {
  margin-top: 1em;
  padding-left: 20px;
}

.features .features-list .content li {
  margin: 0 0 0.5em 0;
}

.text-text {
  padding: 3em 0 !important;
  background-color: var(--color-dark-blue);
  padding: 2em;
  color: white;
}

.text-text .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.text-text .text.title {
  border-right: 0.5px solid white;
  padding-right: 3em;
  font-weight: 500;
}

.text-text .text.body {
  padding-left: 3em;
  font-size: 85%;
}

.text-text p {
  max-width: 100ch;
}

.article .article-content {
  width: 100ch;
}

.article .wrapper {
  display: block;
}

.article h1 {
  font-size: 1.5em;
  max-width: 100ch;
  text-transform: uppercase;
}

.article img {
  float: right;
  width: 400px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 1em;
  margin-bottom: 1em;
}

.article p {
  margin-bottom: 1em;
}

.three-column-tiles {
  padding: 0;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}

.three-column-tiles h2 {
  margin-bottom: 1em;
  color: var(--color-light-blue);
  font-weight: 400;
}

.three-column-tiles ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4%;
}

.three-column-tiles li {
  width: 31%;
  background-color: white;
  border-radius: 10px;
  padding: 2em;
  overflow: hidden !important;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 40em) {
  .three-column-tiles {
    margin-top: 1em;
    -webkit-transform: none;
            transform: none;
  }
  .three-column-tiles ul {
    border: 1px solid red;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .three-column-tiles ul li {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    padding: 3em;
  }
}

.history .left {
  border-right: 0;
}

.history .text {
  padding-top: 0;
  padding-bottom: 0;
}

.history .image {
  padding: 0;
}

.history .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials {
  position: relative;
}

.testimonials h2 {
  position: absolute;
  top: 3em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: var(--color-dark-gray);
}

.teams-slider {
  width: 100%;
  position: relative;
}

.teams-slider > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 10px;
  height: 10px;
  background: var(--color-medium-gray);
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 1em 2px 0;
  position: relative;
}

.teams-slider > a:active {
  top: 1px;
}

.teams-slider > a:focus {
  background: #000;
}

.teams-slider .team-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-light-gray);
  padding: 2em;
}

.teams-slider .team-slide .team-name {
  max-width: 100ch;
  font-size: 1.25em;
}

.teams-slider .team-slide .team-title {
  text-transform: uppercase;
  font-size: 0.75em;
}

.teams-slider .team-slide img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.teams-slider .team-slide .learn-more {
  color: var(--color-dark-gray);
  text-decoration: underline;
  font-weight: 400;
}

.teams-slider .team-slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  width: 1000px;
  margin: auto;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.teams-slider .team-slides::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.teams-slider .team-slides .photo {
  margin-bottom: 1em;
}

.teams-slider .team-slides > div {
  scroll-snap-align: start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
  border-radius: 10px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.teams-slider .team-slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.teams-slider .team-slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}

.teams-slider .team-slides::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 40em) {
  .teams-slider .team-slides {
    width: 300px;
  }
}

.three-columns .grid-3-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.three-columns .grid-item {
  position: relative;
  width: 33%;
  padding-right: 1.5em;
  margin-bottom: 4em;
}

.three-columns .grid-item h3 {
  padding-top: 5px;
  margin-bottom: 1em;
}

.three-columns .grid-item h3::before {
  content: "";
  position: absolute;
  width: 50%;
  top: 0;
  left: 0;
  border-top: 2px solid var(--color-dark-blue);
}

.three-columns .grid-item ul {
  padding-left: 20px;
}

.three-columns .grid-item li {
  margin: 0;
}

.four-columns.team .grid-4-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1000px;
  margin: auto;
  gap: 5%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.four-columns.team .grid-item {
  position: relative;
  width: 20%;
  margin-bottom: 4em;
  padding: 0;
}

.four-columns.team .team-slide {
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

.four-columns.team .team-slide .team-name {
  max-width: 100ch;
  font-size: 1.5em;
}

.four-columns.team .team-slide .team-title {
  text-transform: uppercase;
  font-size: 0.75em;
}

.four-columns.team .team-slide img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.four-columns.team .team-slide .learn-more {
  color: var(--color-dark-gray);
  text-decoration: underline;
  font-weight: 400;
}

.four-columns.team h3 {
  padding-top: 5px;
  margin-bottom: 0;
}

.four-columns.team h3::before {
  content: "";
  position: absolute;
  width: 50%;
  top: 0;
  left: 0;
  border-top: none;
}

@media (max-width: 40em) {
  .four-columns.team .grid-4-col {
    width: 95%;
    margin: auto;
    gap: 0;
  }
  .four-columns.team .grid-item {
    width: 50%;
    padding: 1em;
  }
  .four-columns.team .team-slide .team-name {
    font-size: 1em;
  }
  .four-columns.team .team-slide .learn-more {
    font-size: 0.75em;
  }
}

.line-divider {
  width: 70%;
  margin: auto;
  border-color: var(--color-dark-gray);
}

.blog .wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.blog ul {
  list-style: none;
  width: 70%;
}

.blog li {
  padding-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2em;
  margin-bottom: 2em;
}

.blog li:not(:last-child) {
  border-bottom: 2px solid var(--color-dark-gray);
}

.blog h2 {
  margin-bottom: 1em;
  width: 30%;
}

.blog p {
  margin-bottom: 1em;
  width: 70%;
}

.blog a {
  display: block;
  margin-top: 1em;
}

@media (max-width: 40em) {
  .blog {
    padding: 2em 0;
  }
  .blog .wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blog ul {
    width: 95%;
  }
  .blog li {
    padding: 1em;
  }
}

.form-bg {
  background-image: url(../images/office-space.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  height: 100vh;
}

fieldset {
  max-width: 100% !important;
}

fieldset.form-columns-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}

fieldset.form-columns-2 .hs-form-field {
  width: 100% !important;
}

@media (max-width: 65em) {
  fieldset.form-columns-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

label {
  display: none !important;
}

.input {
  margin-right: 0 !important;
}

.actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.agree-to-terms {
  line-height: 1.5em;
  font-size: 0.75rem;
}

.agree-to-terms p {
  font-size: 0.75rem;
  margin-top: 1em;
}

.hs-input {
  background-color: var(--color-dark-orange-002) !important;
  border: 0;
  border-radius: 5px !important;
  font-size: 1em !important;
  padding: 1em !important;
  margin: 0 0 1em 0;
  width: 100% !important;
  margin-right: 0;
}

.hs-button {
  background-color: var(--color-dark-orange) !important;
  color: white !important;
  border-radius: 5px !important;
  font-size: 1em !important;
  padding: 0.75em 1.25em !important;
  border: 0 !important;
  -ms-grid-column-align: center;
      justify-self: center;
}

.contact-form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form .background {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.contact-form .background img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form {
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4), -5px -5px 10px rgba(255, 255, 255, 0.4);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4), -5px -5px 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 40em) {
  .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: auto;
  }
}

.form .sidebar {
  background-color: var(--color-dark-orange);
  padding: 5vw;
  color: white;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form .sidebar h2 {
  color: white;
  margin-bottom: 0.5em;
}

.form .sidebar .excerpt {
  margin-bottom: 2em;
}

.form .sidebar .ready-for-more-image {
  width: 200px;
  margin: auto;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4), -5px -5px 10px rgba(255, 255, 255, 0.4);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4), -5px -5px 10px rgba(255, 255, 255, 0.4);
}
.form .sidebar {
  width 
}

@media (max-width: 65em) {
  .form .sidebar {
    padding: 10vw;
  }
}

.form .content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5em;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}

.form .content form {
  margin-bottom: 1em;
}

.form .content h2 {
  color: var(--color-dark-orange);
  margin-bottom: 1em;
}

.page-navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 0;
  background-color: var(--color-light-gray);
}

.page-navigation ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2em;
  padding: 1.5em 0;
}

.page-navigation li {
  margin: 0;
  text-transform: uppercase;
}

.page-navigation li a {
  font-weight: 400;
}

.icon svg {
  width: 32px;
  fill: var(--color-dark-blue);
}

.dnd-section > .row-fluid {
  max-width: 100% !important;
}
/*# sourceMappingURL=style.css.map */