@font-face {
  font-family: Lato;
  src: url(/css/type/Lato-Light-s2.woff2) format("woff2"), url(/css/type/Lato-Light-s2.woff) format("woff");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Lato;
  src: url(/css/type/Lato-Regular-s2.woff2) format("woff2"), url(/css/type/Lato-Regular-s2.woff) format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Lato;
  src: url(/css/type/Lato-Bold-s2.woff2) format("woff2"), url(/css/type/Lato-Bold-s2.woff) format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Lato;
  src: url(/css/type/Lato-Black-s2.woff2) format("woff2"), url(/css/type/Lato-Black-s2.woff) format("woff");
  font-weight: 900;
  font-display: swap;
}
@keyframes moveY {
  0% {
    transform: translateY(var(--distance));
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveX {
  0% {
    transform: translateX(var(--distance));
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveXY {
  0% {
    transform: translateY(var(--distance)) translateX(var(--distanceX));
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(var(--rotation));
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(var(--scale));
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.move {
  --duration: 1s;
  --delay: 0s;
  --easing: ease-in-out;
  --fadeDuration: 2s;
  --fadeDelay: var(--delay) ;
  --iteration: 1;
  --direction: alternate;
  --playstate: running;
  transform-origin: 50% 50%;
}

.moveX {
  --distance: 100%;
  animation: moveX var(--duration) var(--delay) var(--iteration) var(--easing) both var(--direction) var(--playstate), fade var(--fadeDuration) var(--fadeDelay) 1 both var(--playstate);
}

.moveY {
  --distance: 100%;
  animation: moveY var(--duration) var(--delay) var(--iteration) var(--easing) both var(--direction) var(--playstate), fade var(--fadeDuration) var(--fadeDelay) 1 both var(--playstate);
}

.moveXY {
  --distance: 100%;
  --distanceX: 100%;
  animation: moveXY var(--duration) var(--delay) var(--iteration) var(--easing) both var(--direction) var(--playstate), fade var(--fadeDuration) var(--fadeDelay) 1 both var(--playstate);
}

.moveRotate {
  --rotation: -15deg;
  animation: rotate var(--duration) var(--delay) var(--iteration) var(--easing) both var(--direction) var(--playstate), fade var(--fadeDuration) var(--fadeDelay) 1 both var(--playstate);
}

.moveScale {
  --scale: 1.4;
  animation: scale var(--duration) var(--delay) var(--iteration) var(--easing) both var(--direction) var(--playstate), fade var(--fadeDuration) var(--fadeDelay) 1 both var(--playstate);
}

.moveLoop {
  --iteration: infinite;
  --direction: alternate;
}

.moveRepeat {
  --iteration: infinite;
  --direction: normal;
  --easing: linear;
}

.movePaused {
  --playstate: paused;
}

@media (prefers-reduced-motion: reduce) {
  .move {
    animation: none !important;
    transition: none !important;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

body {
  font-family: lato, Helvetica Neue, sans-serif;
  background: #fff;
  margin: 0;
  color: #4A4A4A;
}

/*links*/
a:link {
  color: #006FC6;
  font-weight: 400;
  text-decoration: none;
}

a:visited {
  color: #556DC6;
}

a:active,
a:focus,
a:hover {
  color: #006FC6;
  text-decoration: underline 2px solid;
}

.content a.btn-general {
  background: #006FC6;
  border-radius: 1.8em;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  color: #fff;
  padding: 0.6em 1.3em;
  margin: 3px;
  margin-top: 1.2em;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 15px;
  font-size: calc(15px);
  transition: all 0.3s linear;
}
@media (min-width: 320px) and (max-width: 1199px) {
  .content a.btn-general {
    font-size: calc(15px + (21 - 15) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .content a.btn-general {
    font-size: 21px;
    font-size: calc(21px);
  }
}
.content a.btn-general:hover, .content a.btn-general:focus {
  background: #004CC3;
  text-decoration: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

a img {
  border: 0;
}

.sr-only,
.offscreen,
.skiptocontent {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  opacity: 0;
}

.skiptocontent:focus {
  position: fixed;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  margin: 0 0 0 -100px;
  top: -0.3em;
  left: 50%;
  text-align: center;
  width: 200px;
  background: #fff;
  color: #368512;
  padding: 0.8em 0 0.7em;
  font-size: 16px;
  z-index: 5000;
  text-decoration: none;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  outline: 0;
  transform: translateY(0%);
}

img {
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

@supports (display: grid) {
  body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: visible;
  }
}
i {
  font-style: normal;
  font-weight: 400;
}

b, strong {
  font-weight: 700;
}

.header:not(.inviewport) svg .moveLoop,
.home_featureblock-ctas:not(.inviewport) svg .moveLoop,
.footer:not(.inviewport) svg .moveLoop,
.scrolling svg .moveLoop {
  --playstate: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.header {
  padding: 7vw 0 10vw;
  padding-left: 8vw;
  padding-right: 8vw;
  position: relative;
  overflow: hidden;
  background: #1f7300;
}
@media (min-width: 75rem) {
  .header {
    padding-left: calc((100vw - 60rem) / 2);
    padding-right: calc((100vw - 60rem) / 2);
  }
}

.header_bg svg {
  position: absolute;
  z-index: 0;
  width: 120%;
  height: auto;
  bottom: -10vw;
  left: 0;
  display: none;
}

@supports (display: grid) {
  .header_bg svg {
    display: block;
  }
}
.header_swoop svg {
  position: absolute;
  z-index: 0;
  bottom: -2px;
  width: 102%;
  left: -1%;
  right: -1%;
  height: 8vw;
  width: 102%;
}

.logo {
  overflow: hidden;
  text-indent: -9999px;
  display: block;
  border: 0;
  margin: 0;
  height: 1.6em;
  width: 100%;
  font-size: 2em;
  max-width: 290px;
  background-repeat: no-repeat;
  background-image: url("/images/svg/fg-logo.svg");
  background-size: 100% auto;
  position: relative;
}

.nav {
  position: relative;
}

.nav_inner {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
}

.nav li {
  padding: 0;
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
  margin-left: 2.5rem;
}

.nav li a {
  color: #fff;
  display: inline-block;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 18px;
  font-size: calc(18px);
  font-weight: 700;
  border: 2px solid transparent;
  margin: 2px;
  padding: 0.6em 0;
}
@media (min-width: 320px) and (max-width: 1199px) {
  .nav li a {
    font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .nav li a {
    font-size: 20px;
    font-size: calc(20px);
  }
}

.nav li a:hover,
.nav li a:focus {
  text-decoration: none;
  color: #fff;
}

.nav li a:after {
  content: "";
  display: block;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(0px) scale(0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.nav li a:hover:after,
.nav li a:focus:after {
  opacity: 1;
  transform: translateY(4px) scale(1);
}

.header-interior .nav li a {
  color: rgba(255, 255, 255, 0.8);
}

#whoweare .header-interior .nav li.whoweare a,
#whatwerethinking .header-interior .nav li.whatwerethinking a,
#code .header-interior .nav li.code a {
  color: #fff;
}

.enhanced .header_bg svg.moveDisturb g {
  --duration: 4s !important;
}

@media (min-width: 30em) {
  .header_bg svg {
    bottom: -30vw;
  }
}
@media (min-width: 37.5em) {
  .nav_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav_inner {
    gap: 2rem;
  }
  .nav li {
    margin-left: 0;
  }
}
@media (min-width: 60em) {
  .header {
    padding-top: 5.5rem;
    padding-bottom: 8.5rem;
  }
  .header_bg svg {
    width: 60%;
    bottom: -20%;
    left: 0;
  }
}
.footer {
  background-size: cover;
  margin: 0;
  padding: 4vw 0;
  padding-left: 8vw;
  padding-right: 8vw;
  background: #1f7300;
  overflow: hidden;
  position: relative;
  clear: both;
}
@media (min-width: 75rem) {
  .footer {
    padding-left: calc((100vw - 60rem) / 2);
    padding-right: calc((100vw - 60rem) / 2);
  }
}

.footer,
.footer a {
  color: #fff;
  font-weight: 400;
}

.footer .nav {
  z-index: 10;
}

.footer .company {
  margin: 0;
}

.footer .nav li {
  margin-left: 2.25rem;
}

.footer .nav li a {
  padding: 0.2rem 0;
}

.vcard dl dd,
.vcard dl dt {
  display: inline-block;
  margin: 0 0.5ch 0 0;
  padding: 0;
}

.vcard dl {
  font-size: 0.9em;
  display: block;
  margin: 0 0 0.4rem;
}

.vcard dl dt {
  font-weight: 700;
  min-width: 3.2em;
}

.footer .vcard {
  margin: 1rem 0 0;
}

.footer .copyright {
  margin: 0;
  padding: 1em 0 0;
  clear: both;
  position: relative;
}

/* wider bp */
.footer .copyright,
.vcard .company,
.vcard dl {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 14px;
  font-size: calc(14px);
}
@media (min-width: 320px) and (max-width: 1199px) {
  .footer .copyright,
.vcard .company,
.vcard dl {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .footer .copyright,
.vcard .company,
.vcard dl {
    font-size: 16px;
    font-size: calc(16px);
  }
}

.vcard dl dt {
  min-width: inherit;
}

@media (min-width: 37.5em) {
  .footer .company {
    flex: 1 auto;
  }
  .footer .nav_bar {
    align-items: center;
  }
  .footer .nav li {
    margin-left: 0;
  }
}
@media (min-width: 40em) {
  .vcard dl dd,
.vcard dl dt {
    display: inline-block;
  }
}
@supports (filter: hue-rotate(0deg)) {
  .footer {
    background: #f5f1ea;
  }
  .footer .logo {
    background-image: url("/images/svg/fg-logo-onwhite.svg");
  }
  .footer,
.footer a,
.footer .nav li a {
    color: #4a4a4a;
  }
  .footer .nav li a {
    /* We use calc after the fallback to keep the same browser support profile across Media Queries,
    */
    font-size: 14px;
    font-size: calc(14px);
  }
  @media (min-width: 320px) and (max-width: 1199px) {
    .footer .nav li a {
      font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1200 - 320)));
    }
  }
  @media (min-width: 1200px) {
    .footer .nav li a {
      font-size: 18px;
      font-size: calc(18px);
    }
  }
}
.home_container {
  padding-left: 8vw;
  padding-right: 8vw;
  overflow-x: hidden;
}
@media (min-width: 75rem) {
  .home_container {
    padding-left: calc((100vw - 60rem) / 2);
    padding-right: calc((100vw - 60rem) / 2);
  }
}

.home_container figure {
  margin-left: 0;
  margin-right: 0;
}

.home_container p,
.home_container li {
  font-weight: 300;
  line-height: 1.4;
  max-width: 55rem;
}

.home_container .module {
  margin: 3rem 0;
}
.home_container .module h3 {
  margin-top: 0;
}
.home_container .module p:last-child {
  margin-bottom: 0;
}

.home_container p + .module {
  margin-top: 2rem;
}

h2.divider {
  width: 100%;
  height: 1px;
  margin: 2em 0;
}
h2.divider hr {
  display: block;
  width: 32vw;
  max-width: 400px;
  height: 5px;
  background-color: #61B900;
  margin: 0 auto;
  border: 0;
}

.home_hero {
  margin: 1em 0;
  font-size: clamp(1.75rem, 0.932rem + 4.09vw, 4rem); /* 28-64 */
  line-height: 1.1;
  font-weight: 900;
  color: #417505;
  max-width: 53rem;
}

.home_hero i {
  font-weight: 300;
  font-style: normal;
  color: #4A4A4A;
  display: inline-block;
  transform-origin: 50% top;
}

.home_cta {
  padding: 6vw 0;
  border-top: 1px solid #ccc;
}

.home_cta p {
  display: inline-block;
  font-weight: 900;
  margin: 0 0.5em 1em 0;
  font-size: 1rem;
}

.home_cta a {
  background: #006FC6;
  border-radius: 1.8em;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  color: #fff;
  padding: 0.6em 1.3em;
  margin: 3px;
  margin-top: 1.2em;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 15px;
  font-size: calc(15px);
  transition: all 0.3s linear;
  background: #417505;
  margin: 0;
}
@media (min-width: 320px) and (max-width: 1199px) {
  .home_cta a {
    font-size: calc(15px + (21 - 15) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .home_cta a {
    font-size: 21px;
    font-size: calc(21px);
  }
}
.home_cta a:hover, .home_cta a:focus {
  background: #004CC3;
  text-decoration: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.home_cta a:focus,
.home_cta a:hover {
  background: #509b00;
  text-decoration: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.whatwedo_more {
  margin: 5em 0 3em;
}

.whatwedo_more h3 {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.whatwedo_more h3 span {
  display: inline-block;
  padding: 0.6rem 0 0;
  border-top: 2px solid #61B900;
}

.whatwedo_more > p,
.whatwedo_more li {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 400;
}

.whatwedo_more ul,
.whatwedo_more li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.whatwedo_more ul {
  display: flex;
  flex-flow: column wrap;
}

.whatwedo_more li {
  padding: 0 1em 0.6em 0;
}

/* case studies */
.module-logo img,
.module-graphic img,
.content .module-graphic img {
  margin-top: 0;
}

.module-graphic {
  padding-top: 1.5rem;
}

.module-graphic:not(.full-width) {
  max-width: 25rem;
  margin: 0 auto;
}

.module-graphic.full-width {
  margin-left: -8vw;
  margin-right: -8vw;
}
@media (min-width: 75rem) {
  .module-graphic.full-width {
    margin-left: calc((-100vw + 60rem) / 2);
    margin-right: calc((-100vw + 60rem) / 2);
  }
}

#boston-globe .module-graphic img {
  max-width: 102%;
}

#lego .module-graphic {
  width: 60vw;
  max-width: 14em;
  margin: 0 auto;
}

#vv .module-graphic {
  position: relative;
}
#vv .module-img:first-child {
  width: 90%;
  border: 1px solid #eee;
}
#vv .module-img:last-child {
  width: 40vw;
  max-width: 12rem;
  position: absolute;
  top: 3rem;
  right: 0;
}

#continuum .module-graphic {
  max-width: none;
}

:root {
  --module-gap: 2rem;
}

@media (min-width: 20em) {
  .whatwedo_more ul {
    height: 24em;
  }
}
@media (min-width: 37.5em) {
  .whatwedo_more ul {
    height: 17em;
  }
  #lego,
#attivio,
#obj-logistics {
    display: flex;
    gap: var(--module-gap);
  }
  #lego .module-text,
#attivio .module-text,
#obj-logistics .module-text {
    flex-grow: 2;
    max-width: 30rem;
  }
  #lego .module-graphic,
#attivio .module-graphic,
#obj-logistics .module-graphic {
    max-width: none;
    width: auto;
    margin: 0;
  }
  #lego {
    flex-direction: row-reverse;
    width: 90%;
  }
  #lego .module-graphic {
    text-align: right;
  }
}
@media (min-width: 40em) {
  .home_cta {
    padding-top: 9vw;
    padding-bottom: 4vw;
    overflow: hidden;
    text-align: center;
  }
}
@media (min-width: 50em) {
  .home_hero {
    margin-top: 0.5em;
  }
  .whatwedo_more ul {
    height: 14em;
  }
  .home_container .module {
    --module-gap: 3rem;
    margin: 4rem 0;
  }
  .module-text p:first-child {
    margin-top: 0;
  }
  .module-graphic:not(.full-width) {
    padding: 0;
    max-width: none;
    margin: 0;
  }
  #boston-globe .module-graphic.full-width {
    margin-left: -3rem;
  }
  #vv .module-img:first-child {
    width: 100%;
  }
  #vv .module-img:last-child {
    right: -3rem;
  }
  #lego img, #lego video,
#obj-logistics img,
#obj-logistics video {
    max-height: 32rem;
  }
  #lego .module-text,
#attivio .module-text,
#obj-logistics .module-text {
    max-width: none;
  }
  #lego .module-graphic,
#attivio .module-graphic,
#obj-logistics .module-graphic {
    flex: 0 0 45%;
  }
  #lego .module-graphic {
    min-width: 30%;
  }
  #continuum .module-graphic {
    overflow: hidden;
  }
  #vv,
