/* overlay at start */
.mfp-iframe-holder .mfp-content {
  max-width: 1290px;
}

.mfp-fade {
  border: 0;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content .mfp-iframe {
  padding: 0;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate-forever {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes arrow-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6px);
  }
}
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.chr-content {
  color: #003349;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
}
@media screen and (max-width: 1365px) {
  .chr-content {
    font-size: 0.8888888889rem;
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content {
    font-size: 0.7777777778rem;
    line-height: 28px;
  }
}
.chr-content a {
  color: #00bfb3;
  text-decoration: none;
  transition: color 0.3s;
}
.chr-content a:hover {
  color: #003349;
}
@media screen and (max-width: 1279px) {
  .chr-content a {
    transition: none;
  }
}
.chr-content a {
  outline: none;
}
.chr-content p {
  margin: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 1365px) {
  .chr-content p {
    margin-bottom: 20px;
  }
}
.chr-content h1,
.chr-content h2,
.chr-content h3,
.chr-content h4,
.chr-content h5,
.chr-content h6,
.chr-content blockquote {
  margin: 0;
  margin-bottom: 20px;
}
.chr-content strong,
.chr-content b {
  font-weight: 600;
}
.chr-content em,
.chr-content i {
  font-style: italic;
}
.chr-content small {
  font-size: 0.7777777778rem;
}
.chr-content ul {
  padding: 0;
  margin: 0;
  margin-top: -16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1365px) {
  .chr-content ul {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content ul {
    margin-top: -7px;
    margin-bottom: 20px;
  }
}
.chr-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 36px;
  text-align: left;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .chr-content ul li {
    line-height: 30px;
  }
}
.chr-content ul li::before {
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 10px;
  background-image: url(../images/adapt-arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.chr-content ol {
  padding: 0;
  margin: 0;
  margin-top: -16px;
  margin-bottom: 20px;
  list-style-type: none;
  counter-reset: step-counter;
}
@media screen and (max-width: 767px) {
  .chr-content ol {
    margin-bottom: 10px;
  }
}
.chr-content ol li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  counter-increment: step-counter;
}
@media screen and (max-width: 767px) {
  .chr-content ol li {
    line-height: 30px;
  }
}
.chr-content ol li::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: counter(step-counter) ".";
}
.chr-content img,
.chr-content iframe,
.chr-content object,
.chr-content embed {
  max-width: 100%;
}
.chr-content iframe {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 1279px) {
  .chr-content iframe {
    height: 50vw;
  }
}
.chr-content img {
  max-width: 100%;
  height: auto;
}
.chr-content img.aligncenter {
  display: block;
  margin: 0 auto;
}
.chr-content img.alignleft {
  float: left;
  clear: both;
  max-width: 45%;
  padding-top: 10px;
  margin-right: 20px;
}
@media screen and (max-width: 1279px) {
  .chr-content img.alignleft {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: auto;
    margin-bottom: -30px;
    border-right: 0;
  }
}
.chr-content img.alignright {
  float: right;
  clear: both;
  max-width: 45%;
  padding-top: 10px;
  margin-left: 20px;
}
@media screen and (max-width: 1279px) {
  .chr-content img.alignright {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: auto;
    margin-bottom: -30px;
    border-left: 0;
  }
}
.chr-content figure {
  margin: 0;
}
.chr-content figure img {
  display: block;
}
.chr-content hr {
  margin-top: 15px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #00bfb3;
}
.chr-content .gallery {
  margin: 30px 0 !important;
}
.chr-content .gallery * {
  box-sizing: border-box;
}
.chr-content .gallery .gallery-item {
  padding: 0 10px;
  margin-top: 0 !important;
}
.chr-content .gallery .gallery-item img {
  border: 0 !important;
}
.chr-content .gallery .gallery-item:first-of-type {
  padding-left: 0;
}
.chr-content .gallery .gallery-item:last-of-type {
  padding-right: 0;
}
@media screen and (max-width: 1279px) {
  .chr-content .gallery {
    margin: 15px 0 !important;
    margin-bottom: 0 !important;
  }
  .chr-content .gallery .gallery-item {
    float: none !important;
    width: 100% !important;
    padding: 0;
    margin-bottom: 20px;
  }
  .chr-content .gallery .gallery-item img {
    width: 100%;
  }
  .chr-content .gallery br {
    display: none;
  }
}
@media screen and (max-width: 1365px) {
  .chr-content .gallery {
    margin: 15px 0 !important;
  }
}
.chr-content .page-heading {
  color: #003349;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 3.4444444444rem;
  font-weight: 800;
  line-height: 72px;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .chr-content .page-heading {
    font-size: 3rem;
    line-height: 64px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 1279px) {
  .chr-content .page-heading {
    font-size: 1.7777777778rem;
    line-height: 42px;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content .page-heading {
    font-size: 1.5555555556rem;
    line-height: 38px;
    letter-spacing: 1.05px;
  }
}
.chr-content .page-heading {
  margin-bottom: 25px;
}
.chr-content .subheading-1,
.chr-content .subheading-light-dots {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  color: #00bfb3;
  font-size: 0.8888888889rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1365px) {
  .chr-content .subheading-1,
  .chr-content .subheading-light-dots {
    font-size: 0.7777777778rem;
    line-height: 26px;
    letter-spacing: 0.38px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content .subheading-1,
  .chr-content .subheading-light-dots {
    font-size: 0.6666666667rem;
    line-height: 22px;
    letter-spacing: 0.28px;
  }
}
.chr-content .subheading-1,
.chr-content .subheading-light-dots {
  margin-bottom: 16px;
}
@media screen and (max-width: 1279px) {
  .chr-content .subheading-1,
  .chr-content .subheading-light-dots {
    margin-bottom: 14px;
  }
}
.chr-content .subheading-light-dots {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  color: #00bfb3;
  font-size: 0.8888888889rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1365px) {
  .chr-content .subheading-light-dots {
    font-size: 0.7777777778rem;
    line-height: 26px;
    letter-spacing: 0.38px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content .subheading-light-dots {
    font-size: 0.6666666667rem;
    line-height: 22px;
    letter-spacing: 0.28px;
  }
}
.chr-content .large-heading-1 {
  color: #003349;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 46px;
  letter-spacing: -1px;
}
@media screen and (max-width: 1365px) {
  .chr-content .large-heading-1 {
    font-size: 1.6666666667rem;
    line-height: 40px;
    letter-spacing: -0.8px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content .large-heading-1 {
    font-size: 1.3333333333rem;
    line-height: 34px;
    letter-spacing: -0.6px;
  }
}
.chr-content .large-heading-1 {
  margin-bottom: 38px;
}
@media screen and (max-width: 1365px) {
  .chr-content .large-heading-1 {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content .large-heading-1 {
    margin-bottom: 20px;
  }
}
.chr-content .teal-highlight {
  color: #00bfb3;
}
.chr-content .dark-blue-highlight {
  color: #003349;
}
.chr-content .white-highlight {
  color: #fff;
}
.chr-content .adapt-arrow-indent-block {
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 1365px) {
  .chr-content .adapt-arrow-indent-block {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content .adapt-arrow-indent-block {
    padding-left: 0;
  }
}
.chr-content .adapt-arrow-indent-block::before {
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/adapt-arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 1365px) {
  .chr-content .adapt-arrow-indent-block::before {
    top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content .adapt-arrow-indent-block::before {
    display: none;
    content: none;
  }
}
.chr-content .ff-default.ff_btn_style,
.chr-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  min-width: 180px;
  height: 50px;
  padding-right: 28px;
  padding-left: 28px;
  border: 1px solid rgba(0, 191, 179, 0.3);
  color: #000;
  background: #00bfb3;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8888888889rem;
  font-weight: 600 !important;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  border-radius: 2.7777777778rem !important;
}
@media screen and (max-width: 1279px) {
  .chr-content .ff-default.ff_btn_style,
  .chr-content .button {
    transition: none;
  }
}
.chr-content .ff-default.ff_btn_style:hover,
.chr-content .button:hover {
  color: #fff;
  background: #003349;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.chr-content .ff-default.ff_btn_style,
.chr-content .button {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .chr-content .ff-default.ff_btn_style,
  .chr-content .button {
    margin-top: 5px;
  }
}

@font-face {
  font-family: "Oakes Grotesk";
  src: url(../fonts/oakes-grotesk-regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.chr-popup-embedded-form-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
.chr-popup-embedded-form-wrapper .black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.popup-form {
  overflow: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1010px;
  max-width: 100%;
  height: 820px;
  max-height: 100%;
  color: #fff;
  background-color: #003349;
}
@media screen and (min-width: 1280px) {
  .popup-form {
    transform: translateY(100px);
    transition: transform 0.5s ease;
  }
  .popup-form.show {
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .popup-form {
    height: auto;
    overflow: auto;
  }
}
.popup-form .large-heading-1 {
  color: inherit;
  margin-bottom: 20px;
}
.popup-form .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: url(../images/cross.svg) no-repeat center;
  background-size: 20px 20px;
  z-index: 2;
  cursor: pointer;
}
.popup-form:before {
  display: block;
  position: absolute;
  top: 0;
  left: -70px;
  width: 320px;
  height: 554px;
  background-image: url(../images/adapt-triangle-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.popup-form .form-content {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .popup-form .form-content {
    padding: 65px 110px;
    padding-right: 53%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .popup-form .form-content {
    padding: 40px 55px;
    padding-right: 45%;
  }
}
@media screen and (max-width: 767px) {
  .popup-form .form-content {
    padding: 30px 65px 30px 30px;
  }
}
.popup-form button.button {
  margin-top: 20px;
}
.popup-form .side-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat right bottom;
  background-size: contain;
}
@media screen and (min-width: 1280px) {
  .popup-form .side-image {
    top: auto;
    width: 456px;
    height: 563px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .popup-form .side-image {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .popup-form .side-image {
    position: relative;
    height: 300px;
  }
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.chr-content .wpcf7-not-valid-tip,
.chr-footer .wpcf7-not-valid-tip {
  display: none !important;
}

.chr-content .wpcf7-form-control-wrap,
.chr-footer .wpcf7-form-control-wrap {
  display: block !important;
  overflow: hidden !important;
  position: relative;
  height: auto !important;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .chr-content .wpcf7-form-control-wrap,
  .chr-footer .wpcf7-form-control-wrap {
    margin-bottom: 14px;
  }
}
.chr-content .wpcf7-form-control-wrap::after,
.chr-footer .wpcf7-form-control-wrap::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #00bfb3;
  content: "";
  transition: transform 0.3s;
  transform: translateY(100%);
}
.chr-content .wpcf7-form-control-wrap.filled::after,
.chr-footer .wpcf7-form-control-wrap.filled::after {
  transform: translateY(0);
}

@media screen and (max-width: 1279px) {
  .chr-content .wpcf7-response-output,
  .chr-footer .wpcf7-response-output {
    top: 40px;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .chr-content .wpcf7-response-output,
  .chr-footer .wpcf7-response-output {
    top: initial;
    right: 0;
    bottom: 170px;
    left: 0;
    width: 90%;
    padding: 20px;
  }
}
.chr-content .wpcf7-response-output,
.chr-footer .wpcf7-response-output {
  position: absolute;
  z-index: 50;
  top: 30px;
  right: 0;
  left: 0;
  box-sizing: border-box;
  width: 80%;
  padding: 30px 40px;
  margin: 0 auto;
  border: 0;
  border-radius: 5px;
  color: #003349;
  background-color: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  font-size: 0.8888888889rem;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
}

.chr-content .ajax-loader,
.chr-footer .ajax-loader {
  position: absolute;
  right: 270px;
  bottom: 45px;
  background-color: #00bfb3;
  background-image: none !important;
  animation: rotate-forever linear 1.4s infinite;
}
@media screen and (max-width: 1279px) {
  .chr-content .ajax-loader,
  .chr-footer .ajax-loader {
    right: 25px;
    bottom: 20px;
  }
}

form:not(.inline-form) p:nth-of-type(1) {
  display: none;
  height: 0;
  margin: 0;
}
form:not(.inline-form) p:nth-of-type(2) {
  margin-top: 0;
}

.popup-form form .wpcf7-not-valid,
.chr-footer form .wpcf7-not-valid,
.chr-content form .wpcf7-not-valid {
  border-color: rgb(38, 255, 241.3664921466) !important;
}
.popup-form form.wpcf7-form,
.chr-footer form.wpcf7-form,
.chr-content form.wpcf7-form {
  position: relative;
}
.popup-form form.mc4wp-form:after,
.chr-footer form.mc4wp-form:after,
.chr-content form.mc4wp-form:after {
  display: table;
  clear: both;
  content: "";
}
.popup-form form div,
.chr-footer form div,
.chr-content form div {
  /* stylelint-disable */
}
.popup-form form div label + br,
.chr-footer form div label + br,
.chr-content form div label + br {
  display: none;
}
.popup-form form div label span:first-child,
.chr-footer form div label span:first-child,
.chr-content form div label span:first-child {
  display: none;
}
.popup-form form div,
.chr-footer form div,
.chr-content form div {
  /* stylelint-enable */
}
.popup-form form input,
.popup-form form textarea,
.popup-form form select,
.chr-footer form input,
.chr-footer form textarea,
.chr-footer form select,
.chr-content form input,
.chr-content form textarea,
.chr-content form select {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 12px 15px;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 0 !important;
  outline: none;
  background-color: #fff;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 0.8888888889rem;
  font-weight: 300;
  line-height: 32px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.popup-form form input::placeholder,
.popup-form form textarea::placeholder,
.popup-form form select::placeholder,
.chr-footer form input::placeholder,
.chr-footer form textarea::placeholder,
.chr-footer form select::placeholder,
.chr-content form input::placeholder,
.chr-content form textarea::placeholder,
.chr-content form select::placeholder {
  color: #003349;
}
@media screen and (max-width: 1365px) {
  .popup-form form input::placeholder,
  .popup-form form textarea::placeholder,
  .popup-form form select::placeholder,
  .chr-footer form input::placeholder,
  .chr-footer form textarea::placeholder,
  .chr-footer form select::placeholder,
  .chr-content form input::placeholder,
  .chr-content form textarea::placeholder,
  .chr-content form select::placeholder {
    font-size: 0.7777777778rem;
    line-height: 22px;
  }
}
@media screen and (max-width: 1279px) {
  .popup-form form input,
  .popup-form form textarea,
  .popup-form form select,
  .chr-footer form input,
  .chr-footer form textarea,
  .chr-footer form select,
  .chr-content form input,
  .chr-content form textarea,
  .chr-content form select {
    padding: 12px 15px;
    font-size: 0.8888888889rem;
  }
}
.popup-form form select,
.chr-footer form select,
.chr-content form select {
  outline: none;
  color: #003349;
  background-image: url(../images/adapt-arrow-bottom.svg);
  background-position: right center;
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 12px;
  appearance: none;
}
.iexplorer .popup-form form select,
.iexplorer .chr-footer form select,
.iexplorer .chr-content form select {
  background-image: none;
}
.popup-form form .wpcf7-submit,
.chr-footer form .wpcf7-submit,
.chr-content form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  min-width: 180px;
  height: 50px;
  padding-right: 28px;
  padding-left: 28px;
  border: 1px solid rgba(0, 191, 179, 0.3);
  color: #000;
  background: #00bfb3;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8888888889rem;
  font-weight: 600 !important;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  border-radius: 2.7777777778rem !important;
}
@media screen and (max-width: 1279px) {
  .popup-form form .wpcf7-submit,
  .chr-footer form .wpcf7-submit,
  .chr-content form .wpcf7-submit {
    transition: none;
  }
}
.popup-form form .wpcf7-submit:hover,
.chr-footer form .wpcf7-submit:hover,
.chr-content form .wpcf7-submit:hover {
  color: #fff;
  background: #003349;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.popup-form form .wpcf7-submit,
.chr-footer form .wpcf7-submit,
.chr-content form .wpcf7-submit {
  outline: none;
}
@media screen and (max-width: 1279px) {
  .popup-form form .wpcf7-submit,
  .chr-footer form .wpcf7-submit,
  .chr-content form .wpcf7-submit {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.popup-form form iframe,
.chr-footer form iframe,
.chr-content form iframe {
  height: auto;
}

/* stylelint-disable */
form.wpcf7-form.invalid input,
form.wpcf7-form.invalid textarea,
form.wpcf7-form.invalid select,
form.wpcf7-form.invalid label, form.wpcf7-form.sent input,
form.wpcf7-form.sent textarea,
form.wpcf7-form.sent select,
form.wpcf7-form.sent label {
  opacity: 0.4;
}

.megamenu_lightbox {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background-color: #000;
  will-change: transform;
}
@media screen and (max-width: 1365px) {
  .mobile-menu-open .megamenu_lightbox {
    display: block;
    animation: fadeLightboxIn 0.4s;
  }
}
@keyframes fadeLightboxIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}

/* stylelint-disable */
.chr-nav-container {
  display: flex;
  flex: none;
  height: 100%;
  background-color: transparent;
  flex-basis: auto;
}
.chr-nav-container .chr-menu-wrapper,
.chr-nav-container .menu-main-menu-container {
  height: 100%;
}
@media screen and (max-width: 1365px) {
  .chr-nav-container .chr-menu-wrapper {
    display: block;
    overflow-x: hidden;
    overflow-y: hidden;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    box-sizing: border-box;
    width: 290px;
    height: 100vh;
    background-color: #fff;
    transition: transform 0.5s;
    transform: translateX(100%);
  }
}
@media screen and (max-width: 1365px) and (max-width: 767px) {
  .chr-nav-container .chr-menu-wrapper {
    width: 275px;
  }
}
@media screen and (max-width: 1365px) {
  .mobile-menu-open .chr-nav-container .chr-menu-wrapper {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1279px) {
  .chr-nav-container .chr-menu-wrapper {
    overflow-y: scroll;
  }
}
.chr-nav-container .menu {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 1365px) {
  .chr-nav-container .menu {
    flex-direction: column;
  }
}
.chr-nav-container .menu-item {
  display: inline-flex;
  box-sizing: border-box;
  height: 100%;
  padding-right: 11px;
  padding-left: 11px;
  list-style: none;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1365px) {
  .chr-nav-container .menu-item {
    display: block;
    height: 50px;
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media screen and (min-width: 1520px) {
  .chr-nav-container .menu-item {
    padding-right: 22px;
    padding-left: 22px;
  }
}
.chr-nav-container .menu-item a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.8888888889rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media screen and (max-width: 1365px) {
  .chr-nav-container .menu-item a {
    font-size: 0.7777777778rem;
  }
}
.chr-nav-container .menu-item a {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 1365px) {
  .chr-nav-container .menu-item a {
    transition: none;
  }
}
.chr-nav-container .menu-item a::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 0;
  background-image: url(../images/dots-dark.svg);
  background-repeat: repeat-x;
  content: "";
  transition: all 0.3s;
  transform: translateY(5px);
}
@media screen and (max-width: 1365px) {
  .chr-nav-container .menu-item a::before {
    transition: none;
    transform: none;
  }
}
.iexplorer .chr-nav-container .menu-item a::before {
  display: none;
  content: none;
}
.iexplorer .chr-nav-container .menu-item > a:hover {
  color: #00bfb3;
}
.chr-nav-container .menu-item > a:hover::before {
  opacity: 1;
  transform: translateY(0);
}
.chr-nav-container .menu-item .sub-menu {
  display: none;
}
.iexplorer .chr-nav-container .menu-item.current-menu-item > a {
  color: #00bfb3;
}
.chr-nav-container .menu-item.current-menu-item > a::before {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1365px) {
  .chr-nav-container .menu-item-home {
    height: 74px;
    padding-top: 32px;
  }
}
.chr-nav-container .menu-item-home .menu-icon {
  position: relative;
  top: -3px;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
}
.chr-nav-container .menu-item-home .menu-icon > svg {
  width: 18px;
  height: 18px;
}
.chr-nav-container .menu-item-home a::before {
  display: none;
  content: none;
}
.chr-nav-container .menu-item-home .link {
  display: none;
}

.module-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .module-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1279px) {
  .module-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .module-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.module-wrapper.background-style-grey {
  box-sizing: border-box;
  background-color: #f6f6f6;
}
.module-wrapper.background-style-grey + .module-wrapper.background-style-grey, .module-wrapper.background-style-white + .module-wrapper.background-style-white {
  padding-top: 0;
}

/* Slider */
.slick-slider {
  display: block;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 50px;
  -webkit-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-arrow {
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 50px;
  border: 0;
  outline: none;
  color: transparent;
  background-color: #00bfb3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  font-size: 0;
  text-decoration: none;
  cursor: pointer;
}
.iexplorer .slick-slider .slick-arrow {
  background-size: 16px;
}

.slick-list {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
.slick-track::before, .slick-track::after {
  display: table;
  content: "";
}
.slick-track::after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[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;
}

.chr-content .slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .chr-content .slick-dots li {
    width: 9px;
    height: 9px;
  }
}
.chr-content .slick-dots li {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0 6px;
  cursor: pointer;
}
.chr-content .slick-dots li:first-of-type {
  margin-left: 0;
}
.chr-content .slick-dots li.slick-active::before {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .chr-content .slick-dots li::before {
    width: 9px;
    height: 9px;
  }
}
.chr-content .slick-dots li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: none;
  background-color: rgba(255, 255, 255, 0.2);
  line-height: 10px;
  text-align: center;
  content: "";
  transform: rotate(0deg);
}
.chr-content .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  border: 0;
  outline: none;
  color: transparent;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.chr-content .slick-dots li button:hover,
.chr-content .slick-dots li button:focus {
  outline: none;
}

.testimonial-component {
  position: relative;
  z-index: 20;
}
.testimonial-component::before {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #003349;
  content: "";
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .testimonial-component::before {
    height: 80px;
  }
}
@media screen and (max-width: 1279px) {
  .testimonial-component::before {
    display: none;
    content: none;
  }
}
.testimonial-component .testimonial-content-wysiwyg .large-heading-1 {
  margin-bottom: 24px;
}
.testimonial-component .testimonial-content {
  position: relative;
  z-index: 5;
}
.testimonial-component .testimonial-content .testimonials-wrap .large-heading-1 {
  font-size: 1.5555555556rem;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 1365px) {
  .testimonial-component .testimonial-content .testimonials-wrap .large-heading-1 {
    font-size: 1.3333333333rem;
    line-height: 34px;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-component .testimonial-content .testimonials-wrap .large-heading-1 {
    font-size: 1.1111111111rem;
    line-height: 28px;
  }
}
.testimonial-component .testimonial-bg-bar {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 2560px;
  height: 100%;
  background: #00bfb3;
}
@media screen and (max-width: 1279px) {
  .testimonial-component .testimonial-bg-bar {
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.testimonial-component .testimonials-wrap-outer {
  position: relative;
}
@media screen and (max-width: 1279px) {
  .testimonial-component .testimonials-wrap-outer {
    margin: -30px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-component .testimonials-wrap-outer {
    margin: -20px;
    margin-top: 20px;
  }
}
.testimonial-component .testimonials-wrap {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding-top: 96px;
  padding-bottom: 100px;
  padding-left: 175px;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .testimonial-component .testimonials-wrap {
    padding-top: 76px;
    padding-bottom: 80px;
    padding-left: 155px;
  }
}
@media screen and (max-width: 1279px) {
  .testimonial-component .testimonials-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-component .testimonials-wrap {
    padding: 20px 20px 40px;
  }
}
.testimonial-component .testimonials-wrap::before {
  content: "";
  position: absolute;
  right: -40%;
  bottom: 1%;
  width: 35%;
  height: 100%;
  background-image: url(../images/curved-arrow-white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .testimonial-component .testimonials-wrap::before {
    right: -10%;
    width: 20%;
  }
}
@media screen and (max-width: 1279px) {
  .testimonial-component .testimonials-wrap::before {
    right: 2.7777777778rem;
    width: 15%;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-component .testimonials-wrap::before {
    right: 1.6666666667rem;
    width: 15%;
  }
}
.testimonial-component .testimonial-item {
  box-sizing: border-box;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .testimonial-component .testimonial-item {
    padding-right: 65px;
  }
}
@media screen and (max-width: 1279px) {
  .testimonial-component .testimonial-item {
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-component .testimonial-item {
    padding-right: 10px;
  }
}
.testimonial-component .testimonial-item .author {
  color: #fff;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 0.7777777778rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 1365px) {
  .testimonial-component .testimonial-item .author {
    font-size: 0.6666666667rem;
    line-height: 22px;
    letter-spacing: 1.5px;
  }
}
.testimonial-component .testimonial-item .author {
  display: inline-block;
  position: relative;
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .testimonial-component .testimonial-item .author {
    margin-bottom: 20px;
  }
}
.testimonial-component .slick-slide .quote,
.testimonial-component .slick-slide .author {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(30px);
}
.testimonial-component .slick-slide .quote {
  transition-delay: 0.4s;
}
.testimonial-component .slick-slide.slick-current .quote,
.testimonial-component .slick-slide.slick-current .author {
  opacity: 1;
  transition-delay: 0.8s;
  transform: translateY(0);
}
.testimonial-component .slick-slide.slick-current .author {
  transition-delay: 1.2s;
}
.testimonial-component .testimonial-quote-marks {
  display: block;
  position: absolute;
  z-index: 40;
  top: 100px;
  left: 90px;
  width: 45px;
  height: 45px;
  background-image: url(../images/quote-marks.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .testimonial-component .testimonial-quote-marks {
    top: 80px;
    left: 78px;
    transform: scale(0.9);
    transform-origin: 0 0;
  }
}
@media screen and (max-width: 1279px) {
  .testimonial-component .testimonial-quote-marks {
    top: 60px;
    left: 30px;
    transform: scale(0.9);
    transform-origin: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-component .testimonial-quote-marks {
    position: relative;
    top: 20px;
    left: 20px;
  }
}

.fadeonview {
  position: relative;
  opacity: 1;
  transition: transform 0.7s, opacity 0.7s;
  transform: translate(0, 0);
}
@media screen and (max-width: 1279px) {
  .fadeonview {
    transition: none !important;
    transform: none;
  }
}
.fadeonview.off {
  opacity: 0;
  transition: none;
  transform: translate(0, 60px);
}
@media screen and (max-width: 1279px) {
  .fadeonview.off {
    opacity: 1 !important;
    transform: none !important;
  }
}

.blog-page-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.blog-page-container * {
  box-sizing: border-box;
}
@media screen and (min-width: 1280px) {
  .blog-page-container {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
.blog-page-container--article {
  position: relative;
  margin-top: 90px;
}
.blog-page-container--article .blog-category-list-wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .blog-page-container--article .blog-category-list-wrapper {
    margin-top: 140px;
  }
}

.blog-list-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 1280px) {
  .blog-list-content {
    flex-basis: 82%;
    max-width: 82%;
    padding: 100px 100px 60px 0;
    background-color: #f6f6f6;
  }
}
.blog-list-content:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 1000px;
  display: block;
  content: "";
  background-color: #f6f6f6;
}
@media screen and (max-width: 1279px) {
  .blog-list-content:before {
    display: none;
  }
}
.blog-list-content .single-blog {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .blog-list-content .single-blog {
    flex-basis: 100%;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .blog-list-content .single-blog {
    flex-basis: 48%;
  }
}
@media screen and (min-width: 1280px) {
  .blog-list-content .single-blog {
    flex-basis: 48%;
  }
}
.blog-list-content .image-wrap {
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .blog-list-content .image-wrap {
    height: 48vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .blog-list-content .image-wrap {
    height: 26vw;
  }
}
@media screen and (min-width: 1280px) {
  .blog-list-content .image-wrap {
    height: 240px;
  }
}
@media screen and (min-width: 1520px) {
  .blog-list-content .image-wrap {
    height: 340px;
  }
}
.blog-list-content .image-wrap .featured-image {
  height: 100%;
  background: #e5e5e5 no-repeat center;
  background-size: cover;
  transition: transform 0.5s ease;
  transform: scale(1);
}
.blog-list-content .date {
  font-size: 14px;
  margin-bottom: 0;
}
.blog-list-content .date:after {
  display: none;
}
.blog-list-content .blog-title {
  position: relative;
  color: #003349;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 1.3333333333rem;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 1365px) {
  .blog-list-content .blog-title {
    font-size: 1rem;
    line-height: 28px;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  .blog-list-content .blog-title {
    font-size: 0.8888888889rem;
    line-height: 26px;
    letter-spacing: -0.4px;
  }
}
.blog-list-content .blog-title {
  font-size: 24px;
  margin-bottom: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .blog-list-content .blog-title {
    transition: padding-left 0.3s ease;
  }
  .blog-list-content .blog-title:before {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    left: -20px;
    display: block;
    transition: left 0.3s ease;
    background: url(../images/adapt-arrow-right.svg) no-repeat center;
    background-size: contain;
    content: "";
  }
}
.blog-list-content .blog-link {
  color: #003349;
}
@media screen and (min-width: 1280px) {
  .blog-list-content .blog-link:hover .featured-image {
    transform: scale(1.1);
  }
  .blog-list-content .blog-link:hover .blog-title {
    padding-left: 28px;
  }
  .blog-list-content .blog-link:hover .blog-title:before {
    left: 0;
  }
}

.blog-category-list-wrapper {
  position: relative;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1279px) {
  .blog-category-list-wrapper {
    order: -1;
  }
}
@media screen and (min-width: 1280px) {
  .blog-category-list-wrapper {
    margin-top: 100px;
    flex-basis: 12%;
    max-width: 12%;
  }
}
.blog-category-list-wrapper ul li {
  padding-left: 0;
}
.blog-category-list-wrapper ul li:before {
  display: none;
}
.blog-category-list-wrapper .category-title {
  position: relative;
  margin-bottom: 35px;
}
@media screen and (max-width: 1279px) {
  .blog-category-list-wrapper .category-title {
    display: block;
    border: 1px solid #e5e5e5;
    padding: 15px 20px;
    margin-bottom: 0;
    background-color: #fff;
  }
  .blog-category-list-wrapper .category-title:after {
    display: none;
  }
  .blog-category-list-wrapper .category-title:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    display: block;
    content: "";
    width: 20px;
    height: 24px;
    background-image: url(../images/adapt-arrow-bottom.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
  }
  .blog-category-list-wrapper .category-title.opened:before {
    transform: rotate(180deg);
  }
}
.blog-category-list-wrapper .category-title + ul {
  margin-top: 0;
}
@media screen and (max-width: 1279px) {
  .blog-category-list-wrapper .category-title + ul {
    display: none;
    border: 1px solid #e5e5e5;
    border-top: 0;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 1280px) {
  .blog-category-list-wrapper .category-title + ul {
    display: block !important;
  }
}
@media screen and (min-width: 1280px) {
  .blog-category-list-wrapper .blog-category-list {
    padding-bottom: 60px;
    transition: margin 0.3s ease;
  }
  .blog-category-list-wrapper .blog-category-list.fixed {
    position: fixed;
    top: 90px;
    margin-top: 30px;
  }
  .blog-category-list-wrapper .blog-category-list.fixed.bottom {
    position: absolute;
    top: auto;
    bottom: 0;
  }
  .blog-category-list-wrapper .blog-category-list.locked {
    position: relative !important;
    top: auto !important;
    margin-top: 0 !important;
  }
}
.blog-category-list-wrapper .cat-item,
.blog-category-list-wrapper .cat-item-all {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.8888888889rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media screen and (max-width: 1365px) {
  .blog-category-list-wrapper .cat-item,
  .blog-category-list-wrapper .cat-item-all {
    font-size: 0.7777777778rem;
  }
}
.blog-category-list-wrapper .cat-item,
.blog-category-list-wrapper .cat-item-all {
  display: block;
  position: relative;
  transition: all 0.3s;
  margin-bottom: 0;
  color: #003349;
}
@media screen and (min-width: 1280px) {
  .blog-category-list-wrapper .cat-item,
  .blog-category-list-wrapper .cat-item-all {
    margin-bottom: 20px;
  }
}
.blog-category-list-wrapper .cat-item a,
.blog-category-list-wrapper .cat-item-all a {
  position: relative;
  padding-bottom: 5px;
  color: inherit;
}
.blog-category-list-wrapper .cat-item a::before,
.blog-category-list-wrapper .cat-item-all a::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 0;
  background-image: url(../images/dots-dark.svg);
  background-repeat: repeat-x;
  content: "";
  transition: all 0.3s;
  transform: translateY(5px);
}
@media screen and (max-width: 1365px) {
  .blog-category-list-wrapper .cat-item a::before,
  .blog-category-list-wrapper .cat-item-all a::before {
    transition: none;
    transform: none;
  }
}
.iexplorer .blog-category-list-wrapper .cat-item a::before,
.iexplorer .blog-category-list-wrapper .cat-item-all a::before {
  display: none;
  content: none;
}
.iexplorer .blog-category-list-wrapper .cat-item.current-cat a, .iexplorer .blog-category-list-wrapper .cat-item:hover a,
.iexplorer .blog-category-list-wrapper .cat-item-all.current-cat a,
.iexplorer .blog-category-list-wrapper .cat-item-all:hover a {
  color: #00bfb3;
}
.blog-category-list-wrapper .cat-item.current-cat a::before, .blog-category-list-wrapper .cat-item:hover a::before,
.blog-category-list-wrapper .cat-item-all.current-cat a::before,
.blog-category-list-wrapper .cat-item-all:hover a::before {
  opacity: 1;
  transform: translateY(0);
}

.chr-pagination {
  position: relative;
  background-color: #d8d8d8;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1279px) {
  .chr-pagination {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .chr-pagination {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 100px;
  }
}
.chr-pagination:before {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  content: "";
  background-color: inherit;
}
@media screen and (max-width: 767px) {
  .chr-pagination:before {
    left: -20px;
    right: -20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .chr-pagination:before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 1280px) {
  .chr-pagination:before {
    right: -100px;
    width: 2000px;
  }
}
.chr-pagination .page-numbers {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  color: #00bfb3;
  font-size: 0.8888888889rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1365px) {
  .chr-pagination .page-numbers {
    font-size: 0.7777777778rem;
    line-height: 26px;
    letter-spacing: 0.38px;
  }
}
@media screen and (max-width: 767px) {
  .chr-pagination .page-numbers {
    font-size: 0.6666666667rem;
    line-height: 22px;
    letter-spacing: 0.28px;
  }
}
.chr-pagination .page-numbers {
  display: block;
  margin: 0 10px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .chr-pagination .page-numbers {
    margin: 0 5px;
  }
}
.chr-pagination .page-numbers:after {
  display: none;
}
.chr-pagination .page-numbers.current {
  color: #003349;
}
.chr-pagination .page-numbers.prev, .chr-pagination .page-numbers.next {
  position: absolute;
  letter-spacing: 0.86px;
  font-size: 12px;
  margin: 0;
}
.chr-pagination .page-numbers.prev.disable, .chr-pagination .page-numbers.next.disable {
  opacity: 0.8;
  cursor: not-allowed;
}
.chr-pagination .page-numbers.prev {
  left: 0;
}
.chr-pagination .page-numbers.next {
  right: 0;
}

.article-content {
  position: relative;
  padding: 20px;
  flex-basis: 100%;
  max-width: 100%;
  background-color: #f6f6f6;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .article-content {
    padding: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .article-content {
    flex-basis: 82%;
    max-width: 82%;
    padding: 140px 100px 100px 0;
  }
}
.article-content:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 1000px;
  display: block;
  content: "";
  background-color: #f6f6f6;
}
@media screen and (max-width: 1279px) {
  .article-content:before {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .article-content .blog-title {
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 1.2;
  }
}

.single-post .main-content:before {
  display: block;
  position: absolute;
  top: 90px;
  left: -90px;
  width: 320px;
  height: 554px;
  background-image: url(../images/adapt-triangle-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  z-index: 1;
}
@media screen and (max-width: 1749px) {
  .single-post .main-content:before {
    left: -200px;
  }
}
@media screen and (max-width: 1365px) {
  .single-post .main-content:before {
    display: none;
    content: none;
  }
}
.single-post .main-content .date {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  color: #00bfb3;
  font-size: 0.8888888889rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1365px) {
  .single-post .main-content .date {
    font-size: 0.7777777778rem;
    line-height: 26px;
    letter-spacing: 0.38px;
  }
}
@media screen and (max-width: 767px) {
  .single-post .main-content .date {
    font-size: 0.6666666667rem;
    line-height: 22px;
    letter-spacing: 0.28px;
  }
}
.single-post .main-content .date {
  display: block;
  padding-bottom: 0;
  margin-bottom: 10px;
  font-size: 14px;
}
.single-post .main-content .date:after {
  display: none;
}
.single-post .main-content .author {
  color: #fff;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 0.7777777778rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 1365px) {
  .single-post .main-content .author {
    font-size: 0.6666666667rem;
    line-height: 22px;
    letter-spacing: 1.5px;
  }
}
.single-post .main-content .author {
  position: relative;
  padding-top: 5px;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #00bfb3;
  display: inline-block;
}
.single-post .main-content .author::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: url(../images/dots-dark.svg);
  background-repeat: repeat-x;
  content: "";
}
.iexplorer .single-post .main-content .author::before {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: none;
}
.single-post .main-content .featured-image-wrapper {
  position: relative;
  padding-bottom: 57%;
}
.single-post .main-content .featured-image-wrapper .featured-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
}
.single-post .main-content .radio-wrapper {
  margin-bottom: 40px;
}
.single-post .main-content .radio-wrapper iframe {
  height: 200px;
}

.share-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  min-width: 180px;
  height: 50px;
  padding-right: 28px;
  padding-left: 28px;
  border: 1px solid rgba(0, 191, 179, 0.3);
  color: #000;
  background: #00bfb3;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8888888889rem;
  font-weight: 600 !important;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  border-radius: 2.7777777778rem !important;
}
@media screen and (max-width: 1279px) {
  .share-bar {
    transition: none;
  }
}
.share-bar:hover {
  color: #fff;
  background: #003349;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.share-bar {
  margin-top: 30px;
}
.share-bar:before {
  display: none;
}
.share-bar:hover::after {
  opacity: 0;
}
.share-bar svg {
  width: 16px;
  height: 16px;
  margin-left: 20px;
}
.share-bar svg g {
  fill: #00bfb3;
}

.go-back-to-home {
  display: inline-block;
  position: relative;
  font-size: 0.7777777778rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1280px) {
  .go-back-to-home {
    margin-top: 40px;
  }
}
.go-back-to-home::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background-image: url(../images/adapt-arrow-button.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  line-height: 50px;
  content: "";
}
.go-back-to-home:hover {
  color: #fff;
}
.go-back-to-home:hover::before {
  animation: arrow-bounce 0.4s;
  animation-timing-function: ease-in-out;
}
@media screen and (max-width: 1279px) {
  .go-back-to-home:hover::before {
    animation: none;
  }
}

html,
body {
  overflow-x: hidden;
  color: #003349;
  font-family: "Oakes Grotesk", sans-serif, sans-serif !important;
  font-size: 18px !important;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow: hidden;
}

::selection {
  color: #fff !important;
  background: rgba(0, 51, 73, 0.5) !important;
}

.chr-content-container {
  width: 1360px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .chr-content-container {
    width: 1160px;
  }
}
@media screen and (max-width: 1279px) {
  .chr-content-container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .chr-content-container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
  }
}

.wysiwyg-wrapper:after {
  display: table;
  clear: both;
  content: "";
}

/* stylelint-disable */
.chr-footer .footer-main {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #003349;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .chr-footer .footer-main {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1279px) {
  .chr-footer .footer-main {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.chr-footer .footer-contact-heading {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  color: #00bfb3;
  font-size: 0.8888888889rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1365px) {
  .chr-footer .footer-contact-heading {
    font-size: 0.7777777778rem;
    line-height: 26px;
    letter-spacing: 0.38px;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-contact-heading {
    font-size: 0.6666666667rem;
    line-height: 22px;
    letter-spacing: 0.28px;
  }
}
.chr-footer .footer-contact-heading {
  margin-top: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-contact-heading {
    margin-bottom: 30px;
  }
}
.chr-footer .footer-contact-text {
  color: #003349;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 46px;
  letter-spacing: -1px;
}
@media screen and (max-width: 1365px) {
  .chr-footer .footer-contact-text {
    font-size: 1.6666666667rem;
    line-height: 40px;
    letter-spacing: -0.8px;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-contact-text {
    font-size: 1.3333333333rem;
    line-height: 34px;
    letter-spacing: -0.6px;
  }
}
.chr-footer .footer-contact-text {
  margin-top: 0;
  margin-bottom: 30px;
  color: #fff;
}
.chr-footer .footer-contact-text span {
  color: #00bfb3;
}
.chr-footer .footer-top-flex-container {
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-top-flex-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.chr-footer .footer-left {
  flex: none;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  flex-basis: 40%;
  max-width: 40%;
  color: #fff;
}
@media screen and (max-width: 1279px) {
  .chr-footer .footer-left {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-left {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.chr-footer .footer-left .footer-contact-details {
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-left .footer-contact-details {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.chr-footer .footer-left .contact-item-wrap {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
}
.chr-footer .footer-left .contact-item-wrap::before {
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-right: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 1279px) {
  .chr-footer .footer-left .contact-item-wrap::before {
    width: 50px;
    height: 50px;
  }
}
.chr-footer .footer-left .contact-item-wrap a {
  color: #fff;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 0.8888888889rem;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-left .contact-item-wrap a {
    font-size: 0.7777777778rem;
    line-height: 24px;
  }
}
.chr-footer .footer-left .contact-item-wrap a {
  text-decoration: none;
  transition: color 0.3s;
}
.chr-footer .footer-left .contact-item-wrap a:hover {
  color: #00bfb3;
}
.chr-footer .footer-left .contact-item-wrap.phone-number::before {
  background-image: url(../images/footer-phone.svg);
}
.chr-footer .footer-left .contact-item-wrap.email::before {
  background-image: url(../images/footer-email.svg);
}
.chr-footer .footer-left .contact-item-wrap.address::before {
  background-image: url(../images/footer-location.svg);
}
.chr-footer .footer-left .contact-item-wrap.linkedin::before {
  background-image: url(../images/footer-linkedin.svg);
}
.chr-footer .footer-left .phone-number a {
  font-size: 1.1111111111rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.chr-footer .footer-right {
  flex: none;
  position: relative;
  box-sizing: border-box;
  max-width: 62%;
  flex-basis: 62%;
}
@media screen and (max-width: 1279px) {
  .chr-footer .footer-right {
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 45px;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-right {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.chr-footer .footer-right .pre-form-text {
  color: #fff;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 0.7777777778rem;
  font-weight: 600;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-right .pre-form-text {
    font-size: 0.6666666667rem;
    line-height: 15px;
  }
}
.chr-footer .footer-right .pre-form-text {
  margin-bottom: 10px;
  color: #00bfb3;
}
.chr-footer .footer-right form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-right form {
    display: block;
    flex-wrap: none;
    justify-content: flex-start;
  }
}
.chr-footer .footer-right form > div {
  margin-bottom: 0;
}
.chr-footer .footer-right form .form-col-1,
.chr-footer .footer-right form .form-col-2 {
  flex: none;
  box-sizing: border-box;
  max-width: 50%;
  padding-right: 20px;
  flex-basis: 50%;
}
@media screen and (max-width: 1279px) {
  .chr-footer .footer-right form .form-col-1,
  .chr-footer .footer-right form .form-col-2 {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 0;
  }
}
.chr-footer .footer-right .wpcf7-textarea {
  height: 190px;
}
.chr-footer .footer-right .form-col-2 textarea,
.chr-footer .footer-right .message {
  height: 190px !important;
  margin-bottom: 0;
  resize: none;
}
@media screen and (max-width: 1279px) {
  .chr-footer .footer-right .form-col-2 textarea,
  .chr-footer .footer-right .message {
    height: 150px !important;
  }
}
@media screen and (max-width: 1279px) {
  .chr-footer .footer-right .g-recaptcha > div {
    overflow: hidden;
    max-width: 100%;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-right .g-recaptcha > div {
    margin-top: 14px;
  }
}
.chr-footer .footer-right .wpcf7-submit {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .chr-footer .footer-right .wpcf7-submit {
    display: block;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
  }
}
.chr-footer .copyright-flex-container {
  display: flex;
  height: 65px;
  padding-right: 60px;
  padding-left: 60px;
  background: #00bfb3;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .chr-footer .copyright-flex-container {
    height: auto;
    padding: 25px 40px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .copyright-flex-container {
    padding: 25px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.chr-footer .copyright-flex-container a {
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
}
.chr-footer .copyright-flex-container a:hover {
  color: #003349;
}
.chr-footer .copyright-menu {
  flex: none;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .chr-footer .copyright-menu {
    display: inline-flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .copyright-menu {
    text-align: center;
  }
}
.chr-footer .menu-footer-menu-container {
  display: inline-block;
  margin-left: 40px;
}
@media screen and (max-width: 1279px) {
  .chr-footer .menu-footer-menu-container {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .chr-footer .menu-footer-menu-container {
    display: block;
    text-align: center;
  }
}
.chr-footer .menu-footer-menu-container ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.chr-footer .menu-footer-menu-container li {
  display: inline-block;
  margin-right: 10px;
}
.chr-footer .menu-footer-menu-container li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 1279px) {
  .chr-footer .menu-footer-menu-container li:first-of-type:before {
    margin-left: 0;
  }
}
.chr-footer .menu-footer-menu-container a {
  color: #fff;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 0.5555555556rem;
  font-weight: 800;
  line-height: 10px;
  text-decoration: none;
  letter-spacing: 1.07px;
  text-transform: uppercase;
}
.chr-footer .copyright-text,
.chr-footer .copyright-text > a {
  color: #fff;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 0.7777777778rem;
  font-weight: 600;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .chr-footer .copyright-text,
  .chr-footer .copyright-text > a {
    font-size: 0.6666666667rem;
    line-height: 15px;
  }
}
.chr-footer .copyright-text:hover,
.chr-footer .copyright-text > a:hover {
  color: #fff;
}
.chr-footer .copyright-text {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .chr-footer .copyright-text {
    display: block;
    margin-bottom: 8px;
  }
}

.admin-bar.logged-in {
  /* stylelint-disable selector-max-id */
}
@media screen and (max-width: 779px) {
  .admin-bar.logged-in #chr-header {
    top: 46px;
  }
}
.admin-bar.logged-in #chr-header {
  top: 32px;
}
.admin-bar.logged-in #wpadminbar {
  position: fixed;
  will-change: transform;
}
.admin-bar.logged-in {
  /* stylelint-enable selector-max-id */
}

.chr-header {
  display: flex;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: transparent;
  align-items: center;
  will-change: transform;
  transition: all 0.4s;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .chr-header {
    height: 64px;
    background-color: #003349;
  }
}
.chr-header.fadeonview {
  transition-delay: 0.1s;
}
.chr-header.fadeonview.off {
  opacity: 1;
  transform: translate(0, -150%);
}
.chr-header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: #003349;
  content: "";
  transition: transform 0.4s;
  will-change: transform;
}
@media screen and (max-width: 1279px) {
  .chr-header::before {
    display: none;
    content: none;
  }
}
.chr-header .chr-logo-container {
  flex: 1 0 auto;
  margin-left: 60px;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .chr-header .chr-logo-container {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1279px) {
  .chr-header .chr-logo-container {
    margin-left: 20px;
  }
}
.chr-header .logo-wrap {
  transform-origin: left;
  position: relative;
  flex: 1 0 auto;
  width: 150px;
  height: 60px;
  transition: all 0.4s;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .chr-header .logo-wrap {
    height: 62px;
  }
}
@media screen and (max-width: 1279px) {
  .chr-header .logo-wrap {
    width: 175px;
    height: 45px;
    transition: none;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .chr-header .logo-wrap {
    width: 140px;
  }
}
.chr-header .logo-wrap > svg {
  width: 150px;
  height: 60px;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .chr-header .logo-wrap > svg {
    height: 62px;
  }
}
@media screen and (max-width: 1279px) {
  .chr-header .logo-wrap > svg {
    width: 175px;
    height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .chr-header .logo-wrap > svg {
    width: 140px;
  }
}
.chr-header .logo-wrap .adapt-letters {
  transition: fill 0.4s;
  fill: #003349;
}
.chr-header .chr-hamburger {
  position: relative;
  display: none;
  flex: none;
  width: 64px;
  max-width: 64px;
  height: 100%;
  border: 0;
  outline: none;
  background-color: transparent;
  background-image: url(../images/hamburger.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 1365px) {
  .chr-header .chr-hamburger {
    display: inline-block;
    margin-right: 25px;
  }
}
@media screen and (max-width: 1279px) {
  .chr-header .chr-hamburger {
    margin-right: 0;
    background-size: 20px;
  }
}
.chr-header .chr-hamburger.is-active {
  background-image: url(../images/cross.svg);
  background-size: 14px;
}
.chr-header .chr-hamburger .menu-toggle-label {
  width: 0;
  height: 0;
  color: transparent;
  font-size: 0;
}
.chr-header .header-button-wrapper {
  display: inline-flex;
  flex: none;
  height: 100%;
  align-items: center;
  padding-right: 0;
  margin-left: 30px;
}
@media screen and (max-width: 1365px) {
  .chr-header .header-button-wrapper {
    margin-left: -30px;
    padding-right: 20px;
  }
}
.chr-header .header-button-wrapper .header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  min-width: 180px;
  height: 50px;
  padding-right: 28px;
  padding-left: 28px;
  border: 1px solid rgba(0, 191, 179, 0.3);
  color: #000;
  background: #00bfb3;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8888888889rem;
  font-weight: 600 !important;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  border-radius: 2.7777777778rem !important;
}
@media screen and (max-width: 1279px) {
  .chr-header .header-button-wrapper .header-button {
    transition: none;
  }
}
.chr-header .header-button-wrapper .header-button:hover {
  color: #fff;
  background: #003349;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 1366px) {
  .chr-header .header-button-wrapper .header-button {
    margin-right: 60px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .chr-header .header-button-wrapper .header-button {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1365px) {
  .chr-header .header-button-wrapper .header-button {
    margin-right: 0;
    transform: scale(0.85);
    transform-origin: right center;
    padding-right: 14px;
    padding-left: 14px;
    min-width: 155px;
  }
}
.chr-header .header-button-wrapper .header-button:before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  margin-right: 16px;
  background-image: url(../images/curved-arrow-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home .chr-header {
  padding-top: 30px;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .home .chr-header {
    padding-top: 20px;
  }
}
@media screen and (max-width: 1279px) {
  .home .chr-header {
    padding-top: 0;
  }
}
.home .chr-header::before {
  transform: translateY(calc(-100% - 5px));
}
.iexplorer .home .chr-header::before {
  transform: translateY(-105%);
}
.home .chr-header .adapt-letters {
  fill: #fff;
}
@media screen and (max-width: 1279px) {
  .home .chr-header .adapt-letters {
    fill: #003349;
  }
}
.home .chr-header .menu a {
  color: #fff;
}
@media screen and (max-width: 1365px) {
  .home .chr-header .menu a {
    color: #003349;
  }
}
.home .chr-header .menu a::before {
  background-image: url(../images/dots-light.svg);
}
.home .chr-header .header-contact a {
  color: #fff;
}
@media screen and (max-width: 1279px) {
  .home .chr-header .header-contact a {
    color: #003349;
  }
}
.chr-header {
  /* stylelint-disable */
}
.mobile-menu-open .chr-header, .header-scrolling .chr-header {
  padding-top: 0 !important;
}
.mobile-menu-open .chr-header::before, .header-scrolling .chr-header::before {
  transform: translateY(0);
}
.iexplorer .mobile-menu-open .chr-header::before, .iexplorer .header-scrolling .chr-header::before {
  transform: translateY(0);
}
.mobile-menu-open .chr-header .logo-wrap .adapt-letters, .header-scrolling .chr-header .logo-wrap .adapt-letters {
  fill: #003349;
}
.mobile-menu-open .chr-header .menu a::before, .header-scrolling .chr-header .menu a::before {
  background-image: url(../images/dots-dark.svg);
}
.mobile-menu-open .chr-header .header-contact a, .header-scrolling .chr-header .header-contact a {
  color: #003349;
}
@media screen and (max-width: 1279px) {
  .mobile-menu-open .chr-header .header-contact a, .header-scrolling .chr-header .header-contact a {
    color: #003349;
  }
}

/* stylelint-disable */
.sub-page-banner {
  display: block;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 820px;
  margin-top: 90px;
}
.sub-page-banner.no-image {
  height: auto;
  padding-bottom: 0;
}
.sub-page-banner.no-image .banner-left-flex-container {
  padding-top: 80px;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .sub-page-banner.no-image .banner-left-flex-container {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.sub-page-banner.no-image .banner-left-flex-container .page-heading {
  margin-bottom: 0 !important;
}
.sub-page-banner.no-image .banner-left-flex-container .banner-left {
  max-width: 100%;
  padding-top: 0;
  margin: auto;
}
.sub-page-banner.no-image .banner-left-flex-container::before {
  display: none;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .sub-page-banner {
    height: 600px;
    margin-top: 64px;
  }
}
@media screen and (max-width: 1279px) {
  .sub-page-banner {
    height: auto;
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .sub-page-banner {
    padding-bottom: 40px;
  }
}
.sub-page-banner .banner-left-flex-container {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1279px) {
  .sub-page-banner .banner-left-flex-container {
    display: block;
    height: auto;
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .sub-page-banner .banner-left-flex-container {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 751px) {
  .sub-page-banner .banner-left-flex-container .banner-left {
    width: 50%;
    padding-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .sub-page-banner .banner-left-flex-container .banner-left {
    width: 100%;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sub-page-banner .banner-left-flex-container .banner-left .subheading-1,
  .sub-page-banner .banner-left-flex-container .banner-left .page-heading {
    margin-bottom: 20px;
  }
}
.sub-page-banner .banner-left-flex-container .banner-left p:last-of-type:not(.subheading-1):not(.page-heading) {
  margin-bottom: 0;
}
.sub-page-banner .bg-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 47vw;
  max-width: 765px;
  height: 100%;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .sub-page-banner .bg-image-wrap {
    width: 600px;
  }
}
@media screen and (max-width: 1279px) {
  .sub-page-banner .bg-image-wrap {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .sub-page-banner .bg-image-wrap {
    display: none;
  }
}
.sub-page-banner .bg-image-wrap .banner-bg-image {
  width: 100%;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}
.sub-page-banner .bg-image-wrap .banner-bg-image.fadeonview.off {
  transform: translate(200px, 0);
}
.sub-page-banner .responsive-image-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .sub-page-banner .responsive-image-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 375px;
  }
}
.sub-page-banner .responsive-image-wrap .responsive-banner-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}

.four-oh-four-page {
  padding-top: 150px;
  padding-bottom: 150px;
  margin-top: 90px;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .four-oh-four-page {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .four-oh-four-page {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.home .front-page-hero-video {
  display: flex;
  position: relative;
  z-index: 10;
  width: 100%;
  height: calc(100vh - 120px);
  background-color: #231f20;
  align-items: flex-end;
  padding-bottom: 6.6666666667rem;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .home .front-page-hero-video {
    padding-bottom: 4.4444444444rem;
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 1279px) {
  .home .front-page-hero-video {
    padding-bottom: 2.2222222222rem;
    height: calc(100vh - 40px);
  }
}
@media screen and (max-height: 499px) {
  .home .front-page-hero-video {
    height: 560px;
    padding-bottom: calc(1.1111111111 / 1px)rem;
  }
}
.home .front-page-hero-video .hero-content {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .home .front-page-hero-video .hero-content {
    padding-left: 100px;
  }
}
@media screen and (max-width: 1279px) {
  .home .front-page-hero-video .hero-content {
    padding-left: 92px;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-hero-video .hero-content {
    top: -40px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.home .front-page-hero-video .hero-content .hero-subheading {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  color: #00bfb3;
  font-size: 0.8888888889rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1365px) {
  .home .front-page-hero-video .hero-content .hero-subheading {
    font-size: 0.7777777778rem;
    line-height: 26px;
    letter-spacing: 0.38px;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-hero-video .hero-content .hero-subheading {
    font-size: 0.6666666667rem;
    line-height: 22px;
    letter-spacing: 0.28px;
  }
}
.home .front-page-hero-video .hero-content .hero-subheading {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .home .front-page-hero-video .hero-content .hero-subheading {
    margin-bottom: 14px;
  }
}
.home .front-page-hero-video .hero-content .hero-subheading.fadeonview.off {
  opacity: 1;
  transform: translate(200px, 0);
}
.home .front-page-hero-video .hero-content .hero-heading {
  color: #fff;
  font-size: 4.4444444444rem;
  font-weight: 800;
  line-height: 90px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .home .front-page-hero-video .hero-content .hero-heading {
    font-size: 4.2222222222rem;
    line-height: 78px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 1279px) {
  .home .front-page-hero-video .hero-content .hero-heading {
    font-size: 3.5555555556rem;
    line-height: 66px;
    letter-spacing: 1.68px;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-hero-video .hero-content .hero-heading {
    font-size: 2.4444444444rem;
    line-height: 44px;
    letter-spacing: 1px;
  }
}
.home .front-page-hero-video .hero-content .hero-heading {
  display: block;
  margin: 0;
  margin-bottom: 40px;
  transition: all 0.7s;
  transition-delay: 0.2s;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .home .front-page-hero-video .hero-content .hero-heading {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-hero-video .hero-content .hero-heading {
    max-width: 350px;
    margin-bottom: 30px;
  }
}
.home .front-page-hero-video .hero-content .hero-heading.fadeonview.off {
  opacity: 1;
  transform: translate(200px, 0);
}
.home .front-page-hero-video .hero-content .hero-heading.fadeonview {
  transition-delay: 0.1s;
}
.home .front-page-hero-video .hero-content .line-two {
  color: #00bfb3;
}
.home .front-page-hero-video .hero-content .line-one,
.home .front-page-hero-video .hero-content .line-two {
  display: block;
}
.home .front-page-hero-video .hero-content .button.fadeonview.off {
  opacity: 1;
  transform: translate(200px, 0);
}
.home .front-page-hero-video .hero-content .button:hover::before {
  animation: none;
}
.home .front-page-hero-video .scroll-icon {
  position: absolute;
  z-index: 15;
  bottom: 100px;
  left: 64px;
  width: 52px;
  height: 52px;
  background-image: url(../images/adapt-arrow-bottom.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .home .front-page-hero-video .scroll-icon {
    bottom: 80px;
    left: 34px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1279px) {
  .home .front-page-hero-video .scroll-icon {
    bottom: 60px;
    left: 22px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-hero-video .scroll-icon {
    bottom: 74px;
    left: 20px;
  }
}
.home .front-page-hero-video .scroll-icon::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/scroll-dotted-lines.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  animation: rotate-forever linear 8s infinite;
}
.home .front-page-hero-video .scroll-icon.fadeonview.off {
  transform: translate(0, -100px);
}
.home .front-page-hero-video .video-container {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1279px) {
  .home .front-page-hero-video .video-container {
    display: none;
  }
}
.home .front-page-hero-video .hero-video {
  width: 100%;
  height: auto;
  opacity: 0.4;
}
.home .front-page-hero-video .responsive-fallback-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1279px) {
  .home .front-page-hero-video .responsive-fallback-bg {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-hero-video .responsive-fallback-bg {
    background-position: 61% 50%;
  }
}
.no-video .home .front-page-hero-video .responsive-fallback-bg {
  display: block;
}
.home .front-page-section1 {
  position: relative;
  background-color: #003349;
  color: #fff;
}
.home .front-page-section1::before {
  content: "";
  position: absolute;
  right: 4.0555555556rem;
  bottom: 5%;
  width: 25%;
  height: 90%;
  background: url(../images/curved-arrow.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1279px) {
  .home .front-page-section1::before {
    right: 2.2222222222rem;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-section1::before {
    right: 1.1111111111rem;
  }
}
.home .front-page-section1 .section1-flex-container {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1279px) {
  .home .front-page-section1 .section1-flex-container {
    justify-content: flex-start;
    flex-direction: column;
  }
}
.home .front-page-section1 .large-heading-1 {
  color: #fff;
}
.home .front-page-section1 .right-content {
  box-sizing: border-box;
  max-width: 75%;
  flex-basis: 75%;
  padding-top: 120px;
  padding-bottom: 120px;
  /* stylelint-disable */
}
.home .front-page-section1 .right-content .adapt-arrow-indent-block p:last-of-type {
  margin-bottom: 0;
}
.home .front-page-section1 .right-content {
  /* stylelint-enable */
}
@media screen and (max-width: 1365px) {
  .home .front-page-section1 .right-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1279px) {
  .home .front-page-section1 .right-content {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-section1 .right-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.home .front-page-section1 .responsive-image-wrap {
  display: block;
  position: relative;
}
.home .front-page-section1 .responsive-image-wrap .section1-responsive-image {
  width: 100%;
  height: 700px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .home .front-page-section1 .responsive-image-wrap .section1-responsive-image {
    height: 375px;
  }
}
.home .front-page-section-services {
  position: relative;
  z-index: 30;
  margin-bottom: 100px;
  background-color: #f1f1f1;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .home .front-page-section-services {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1279px) {
  .home .front-page-section-services {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .home .front-page-section-services {
    margin-bottom: 40px;
  }
}
.home .front-page-section-services .services-arrow-1 {
  position: absolute;
  top: -250px;
  right: 0;
  width: 116px;
  height: 100px;
  background-image: url(../images/fp-secondary-paralax-tri.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
.home .front-page-section-services .services-arrow-2 {
  position: absolute;
  top: 120px;
  right: 40px;
  width: 302px;
  height: 260px;
  background-image: url(../images/fp-main-paralax-tri.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
.home .front-page-section-services .chr-content-container {
  position: relative;
  z-index: 10;
}
.home .partner-logos-module {
  padding-top: 0;
}
.home .partner-logos-module .partners-wrapper {
  padding-bottom: 0;
}
.home .testimonial-component {
  position: relative;
}
.home .testimonial-component .testimonial-arrow-1 {
  position: absolute;
  top: 150px;
  left: -20px;
  width: 116px;
  height: 100px;
  background-image: url(../images/adapt-arrow-button.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}
.home .testimonial-component .testimonial-arrow-2 {
  position: absolute;
  top: 555px;
  left: 40px;
  width: 140px;
  height: 120px;
  background-image: url(../images/home.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.home .fp-paralax-arrow {
  display: block;
}
@media screen and (max-width: 1279px) {
  .home .fp-paralax-arrow {
    display: none;
  }
}

.full-width-content-module .content {
  text-align: center;
}
.full-width-content-module .content p:last-of-type {
  margin-bottom: 0;
}
.full-width-content-module.text-style-center .content {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}

.icon-column-content-module .top-content {
  width: 100%;
  max-width: 830px;
  margin: 40px auto 0;
  text-align: center;
}
.icon-column-content-module .after-content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .icon-column-content-module .after-content {
    text-align: left;
  }
}
.icon-column-content-module .after-content p:last-of-type {
  margin-bottom: 0;
}
.icon-column-content-module .column-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .icon-column-content-module .column-wrap {
    flex-wrap: wrap;
    max-width: 65%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1023px) {
  .icon-column-content-module .column-wrap {
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module .column-wrap {
    max-width: 100%;
    margin: 0;
    flex-direction: column;
  }
}
.icon-column-content-module .column-wrap.items-1, .icon-column-content-module .column-wrap.items-2 {
  justify-content: center;
}
.icon-column-content-module .icon-item:nth-of-type(1) {
  transition-delay: 0.3s;
}
.icon-column-content-module .icon-item:nth-of-type(2) {
  transition-delay: 0.6s;
}
.icon-column-content-module .icon-item:nth-of-type(3) {
  transition-delay: 0.9s;
}
.icon-column-content-module .icon-item:nth-of-type(4) {
  transition-delay: 1.2s;
}
.icon-column-content-module .icon-item {
  display: inline-block;
  max-width: 33%;
  flex-basis: 33%;
}
@media screen and (max-width: 1279px) {
  .icon-column-content-module .icon-item {
    max-width: 47.5%;
    flex-basis: 47.5%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module .icon-item {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module .icon-item:last-of-type {
    margin-bottom: 0;
  }
}
.icon-column-content-module .icon-item.fadeonview.off {
  transform: translate(0, 100px);
}
.icon-column-content-module .icon-item .image-wrap {
  display: block;
  position: relative;
  width: 440px;
  height: 440px;
  margin-right: auto;
  margin-bottom: 25px;
  margin-left: auto;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .icon-column-content-module .icon-item .image-wrap {
    width: 226px;
    height: 226px;
  }
}
@media screen and (max-width: 1279px) {
  .icon-column-content-module .icon-item .image-wrap {
    width: 226px;
    height: 226px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module .icon-item .image-wrap {
    display: block;
    flex: none;
    width: 100px;
    flex-basis: 100px;
    height: 100px;
    margin: 0;
  }
}
.icon-column-content-module .icon-item .image-wrap .item-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s;
  transform: scale(1);
  transform-origin: 0 100%;
}
@media screen and (max-width: 1279px) {
  .icon-column-content-module .icon-item .image-wrap .item-image {
    position: relative;
    z-index: 5;
    transition: none;
    transform: none;
  }
}
.icon-column-content-module .icon-item .link {
  display: block;
}
@media screen and (max-width: 767px) {
  .icon-column-content-module .icon-item .link {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
  }
}
.icon-column-content-module .icon-item .link .title,
.icon-column-content-module .icon-item .link .content {
  color: #003349;
}
.icon-column-content-module .icon-item .link:hover .item-image {
  transform: scale(1.08);
}
@media screen and (max-width: 1279px) {
  .icon-column-content-module .icon-item .link:hover .item-image {
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module .icon-item .icon-content {
    box-sizing: border-box;
    padding-left: 25px;
    text-align: left;
  }
}
.icon-column-content-module .icon-item .icon-content .title {
  color: #003349;
  font-family: "Oakes Grotesk", sans-serif;
  font-size: 1.3333333333rem;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 1365px) {
  .icon-column-content-module .icon-item .icon-content .title {
    font-size: 1rem;
    line-height: 28px;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module .icon-item .icon-content .title {
    font-size: 0.8888888889rem;
    line-height: 26px;
    letter-spacing: -0.4px;
  }
}
.icon-column-content-module .icon-item .icon-content .content {
  margin-top: 20px;
}
@media screen and (max-width: 1279px) {
  .icon-column-content-module .icon-item .icon-content .content {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module.image-bg-triangle .icon-item {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module.image-bg-triangle .icon-item .icon-content {
    padding-left: 5px;
  }
}
.icon-column-content-module.image-bg-triangle .image-wrap {
  width: 440px;
  height: 440px;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .icon-column-content-module.image-bg-triangle .image-wrap {
    width: 278px;
    height: 278px;
  }
}
@media screen and (max-width: 1279px) {
  .icon-column-content-module.image-bg-triangle .image-wrap {
    width: 278px;
    height: 278px;
  }
}
@media screen and (max-width: 767px) {
  .icon-column-content-module.image-bg-triangle .image-wrap {
    display: block;
    flex: none;
    position: relative;
    left: -20px;
    width: 130px;
    flex-basis: 130px;
    height: 143px;
    margin: 0;
  }
}
.icon-column-content-module.image-bg-triangle .image-wrap::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #00bfb3;
  content: "";
}
.icon-column-content-module.image-bg-triangle .image-wrap {
  /* stylelint-disable */
}
.icon-column-content-module.image-bg-triangle .image-wrap .item-image {
  background-position: left bottom;
}
.icon-column-content-module.image-bg-triangle .image-wrap {
  /* stylelint-enable */
}

.indented-content-module .content-left {
  max-width: 50%;
  margin-bottom: 50px;
}
@media screen and (max-width: 1023px) {
  .indented-content-module .content-left {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .indented-content-module .content-left {
    margin-bottom: 20px;
  }
}
.indented-content-module .content-right {
  padding-left: 20%;
}
@media screen and (max-width: 1365px) {
  .indented-content-module .content-right {
    padding-left: 155px;
  }
}
@media screen and (max-width: 767px) {
  .indented-content-module .content-right {
    padding-left: 0;
  }
}
.indented-content-module ul {
  columns: 2;
}
@media screen and (max-width: 1279px) {
  .indented-content-module ul {
    columns: 1;
  }
}
.iexplorer .indented-content-module ul {
  columns: 1;
}

.partner-logos-module {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .partner-logos-module {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1279px) {
  .partner-logos-module {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .partner-logos-module {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
.partner-logos-module .partners-section-wrap:after {
  display: table;
  clear: both;
  content: "";
}
.partner-logos-module .partners-section-wrap {
  display: block;
}
.partner-logos-module .partners-section-wrap .partners-wrapper-rtl,
.partner-logos-module .partners-section-wrap .partners-wrapper {
  margin-top: 50px;
  display: block;
}
@media screen and (max-width: 1279px) {
  .partner-logos-module .partners-section-wrap .partners-wrapper-rtl,
  .partner-logos-module .partners-section-wrap .partners-wrapper {
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .partner-logos-module .partners-section-wrap .partners-wrapper-rtl,
  .partner-logos-module .partners-section-wrap .partners-wrapper {
    max-width: 375px;
    margin-top: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .partner-logos-module .partners-section-wrap .slick-slide > div {
    text-align: center;
  }
}
.partner-logos-module .partners-section-wrap .content-top {
  text-align: center;
}
.partner-logos-module .partners-section-wrap .content-top p:last-of-type {
  margin-bottom: 0;
}
.partner-logos-module .partners-section-wrap .logo {
  box-sizing: border-box;
  padding: 5px;
  margin: 0;
}
@media screen and (max-width: 1279px) {
  .partner-logos-module .partners-section-wrap .logo {
    padding-bottom: 30px;
  }
}
.partner-logos-module .partners-section-wrap .logo .image-wrap {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1279px) {
  .partner-logos-module .partners-section-wrap .logo .image-wrap {
    height: 100px;
  }
}
.partner-logos-module .partners-section-wrap .logo .image {
  width: 100%;
  max-width: 200px;
  height: 84px;
  border: 0;
  background: no-repeat center;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  filter: grayscale(1);
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
  .partner-logos-module .partners-section-wrap .logo .image {
    max-width: 175px;
  }
}
@media screen and (max-width: 767px) {
  .partner-logos-module .partners-section-wrap .logo .image {
    max-width: 160px;
    height: 50px;
  }
}

.text-with-image-module .text-content .content p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1279px) {
  .text-with-image-module .text-content {
    position: initial;
  }
}
.text-with-image-module .text-content.fadeonview.off {
  transform: translate(-100px);
}
.text-with-image-module .image-wrap.fadeonview.off {
  transform: translate(100px, 0);
}
.text-with-image-module .inner-text-with-image-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .text-with-image-module .inner-text-with-image-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.text-with-image-module .inner-text-with-image-container .text-content,
.text-with-image-module .inner-text-with-image-container .image-wrap {
  flex: none;
  max-width: 48%;
  flex-basis: 48%;
  order: 5;
}
@media screen and (max-width: 1023px) {
  .text-with-image-module .inner-text-with-image-container .text-content,
  .text-with-image-module .inner-text-with-image-container .image-wrap {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .text-with-image-module .inner-text-with-image-container .image-wrap {
    position: relative;
    left: -30px;
    width: 100vw;
    max-width: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .text-with-image-module .inner-text-with-image-container .image-wrap {
    left: -20px;
  }
}
.text-with-image-module.has-heading {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 40px;
}
.text-with-image-module.has-heading .inner-text-with-image-container {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1279px) {
  .text-with-image-module.has-heading .inner-text-with-image-container {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .text-with-image-module.has-heading .inner-text-with-image-container {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}
.text-with-image-module.has-heading .inner-text-with-image-container::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -60px;
  box-sizing: border-box;
  width: 3000px;
  height: 100%;
  border: 1px solid #e5e5e5;
  background-color: #f6f6f6;
  content: "";
}
.text-with-image-module .icon-heading-wrap {
  display: flex;
  min-height: 75px;
  margin-bottom: 60px;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .text-with-image-module .icon-heading-wrap {
    position: absolute;
    top: 40px;
    left: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .text-with-image-module .icon-heading-wrap {
    top: 15px;
  }
}
.text-with-image-module .icon-heading-wrap .heading-icon {
  flex: none;
  max-width: 75px;
  flex-basis: 75px;
}
@media screen and (max-width: 1279px) {
  .text-with-image-module .icon-heading-wrap .heading-icon {
    max-width: 60px;
    flex-basis: 60px;
  }
}
@media screen and (max-width: 767px) {
  .text-with-image-module .icon-heading-wrap .heading-icon {
    max-width: 45px;
    flex-basis: 45px;
  }
}
.text-with-image-module .icon-heading-wrap h2 {
  display: inline-block;
  flex: none;
  box-sizing: border-box;
  max-width: 100%;
  padding-left: 35px;
  margin: 0;
}
@media screen and (max-width: 1279px) {
  .text-with-image-module .icon-heading-wrap h2 {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .text-with-image-module .icon-heading-wrap h2 {
    padding-left: 15px;
  }
}
@media screen and (max-width: 349px) {
  .text-with-image-module .icon-heading-wrap h2 {
    max-width: 220px;
  }
}
.text-with-image-module.image-position-left .text-content.fadeonview.off {
  transform: translate(100px);
}
.text-with-image-module.image-position-left .image-wrap {
  order: 1;
}
.text-with-image-module.image-position-left .image-wrap.fadeonview.off {
  transform: translate(-100px, 0);
}
@media screen and (max-width: 1023px) {
  .text-with-image-module.image-position-top .image-wrap {
    margin-bottom: 40px;
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .text-with-image-module.image-position-top .image-wrap {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .text-with-image-module.image-position-bottom .image-wrap {
    margin-top: 40px;
    order: 20;
  }
}
@media screen and (max-width: 767px) {
  .text-with-image-module.image-position-bottom .image-wrap {
    margin-top: 30px;
  }
}

.two-column-content-module .inner-two-column-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .two-column-content-module .inner-two-column-wrap {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.two-column-content-module .content-left,
.two-column-content-module .content-right {
  flex: none;
  max-width: 48%;
  flex-basis: 48%;
}
.two-column-content-module .content-left p:last-of-type,
.two-column-content-module .content-right p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .two-column-content-module .content-left,
  .two-column-content-module .content-right {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .two-column-content-module .content-right {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .two-column-content-module .content-right {
    padding-top: 30px;
  }
}

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