/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

@charset "UTF-8";
/* Slider */
.slick-loading .slick-list {
  background: #fff url('ajax-loader.gif') center center no-repeat;
}
/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('fonts/slick.eot');
  src: url('fonts/slick.eot?#iefix') format('embedded-opentype'), url('fonts/slick.woff') format('woff'), url('fonts/slick.ttf') format('truetype'), url('fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
.slick-prev[dir="rtl"] {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
.slick-prev:before[dir="rtl"] {
  content: "→";
}
.slick-next {
  right: -25px;
}
.slick-next[dir="rtl"] {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
.slick-next:before[dir="rtl"] {
  content: "←";
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*!
Theme Name: Axialent
Theme URI: https://www.axialent.com/
Author: Chris Abernethy
Author URI: http://www.chrisabernethy.com/
Description: Custom Theme for Axialent
Version: 1.0.0
*/
/*
|--------------------------------------------------------------------------

All build commands:

    > bower install/update
    > npm install
    > gulp watch

should be run from the root
of the resources/ directory.

|--------------------------------------------------------------------------

Theme structure:

+-- resources/
|    |
|    +-- node_modules/
|    |
|    +-- public/
|    |     |
|    |     +-- fonts/
|    |     |
|    |     +-- img/
|    |     |
|    |     +-- js/ (gulp output)
|    |     |
|    |     +-- svg/
|    |
|    +-- assets/
|    |    |
|    |    +-- bower_components/
|    |    |
|    |    +-- js/ (raw javascript, compiled by gulp)
|    |    |
|    |    +-- less/ (raw less, compiled by gulp)
|    |
|    +-- gulpfile.js (main gulp workflow rules)
|    |
|    +-- package.json (node config)
|
|
+-- lib/ (PHP functions, bootstraped by functions.php)
|
|
+-- page-templates/ (Custom templates and template partials)
|
|
+-- style.css (gulp output)
|
|
+-- [...Wordpress theme files...]
*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
* {
  min-width: 0;
  min-height: 0;
}
body {
  margin: 0;
  color: #111111;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.7rem;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
}
h1 {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.7rem;
  line-height: 3.1rem;
  letter-spacing: -0.01em;
  margin: 0 0 17px;
  color: #2064b3;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 4.3rem;
    line-height: 4.7rem;
  }
}
@media screen and (min-width: 1330px) {
  h1 {
    margin-bottom: 21px;
  }
}
h2 {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.3rem;
  line-height: 2.5rem;
  letter-spacing: -0.045em;
  margin: 23px 0 12px;
  color: #333333;
}
h3 {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.8rem;
  line-height: 2.5rem;
  letter-spacing: -0.045em;
  margin: 15px 0 3px;
  color: #333333;
}
h4,
h5,
h6 {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0.01em;
  margin: 4px 0 3px;
  color: #333333;
  text-transform: uppercase;
}
blockquote {
  font-family: "paralucent-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.3rem;
  line-height: 2.8rem;
  letter-spacing: 0.01em;
  margin: 19px 22px 16px 20px;
  color: #2064b3;
}
@media screen and (min-width: 768px) {
  blockquote {
    margin: 25px 28px 17px 3px;
    float: left;
    width: 235px;
  }
}
@media screen and (min-width: 1330px) {
  blockquote {
    position: relative;
    left: -36px;
    margin-right: -5px;
  }
}
img {
  max-width: 100%;
  height: auto;
}
svg {
  max-width: 100%;
  max-height: 100%;
}
.nf-ugc a:not(.nf-button) {
  color: #2064b3;
  text-decoration: underline;
}
.nf-ugc a:not(.nf-button):visited {
  color: #dd7e00;
}
.nf-ugc p {
  margin: 0;
}
.nf-ugc p + p,
.nf-ugc ul + p,
.nf-ugc ol + p,
.nf-ugc blockquote + p {
  margin-top: calc(1em - 2px);
}
.nf-ugc ul:not(.slick-dots):not(.gform_fields):not(.chosen-results) {
  margin: 13px 20px 13px 0;
  padding-left: 30px;
}
.nf-ugc ul:not(.slick-dots):not(.gform_fields):not(.chosen-results) li {
  list-style: none;
  position: relative;
  line-height: 2.3rem;
}
.nf-ugc ul:not(.slick-dots):not(.gform_fields):not(.chosen-results) li::before {
  content: '\2022';
  position: absolute;
  left: -14px;
}
.nf-ugc ul:not(.slick-dots):not(.gform_fields):not(.chosen-results) li + li {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .nf-ugc ul:not(.slick-dots):not(.gform_fields):not(.chosen-results) {
    margin-right: 100px;
  }
}
.nf-cleanList,
.nf-cleanList ol,
.nf-cleanList ul {
  margin: 0;
  padding: 0;
}
.nf-cleanList li {
  list-style-type: none;
}
iframe {
  max-width: 100%;
}
.nf-layout--body-right .ginput_recaptcha {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.screen-tablet-min,
.screen-laptop-min,
.screen-desktop-min,
.screen-widescreen-min {
  display: none;
}
@media screen and (min-width: 768px) {
  .screen-tablet-min {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .screen-laptop-min {
    display: block;
  }
}
@media screen and (min-width: 1330px) {
  .screen-desktop-min {
    display: block;
  }
}
@media screen and (min-width: 1430px) {
  .screen-widescreen-min {
    display: block;
  }
}
img.aligncenter {
  display: block;
  margin: 0 auto;
}
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.font-proximaNovaN4 {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
}
.font-proximaNovaI4 {
  font-family: "proxima-nova", sans-serif;
  font-style: italic;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
}
.font-proximaNovaN6 {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
}
.font-proximaNovaI6 {
  font-family: "proxima-nova", sans-serif;
  font-style: italic;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-proximaNovaN7 {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-proximaNovaI7 {
  font-family: "proxima-nova", sans-serif;
  font-style: italic;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentN3 {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 300;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentN4 {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentN5 {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 500;
  -webkit-font-feature-settings: "liga" 0, "salt" 1;
  font-feature-settings: "liga" 0, "salt" 1;
}
.font-paralucentN7 {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentTextN4 {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentTextI4 {
  font-family: "paralucent-text", sans-serif;
  font-style: italic;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentTextN7 {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentTextI7 {
  font-family: "paralucent-text", sans-serif;
  font-style: italic;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentCondensedN4 {
  font-family: "paralucent-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentCondensedI4 {
  font-family: "paralucent-condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentCondensedN7 {
  font-family: "paralucent-condensed", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.font-paralucentCondensedI7 {
  font-family: "paralucent-condensed", sans-serif;
  font-style: italic;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
}
.nf-accordion {
  position: relative;
  border-radius: 5px;
  background-color: #bcd0e8;
  padding: 5px 90px 5px 50px;
  margin: 50px 0;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  color: #111111;
  font-size: 1.7rem;
  line-height: 2.2rem;
  letter-spacing: -0.025em;
  cursor: pointer;
}
.nf-accordion a.bg-showmore-plg-link {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  color: #ffffff !important;
  font-size: 2rem;
  text-decoration: none;
  display: block;
  margin: 9px 0;
}
.nf-accordion div {
  margin-bottom: 15px;
}
.nf-accordion .btn-toggle::after {
  content: ' ';
  position: absolute;
  width: 14px;
  height: auto;
  top: 20px;
  right: 15px;
  border: 7px solid transparent;
  border-top-color: #ffffff;
}
.nf-accordion.is-open {
  background-color: #fbb03f;
}
.nf-accordion.is-open .btn-toggle::after {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-modal-close.svg');
  border: 0 none;
  top: 15px;
}
.nf-accordion + .nf-accordion {
  margin-top: -42px;
}
.nf-banner {
  margin-top: -4px;
  height: 188px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .nf-banner {
    margin-top: 0;
  }
}
@media screen and (min-width: 1330px) {
  .nf-banner {
    margin-bottom: 56px;
    margin-right: 80px;
    margin-left: 80px;
    border-radius: 5px;
  }
}
@media screen and (min-width: 1430px) {
  .nf-banner {
    max-width: 1270px;
    margin-left: auto;
    margin-right: auto;
  }
}
.nf-banner--image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.nf-banner.nf-banner--video {
  position: relative;
  overflow: hidden;
  height: auto;
  max-height: 500px;
}
.nf-banner--video video {
  min-width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.nf-banner--text {
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
}
.nf-banner--text-text {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 4.2rem;
  line-height: 4.3rem;
  letter-spacing: 0em;
  color: #ffffff;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .nf-banner--text {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-banner--text {
    height: 120px;
    padding-bottom: 5px;
  }
  .nf-banner--text-text {
    font-size: 6.6rem;
    line-height: 4.3rem;
    margin-left: 211px;
  }
}
.single-service .nf-banner--text {
  height: auto;
  min-height: 150px;
  padding-top: 36px;
  padding-bottom: 44px;
}
.single-service .nf-banner--text-text {
  position: relative;
  margin-left: 0px;
  letter-spacing: -0.015em;
}
.single-service .nf-banner--text-text.nf-has-icon {
  margin-left: 65px;
}
.single-service .nf-banner--text-text::before {
  width: 50px;
  display: block;
  position: absolute;
  left: -65px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .single-service .nf-banner--text-text {
    font-size: 6rem;
    line-height: 7rem;
    letter-spacing: -0.015em;
  }
  .single-service .nf-banner--text-text.nf-has-icon {
    margin-left: 115px;
  }
  .single-service .nf-banner--text-text::before {
    width: 70px;
    padding-top: 19px;
    left: -115px;
  }
}
@media screen and (min-width: 942px) and (max-width: 1023px) {
  .single-service .nf-banner--text-text {
    margin-left: calc((100% - 837px) / 2);
  }
  .single-service .nf-banner--text-text.nf-has-icon {
    margin-left: calc((100% - 837px) / 2 + 115px);
  }
}
@media screen and (min-width: 1024px) {
  .single-service .nf-banner--text-text {
    margin-left: 0;
  }
}
@media screen and (min-width: 1240px) and (max-width: 1329px) {
  .single-service .nf-banner--text-text {
    margin-left: calc((100% - 1150px) / 2);
  }
  .single-service .nf-banner--text-text.nf-has-icon {
    margin-left: calc((100% - 1150px) / 2 + 115px);
  }
}
@media screen and (min-width: 1330px) {
  .single-service .nf-banner--text-text {
    margin-left: 209px;
    font-size: 6rem;
    line-height: 7rem;
    letter-spacing: -0.015em;
  }
  .single-service .nf-banner--text-text.nf-has-icon {
    margin-left: 312px;
  }
  .single-service .nf-banner--text-text::before {
    left: -103px;
  }
}
.single-case-study .nf-banner {
  background-color: #a76bcf;
  position: relative;
  z-index: 300;
  height: auto;
  min-height: 255px;
  text-align: center;
  padding-top: 62px;
  padding-bottom: 20px;
}
.single-case-study .nf-banner--image {
  filter: grayscale(100%);
  opacity: 0.35;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
}
.single-case-study .nf-banner--image-subtitle {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.205em;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 310;
  position: relative;
  display: inline;
}
.single-case-study .nf-banner--image-subtitle::before {
  display: inline-block;
  width: 43px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.single-case-study .nf-banner--text {
  z-index: 310;
  position: relative;
  height: auto;
  margin-top: 11px;
  padding: 0 10% 5%;
}
.single-case-study .nf-banner--text-text {
  font-size: 2.8rem;
  line-height: 3.6rem;
  letter-spacing: -0.01em;
  margin-left: 0;
}
@media screen and (min-width: 500px) {
  .single-case-study .nf-banner--image-subtitle {
    font-size: 1.8rem;
    line-height: 4rem;
  }
  .single-case-study .nf-banner--text-text {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .single-case-study .nf-banner--image-subtitle {
    margin-left: 70px;
  }
  .single-case-study .nf-banner--image-subtitle::before {
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    padding-top: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .single-case-study .nf-banner--text-text {
    font-size: 3.8rem;
    line-height: 4.6rem;
  }
}
@media screen and (min-width: 1330px) {
  .single-case-study .nf-banner,
  .single-case-study .nf-banner--image {
    border-radius: 5px;
  }
}
.nf-banner--video,
.nf-banner--video + .nf-u-fallback {
  display: none;
}
.videoautoplay .nf-banner--video {
  display: block;
}
.no-videoautoplay .nf-banner--video + .nf-u-fallback {
  display: block;
}
.home .nf-banner {
  height: 290px;
  background-color: #32a063;
  overflow: hidden;
}
.home .nf-banner--text,
.home .nf-banner--image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home .nf-banner--text {
  color: #ffffff;
  padding: 0 29px 8px;
  text-align: center;
  align-items: center;
}
.home .nf-banner--text .nf-u-title {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 3.6rem;
  line-height: 3.8rem;
  letter-spacing: -0.01em;
}
.home .nf-banner--text .nf-u-text {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  max-width: 100%;
}
.home .nf-banner--text .nf-button {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 2.5rem;
  letter-spacing: 0.075em;
  margin-top: 20px;
  padding-left: 22px;
  padding-right: 22px;
}
.home .nf-banner--image {
  filter: grayscale(100%);
  opacity: 0.6;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .home .nf-banner {
    height: 453px;
  }
  .home .nf-banner--text {
    padding: 0;
    max-width: 588px;
    left: 50%;
    transform: translateX(-50%);
  }
  .home .nf-banner--text .nf-u-title {
    font-size: 5.1rem;
    line-height: 3.3rem;
    letter-spacing: -0.015em;
  }
  .home .nf-banner--text .nf-u-text {
    font-size: 2.3rem;
    line-height: 2.9rem;
    margin-bottom: 19px;
    letter-spacing: -0.025em;
  }
  .home .nf-banner--text .nf-button {
    font-size: 1.6rem;
    margin-top: 38px;
    padding-left: 27px;
    padding-right: 27px;
  }
}
@media screen and (min-width: 1330px) {
  .home .nf-banner {
    height: 604px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
  .home .nf-banner--text {
    padding: 0 0 34px;
    max-width: 1024px;
  }
  .home .nf-banner--text .nf-u-title {
    font-size: 6.8rem;
    line-height: 4.4rem;
  }
  .home .nf-banner--text .nf-u-text {
    font-size: 2.8rem;
    line-height: 3.7rem;
    margin-bottom: 26px;
  }
  .home .nf-banner--text .nf-button {
    margin-top: 47px;
  }
}
.nf-ugc .bctt-click-to-tweet {
  margin: 23px 0 27px 0;
  border: 0 none;
  padding: 0 20px;
}
.nf-ugc .bctt-click-to-tweet .bctt-ctt-text a {
  font-family: "proxima-nova", sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  -webkit-font-feature-settings: "liga" 0, "salt" 0 !important;
  font-feature-settings: "liga" 0, "salt" 0 !important;
  font-size: 1.7rem;
  line-height: 2.2rem;
  letter-spacing: -0.035em;
  color: #999999 !important;
  -webkit-font-feature-settings: "liga" 1, "salt" 0 !important;
  font-feature-settings: "liga" 1, "salt" 0 !important;
  text-decoration: none;
  display: block;
  margin: 0;
  padding: 0;
}
.nf-ugc .bctt-click-to-tweet .bctt-ctt-btn {
  font-family: "proxima-nova", sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  -webkit-font-feature-settings: "liga" 0, "salt" 0 !important;
  font-feature-settings: "liga" 0, "salt" 0 !important;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: 0.035em;
  color: #1eaae3 !important;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  float: none;
  margin: 10px 0 0 0;
  padding: 5px 0 5px 25px;
  background: 0 none;
}
.nf-ugc .bctt-click-to-tweet .bctt-ctt-btn:before {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-bctt.svg');
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .nf-ugc .bctt-click-to-tweet {
    margin: 26px 0 22px 0;
    padding: 0 50px;
  }
  .nf-ugc .bctt-click-to-tweet .bctt-ctt-btn {
    letter-spacing: 0.025em;
    margin-top: 10px;
  }
  .nf-ugc .bctt-click-to-tweet .bctt-ctt-btn:before {
    top: 1px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-ugc .bctt-click-to-tweet {
    margin-top: 28px;
  }
}
.nf-button {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  line-height: 2.6rem;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  padding: 6px 28px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #417bbe;
}
.nf-button:hover {
  background-color: #1a508f;
}
.nf-button--gray {
  background-color: #999999;
}
.nf-button--gray:hover {
  background-color: #666666;
}
.nf-button--orange {
  background-color: #fbb040;
}
.nf-button--orange:hover {
  background-color: #dd7e00;
}
.nf-button--transparent {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.nf-button--transparent:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.nf-card--post {
  position: relative;
}
.nf-card--post + .nf-card--post {
  margin-top: 45px;
}
.nf-card--post .nf-card-image {
  width: 214px;
}
.nf-card--post .nf-card-image img {
  border-radius: 5px;
}
.nf-card--post .nf-card-image + .nf-card-text {
  padding-top: 20px;
}
.nf-card--post .nf-card-postType {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 500;
  -webkit-font-feature-settings: "liga" 0, "salt" 1;
  font-feature-settings: "liga" 0, "salt" 1;
  font-size: 1.3rem;
  line-height: 1.6rem;
  letter-spacing: 0.05em;
  color: #2064b3;
  text-transform: uppercase;
}
.nf-card--post .nf-card-title {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.3rem;
  line-height: 2.7rem;
  letter-spacing: -0.045em;
  color: #333333;
  margin-top: 7px;
  display: block;
}
.nf-card--post .nf-card-strapline {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 2.5rem;
  letter-spacing: 0.075em;
  color: #333333;
  text-transform: uppercase;
  margin-top: 7px;
}
.nf-card--post .nf-card-strapline .nf-card-author,
.nf-card--post .nf-card-strapline .nf-card-postDate {
  display: inline;
  position: relative;
}
.nf-card--post .nf-card-strapline .nf-card-author + .nf-card-postDate::before {
  content: ' ';
  width: 1px;
  height: 1em;
  background-color: #333333;
  margin: 0 9px 0 4px;
  display: inline-block;
  vertical-align: middle;
}
.nf-card--post .nf-card-strapline .nf-card-author + .nf-card-author::before {
  content: ', ';
}
.nf-card--post .nf-card-excerpt {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.7rem;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
  color: #111111;
  margin-top: 11px;
}
.nf-card--post a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .nf-card--post .nf-card-image {
    position: absolute;
    top: 3px;
    left: 0;
  }
  .nf-card--post .nf-card-image + .nf-card-text {
    padding-top: 0;
    padding-left: 235px;
  }
}
.home .nf-card--post-grid {
  text-align: center;
  margin: 20px 25px 67px;
  padding-top: 18px;
}
.home .nf-card--post-grid .nf-u-title {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.2rem;
  line-height: 1.5rem;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "liga" 0, "salt" 1;
  font-feature-settings: "liga" 0, "salt" 1;
  text-transform: uppercase;
  color: #88888a;
  margin-bottom: 31px;
  display: block;
}
.home .nf-card--post-grid .group {
  max-width: 530px;
  margin: auto;
}
.home .nf-card--post-grid .nf-card--post {
  margin: 0px auto 25px;
}
.home .nf-card--post-grid .nf-card--post .nf-card-image img {
  width: 214px;
}
.home .nf-card--post-grid .nf-card--post + .nf-card--post {
  margin-top: 40px;
}
.home .nf-card--post-grid .nf-button {
  margin-top: 58px;
}
@media screen and (min-width: 768px) {
  .home .nf-card--post-grid {
    margin: 42px 45px 104px;
    padding-top: 3px;
  }
  .home .nf-card--post-grid .group {
    padding-bottom: 62px;
    border-bottom: 2px solid #cccccc;
    max-width: 1050px;
  }
  .home .nf-card--post-grid .group:after {
    content: "";
    display: table;
    clear: both;
  }
  .home .nf-card--post-grid .nf-u-title {
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-bottom: 55px;
  }
  .home .nf-card--post-grid .nf-card--post {
    width: calc(50% - 23px);
    text-align: left;
    clear: left;
  }
  .home .nf-card--post-grid .nf-card--post + .nf-card--post {
    margin-top: 49px;
  }
  .home .nf-card--post-grid .nf-card--post {
    margin-top: 0;
  }
  .home .nf-card--post-grid .nf-button {
    margin-top: 33px;
  }
}
@media screen and (min-width: 1330px) {
  .home .nf-card--post-grid {
    margin: 56px 45px 116px;
  }
  .home .nf-card--post-grid .group {
    padding-bottom: 50px;
    border-bottom: 2px solid #cccccc;
  }
  .home .nf-card--post-grid .nf-u-title {
    margin-top: 23px;
    margin-bottom: 53px;
  }
  .home .nf-card--post-grid .nf-card--post {
    width: 700px;
    max-width: 100%;
    margin: 0px auto 25px;
  }
}
.nf-card--service-grid {
  margin-top: 56px;
  max-width: 837px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.nf-card--service {
  position: relative;
}
.nf-card--service + .nf-card--service {
  margin-top: 45px;
}
.nf-card--service .nf-card-image {
  width: 214px;
}
.nf-card--service .nf-card-image img {
  border-radius: 5px;
}
.nf-card--service .nf-card-image + .nf-card-text {
  padding-top: 20px;
}
.nf-card--service .nf-card-title {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.3rem;
  line-height: 2.7rem;
  letter-spacing: -0.045em;
  color: #333333;
  margin-top: 7px;
  display: block;
}
.nf-card--service .nf-card-excerpt {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.7rem;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
  color: #111111;
  margin-top: 11px;
}
.nf-card--service a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .nf-card--service {
    display: flex;
  }
  .nf-card--service .nf-card-image {
    flex: 0 0 215px;
  }
  .nf-card--service .nf-card-image + .nf-card-text {
    padding-top: 0;
    padding-left: 20px;
  }
}
.nf-card--position-grid {
  margin-top: 56px;
  max-width: 837px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.nf-card--position {
  position: relative;
}
.nf-card--position + .nf-card--position {
  margin-top: 45px;
}
.nf-card--position .nf-card-title {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.3rem;
  line-height: 2.7rem;
  letter-spacing: -0.045em;
  color: #333333;
  margin-top: 7px;
  display: block;
}
.nf-card--position .nf-card-strapline {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 2.5rem;
  letter-spacing: 0.075em;
  color: #333333;
  text-transform: uppercase;
  margin-top: 7px;
}
.nf-card--position .nf-card-strapline .nf-card-postDate {
  display: inline;
  position: relative;
}
.nf-card--position .nf-card-excerpt {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.7rem;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
  color: #111111;
  margin-top: 11px;
}
.nf-card--position a {
  color: inherit;
  text-decoration: none;
}
.nf-card--featuredWebinar .nf-card-image {
  width: 100%;
  display: block;
  margin-top: 10px;
  margin-bottom: 15px;
}
.nf-card--featuredWebinar .nf-card-image img {
  display: block;
}
.nf-card--featuredWebinar .nf-card-image + .nf-card-text {
  padding-top: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .nf-card--featuredWebinar .nf-card-image,
  .nf-card--featuredWebinar .nf-card-image img {
    max-height: 350px;
    width: auto;
    position: relative;
  }
  .nf-card--featuredWebinar .nf-card-image {
    display: block;
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .nf-card--webinar .nf-card-image,
  .nf-card--webinar .nf-card-image img {
    width: auto;
    position: relative;
  }
  .nf-card--webinar .nf-card-image {
    display: block;
    margin-top: 10px;
  }
  .nf-card--webinar .nf-card-image + .nf-card-text {
    padding-top: 2px;
    padding-left: 0;
  }
}
.nf-card--teamMember-grid {
  max-width: 837px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  margin-top: 37px;
}
.nf-card--teamMember {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.nf-card--teamMember + .nf-card--teamMember {
  margin-top: 47px;
}
.nf-card--teamMember .nf-card-image {
  display: block;
  width: 214px;
  height: 214px;
  margin: auto;
  border-radius: 50%;
  background-color: #fbb03f;
  overflow: hidden;
}
.nf-card--teamMember .nf-card-image > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.8;
  mix-blend-mode: multiply;
}
.nf-card--teamMember .nf-card-title {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.9rem;
  line-height: 2.1rem;
  letter-spacing: 0.01em;
  color: #2064b3;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-top: 19px;
}
.nf-card--teamMember .nf-card-subtitle {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.2rem;
  line-height: 2.5rem;
  letter-spacing: 0.025em;
  color: #88888a;
  text-transform: uppercase;
}
@media screen and (min-width: 533px) {
  .nf-card--teamMember {
    float: left;
  }
  .nf-card--teamMember:nth-child(1n+0) {
    width: calc(100% / 2 - 36px * (2 - 1) / 2);
    margin: 0 35px 47px 0;
  }
  .nf-card--teamMember:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media screen and (min-width: 835px) {
  .nf-card--teamMember:nth-child(1n+0) {
    width: calc(100% / 3 - 36px * (3 - 1) / 3);
    margin: 0 35px 47px 0;
  }
  .nf-card--teamMember:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1330px) {
  .nf-card--teamMember-grid {
    margin-top: 50px;
  }
}
.nf-card--caseStudy-grid {
  max-width: 837px;
  margin-top: 56px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.nf-card--caseStudy {
  height: 264px;
  max-width: 405px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.nf-card--caseStudy + .nf-card--caseStudy {
  margin-top: 27px;
}
.nf-card--caseStudy .nf-card-imageWrap {
  background-color: #a76bcf;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nf-card--caseStudy .nf-card-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.35;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.nf-card--caseStudy .nf-card-text {
  position: relative;
  padding: 20px 25px;
}
.nf-card--caseStudy .nf-card-text .nf-card-subtitle {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.2rem;
  line-height: 1.5rem;
  letter-spacing: 0.205em;
  text-transform: uppercase;
  color: #ffffff;
}
.nf-card--caseStudy .nf-card-text .nf-card-subtitle .nf-card-icon {
  width: 32px;
  margin: 0 auto 10px;
  display: block;
}
.nf-card--caseStudy .nf-card-text .nf-card-title {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.8rem;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-top: 12px;
}
.nf-card--caseStudy .nf-card-text .nf-card-excerpt {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.6rem;
  line-height: 2.1rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  margin-top: 8px;
}
@media screen and (min-width: 885px) {
  body:not(.home) .nf-card--caseStudy {
    width: 405px;
    float: left;
  }
  body:not(.home) .nf-card--caseStudy:nth-of-type(1n+0) {
    width: calc(100% / 2 - 27px * (2 - 1) / 2);
    margin: 0 27px 27px 0;
  }
  body:not(.home) .nf-card--caseStudy:nth-of-type(2n+2) {
    margin-right: 0;
  }
  body:not(.home) .nf-card--caseStudy .nf-card-text .nf-card-subtitle {
    height: 50px;
    line-height: 50px;
    margin-top: -5px;
    margin-bottom: 20px;
  }
  body:not(.home) .nf-card--caseStudy .nf-card-text .nf-card-subtitle .nf-card-icon {
    margin-right: 10px;
    margin-bottom: 0;
    vertical-align: top;
    width: 32px;
    display: inline;
    transform: translateY(-50%);
    top: 50%;
    position: relative;
  }
}
.home .nf-card--caseStudy-grid {
  margin-top: 20px;
  max-width: 1280px;
}
.home .nf-card--caseStudy {
  height: auto;
  border-radius: 0;
  padding-bottom: 30px;
  max-width: 100%;
}
.home .nf-card--caseStudy .nf-card-imageWrap {
  height: 264px;
  position: relative;
}
.home .nf-card--caseStudy .nf-card-image {
  opacity: 0.6;
}
.home .nf-card--caseStudy .nf-card-text .nf-card-title,
.home .nf-card--caseStudy .nf-card-text .nf-card-subtitle,
.home .nf-card--caseStudy .nf-card-text .nf-card-excerpt {
  color: #a76bcf;
}
.home .nf-card--caseStudy + .nf-card--caseStudy {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .home .nf-card--caseStudy-grid {
    margin-top: 42px;
  }
  .home .nf-card--caseStudy {
    display: flex;
    max-width: 100%;
    height: 313px;
    padding-bottom: 0;
  }
  .home .nf-card--caseStudy .nf-card-imageWrap {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(50% - 6px);
    border-radius: 0 5px 5px 0;
    overflow: hidden;
    height: 100%;
  }
  .home .nf-card--caseStudy .nf-card-text {
    text-align: left;
    padding: 24px 60px 24px 32px;
  }
  .home .nf-card--caseStudy .nf-card-text .nf-card-subtitle {
    font-size: 1.3rem;
    line-height: 3rem;
    letter-spacing: 0.26em;
  }
  .home .nf-card--caseStudy .nf-card-text .nf-card-subtitle .nf-card-icon {
    margin-right: 10px;
    vertical-align: middle;
    width: 32px;
    display: inline;
  }
  .home .nf-card--caseStudy .nf-card-text .nf-card-title {
    font-size: 3rem;
    line-height: 3.5rem;
    letter-spacing: 0em;
    margin-top: 4px;
  }
  .home .nf-card--caseStudy .nf-card-text .nf-card-excerpt {
    font-size: 1.7rem;
    line-height: 2.3rem;
    letter-spacing: -0.01em;
    margin-top: 10px;
  }
  .home .nf-card--caseStudy + .nf-card--caseStudy {
    margin-top: 42px;
  }
  .home .nf-card--caseStudy:nth-child(odd) .nf-card-imageWrap {
    order: 2;
    border-radius: 5px 0 0 5px;
  }
  .home .nf-card--caseStudy:nth-child(odd) .nf-card-text {
    order: 1;
    text-align: right;
    padding-right: 32px;
    padding-left: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .home .nf-card--caseStudy .nf-card-imageWrap,
  .home .nf-card--caseStudy .nf-card-imageWrap:nth-child(odd) {
    border-radius: 5px 5px 5px 5px;
  }
}
@media screen and (min-width: 1330px) {
  .home .nf-card--caseStudy-grid {
    margin-top: 56px;
  }
  .home .nf-card--caseStudy {
    height: 415px;
    padding-bottom: 0;
  }
  .home .nf-card--caseStudy .nf-card-imageWrap,
  .home .nf-card--caseStudy .nf-card-imageWrap:nth-child(odd) {
    flex-basis: 504px;
    border-radius: 5px 5px 5px 5px;
  }
  .home .nf-card--caseStudy .nf-card-text {
    text-align: left;
    padding: 61px 145px 24px 55px;
  }
  .home .nf-card--caseStudy .nf-card-text .nf-card-subtitle {
    font-size: 1.8rem;
    line-height: 2.2rem;
    letter-spacing: 0.23em;
  }
  .home .nf-card--caseStudy .nf-card-text .nf-card-subtitle .nf-card-icon {
    margin-right: 12px;
    width: 49px;
  }
  .home .nf-card--caseStudy .nf-card-text .nf-card-title {
    font-size: 4rem;
    line-height: 4.6rem;
    letter-spacing: -0.005em;
    margin-top: 17px;
  }
  .home .nf-card--caseStudy .nf-card-text .nf-card-excerpt {
    font-size: 2.2rem;
    line-height: 3rem;
    letter-spacing: -0.01em;
    margin-top: 21px;
  }
  .home .nf-card--caseStudy:nth-child(odd) .nf-card-text {
    padding-right: 55px;
    padding-left: 145px;
  }
}
.nf-card--client-grid {
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.nf-card--client-grid .nf-u-title {
  display: block;
  margin-bottom: 15px;
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #333333;
  text-align: center;
}
.nf-card--client-grid + .nf-card--client-grid {
  margin-top: 56px;
}
.nf-card--client {
  width: 200px;
  height: 135px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.nf-card--client + .nf-card--client {
  margin-top: 15px;
}
.nf-card--client .nf-card-image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 463px) {
  .nf-card--client-grid {
    max-width: 415px;
  }
  .nf-card--client-grid .nf-u-title {
    text-align: left;
  }
  .nf-card--client-grid + .nf-card--client-grid {
    margin-top: 36px;
  }
  .nf-card--client {
    float: left;
  }
  .nf-card--client:nth-of-type(1n+0) {
    margin: 0 15px 15px 0;
  }
  .nf-card--client:nth-of-type(2n+2) {
    margin-right: 0;
  }
}
@media screen and (min-width: 687px) {
  .nf-card--client-grid {
    max-width: 630px;
  }
  .nf-card--client:nth-of-type(1n+0) {
    margin: 0 15px 15px 0;
  }
  .nf-card--client:nth-of-type(3n+3) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1430px) {
  .nf-card--client-grid {
    max-width: 837px;
  }
  .nf-card--client:nth-of-type(1n+0) {
    margin: 0 12px 12px 0;
  }
  .nf-card--client:nth-of-type(4n+4) {
    margin-right: 0;
  }
}
.nf-widgets {
  max-width: 530px;
  margin: auto;
}
.nf-widgets .nf-cta + .nf-cta,
.nf-widgets .nf-cta + .widget,
.nf-widgets .widget + .nf-cta,
.nf-widgets .widget + .widget {
  margin-top: 65px;
}
.nf-widgets .nf-cta--sidebar-item {
  text-align: center;
  margin: auto;
}
.nf-widgets .nf-cta--sidebar-item .nf-u-image img {
  border-radius: 5px;
}
.nf-widgets .nf-cta--sidebar-item .nf-u-title {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.3rem;
  line-height: 2.7rem;
  letter-spacing: -0.02em;
  color: #333333;
  text-decoration: none;
  display: block;
  margin-top: 7px;
}
.nf-widgets .nf-cta--sidebar-item .nf-u-excerpt {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 0em;
  color: #111111;
  text-decoration: none;
  margin-top: 10px;
}
.nf-widgets .nf-cta--sidebar-item .nf-button {
  margin-top: 27px;
}
.nf-widgets .nf-cta--related-content .nf-u-title {
  letter-spacing: -0.045em;
  margin-bottom: 13px;
}
.nf-widgets .nf-cta--related-content .nf-u-item {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0em;
  color: #2064b3;
  display: block;
}
.nf-widgets .nf-cta--related-content .nf-u-item + .nf-u-item {
  margin-top: 15px;
}
.nf-widgets .widget .nf-cta--whitepaper .nf-card-strapline {
  display: none;
}
.nf-widgets .sidebar-item.sidebar-form .gform_wrapper,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper,
.nf-widgets .sidebar-item.sidebar-form .gform_confirmation_wrapper,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_confirmation_wrapper {
  border: 0 none;
  margin: 0;
  padding: 0;
}
.nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_heading .gform_title,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_heading .gform_title,
.nf-widgets .sidebar-item.sidebar-form .gform_confirmation_wrapper .gform_heading .gform_title,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_confirmation_wrapper .gform_heading .gform_title {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 500;
  -webkit-font-feature-settings: "liga" 0, "salt" 1;
  font-feature-settings: "liga" 0, "salt" 1;
  font-size: 2rem;
  line-height: 2.2rem;
  letter-spacing: 0.01em !important;
  color: #2064b3;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  text-transform: uppercase;
  margin: 0;
}
.nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_heading .gform_description,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_heading .gform_description,
.nf-widgets .sidebar-item.sidebar-form .gform_confirmation_wrapper .gform_heading .gform_description,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_confirmation_wrapper .gform_heading .gform_description {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.5rem;
  line-height: 1.9rem;
  letter-spacing: 0em;
  color: #111111;
}
.nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_body,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_body,
.nf-widgets .sidebar-item.sidebar-form .gform_confirmation_wrapper .gform_body,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_confirmation_wrapper .gform_body {
  margin: 0 15px;
}
.nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_body .gform_fields.top_label .gfield,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_body .gform_fields.top_label .gfield,
.nf-widgets .sidebar-item.sidebar-form .gform_confirmation_wrapper .gform_body .gform_fields.top_label .gfield,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_confirmation_wrapper .gform_body .gform_fields.top_label .gfield {
  margin-top: 12px;
}
.nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_footer,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_footer,
.nf-widgets .sidebar-item.sidebar-form .gform_confirmation_wrapper .gform_footer,
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_confirmation_wrapper .gform_footer {
  margin-top: 22px;
}
.nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_footer input[type="submit"],
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_footer input[type="submit"],
.nf-widgets .sidebar-item.sidebar-form .gform_confirmation_wrapper .gform_footer input[type="submit"],
.nf-widgets .nf-cta--sidebar-item.gform_widget .gform_confirmation_wrapper .gform_footer input[type="submit"] {
  line-height: 2.7rem;
  min-height: 2.7rem;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_heading .gform_description,
  .nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_heading .gform_description {
    margin-top: 2px;
  }
  .nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_body,
  .nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_body {
    width: auto;
    margin-top: -5px;
    margin-right: 23px;
    margin-left: 23px;
  }
  .nf-widgets .nf-cta--related-content {
    max-width: 500px;
    margin: auto;
  }
  .nf-widgets .nf-cta--related-content .nf-u-title {
    letter-spacing: -0.045em;
    margin-bottom: 13px;
  }
  .nf-widgets .nf-cta--related-content .nf-u-item {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    -webkit-font-feature-settings: "liga" 1, "salt" 1;
    font-feature-settings: "liga" 1, "salt" 1;
    font-size: 1.5rem;
    line-height: 1.8rem;
    letter-spacing: 0em;
    display: block;
  }
  .nf-widgets .nf-cta--related-content .nf-u-item + .nf-u-item {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .nf-widgets .nf-cta + .nf-cta,
  .nf-widgets .nf-cta + .widget,
  .nf-widgets .widget + .nf-cta,
  .nf-widgets .widget + .widget {
    margin-top: 80px;
  }
  .nf-widgets .nf-cta--sidebar-item {
    text-align: left;
  }
  .nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_heading .gform_title,
  .nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_heading .gform_title {
    text-align: left;
  }
  .nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_heading .gform_description,
  .nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_heading .gform_description {
    text-align: left;
    margin-top: 2px;
  }
  .nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_body,
  .nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_body {
    margin: -12px 0 0;
  }
  .nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_body .gform_fields.top_label .gf_left_half,
  .nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_body .gform_fields.top_label .gf_left_half,
  .nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_body .gform_fields.top_label .gf_right_half,
  .nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_body .gform_fields.top_label .gf_right_half {
    width: 100%;
    max-width: 100% !important;
    padding-right: 0;
    padding-left: 0;
  }
  .nf-widgets .sidebar-item.sidebar-form .gform_wrapper .gform_footer input[type="submit"],
  .nf-widgets .nf-cta--sidebar-item.gform_widget .gform_wrapper .gform_footer input[type="submit"] {
    margin-left: 0;
  }
}
.nf-contentFeature {
  background-color: #8fb1d9;
  color: #ffffff;
  text-align: center;
}
.nf-contentFeature .nf-u-title {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.3rem;
  line-height: 2.5rem;
  letter-spacing: -0.03em;
}
.nf-contentFeature .nf-u-text {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 0em;
}
.nf-contentFeature {
  padding: 40px 24px 45px;
}
.nf-contentFeature + .nf-contentFeature {
  margin-top: 19px;
}
.nf-contentFeature .nf-u-title {
  padding-left: 5px;
  padding-right: 5px;
}
.nf-contentFeature .nf-u-text {
  margin-top: 16px;
}
.nf-contentFeature .nf-button {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .nf-contentFeature {
    padding-bottom: 54px;
    border-radius: 5px;
    flex: 1;
  }
  .nf-contentFeature + .nf-contentFeature {
    margin-top: 0;
    margin-left: 30px;
  }
  .nf-contentFeature .nf-u-title {
    padding-left: 10px;
    padding-right: 10px;
  }
  .nf-contentFeature .nf-u-text {
    max-width: 650px;
    margin-top: 13px;
    margin-right: auto;
    margin-left: auto;
  }
  .nf-contentFeature .nf-button {
    margin-top: 31px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-contentFeature + .nf-contentFeature {
    margin-left: 28px;
  }
  .nf-contentFeature .nf-u-text {
    margin-top: 16px;
  }
  .nf-contentFeature .nf-button {
    margin-top: 33px;
  }
}
.nf-filters {
  display: flex;
  flex-direction: column;
  width: 186px;
  margin-bottom: 35px;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.4rem;
  line-height: 1.9rem;
  letter-spacing: 0em;
  color: #333333;
}
.nf-filter-group + .nf-filter-group {
  margin-top: 15px;
}
.nf-filter-groupLabel {
  border: 1px solid #cccccc;
  padding: 7px 13px;
  position: relative;
  cursor: pointer;
}
.nf-filter-groupLabel.nf-u-open {
  border-bottom-width: 0;
}
.nf-filter-groupLabel:after {
  content: ' ';
  position: absolute;
  width: 14px;
  height: auto;
  top: 13px;
  right: 11px;
  border: 7px solid transparent;
  border-top-color: #cccccc;
}
.nf-filter-groupLabel.nf-u-open:after {
  border-top-color: #fbb03f;
}
.nf-filter-optionWrap {
  padding: 5px 0;
}
.nf-filter-options {
  padding: 12px 14px 13px;
  border: 1px solid #cccccc;
  border-top-width: 0;
  display: none;
}
.nf-filter-option {
  display: none;
}
.nf-filter-option + label {
  line-height: 1.7rem;
  padding-left: 25px;
  position: relative;
  display: block;
}
.nf-filter-option + label:before {
  content: ' ';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #b6b6b8;
  position: absolute;
  left: 0;
  top: 2px;
}
.nf-filter-option:checked + label:before {
  background-color: #2064b3;
}
@media screen and (min-width: 600px) and (max-width: 1329px) {
  .nf-filters {
    flex-direction: row;
    width: auto;
    max-width: 598px;
  }
  .nf-filter-group {
    flex: 0 1 100%;
  }
  .nf-filter-group + .nf-filter-group {
    margin-top: 0;
    margin-left: 20px;
  }
}
.page-template-lander-our-team .nf-filters {
  margin-top: 37px;
}
.page-template-lander-our-team .nf-filter-group {
  flex: 1;
}
.page-template-lander-our-team .nf-current-filters {
  flex: 0 0 100%;
  margin-top: 37px;
}
.page-template-lander-our-team .nf-current-filters .nf-current-filter {
  position: relative;
  display: inline-block;
  padding: 1px 0 1px 30px;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  font-size: 1.4rem;
  line-height: 1.9rem;
  letter-spacing: 0em;
  color: #2064b3;
}
.page-template-lander-our-team .nf-current-filters .nf-current-filter .nf-u-close {
  background-image: url('/wp-content/themes/axialent/resources/public/svg/icon-filter-delete.svg');
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.page-template-lander-our-team .nf-current-filters .nf-current-filter + .nf-current-filter {
  margin-top: 28px;
}
.page-template-lander-our-team .nf-filter-group[data-taxonomy="search"] {
  position: relative;
}
.page-template-lander-our-team .nf-filter-group[data-taxonomy="search"] input[type="text"] {
  height: 35px;
  border: 1px solid #cccccc;
  font: inherit;
  padding: 7px 13px;
  width: 100%;
}
.page-template-lander-our-team .nf-filter-group[data-taxonomy="search"] input[type="text"]:focus {
  outline: none;
}
.page-template-lander-our-team .nf-filter-group[data-taxonomy="search"]::after {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-search.svg');
  position: absolute;
  top: 10px;
  right: 9px;
  width: 16px;
  height: 21px;
}
@media screen and (min-width: 600px) {
  .page-template-lander-our-team .nf-filters {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    max-width: none;
  }
  .page-template-lander-our-team .nf-filter-group + .nf-filter-group {
    margin-top: 0;
    margin-left: 20px;
  }
  .page-template-lander-our-team .nf-current-filters .nf-current-filter + .nf-current-filter {
    margin-top: 0;
    margin-left: 28px;
  }
}
.nf-footer {
  padding-top: 32px;
  padding-bottom: 53px;
  color: #ffffff;
  background-color: #8fb1d9;
  text-align: center;
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1330px) {
  .nf-footer {
    padding-top: 49px;
    text-align: right;
    overflow: hidden;
  }
}
.nf-footer-positioning {
  font-size: 1.6rem;
  line-height: 2.1rem;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .nf-footer-positioning {
    max-width: 750px;
    margin: auto;
  }
}
@media screen and (min-width: 1330px) {
  .nf-footer-positioning {
    float: left;
    width: 650px;
    text-align: left;
  }
}
.nf-footer-cta {
  margin-top: 22px;
}
@media screen and (min-width: 1330px) {
  .nf-footer-cta {
    margin-top: 17px;
  }
}
.nf-footer-social {
  margin: 47px 0 33px;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.nf-footer-social li {
  display: inline;
}
.nf-footer-social li + li {
  margin-left: 17px;
}
.nf-footer-social,
.nf-footer-social li {
  list-style-type: none;
}
.nf-footer-social svg {
  height: 27px;
  width: auto;
  max-width: 38px;
  fill: #ffffff;
}
@media screen and (min-width: 1330px) {
  .nf-footer-social {
    margin: 7px 0 32px;
    float: right;
  }
}
.nf-footer-copyright {
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: -0.005em;
}
@media screen and (min-width: 1330px) {
  .nf-footer-copyright {
    float: right;
    clear: right;
  }
}
.nf-footer-privacy {
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: -0.005em;
  color: #ffffff;
  display: block;
}
@media screen and (min-width: 768px) {
  .nf-footer-privacy {
    display: inline;
    padding-left: 15px;
  }
}
body .gform_wrapper,
body .gform_confirmation_wrapper {
  border: 1px solid #cccccc;
  padding: 29px 0;
  border-width: 1px 0;
  margin: 70px 0;
}
.gform_wrapper .gform_heading .gform_title,
.gform_confirmation_message h2 {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.3rem;
  line-height: 2.5rem;
  letter-spacing: -0.045em !important;
  text-align: center;
  color: #333333;
  margin-bottom: 7px;
}
.gform_wrapper .gform_heading span.gform_description,
.gform_confirmation_message {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 0em;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  text-align: center;
  width: 100%;
}
.gform_wrapper .gfield_required {
  color: #ff3838;
}
.gform_confirmation_wrapper {
  text-align: center;
  padding-bottom: 46px;
}
.gform_confirmation_wrapper .gform_confirmation_message h2 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield {
  margin-top: 7px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .gfield_label {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.4rem;
  line-height: 1.9rem;
  letter-spacing: 0em;
}
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_body .gform_fields.top_label .gfield input:focus,
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container > textarea:focus {
  outline: unset;
}
.gform_wrapper .chosen-container-active .chosen-single {
  border: 0 none;
  box-shadow: unset;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container {
  margin-top: 2px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container > input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container > textarea {
  background-color: #eeeeee;
  border: 0 none;
  line-height: 2.5rem;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container.ginput_container_checkbox {
  margin-top: 20px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container .gfield_checkbox li > input[type="checkbox"] {
  display: none;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container .gfield_checkbox li > input[type="checkbox"] + label {
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 0.005em;
  padding-left: 23px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container .gfield_checkbox li > input[type="checkbox"] + label:before {
  content: ' ';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #b6b6b8;
  position: absolute;
  left: 0;
  top: 2px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container .gfield_checkbox li > input[type="checkbox"]:checked + label {
  font-weight: 400;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container .gfield_checkbox li > input[type="checkbox"]:checked + label:before {
  background-color: #2064b3;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container.ginput_container_fileupload {
  display: inline-block;
  margin-left: 15px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container.ginput_container_fileupload input {
  width: auto;
  max-width: 165px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container a.chosen-single {
  height: 35px;
  line-height: 35px;
  padding-left: 15px;
  border-radius: 0;
  border: 0 none;
  background: none;
  background-color: #eeeeee;
  box-shadow: unset;
  color: #333333;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container a.chosen-single span {
  margin-bottom: 0;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container a.chosen-single div {
  width: 14px;
  height: auto;
  top: 15px;
  right: 13px;
}
.gform_wrapper .gform_body .gform_fields.top_label .gfield .ginput_container a.chosen-single div b {
  position: static;
  background: 0 none;
  border: 7px solid transparent;
  border-top-color: #7c7d7f;
}
.gform_wrapper .gform_footer {
  margin-top: 21px;
  margin-bottom: 2px;
}
.gf_browser_ie.gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type="submit"] {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  line-height: 2.6rem;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  padding: 6px 28px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #417bbe;
  background-color: #999999;
  display: block;
  border: 0 none;
  margin: 0 auto;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gf_browser_ie.gform_wrapper .gform_footer input.button:hover,
body .gform_wrapper .gform_footer input[type="submit"]:hover {
  background-color: #1a508f;
}
.gf_browser_ie.gform_wrapper .gform_footer input.button:hover,
body .gform_wrapper .gform_footer input[type="submit"]:hover {
  background-color: #666666;
}
body img.gform_ajax_spinner {
  display: none !important;
}
@media screen and (min-width: 641px) {
  .gform_wrapper .gform_body .gform_fields.top_label .gfield {
    padding-right: 0;
  }
  .gform_wrapper .gform_body .gform_fields.top_label .gfield.gf_left_half,
  .gform_wrapper .gform_body .gform_fields.top_label .gfield.gf_right_half {
    width: 50%;
    max-width: 50% !important;
    padding-right: 10px;
  }
  .gform_wrapper .gform_body .gform_fields.top_label .gfield.gf_right_half {
    padding-right: 0;
    padding-left: 10px;
  }
}
@media screen and (min-width: 617px) {
  body .gform_wrapper,
  body .gform_confirmation_wrapper {
    padding-left: calc((100% - 617px) / 2);
    padding-right: calc((100% - 617px) / 2);
  }
}
@media screen and (min-width: 930px) {
  body .gform_wrapper,
  body .gform_confirmation_wrapper {
    max-width: 837px;
    padding-left: 110px;
    padding-right: 110px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ========================================================
 * Override the default gravity forms error styling
 * Show a simple orange bar, containing the error message,
 * above each field
 * ======================================================= */
body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
  border-bottom: 0;
  border-top: 0;
}
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 0;
}
body .gform_wrapper .field_description_below .gfield_description.validation_message {
  background-color: #c83636;
  color: white;
  padding-top: 0;
  font-weight: 300;
  padding-left: 10px;
  margin-bottom: 10px;
}
body .validation_error {
  display: none;
}
body .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half {
  margin-right: 0!important;
}
.nf-header nav {
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.nf-toggle--wpml {
  height: auto;
  position: absolute;
  top: 10px;
  right: 25px;
  z-index: 210;
}
.nf-toggle--wpml a {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  font-size: 1.3rem;
  line-height: 2.4rem;
  letter-spacing: 0.01em;
  color: #88888a;
  text-decoration: none;
}
.nf-toggle--wpml .nf-u-long {
  display: none;
  color: #666666;
}
@media screen and (min-width: 768px) {
  .nf-toggle--wpml {
    top: -30px;
    right: -69px;
  }
  .nf-toggle--wpml .nf-u-short {
    display: none;
  }
  .nf-toggle--wpml .nf-u-long {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .nf-toggle--wpml {
    position: static;
    float: left;
    padding: 5px 60px 0 0;
  }
}
@media screen and (min-width: 1330px) {
  .nf-toggle--wpml {
    top: 65px;
    right: 313px;
  }
  .nf-toggle--wpml a {
    font-size: 1.7rem;
  }
}
.nf-header-social {
  margin: 4px 0 0;
  padding: 0 0 0 38px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.nf-header-social li {
  display: inline;
}
.nf-header-social li + li {
  margin-left: 17px;
}
.nf-header-social,
.nf-header-social li {
  list-style-type: none;
}
.nf-header-social svg {
  height: 25px;
  width: auto;
  max-width: 25px;
  fill: #ffffff;
}
@media screen and (min-width: 1100px) {
  .nf-header-social {
    padding-left: 58px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-header-social {
    padding-left: 74px;
  }
}
@media screen and (max-width: 899px) {
  .nf-header-social {
    display: none;
  }
}
.nf-search-social-wrap {
  z-index: 210;
}
@media screen and (min-width: 768px) {
  .nf-search-social-wrap {
    position: absolute;
    top: 50px;
    right: 70px;
  }
}
@media screen and (min-width: 1100px) {
  .nf-search-social-wrap {
    top: 20px;
    right: 0;
  }
}
@media screen and (min-width: 1330px) {
  .nf-search-social-wrap {
    top: 59px;
  }
}
body .highlight-and-share-wrapper {
  margin-top: 15px;
}
body .highlight-and-share-wrapper a,
body .highlight-and-share-wrapper a:hover {
  padding-top: 4px;
  padding-bottom: 4px;
}
body .highlight-and-share-wrapper div {
  margin-right: 10px;
  padding: 0;
}
body .highlight-and-share-wrapper .has_twitter {
  position: relative;
}
body .highlight-and-share-wrapper .has_twitter::after {
  content: ' ';
  position: absolute;
  width: 14px;
  height: auto;
  bottom: -14px;
  left: 15px;
  border: 7px solid transparent;
  border-top-color: #32ccfe;
}
body .highlight-and-share-wrapper .has_twitter:hover::after {
  border-top-color: #00aced;
}
.nf-layout--notification {
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .nf-layout--notification {
    padding-left: 45px;
    padding-right: 45px;
  }
}
.nf-layout--header {
  z-index: 110;
}
@media screen and (min-width: 768px) {
  .nf-layout--header {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-layout--header {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.nf-layout--banner {
  z-index: 120;
  position: relative;
  background-color: #ffffff;
}
.nf-layout--body {
  margin-left: 24px;
  margin-right: 24px;
  margin-top: 20px;
}
.nf-layout--body-left {
  min-width: 100%;
  margin-bottom: 30px;
}
.nf-layout--body-right {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .nf-layout--body {
    margin-top: 42px;
    margin-right: 45px;
    margin-left: 45px;
  }
  .nf-layout--body-center {
    min-width: 600px;
    max-width: 837px;
    margin-left: auto;
    margin-right: auto;
  }
  .nf-layout--body-right {
    margin-top: 42px;
  }
}
@media screen and (min-width: 927px) and (max-width: 1023px) {
  .nf-layout--body-left {
    margin-left: calc((100% - 837px) / 2);
  }
}
@media screen and (min-width: 1240px) and (max-width: 1329px) {
  .nf-layout--body-left {
    margin-left: calc((100% - 1150px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .nf-layout--body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nf-layout--body-left,
  .nf-layout--body-center {
    flex: 1;
  }
  .nf-layout--body-right {
    margin-top: 0;
    margin-left: 88px;
    flex: 0 0 225px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-layout--body {
    flex-wrap: nowrap;
    margin-top: 56px;
    margin-right: 80px;
    margin-left: 80px;
  }
  .nf-layout--body-left {
    min-width: auto;
    flex: 0 0 186px;
  }
  .nf-layout--body-center {
    flex: auto;
    min-width: auto;
  }
  .nf-layout--body-left + .nf-layout--body-center {
    margin-left: 68px;
  }
}
@media screen and (min-width: 1430px) {
  .nf-layout--body {
    margin-top: 56px;
    max-width: 1270px;
    margin-left: auto;
    margin-right: auto;
  }
}
.nf-layout--contentFeature {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .nf-layout--contentFeature {
    margin-left: 45px;
    margin-right: 45px;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 930px) {
  .nf-layout--contentFeature {
    max-width: 837px;
    margin-left: auto;
    margin-right: auto;
  }
}
.nf-layout--footerForm {
  margin: 40px 7%;
}
@media screen and (min-width: 768px) {
  .nf-layout--footerForm {
    margin-left: 45px;
    margin-right: 45px;
    margin-bottom: 120px;
  }
  .nf-layout--contentFeature + .nf-layout--footerForm {
    margin-top: 70px;
  }
}
.nf-layout--footer {
  background-color: #8fb1d9;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 480px) {
  .nf-layout--footer {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .nf-layout--footer {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-layout--footer {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 1099px) {
  #mega-menu-wrap-primary_navigation .mega-menu-toggle {
    padding: 18px 24px;
    border-bottom: 3px solid #2064b3;
    border-radius: 0;
    height: 98px;
    position: relative;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle.mega-menu-open {
    border-bottom-color: #002d62;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle .mega-logo-block {
    width: 190px;
    margin-left: 0;
    line-height: 1;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle .mega-logo-block a.mega-menu-logo img {
    top: 0px;
    vertical-align: top;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle .mega-menu-toggle-block {
    position: absolute;
    right: 25px;
    bottom: 23px;
    width: 28px;
    height: 24px;
    margin: 0;
    line-height: 1;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle .mega-menu-toggle-block:before {
    content: url('/wp-content/themes/axialent/resources/public/svg/icon-menu-open.svg');
    margin: 0;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle.mega-menu-open .mega-menu-toggle-block {
    right: 27px;
    bottom: 23px;
    width: 24px;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle.mega-menu-open .mega-menu-toggle-block:before {
    content: url('/wp-content/themes/axialent/resources/public/svg/icon-menu-close.svg');
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  #mega-menu-wrap-primary_navigation .mega-menu-toggle {
    border-bottom: 0 none;
    height: 115px;
    padding: 28px 0;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle .mega-logo-block {
    width: 190px;
    margin-left: 0;
    line-height: 1;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle .mega-logo-block a.mega-menu-logo img {
    top: 0px;
    vertical-align: top;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle .mega-menu-toggle-block {
    position: absolute;
    right: 1px;
    bottom: 31px;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle.mega-menu-open .mega-menu-toggle-block {
    right: 3px;
    bottom: 31px;
  }
  #mega-menu-wrap-primary_navigation .mega-menu-toggle:not(.mega-menu-open)::after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #2064b3;
  }
}
@media screen and (max-width: 1099px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation {
    padding-top: 16px;
    padding-bottom: 28px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:hover > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on:hover > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item:hover > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor:hover > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children:hover > a.mega-menu-link {
    font-family: "paralucent", sans-serif;
    font-style: normal;
    font-weight: 500;
    -webkit-font-feature-settings: "liga" 0, "salt" 1;
    font-feature-settings: "liga" 0, "salt" 1;
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    height: 39px;
    line-height: 38px;
    background-color: #002d62;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:hover > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on:hover > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item:hover > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor:hover > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children:hover > a.mega-menu-link::before {
    font-size: 40px;
    margin-right: 5px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:hover > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on:hover > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item:hover > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor:hover > a.mega-menu-link:not(.dashicons-arrow-right),
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children:hover > a.mega-menu-link:not(.dashicons-arrow-right) {
    margin-left: 45px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:hover > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on:hover > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item:hover > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor:hover > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children:hover > a.mega-menu-link::after {
    content: ' ';
    margin: 0;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link:before {
    color: #fbb03f;
    transform: rotate(90deg) translate(-2px, 0px);
    transition: 250ms ease-in-out;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on.mega-current-menu-item > a.mega-menu-link {
    color: #fbb03f;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:last-child {
    padding-top: 9px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:last-child > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:last-child:hover > a.mega-menu-link {
    padding-left: 57px;
    margin-left: 0;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:last-child > a.mega-menu-link:before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:last-child:hover > a.mega-menu-link:before {
    content: url('/wp-content/themes/axialent/resources/public/svg/icon-search.svg');
    position: absolute;
    top: 10px;
    left: 25px;
    width: 17px;
    line-height: 1;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation {
    margin-top: 0px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:last-child {
    display: none;
  }
}
@media screen and (max-width: 1099px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu {
    margin-bottom: 11px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    -webkit-font-feature-settings: "liga" 1, "salt" 1;
    font-feature-settings: "liga" 1, "salt" 1;
    font-size: 1.6rem;
    line-height: 2.2rem;
    letter-spacing: 0em;
    padding: 7px 57px 8px 57px;
    min-height: 37px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
    background-color: #002d62;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
    color: #fbb03f;
  }
}
@media screen and (min-width: 1100px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation {
    height: 115px;
    padding: 60px 0 0 0;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation::after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #2064b3;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-flyout.mega-align-bottom-left ul.mega-sub-menu {
    left: -20px;
    top: 37px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu {
    right: 0;
    top: 37px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu a.mega-menu-link {
    text-align: left;
  }
}
@media screen and (min-width: 1330px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation {
    height: 218px;
    padding: 121px 0 0 0;
  }
}
@media screen and (min-width: 1100px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children {
    margin: 0 0 0 35px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link::after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link::before,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link::before {
    content: ' ';
    margin: 0;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:hover:not(.mega-toggle-on) > a.mega-menu-link:not(.mega-menu-logo):after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on:not(.mega-toggle-on) > a.mega-menu-link:not(.mega-menu-logo):after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item:not(.mega-toggle-on) > a.mega-menu-link:not(.mega-menu-logo):after,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor:not(.mega-toggle-on) > a.mega-menu-link:not(.mega-menu-logo):after {
    content: " ";
    display: block;
    background-color: #fbb03f;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    position: absolute;
    bottom: 0px;
    left: 0;
    margin: 0;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:first-child {
    position: absolute;
    left: 0;
    top: 27px;
    margin: 0;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:first-child > a.mega-menu-logo {
    width: 190px;
    height: auto;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children {
    margin-left: 47px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item.mega-menu-item-has-children > a.mega-menu-link {
    font-size: 1.9rem;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:first-child {
    margin: 0;
  }
}
@media screen and (min-width: 1330px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:first-child {
    left: 0;
    top: 73px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item:first-child > a.mega-menu-logo {
    width: 260px;
  }
}
@media screen and (min-width: 1100px) {
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    -webkit-font-feature-settings: "liga" 1, "salt" 1;
    font-feature-settings: "liga" 1, "salt" 1;
    font-size: 1.6rem;
    line-height: 2.2rem;
    letter-spacing: 0em;
    padding: 9px 20px 6px 20px;
    min-height: 37px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link::after {
    content: ' ';
    margin: 0;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item:first-child > a.mega-menu-link {
    padding-top: 11px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item:last-child > a.mega-menu-link {
    padding-bottom: 11px;
  }
  #mega-menu-wrap-primary_navigation #mega-menu-primary_navigation > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
    color: #fbb03f;
  }
}
#nf-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 85%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 500;
}
#nf-modal .nf-modal-close {
  position: absolute;
  right: 17px;
  top: 15px;
  color: #ffffff;
  cursor: pointer;
}
#nf-modal .nf-modal-close span {
  display: none;
}
#nf-modal .nf-modal-close:after {
  content: '';
}
#nf-modal .nf-modal-close:before {
  display: block;
  width: 17px;
  height: auto;
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-menu-close.svg');
}
#nf-overlay {
  content: ' ';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  opacity: 0.8;
  z-index: 400;
  display: none;
}
#nf-modal.nf-modal--video .nf-modal-close {
  right: 0px;
  top: -46px;
}
#nf-modal.nf-modal--video .nf-modal-close:before {
  width: 24px;
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-modal-close.svg');
}
#nf-modal.nf-modal--video + #nf-overlay {
  background-color: #000000;
}
#nf-modal.nf-modal--email {
  background-color: #ffffff;
}
#nf-modal.nf-modal--email .nf-modal-content .gform_wrapper,
#nf-modal.nf-modal--email .nf-modal-content .gform_confirmation_wrapper {
  border: 0 none;
  margin: 0;
  max-width: 100%;
  padding: 0;
}
#nf-modal.nf-modal--email .nf-modal-content .gform_wrapper .gform_confirmation_message,
#nf-modal.nf-modal--email .nf-modal-content .gform_confirmation_wrapper .gform_confirmation_message {
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
}
#nf-modal.nf-modal--email .nf-modal-content .gform_wrapper .gform_body .gform_fields.top_label .gfield,
#nf-modal.nf-modal--email .nf-modal-content .gform_confirmation_wrapper .gform_body .gform_fields.top_label .gfield {
  margin-top: 12px;
}
#nf-modal.nf-modal--email .nf-modal-content .gform_wrapper .gform_footer,
#nf-modal.nf-modal--email .nf-modal-content .gform_confirmation_wrapper .gform_footer {
  margin-top: 20px;
}
#nf-modal.nf-modal--email .nf-modal-content .gform_wrapper .gform_footer input[type="submit"],
#nf-modal.nf-modal--email .nf-modal-content .gform_confirmation_wrapper .gform_footer input[type="submit"] {
  line-height: 2.7rem;
  min-height: 2.7rem;
  padding-right: 20px;
  padding-left: 20px;
}
#nf-modal.nf-modal--email .nf-modal-content .gform_confirmation_wrapper {
  padding-bottom: 10px;
}
#nf-modal.nf-modal--email .nf-modal-content .gform_confirmation_wrapper h2 {
  margin-bottom: 13px;
}
#nf-modal.nf-modal--email .nf-modal-content .gform_confirmation_wrapper p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #nf-modal.nf-modal--email {
    left: 0;
    top: 0;
    width: 100%;
    transform: none;
    padding: 47px 34px 40px;
    min-height: 100vh;
  }
  #nf-modal.nf-modal--email .gform_wrapper {
    margin: 0;
    border: 0 none;
  }
}
@media screen and (min-width: 768px) {
  #nf-modal.nf-modal--email {
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.35);
    border: 1px solid #b6b6b8;
    max-width: 700px;
  }
  #nf-modal.nf-modal--email .nf-modal-content {
    padding: 30px 107px 45px;
  }
}
#tmpl-emailShare {
  display: none;
}
#nf-modal.nf-modal--video {
  max-width: 75vw;
}
.nf-module {
  margin: 30px 0 34px;
}
@media screen and (min-width: 768px) {
  .nf-module {
    margin-top: 38px;
    margin-bottom: 47px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-module {
    margin-top: 42px;
    margin-bottom: 42px;
  }
}
.nf-module--image img {
  display: block;
  border-radius: 5px;
  width: 100%;
}
.nf-module--image .nf-u-caption {
  font-family: "proxima-nova", sans-serif;
  font-style: italic;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.4rem;
  line-height: 1.9rem;
  letter-spacing: 0em;
  color: #111111;
  margin: 9px 24px 0;
}
@media screen and (min-width: 768px) {
  .nf-module--image .nf-u-caption {
    line-height: 2rem;
    padding-bottom: 16px;
    border-bottom: 1px solid #cccccc;
    margin: 16px 31px 0;
  }
}
@media screen and (min-width: 1330px) {
  .nf-module--image .nf-u-caption {
    margin: 15px 34px 0;
  }
}
.nf-module--slideshow {
  position: relative;
  padding-top: 27px;
}
.nf-module--slideshow .nf-u-caption {
  font-family: "proxima-nova", sans-serif;
  font-style: italic;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.4rem;
  line-height: 1.9rem;
  letter-spacing: 0em;
  color: #111111;
  margin: 9px 24px 0;
}
.nf-module--slideshow .nf-u-slide:focus {
  outline: unset;
}
.nf-module--slideshow .nf-u-prev,
.nf-module--slideshow .nf-u-next {
  display: none;
}
.nf-module--slideshow .slick-dots {
  bottom: auto;
  top: -30px;
}
.nf-module--slideshow .slick-dots li,
.nf-module--slideshow .slick-dots li button,
.nf-module--slideshow .slick-dots li button::before {
  margin: 0;
  width: 13px;
  height: 13px;
  padding: 0;
  font-size: 13px;
  line-height: 1;
}
.nf-module--slideshow .slick-dots li button::before {
  color: #dfdfe0;
  opacity: 1;
}
.nf-module--slideshow .slick-dots li.slick-active button::before {
  color: #fbb03f;
}
.nf-module--slideshow .slick-dots li + li {
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .nf-module--slideshow {
    padding-top: 0;
    z-index: 100;
  }
  .nf-module--slideshow .nf-u-prev,
  .nf-module--slideshow .nf-u-next {
    z-index: 110;
    width: 37px;
    position: absolute;
    top: 0;
    fill: #fbb03f;
  }
  .nf-module--slideshow .nf-u-prev:hover,
  .nf-module--slideshow .nf-u-next:hover {
    fill: #dd7e00;
  }
  .nf-module--slideshow .nf-u-slide img {
    border-radius: 5px;
    width: 100%;
  }
  .nf-module--slideshow .nf-u-caption {
    line-height: 2rem;
    padding-bottom: 16px;
    border-bottom: 1px solid #cccccc;
    margin: 16px 31px 0;
  }
  .nf-module--slideshow .nf-u-prev {
    left: 0;
    transform: translateX(-30%);
  }
  .nf-module--slideshow .nf-u-next {
    right: 0;
    transform: translateX(30%);
  }
}
@media screen and (min-width: 1330px) {
  .nf-module--slideshow .nf-u-caption {
    margin: 15px 34px 0;
  }
  .nf-module--slideshow .nf-u-prev,
  .nf-module--slideshow .nf-u-next {
    width: 48px;
  }
}
.nf-module--testimonial {
  border: 1px solid #cccccc;
  border-width: 1px 0;
  padding: 17px 28px;
}
.nf-module--testimonial .nf-u-slide:focus {
  outline: unset;
}
.nf-module--testimonial .nf-u-text {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.7rem;
  line-height: 2.7rem;
  letter-spacing: 0.015em;
  color: #2064b3;
}
.nf-module--testimonial .nf-u-text::before {
  content: "\201C";
}
.nf-module--testimonial .nf-u-text::after {
  content: "\201D";
}
.nf-module--testimonial .nf-u-credit {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 0.01em;
  color: #2064b3;
  margin-top: 14px;
  margin-bottom: 4px;
}
.nf-module--testimonial .nf-u-prev,
.nf-module--testimonial .nf-u-next {
  z-index: 110;
  display: none;
  width: 32px;
  height: 32px;
}
.nf-module--testimonial .nf-u-prev .icon-testimonial-circle,
.nf-module--testimonial .nf-u-next .icon-testimonial-circle {
  display: none;
}
.nf-module--testimonial .nf-u-prev:hover .icon-testimonial-circle,
.nf-module--testimonial .nf-u-next:hover .icon-testimonial-circle {
  display: inline;
}
.nf-module--testimonial .slick-dots {
  bottom: auto;
  top: -70px;
}
.nf-module--testimonial .slick-dots li,
.nf-module--testimonial .slick-dots li button,
.nf-module--testimonial .slick-dots li button::before {
  margin: 0;
  width: 13px;
  height: 13px;
  padding: 0;
  font-size: 13px;
  line-height: 1;
}
.nf-module--testimonial .slick-dots li button::before {
  color: #dfdfe0;
  opacity: 1;
}
.nf-module--testimonial .slick-dots li.slick-active button::before {
  color: #2064b3;
}
.nf-module--testimonial .slick-dots li + li {
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .nf-module--testimonial {
    padding: 32px 50px;
  }
  .nf-module--testimonial .nf-u-prev,
  .nf-module--testimonial .nf-u-next {
    position: absolute;
    top: 50%;
  }
  .nf-module--testimonial .nf-u-prev {
    left: -50px;
  }
  .nf-module--testimonial .nf-u-next {
    right: -50px;
  }
  .nf-module--testimonial .nf-u-text {
    font-family: "paralucent", sans-serif;
    font-style: normal;
    font-weight: 300;
    -webkit-font-feature-settings: "liga" 0, "salt" 0;
    font-feature-settings: "liga" 0, "salt" 0;
    font-size: 2.5rem;
    line-height: 3.7rem;
    letter-spacing: 0.015em;
  }
  .nf-module--testimonial .nf-u-credit {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 7px;
  }
}
@media screen and (min-width: 1330px) {
  .nf-module--testimonial .nf-u-credit {
    margin-bottom: 12px;
  }
  .nf-module--testimonial .nf-u-prev {
    left: 40px;
  }
  .nf-module--testimonial .nf-u-next {
    right: 40px;
  }
}
.home .nf-module--testimonial {
  text-align: center;
  background-color: #2064b3;
  padding: 39px 35px 60px;
  margin: 20px 0;
}
.home .nf-module--testimonial .nf-u-title,
.home .nf-module--testimonial .nf-u-text,
.home .nf-module--testimonial .nf-u-credit {
  color: #ffffff;
}
.home .nf-module--testimonial .nf-u-title {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.2rem;
  line-height: 1.5rem;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "liga" 0, "salt" 1;
  font-feature-settings: "liga" 0, "salt" 1;
  text-transform: uppercase;
}
.home .nf-module--testimonial .nf-u-text {
  margin-top: 25px;
}
.home .nf-module--testimonial .nf-button {
  margin-top: 32px;
  font-size: 1.4rem;
  padding-right: 21px;
  padding-left: 21px;
}
@media screen and (min-width: 768px) {
  .home .nf-module--testimonial {
    padding: 67px 70px 93px;
    margin: 42px 0;
  }
  .home .nf-module--testimonial .nf-u-title {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .home .nf-module--testimonial .nf-u-text {
    margin: 37px auto 0;
    max-width: 950px;
  }
  .home .nf-module--testimonial .nf-button {
    margin-top: 34px;
    font-size: 1.6rem;
    padding-right: 21px;
    padding-left: 21px;
  }
}
@media screen and (min-width: 1330px) {
  .home .nf-module--testimonial {
    padding: 67px 0 85px;
    margin: 56px 0;
  }
}
@media screen and (max-width: 767px) {
  .nf-module--twoColumn-left ol:last-child,
  .nf-module--twoColumn-left ul:last-child {
    margin-bottom: 0;
  }
  .nf-module--twoColumn-right ol:first-child,
  .nf-module--twoColumn-right ul:first-child,
  .nf-module--twoColumn-right p:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .nf-module--twoColumn {
    display: flex;
  }
  .nf-module--twoColumn-left,
  .nf-module--twoColumn-right {
    flex: 1;
  }
  .nf-module--twoColumn-left *:first-child,
  .nf-module--twoColumn-right *:first-child {
    margin-top: 0;
  }
  .nf-module--twoColumn-right {
    margin-left: 35px;
  }
}
.nf-module--video .nf-u-placeholder {
  position: relative;
  display: block;
  cursor: pointer;
}
.nf-module--video .nf-u-placeholder::before {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-play.svg');
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
}
.nf-module--video .nf-u-placeholder img {
  display: block;
  width: 100%;
}
.nf-module--video .nf-u-placeholder:hover::before {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-play-hover.svg');
}
.nf-module--image,
.nf-module--video,
.nf-module--slideshow {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .nf-module--image,
  .nf-module--video,
  .nf-module--slideshow {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }
}
@media screen and (min-width: 1330px) {
  .nf-module--image,
  .nf-module--video,
  .nf-module--slideshow {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
}
.nf-notification {
  display: none;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  letter-spacing: -0.01em;
}
.nf-notification .nf-notification_link {
  text-transform: uppercase;
  display: inline-block;
}
.nf-notification .nf-notification_link svg {
  display: inline-block;
  height: 1em;
  vertical-align: text-top;
}
.nf-notification .nf-notification_close {
  position: absolute;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.nf-notification {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-right: 50px;
}
.nf-notification .nf-notification_link svg {
  width: 15px;
  margin-left: 2px;
}
.nf-notification .nf-notification_close {
  top: 19px;
  right: 18px;
}
@media screen and (min-width: 1024px) {
  .nf-notification {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 1.7rem;
    line-height: 2.5rem;
    text-align: center;
    margin-right: 0;
  }
  .nf-notification .nf-notification_link svg {
    width: 17px;
    margin-left: 7px;
  }
  .nf-notification .nf-notification_close {
    top: 16px;
    right: 19px;
  }
}
#nf-scrollup {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-scrollup.svg');
  height: 0;
  right: 0;
  bottom: 25vh;
  display: none;
  z-index: 390 !important;
}
@media screen and (min-width: 550px) {
  #nf-scrollup {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 768px) {
  #nf-scrollup {
    width: 49px;
    height: 49px;
  }
}
.nf-predictiveSearch {
  background-color: #002d62;
  margin: -15px auto 0;
  padding-bottom: 25px;
  display: none;
  float: left;
}
.nf-predictiveSearch form {
  margin: 0 20px;
  position: relative;
}
.nf-predictiveSearch form input {
  border: 1px solid #cccccc;
  margin: 0;
  padding: 5px 35px 3px 5px;
  font-size: inherit;
  line-height: inherit;
  width: 100%;
}
.nf-predictiveSearch form input:focus {
  outline: unset;
}
.nf-predictiveSearch form::after {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-search.svg');
  position: absolute;
  top: 7px;
  right: 12px;
  width: 20px;
  height: 1em;
  vertical-align: text-top;
}
.nf-predictiveSearch form.nf-is-open::after {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-search-close.svg');
  position: absolute;
  top: 9px;
  right: 12px;
  width: 17px;
  height: 1em;
  vertical-align: text-top;
}
.nf-predictiveSearch form .nf-u-close {
  position: absolute;
  width: 40px;
  height: 35px;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 120;
}
.nf-predictiveSearch .nf-u-content {
  width: 100%;
  background-color: #002d62;
  padding: 0 11px;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}
.nf-predictiveSearch .nf-u-content .nf-u-item:first-child {
  padding-top: 7px;
}
.nf-predictiveSearch .nf-u-content .nf-u-item a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0em;
  min-height: 40px;
  padding: 9px;
}
.nf-predictiveSearch .nf-u-content .nf-u-item a:hover {
  text-decoration: underline;
}
.nf-predictiveSearch .nf-u-content .nf-u-allresults {
  text-decoration: none;
  color: #fbb03f;
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  text-transform: uppercase;
  min-height: 40px;
  padding: 14px 9px 0;
}
@media screen and (min-width: 768px) {
  .nf-predictiveSearch {
    width: 252px;
    margin: 0;
    padding-bottom: 0;
    background-color: transparent;
    display: block !important;
  }
  .nf-predictiveSearch form {
    margin: 0;
  }
  .nf-predictiveSearch .nf-u-content .nf-u-allresults {
    padding-bottom: 21px;
  }
}
.nf-layout--body-left .shortcode_custom_menu_wizard {
  width: 270px;
  padding: 0 14px;
  border: 1px solid #cccccc;
}
.nf-layout--body-left .shortcode_custom_menu_wizard ul {
  margin: 0;
  padding: 0;
  position: relative;
}
.nf-layout--body-left .shortcode_custom_menu_wizard ul,
.nf-layout--body-left .shortcode_custom_menu_wizard ul li {
  display: block;
  list-style-type: none;
}
.nf-layout--body-left .shortcode_custom_menu_wizard ul > a,
.nf-layout--body-left .shortcode_custom_menu_wizard ul li > a {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0em;
  text-decoration: none;
  color: #333333;
  display: block;
  padding: 8px 0;
}
.nf-layout--body-left .shortcode_custom_menu_wizard ul.menu-item-has-children > a,
.nf-layout--body-left .shortcode_custom_menu_wizard ul li.menu-item-has-children > a {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.nf-layout--body-left .shortcode_custom_menu_wizard ul.current-menu-item:not(.menu-item-has-children) > a,
.nf-layout--body-left .shortcode_custom_menu_wizard ul li.current-menu-item:not(.menu-item-has-children) > a {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  text-decoration: underline;
  color: #2064b3;
}
.nf-layout--body-left .shortcode_custom_menu_wizard > ul .sub-menu {
  display: none;
}
.nf-layout--body-left .shortcode_custom_menu_wizard > ul:after {
  content: ' ';
  position: absolute;
  width: 14px;
  height: auto;
  top: 13px;
  right: -3px;
  border: 7px solid transparent;
  border-top-color: #cccccc;
}
@media screen and (min-width: 1330px) {
  .nf-layout--body-left .shortcode_custom_menu_wizard {
    margin-top: -3px;
    margin-right: 35px;
    width: auto;
    padding: 0;
    border: 0 none;
  }
  .nf-layout--body-left .shortcode_custom_menu_wizard ul > a,
  .nf-layout--body-left .shortcode_custom_menu_wizard ul li > a {
    padding: 0;
    margin-bottom: 15px;
  }
  .nf-layout--body-left .shortcode_custom_menu_wizard ul.menu-item-has-children > a,
  .nf-layout--body-left .shortcode_custom_menu_wizard ul li.menu-item-has-children > a {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" 0, "salt" 0;
    font-feature-settings: "liga" 0, "salt" 0;
    -webkit-font-feature-settings: "liga" 1, "salt" 0;
    font-feature-settings: "liga" 1, "salt" 0;
  }
  .nf-layout--body-left .shortcode_custom_menu_wizard > ul .sub-menu {
    display: block !important;
  }
  .nf-layout--body-left .shortcode_custom_menu_wizard > ul:after {
    display: none;
  }
}
.nf-share {
  border: 1px solid #cccccc;
  border-width: 1px 0;
  padding: 16px 24px;
  margin: 27px -24px;
}
.nf-share .nf-u-title {
  display: inline;
  vertical-align: middle;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  font-size: 1.3rem;
  line-height: 2.8rem;
  letter-spacing: 0.025em;
  color: #aaaaaa;
  text-transform: uppercase;
}
.nf-share .nf-u-title .nf-u-long {
  display: none;
}
.nf-share ul {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  vertical-align: middle;
  margin-left: 24px;
  margin-bottom: 2px;
}
.nf-share ul li + li {
  margin-left: 17px;
}
.nf-share ul li a {
  display: block;
  cursor: pointer;
}
.nf-share ul li a svg {
  fill: #b1b1b3;
  display: block;
  width: auto;
  max-width: 30px;
  height: 18px;
}
.nf-share ul li a.share-facebook svg {
  height: 23px;
}
.nf-share ul li a:hover svg {
  fill: #666666;
}
@media screen and (min-width: 768px) {
  .nf-share {
    margin-left: 0;
    margin-right: 0;
    padding: 19px 0;
  }
  .nf-share .nf-u-title .nf-u-long {
    display: inline;
  }
  .nf-share ul {
    margin-left: 13px;
  }
}
.loader-wrap {
  padding: 1px;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  display: none;
  margin: 60px auto;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(32, 100, 179, 0.2);
  border-right: 1.1em solid rgba(32, 100, 179, 0.2);
  border-bottom: 1.1em solid rgba(32, 100, 179, 0.2);
  border-left: 1.1em solid #2064b3;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.single .nf-layout--body {
  margin-top: 20px;
}
.single .nf-layout--body-center article header {
  margin-bottom: 27px;
}
.single .nf-strapline {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.2rem;
  line-height: 1.5rem;
  letter-spacing: 0.075em;
  color: #2064b3;
  text-transform: uppercase;
}
.single .nf-strapline .nf-strapline-author {
  color: inherit;
  text-decoration: none;
}
.single .nf-strapline .nf-strapline-author,
.single .nf-strapline .nf-strapline-postDate {
  display: inline;
  position: relative;
}
.single .nf-strapline .nf-strapline-author + .nf-strapline-postDate::before {
  content: ' ';
  width: 1px;
  height: 1em;
  background-color: #2064b3;
  margin: 0 9px 0 4px;
  display: inline-block;
  vertical-align: middle;
}
.single .nf-strapline .nf-strapline-author + .nf-strapline-author::before {
  content: ', ';
}
@media screen and (min-width: 768px) {
  .single .nf-layout--body {
    margin-top: 27px;
  }
  .single .nf-strapline {
    font-size: 1.4rem;
    line-height: 2.5rem;
    letter-spacing: 0.09em;
  }
}
@media screen and (min-width: 1330px) {
  .single .nf-layout--body {
    margin-top: 51px;
  }
  .single .nf-layout--body-center article header {
    margin-bottom: 32px;
  }
}
.single-case-study .nf-layout--body-center.nf-has-inset .nf-inset--right img {
  display: block;
  margin: 20px auto 0;
}
.single-case-study .nf-card--relatedService-grid {
  min-width: 100%;
  max-width: 837px;
  padding: 41px 24px 0;
  margin: 6px auto -27px auto;
  overflow: hidden;
  border-top: 1px solid #cccccc;
}
.single-case-study .nf-card--relatedService-grid .nf-u-title {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #88888a;
  text-align: center;
  display: block;
  margin-bottom: 35px;
}
.single-case-study .nf-card--relatedService {
  height: 225px;
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background-color: #32a063;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-case-study .nf-card--relatedService + .nf-card--relatedService {
  margin-top: 35px;
}
.single-case-study .nf-card--relatedService .nf-card-image {
  width: 80px;
  margin-bottom: 25px;
}
.single-case-study .nf-card--relatedService .nf-card-title {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 2.8rem;
  line-height: 2.8rem;
  letter-spacing: 0em;
  color: #ffffff;
  display: block;
  padding: 0 10%;
}
@media screen and (min-width: 875px) {
  .single-case-study .nf-card--relatedService-grid {
    padding-right: 0;
    padding-left: 0;
  }
  .single-case-study .nf-card--relatedService {
    width: 400px;
    padding: 0;
    float: left;
  }
  .single-case-study .nf-card--relatedService:nth-of-type(1n+0) {
    width: calc(100% / 2 - 35px * (2 - 1) / 2);
    margin: 0 35px 35px 0;
  }
  .single-case-study .nf-card--relatedService:nth-of-type(2n+2) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .single-case-study .nf-layout--body-center.nf-has-inset {
    max-width: 1080px;
  }
  .single-case-study .nf-layout--body-center.nf-has-inset > article > .nf-module {
    max-width: 837px;
  }
  .single-case-study .nf-layout--body-center.nf-has-inset article {
    display: flex;
    flex-wrap: wrap;
  }
  .single-case-study .nf-layout--body-center.nf-has-inset article .nf-ugc {
    flex: 1;
  }
  .single-case-study .nf-layout--body-center.nf-has-inset article .nf-ugc.nf-module {
    flex: 0 0 100%;
  }
  .single-case-study .nf-layout--body-center.nf-has-inset article .nf-inset--right {
    flex: 0 0 auto;
  }
  .single-case-study .nf-layout--body-center.nf-has-inset article .nf-inset--right img {
    display: inline;
    margin: 0 0 0 78px;
  }
}
@media screen and (min-width: 1330px) {
  .single-case-study .nf-layout--body-center.nf-has-inset > article > .nf-ugc:first-child {
    padding-left: calc((100% - 837px) / 2);
  }
  .single-case-study .nf-layout--body-center.nf-has-inset > article > .nf-module {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.single-position .nf-layout--body {
  margin-top: 56px;
}
.single-position header {
  margin-bottom: 25px;
}
.single-position header h1 {
  margin-bottom: 10px;
}
.single-position header .nf-u-subtitle {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #88888a;
}
@media screen and (max-width: 1329px) {
  .single-position .nf-layout--body-left {
    display: none;
  }
}
.single-service .nf-card--caseStudy-grid {
  padding: 0 24px;
  margin-top: 6px;
  margin-bottom: -27px;
}
.single-service .nf-card--caseStudy-grid > .nf-u-title {
  display: block;
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #88888a;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 50px;
}
@media screen and (min-width: 885px) {
  .single-service .nf-card--caseStudy-grid {
    padding: 0;
  }
}
.single-team-member .nf-layout--body {
  margin-top: 56px;
}
.single-team-member header {
  margin-bottom: 27px;
}
.single-team-member header img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.single-team-member header h1 {
  font-family: "paralucent-text", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 4.3rem;
  line-height: 4.7rem;
  letter-spacing: -0.01em;
  color: #2064b3;
  margin-top: -4px;
  margin-bottom: 8px;
  left: -4px;
  position: relative;
}
.single-team-member header img + h1 {
  margin-top: 26px;
}
.single-team-member header .nf-u-subtitle {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #88888a;
}
.single-team-member .nf-card--post-grid {
  margin-top: 64px;
  margin-bottom: 88px;
}
.single-team-member .nf-card--post-grid .nf-u-title {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #88888a;
  -webkit-font-feature-settings: "liga" 0, "salt" 1;
  font-feature-settings: "liga" 0, "salt" 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 46px;
}
.single-team-member .nf-card--post-grid .nf-button {
  margin-top: 60px;
}
.single-team-member .nf-feature-image {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  margin-bottom: 49px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.single-team-member .nf-connect .nf-u-title {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #333333;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
}
.single-team-member .nf-connect .nf-connect-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 14px;
}
.single-team-member .nf-connect .nf-connect-social .nf-u-item {
  width: 28px;
}
.single-team-member .nf-connect .nf-connect-social .nf-u-item svg {
  fill: #b1b1b3;
  max-height: 28px;
}
.single-team-member .nf-connect .nf-connect-social .nf-u-item:hover svg {
  fill: #666666;
}
.single-team-member .nf-connect .nf-connect-social .nf-u-item + .nf-u-item {
  margin-left: 16px;
}
.single-team-member .nf-connect .nf-connect-website {
  display: block;
  margin-top: 18px;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0em;
  color: #2064b3;
}
.single-team-member .nf-featured-video {
  margin-top: 54px;
}
.single-team-member .nf-featured-video + .nf-featured-video {
  margin-top: 35px;
}
.single-team-member .nf-featured-video .nf-u-placeholder {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.single-team-member .nf-featured-video .nf-u-placeholder::before {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-play.svg');
  position: absolute;
  left: 50%;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translate(-50%, -50%);
}
.single-team-member .nf-featured-video .nf-u-placeholder img {
  display: block;
}
.single-team-member .nf-featured-video .nf-u-placeholder:hover::before {
  content: url('/wp-content/themes/axialent/resources/public/svg/icon-play-hover.svg');
}
.single-team-member .nf-featured-video .nf-u-caption {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0em;
  color: #333333;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  margin-top: 11px;
}
.single-team-member .nf-taxonomy {
  margin-top: 53px;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #333333;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
}
.single-team-member .nf-taxonomy .nf-u-title {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  letter-spacing: 0.025em;
  color: #333333;
  text-transform: uppercase;
}
.single-team-member .nf-taxonomy .nf-taxonomy-terms {
  display: block;
  list-style-type: none;
  padding-left: 0;
  margin: 8px 0 0;
}
.single-team-member .nf-taxonomy .nf-taxonomy-terms .nf-u-item {
  display: block;
  list-style-type: none;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 1, "salt" 1;
  font-feature-settings: "liga" 1, "salt" 1;
  letter-spacing: 0em;
  padding: 7px 0;
}
.single-team-member .nf-widgets .nf-cta,
.single-team-member .nf-widgets .widget {
  margin-top: 53px;
}
@media screen and (max-width: 1023px) {
  .single-team-member .nf-layout--body-right {
    max-width: 530px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .single-team-member .nf-layout--body-right > div + div {
    margin-top: 53px;
  }
  .single-team-member .nf-layout--body-right .nf-feature-image {
    margin-left: auto;
    margin-right: auto;
  }
  .single-team-member .nf-layout--body-right .nf-featured-video .nf-u-placeholder img {
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
  }
  .single-team-member .nf-layout--body-right .nf-connect .nf-connect-social {
    justify-content: center;
  }
}
.page-template-lander-publication .nf-layout--body-center article {
  margin-bottom: 40px;
}
.page-template-lander-client .nf-layout--body-left,
.page-template-lander-service .nf-layout--body-left,
.page-template-lander-our-team .nf-layout--body-left,
.page-template-lander-case-study .nf-layout--body-left,
.page-template-lander-advisory-board .nf-layout--body-left {
  margin-left: 0;
}
.page-template-lander-client .nf-layout--body-center,
.page-template-lander-service .nf-layout--body-center,
.page-template-lander-our-team .nf-layout--body-center,
.page-template-lander-case-study .nf-layout--body-center,
.page-template-lander-advisory-board .nf-layout--body-center {
  margin-top: -8px;
  margin-left: 0;
}
.page-template-lander-client .nf-layout--body-right,
.page-template-lander-service .nf-layout--body-right,
.page-template-lander-our-team .nf-layout--body-right,
.page-template-lander-case-study .nf-layout--body-right,
.page-template-lander-advisory-board .nf-layout--body-right {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .page-template-lander-client .nf-layout--body-right,
  .page-template-lander-service .nf-layout--body-right,
  .page-template-lander-our-team .nf-layout--body-right,
  .page-template-lander-case-study .nf-layout--body-right,
  .page-template-lander-advisory-board .nf-layout--body-right {
    flex: 0 0 216px;
  }
}
@media screen and (min-width: 1330px) {
  .page-template-lander-client .nf-layout--body-left,
  .page-template-lander-service .nf-layout--body-left,
  .page-template-lander-our-team .nf-layout--body-left,
  .page-template-lander-case-study .nf-layout--body-left,
  .page-template-lander-advisory-board .nf-layout--body-left {
    flex: 0 0 216px;
  }
}
@media screen and (min-width: 1330px) {
  .page-template-lander-client .nf-banner--text-text,
  .page-template-lander-service .nf-banner--text-text,
  .page-template-lander-our-team .nf-banner--text-text,
  .page-template-lander-case-study .nf-banner--text-text,
  .page-template-lander-advisory-board .nf-banner--text-text {
    margin-left: 173px;
  }
}
.single-webinar #webinar-past-form .gform_wrapper,
.single-webinar .webinar-past-form-access-code .gform_wrapper,
.single-webinar #webinar-upcoming-form .gform_wrapper,
.single-webinar .gated-content-form .gform_wrapper {
  max-width: 100%;
  padding: 41px 0 36px;
}
.single-webinar #webinar-past-form .gform_wrapper .gform_heading span.gform_description,
.single-webinar .webinar-past-form-access-code .gform_wrapper .gform_heading span.gform_description,
.single-webinar #webinar-upcoming-form .gform_wrapper .gform_heading span.gform_description,
.single-webinar .gated-content-form .gform_wrapper .gform_heading span.gform_description {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.01em;
  color: #333333;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  text-transform: uppercase;
  text-align: left;
}
.single-webinar #webinar-past-form .gform_wrapper .gform_footer input[type="submit"],
.single-webinar .webinar-past-form-access-code .gform_wrapper .gform_footer input[type="submit"],
.single-webinar #webinar-upcoming-form .gform_wrapper .gform_footer input[type="submit"],
.single-webinar .gated-content-form .gform_wrapper .gform_footer input[type="submit"] {
  margin-left: 0;
}
.single-webinar .webinar-past-form-access-code .gform_wrapper {
  padding-bottom: 0;
  border-bottom: 0 none;
  margin-bottom: 0;
}
.single-webinar .webinar-past-form-access-code + #webinar-past-form .gform_wrapper {
  margin-top: 0;
  border-top: 0 none;
  padding-top: 0;
}
.single-webinar .webinar-not-available {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  font-size: 1.8rem;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
  color: #2064b3;
  border: 1px solid #cccccc;
  border-width: 1px 0;
  padding: 23px 0;
}
.single-webinar .webinar-upcoming-form-date,
.single-webinar .webinar-past-form-date {
  font-family: "paralucent", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.4rem;
  line-height: 2.5rem;
  letter-spacing: 0.075em;
  color: #333333;
  text-transform: uppercase;
  margin: 35px 0 31px;
}
.single-webinar .webinar-upcoming-form-date .nf-u-date + .nf-u-time::before,
.single-webinar .webinar-past-form-date .nf-u-date + .nf-u-time::before {
  content: ' ';
  width: 1px;
  height: 1em;
  background-color: #333333;
  margin: 0 14px 0 13px;
  display: inline-block;
  vertical-align: middle;
}
.single-webinar .nf-button-wrap {
  margin: 31px 0;
}
.single-whitepaper .gated-content-form .gform_wrapper {
  max-width: 100%;
  padding: 41px 0 36px;
}
.single-whitepaper .gated-content-form .gform_wrapper .gform_heading span.gform_description {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "liga" 0, "salt" 0;
  font-feature-settings: "liga" 0, "salt" 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  letter-spacing: 0.01em;
  color: #333333;
  -webkit-font-feature-settings: "liga" 1, "salt" 0;
  font-feature-settings: "liga" 1, "salt" 0;
  text-transform: uppercase;
  text-align: left;
}
.single-whitepaper .gated-content-form .gform_wrapper .gform_footer input[type="submit"] {
  margin-left: 0;
}
.single-whitepaper .nf-button-wrap {
  margin: 31px 0;
}

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