#continuum {
    display: flex;
    gap: var(--module-gap);
  }
  #vv .module-graphic,
#continuum .module-graphic {
    flex: 0 0 50%;
  }
}
@media (min-width: 60em) {
  .home_cta {
    padding-top: 5vw;
    padding-bottom: 5em;
  }
}
@media (min-width: 75em) {
  .home_container .module {
    --module-gap: 4rem;
    margin: 6rem 0;
  }
  #vv .module-img:last-child {
    width: auto;
    max-width: 16rem;
    top: 5rem;
    right: -5rem;
  }
  #vv .module-graphic {
    flex: 0 0 45%;
  }
  #obj-logistics .module-graphic {
    min-width: 40%;
    text-align: right;
  }
  /* #lego, 
  #attivio, 
  #obj-logistics {
  	.module-text {
  		max-width: 30rem;
  	}
  } */
}
@media (min-width: 93.75em) {
  #boston-globe .module-graphic.full-width {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}
/* content div */
.body-interior .content {
  padding: 2.5em 0;
  padding-left: 8vw;
  padding-right: 8vw;
}
@media (min-width: 75rem) {
  .body-interior .content {
    padding-left: calc((100vw - 60rem) / 2);
    padding-right: calc((100vw - 60rem) / 2);
  }
}

@media (min-width: 48em) {
  .body-interior .content {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .primary {
    padding-top: 2em;
    padding-left: 25%;
    position: relative;
  }
}
@media (min-width: 75em) {
  .primary {
    padding-right: 10%;
  }
}
/* Interior content Styles*/
h1 {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 38px;
  font-size: calc(38px);
  line-height: 1;
  margin: 0 10% 0.1em 0;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #368512;
  width: auto;
  text-transform: lowercase;
  display: inline-block;
}
@media (min-width: 320px) and (max-width: 1199px) {
  h1 {
    font-size: calc(38px + (72 - 38) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 72px;
    font-size: calc(72px);
  }
}

@media (min-width: 40em) {
  h1 {
    font-weight: 300;
  }
}
h2,
h3,
h4,
.heading-wrapper a {
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-weight: 400;
}

h2,
.heading-wrapper h2 + a {
  font-size: clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem); /* 28-36 */
}

h3,
.heading-wrapper h3 + a {
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem); /* 24-28 */
}

h4,
.heading-wrapper h4 + a {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem); /* 20-24 */
}

/* permalinked headings: */
.heading-wrapper {
  display: inline-block;
  position: relative;
}
.heading-wrapper + p {
  margin-top: 0;
}
.heading-wrapper a {
  margin-left: -1em;
  position: absolute;
  top: 0;
  left: 0;
  color: currentColor;
  /* hidden by default, shown on hover: */
  opacity: 0;
}
.heading-wrapper a:hover, .heading-wrapper a:focus,
.heading-wrapper *:hover + a,
.heading-wrapper *:focus + a {
  opacity: 1;
}

.content img {
  margin-top: 1em;
  display: inline-block;
}

table {
  width: 100%;
  border: 1px solid #eee;
  border-collapse: collapse;
}

table td,
table th {
  border: 1px solid #ccc;
  padding: 0.5em;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 14px;
  font-size: calc(14px);
}
@media (min-width: 320px) and (max-width: 1199px) {
  table td,
table th {
    font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  table td,
table th {
    font-size: 17px;
    font-size: calc(17px);
  }
}

table th {
  font-weight: 700;
}

table thead th {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 14px;
  font-size: calc(14px);
}
@media (min-width: 320px) and (max-width: 1199px) {
  table thead th {
    font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  table thead th {
    font-size: 17px;
    font-size: calc(17px);
  }
}

img,
video {
  max-width: 100%;
}

pre {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 12px;
  font-size: calc(12px);
  background: #f6f6f6;
  padding: 1.5em;
  color: #111;
  line-height: 1.4;
  border: 1px solid #ddd;
  margin: 0 0 2em;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}
@media (min-width: 320px) and (max-width: 1199px) {
  pre {
    font-size: calc(12px + (17 - 12) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  pre {
    font-size: 17px;
    font-size: calc(17px);
  }
}

code {
  font-size: 0.95em;
  color: #444;
}

a code {
  color: inherit;
}

pre code {
  font-size: 1em;
  color: #111;
}

pre,
pre code,
code,
code,
pre code {
  font-family: "Consolas", "Lucida Console", monospace;
}

blockquote {
  border-left: 3px solid #368512;
  padding-left: 1em;
  margin: 1.5em 2em;
}

blockquote p {
  font-style: italic;
  font-size: 1.25rem;
}

figcaption {
  font-size: 1rem;
  margin: 0.2em 0 2.5em;
  font-style: italic;
}

blockquote address {
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
}

blockquote cite {
  font-size: 1rem;
  font-style: normal;
}

p,
li {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 47.5rem;
  margin: 1em 0;
}

.intro p {
  color: #404041;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 20px;
  font-size: calc(20px);
  font-weight: 300;
  margin: 1em 0;
  line-height: 1.4;
}
@media (min-width: 320px) and (max-width: 1399px) {
  .intro p {
    font-size: calc(20px + (26 - 20) * ((100vw - 320px) / (1400 - 320)));
  }
}
@media (min-width: 1400px) {
  .intro p {
    font-size: 26px;
    font-size: calc(26px);
  }
}

p.caption {
  line-height: 1.1;
  font-style: italic;
  margin: 0 1em 1em;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 12px;
  font-size: calc(12px);
}
@media (min-width: 320px) and (max-width: 1199px) {
  p.caption {
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  p.caption {
    font-size: 14px;
    font-size: calc(14px);
  }
}

#whoweare .content h2 {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 19px;
  font-size: calc(19px);
}
@media (min-width: 320px) and (max-width: 1199px) {
  #whoweare .content h2 {
    font-size: calc(19px + (25 - 19) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  #whoweare .content h2 {
    font-size: 25px;
    font-size: calc(25px);
  }
}

#whoweare .content h2 a {
  font-weight: 400;
  background-position: left center;
  font-size: 0.8em;
  padding-left: 0.5em;
}

#whoweare .primary p {
  font-size: 1.125rem;
  max-width: 37.5rem;
}

@media (min-width: 48em) {
  #whoweare .bio {
    display: flex;
    flex-flow: row nowrap;
    gap: 3rem;
    margin: 0 0 2rem;
  }
  #whoweare .content h2 {
    flex: 0 0 23%;
    text-align: right;
    margin-top: 0;
  }
  #whoweare .content h2 span {
    display: block;
  }
  #whoweare .content h2 a {
    display: block;
    margin: 0.8em 0;
    width: auto;
    font-size: 0.85em;
  }
  #whoweare .content .primary p {
    margin-top: 0;
  }
  #whoweare .primary {
    padding: 4rem 0;
  }
}
.posts {
  clear: both;
}

.article h1 {
  text-transform: none;
}

.post {
  padding: 1em 0;
  overflow: hidden;
  position: relative;
}

.post h3.post_title {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 18px;
  font-size: calc(18px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0.2em 0;
}
@media (min-width: 320px) and (max-width: 1199px) {
  .post h3.post_title {
    font-size: calc(18px + (25 - 18) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .post h3.post_title {
    font-size: 25px;
    font-size: calc(25px);
  }
}

.post h3 a {
  text-decoration: none;
  font-weight: 400;
}

.post h3 a:hover {
  text-decoration: underline;
}

.post h4.post_date {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 13px;
  font-size: calc(13px);
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  margin: 0 0 0.4em;
}
@media (min-width: 320px) and (max-width: 1199px) {
  .post h4.post_date {
    font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .post h4.post_date {
    font-size: 16px;
    font-size: calc(16px);
  }
}

p.post_author {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 13px;
  font-size: calc(13px);
  font-weight: 400;
  text-transform: uppercase;
  color: #555;
  margin: 0;
  display: inline-block;
}
@media (min-width: 320px) and (max-width: 1199px) {
  p.post_author {
    font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  p.post_author {
    font-size: 16px;
    font-size: calc(16px);
  }
}

p.post_blurb {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 13px;
  font-size: calc(13px);
  text-transform: none;
  margin: 0;
}
@media (min-width: 320px) and (max-width: 1199px) {
  p.post_blurb {
    font-size: calc(13px + (20 - 13) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  p.post_blurb {
    font-size: 20px;
    font-size: calc(20px);
  }
}

.articles_viewall {
  border-top: 1px solid #eee;
  margin-top: 1em;
  padding-top: 0.5em;
  border-top: 1px solid #ddd;
  margin-top: 6em;
  padding-top: 1em;
  margin-bottom: 0;
  display: block;
  clear: both;
  text-align: right;
}

.articles_viewall a {
  background: #006FC6;
  border-radius: 1.8em;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  color: #fff;
  padding: 0.6em 1.3em;
  margin: 3px;
  margin-top: 1.2em;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 15px;
  font-size: calc(15px);
  transition: all 0.3s linear;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 13px;
  font-size: calc(13px);
}
@media (min-width: 320px) and (max-width: 1199px) {
  .articles_viewall a {
    font-size: calc(15px + (21 - 15) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .articles_viewall a {
    font-size: 21px;
    font-size: calc(21px);
  }
}
.articles_viewall a:hover, .articles_viewall a:focus {
  background: #004CC3;
  text-decoration: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
@media (min-width: 320px) and (max-width: 1199px) {
  .articles_viewall a {
    font-size: calc(13px + (18 - 13) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .articles_viewall a {
    font-size: 18px;
    font-size: calc(18px);
  }
}

@media (min-width: 48em) {
  .primary.posts {
    padding-left: 5%;
  }
  .post {
    padding: 1.5em 0;
  }
  .post {
    display: grid;
    grid-template-columns: 15rem 1fr;
    grid-template-areas: "dateauthor title" "dateauthor blurb";
  }
  .post_dateauthor {
    grid-area: dateauthor;
    display: block;
  }
  .posts h4.post_date {
    margin: 0 0 0.4em;
    display: block;
  }
  .posts .post_title {
    grid-area: title;
  }
  .post h3.post_title {
    margin-top: 0;
  }
  .posts .post_blurb {
    grid-area: blurb;
  }
}
.post p a:link,
.post p a:visited {
  color: #999;
}

.post p span {
  font-size: 1.5em;
  font-weight: 700;
}

/* lab post title area formatting */
.article {
  position: relative;
}

.article p.article_author,
p.article_author {
  text-transform: uppercase;
  font-weight: 700;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 12px;
  font-size: calc(12px);
  color: #444;
}
@media (min-width: 320px) and (max-width: 1199px) {
  .article p.article_author,
p.article_author {
    font-size: calc(12px + (15 - 12) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  .article p.article_author,
p.article_author {
    font-size: 15px;
    font-size: calc(15px);
  }
}

.article p.article_author span,
p.article_author span {
  font-size: 1.2em;
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 48em) {
  .article h1 {
    margin-bottom: 0.5em;
  }
  .article p.article_author,
p.article_author {
    position: absolute;
    width: 18%;
    z-index: 10;
    left: 0;
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid #aaa;
  }
  .article p.article_author span,
p.article_author span {
    display: block;
  }
  .article-slides h1 {
    width: 100%;
  }
  .article .primary {
    padding-top: 0.5em;
  }
}
/* slide format articles */
.article-slides p.slidesintro {
  font-size: 1.2em;
}

.article-slides img,
.article-slides video {
  width: 100%;
  border: 1px solid #ccc;
  margin: 0;
  display: block;
  box-sizing: border-box;
}

.article-slides figure {
  margin: 0;
  padding: 0 0 1.5em;
}

.article-slides .cover img {
  border: 0;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.article-slides figcaption {
  padding: 0.8em 0;
}

.article-slides blockquote {
  border: 0;
  margin: 0 0 2.5em;
  padding: 0;
}

.article-slides blockquote p {
  font-style: normal;
  margin: 0 0 1em;
  max-width: 35em;
  font-size: 1.125rem;
  line-height: 1.5;
}

.article-slides hr {
  display: block;
  border: 0;
  border-bottom: 1px dotted #aaa;
  margin: 3.5em 8em;
}

@media (min-width: 48em) {
  .article-slides figure.emphasize.cover {
    border: 0;
  }
  .article-slides figure.emphasize {
    margin-top: 1.5em;
  }
  .article-slides figure:not(.emphasize) {
    float: left;
    width: 60%;
    margin: 0 0 1em -30%;
    max-width: none;
  }
  .article-slides figure {
    clear: both;
  }
  .article-slides blockquote {
    float: right;
    width: 60%;
    margin-right: 5%;
  }
  .article-slides blockquote p {
    font-style: normal;
  }
}
p.note {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 15px;
  font-size: calc(15px);
  background: #faf9f5;
  border-width: 0;
  border-left: 6px solid #8cc264;
  margin: 1.2em 0;
  padding: 1em 1.2em;
  padding-left: calc(7vw - 6px);
  padding-right: 7vw;
  margin-left: -7vw;
  margin-right: -7vw;
}
@media (min-width: 320px) and (max-width: 1199px) {
  p.note {
    font-size: calc(15px + (19 - 15) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  p.note {
    font-size: 19px;
    font-size: calc(19px);
  }
}

@media (min-width: 50em) { /* 800px */
  .content .intro p.note,
.content p.note {
    padding-left: calc(1.5em - 6px);
    padding-right: 1.5em;
    margin-left: -1.5em;
    margin-right: -1.5em;
  }
}
.figure-a {
  float: left;
  margin-right: 2em;
  margin-bottom: 2em;
}

.figure-b {
  float: right;
  margin-left: 2em;
  margin-bottom: 2em;
  margin-right: -28%;
}

/* Inline demo, first used on type="number" post */
.inlinedemo {
  margin: 1.5em 0;
  border: 1px solid #eee;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.3em;
  padding: 1em;
  overflow: auto; /* clearfix fix */
}

.inlinedemo_title {
  font-size: 1.3em;
  font-weight: 400;
  color: #555;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}

.inlinedemo code,
.inlinedemo input[type] {
  display: block;
  width: 100%;
}

.inlinedemo code {
  font-size: 0.6875em;
}

.inlinedemo input[type] {
  font-size: 1em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.inlinedemo iframe {
  border: none;
  width: 100%;
  height: 4em;
}

@media (min-width: 37.5em) {
  .inlinedemo code {
    float: left;
    line-height: 3;
    width: auto;
    margin-right: 2em;
  }
  .inlinedemo iframe,
.inlinedemo input[type] {
    float: left;
    width: 40%;
  }
}
/* 3rd party embed fluid wrap, via fitvids.js */
.rwd-embed-wrap {
  width: 100%;
  position: relative;
  padding: 0;
  padding-top: 56.25%;
}

.rwd-embed-wrap iframe,
.rwd-embed-wrap object,
.rwd-embed-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Header links for Markdown files */
.direct-link {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-left: 0.1em;
}

.direct-link {
  text-decoration: none !important;
}

a[href].direct-link,
a[href].direct-link:visited {
  color: transparent;
}

a[href].direct-link:focus,
a[href].direct-link:focus:visited,
:hover > a[href].direct-link,
:hover > a[href].direct-link:visited,
:focus > a[href].direct-link,
:focus > a[href].direct-link:visited {
  color: #555;
}

/* Syntax highlighter */
.highlight-line {
  display: inline-block;
  /* del, ins, mark default styles */
  text-decoration: none;
  color: inherit;
}

/* allow highlighting empty lines */
.highlight-line:empty:before {
  content: " ";
}

.highlight-line:not(:last-child) {
  min-width: 100%;
}

.highlight-line .highlight-line:not(:last-child) {
  min-width: 0;
}

.highlight-line {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 11px;
  padding-right: 12px;
  border-left: 6px solid transparent;
}

.highlight-line-add {
  border-color: green;
}

.highlight-line-remove {
  border-color: red;
}

.highlight-line-active,
.highlight-line-add,
.highlight-line-remove {
  background-color: rgba(103, 103, 103, 0.14);
}

/*
Name:       Base16 Atelier Sulphurpool Light
Author:     Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool)
Prism template by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/prism/)
Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
*/
code[class*=language-],
pre[class*=language-] {
  direction: ltr;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  background: #f8f8f8;
  color: #555;
}

/* Code blocks */
pre {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}

/* Inline code */
:not(pre) > code[class*=language-] {
  padding: 0.1em;
  border-radius: 0.3em;
}

.token.comment,
.token.prolog,
.token.cdata {
  color: #008000;
}

.token.punctuation,
.token.operator,
.token.function {
  color: #8C6117;
}

.token.namespace {
  opacity: 0.7;
}

.token.string,
.token.boolean,
.token.number {
  color: #266AA1;
}

.token.doctype,
.token.tag,
.language-html .token.punctuation,
.token.attr-value,
.token.selector {
  color: #266AA1;
}

.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #266AA1;
}

.token.attr-name,
.token.keyword,
.token.control,
.token.directive,
.token.unit,
.token.property {
  color: #92349D;
}

.token.statement,
.token.regex,
.token.atrule {
  color: #266AA1;
}

.token.placeholder,
.token.variable {
  color: #3d8fd1;
}

.token.deleted {
  text-decoration: line-through;
}

.token.inserted {
  border-bottom: 1px dotted #202746;
  text-decoration: none;
}

.token.italic {
  font-style: italic;
}

.token.important,
.token.bold {
  font-weight: bold;
}

/* .token.important {
  color: #c94922;
} */
.token.entity {
  cursor: help;
}

pre > code.highlight {
  outline: 0.4em solid #c94922;
  outline-offset: 0.4em;
}

#code .primary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#code .primary li {
  margin: 1em 0 1.5em;
}

#code .primary {
  overflow: hidden;
  padding-top: 2em;
}

#code .primary h2 {
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 16px;
  font-size: calc(16px);
  text-decoration: none;
  margin: 0;
}
@media (min-width: 320px) and (max-width: 1199px) {
  #code .primary h2 {
    font-size: calc(16px + (23 - 16) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  #code .primary h2 {
    font-size: 23px;
    font-size: calc(23px);
  }
}

#code li h3 {
  text-decoration: none;
  margin: 0;
  /* We use calc after the fallback to keep the same browser support profile across Media Queries,
  */
  font-size: 15px;
  font-size: calc(15px);
}
@media (min-width: 320px) and (max-width: 1199px) {
  #code li h3 {
    font-size: calc(15px + (21 - 15) * ((100vw - 320px) / (1200 - 320)));
  }
}
@media (min-width: 1200px) {
  #code li h3 {
    font-size: 21px;
    font-size: calc(21px);
  }
}

#code li h3 span {
  color: #222;
  font-size: 0.6em;
  display: inline-block;
  margin: 0 0 0 0.5em;
  background: #f8f8f8;
  border-radius: 4px;
  padding: 0.1em 0.8em;
  border: 1px solid #eee;
  position: relative;
  top: -0.2em;
}

#code .primary li p {
  margin: 0.3em 0 0;
  font-size: 1.125rem;
}

#code .primary li li {
  font-size: 0.75em;
  display: inline-block;
  border-right: 1px solid #ddd;
  padding-right: 0.7em;
  margin: 0.3em 0.5em 0 0;
}

#code .content li li:last-child {
  border: 0;
}

#code li li a {
  font-weight: 400;
}

@media (min-width: 48em) {
  #code .primary h2 {
    margin-left: -33%;
    float: left;
    width: 25%;
  }
  .code-group {
    box-sizing: border-box;
  }
}

/*# sourceMappingURL=all.css.map */
