/* Theme base styles */

/* Generic */

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | 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 iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  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
   ========================================================================== */

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 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 */
}

/**
 * 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 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
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 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;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 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 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

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 in Chrome and Safari on macOS.
 */

[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 Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* Objects */

/* Responsive grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
/* Content wrappers for blog post and system templates */

.content-wrapper {
  margin: 0 auto;
}

/* Drag and drop layout styles */

.dnd-section > .row-fluid {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .content-wrapper {
    padding: 0 29px;
  }
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

@media screen and (min-width: 667px) {
  .case-study-post .content-wrapper {
    padding: 0 45px;
  }
}

@media screen and (min-width: 1280px) {
  .case-study-post .content-wrapper {
    padding: 0 85px;
  }
}

@media screen and (min-width: 1920px) {
  .case-study-post .content-wrapper {
    padding: 0;
  }
}

/* Elements */

html:not(.case-study-post) {
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  html.case-study-post {
    overflow-x: hidden;
  }
}

html.is-fixed {
  overflow: hidden;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.body-wrapper {
  position: relative;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
  font-size: 1rem;
}

p a {
  text-decoration: underline;
}

strong {
  font-weight: var(--extra-bold);
}

/* Anchors */

a {
  cursor: pointer;
}

.cs-link,
.post-link {
  position: relative;
  font-size: clamp(18px, calc(1.125rem + ((1vw - 3.2px) * 0.625)), 28px);
  min-height: 0vw;
  z-index: 3;
}

.cs-link span,
.post-link span {
  position: relative;
  transition-duration: 0.5s;
}

.cs-link span::after,
.post-link span::after {
  height: 1px;
  width: 28px;
  content: "";
  position: absolute;
  top: 50%;
  margin-left: 8px;
  transition-duration: 0.5s;
}

.cs-link span::before,
.post-link span::before {
  height: 1px;
  width: 0px;
  content: "";
  position: absolute;
  top: 50%;
  transition-duration: 0.5s;
  left: -35px;
  margin-right: 8px;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

html:not(.blog-post) ul,
html:not(.blog-post) ol {
  padding-left: 0.35rem;
  margin: 0 0 1.4rem;
}

ul li,
ol li {
  margin: 0.7rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 1.4rem 0;
}

ul li::marker,
ol li::marker {
  color: inherit;
}

.no-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.no-list li {
  margin: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  padding-left: 1rem;
  border-left: 10px solid;
  margin: 0 0 1.4rem;
}

/* Horizontal rules */

hr {
  border: 0 none;
  border-bottom: 1px solid;
}

/* Subscripts and superscripts */

sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Image alt text */

img {
  max-width: 100%;
  font-size: 1rem;
  word-break: normal;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a,
.breadcrumb p {
  font-size: 18px;
  font-weight: var(--bold);
  text-decoration: none;
  margin: 0 !important;
}

.breadcrumb strong span {
  font-size: 18px;
  font-weight: var(--bold);
}

.breadcrumb a:hover,
.breadcrumb p:hover {
  font-weight: bold;
  text-decoration: none;
}

.breadcrumb > *:first-child {
  color: #27a2c7;
}

@media screen and (max-width: 767px) {
  .breadcrumb p,
  .breadcrumb a {
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
  }
}
.swiper-button-disabled {
  opacity: 0.5;
}

/* Primary button */

button,
.button,
.hs-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  transition: color 0.1s ease-in-out, transform 0.3s ease-in-out;
  white-space: normal;
  margin-bottom: 1rem;
  text-transform: lowercase !important;
}

.cta_button {
  transition: color 0.1s ease-in-out, transform 0.3s ease-in-out;
}

@media (hover) {
  .button:hover,
  .hs-button:hover,
  .cta_button:hover {
    transform: translateY(-10px);
  }
  .button:hover,
  .cta_button:hover {
    box-shadow: 0 6px 30px rgb(0, 0, 0, 0.25);
  }
}

.hs-cta-wrapper:first-of-type {
  margin-right: 12px;
}

@media screen and (min-width: 768px) {
  button,
  .button,
  .hs-button,
  .cta_button {
    margin-bottom: 0;
  }

  .hs_cos_wrapper_type_cta {
    width: auto;
  }

  .hs-cta-wrapper:first-of-type {
    margin-right: 24px;
  }
}

/* Simple button */

.button.button--simple {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.button.button--simple:hover,
.button.button--simple:focus {
  border: none;
  background-color: transparent;
}

/* Disabled button */

button:disabled,
.button:disabled,
.hs-button:disabled {
  border-color: #f1f1f1;
  background-color: #f1f1f1;
  pointer-events: none;
}

button:disabled,
.button:disabled,
.button.button--secondary:disabled,
.button.button--simple:disabled {
  color: #d0d0d0;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  background: none;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: none;
  transition: none;
}

/* Button icons */

.button .button__icon svg {
  display: block;
  height: 1.25rem;
  margin-right: 1rem;
  fill: inherit;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .button .button__icon svg {
    width: 1.25rem;
  }
}

.button--icon-right .button__icon {
  order: 1;
}

.button--icon-right .button__icon svg {
  margin-right: 0;
  margin-left: 1rem;
}

.button--bordered {
  background: transparent !important;
  border: 1px solid var(--primary) !important;
}

.button-tertiary--readmore {
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  color: var(--white) !important;
}

.button-tertiary--readmore:hover {
  background-color: var(--pink) !important;
  border: 1px solid var(--pink) !important;
  color: var(--white) !important;
}

.button-bordered:hover {
  border: 1px solid var(--pink) !important;
  background: var(--pink) !important;
  color: var(--white) !important;
}

.button-bordered-dark {
  background: transparent !important;
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
}

.button-bordered-dark:hover {
  text-decoration: none;
  background: var(--pink) !important;
  border: 1px solid var(--pink) !important;
  color: var(--white) !important;
}

.button-dark {
  background: var(--primary) !important;
  border: 3px solid var(--primary) !important;
  color: var(--white) !important;
}

.button-dark:hover {
  background: var(--pink) !important;
  border: 3px solid var(--pink) !important;
  color: var(--white) !important;
}

.button-green:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-weight: var(--medium) !important;
  border: 0 !important;
  text-decoration: none !important;
  min-width: 100px;
}

.view-all-link svg {
  position: relative;
  right: 0;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}

.view-all-link:hover svg {
  right: -0.25rem;
}

a.pseudo-cta {
  margin-right: 24px;
  box-sizing: content-box !important;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .mobilenav svg {
    width: 28px;
    height: 28px;
  }
}
/* Form title */

.form-title {
  margin: 0;
}

.form-title ~ div > form {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Labels */
form:not(.search-form) label {
  position: absolute;
  top: -12.5px;
  left: 20px;
  display: block;
  background: var(--white);
  padding: 5px !important;
  margin-bottom: 0.35rem;
}

html.vacancies form:not(.search-form) label {
  background: #f5fafa;
}

form:not(.search-form) label.hs-main-font-element {
  position: relative;
  left: 0;
  padding: 0;
  color: #db2885;
}

form:not(.search-form) .hs-error-msgs {
  padding: 0;
  margin: 0;
}

form:not(.search-form) label.hs-error-msg {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  background: var(--white);
  padding: 0 !important;
  margin: 0;
}

html.vacancies form:not(.search-form) label.hs-error-msg {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  background: #f5fafa;
  padding: 0 !important;
  margin: 0;
}

form:not(.search-form) .hs-form-booleancheckbox label {
  position: relative;
  top: unset;
  left: unset;
}

/* Form fields */

form .hs-form-field {
  position: relative;
  margin-bottom: 16px;
}

form .hs-cv,
form .hs-cover_letter {
  margin-bottom: 25px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="file"],
form input[type="search"],
form select,
form textarea {
  display: inline-block;
  width: 100% !important;
  font-size: 16px;
  background-color: transparent !important;
  transition: border 0.1s ease-in-out; /* stylelint-disable-line declaration-no-important */
}

form fieldset {
  max-width: 100% !important; /* stylelint-disable-line declaration-no-important */
}

/* Form fields - checkbox/radio */

form .inputs-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 4px 0 0.7rem;
}

.hs-fieldtype-textarea .hs-error-msgs li {
  margin-top: -5px;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type="checkbox"],
form input[type="radio"] {
  margin-right: 0.35rem;
  cursor: pointer;
}

form:not(.search-form) input:focus,
form:not(.search-form) input:focus-within,
form:not(.search-form) input:target,
form:not(.search-form) input:active,
form:not(.search-form) input:focus-visible,
form:not(.search-form) textarea:focus,
form:not(.search-form) textarea:focus-within,
form:not(.search-form) textarea:target,
form:not(.search-form) textarea:active,
form:not(.search-form) textarea:focus-visible {
  border-radius: 0 !important;
  border: 2px solid #202349 !important;
  outline: none;
}

/* Form fields - date picker */

form .hs-dateinput {
  position: relative;
}

form .hs-dateinput:before {
  position: absolute;
  top: 50%;
  content: "\01F4C5";
  transform: translateY(-50%);
}

form .is-selected .pika-button {
  border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
  box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
}

form .fn-date-picker .pika-button:hover,
form .fn-date-picker .pika-button:focus {
  border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
}

/* Form fields - file picker */

form input[type="file"] {
  padding: initial;
  border: initial;
  background-color: transparent;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  margin: 0 0 1.4rem;
  font-size: 0.8rem;
}

form .hs-richtext img {
  height: auto;
  max-width: 100% !important; /* stylelint-disable-line declaration-no-important */
}

/* GDPR */

form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 1rem !important; /* stylelint-disable-line declaration-no-important */
}

/* Validation */

form .hs-form-required {
  color: #db2885;
}

form .hs-input.error {
  border-color: #db2885;
  border: 2px solid #db2885;
}

form .hs-error-msg,
form .hs-error-msgs {
  margin-top: 0.35rem;
  color: #db2885;
}

/* Submit button */

form input[type="submit"],
form .hs-button {
  display: inline-block;
  border: 1px solid var(--primary) !important;
  background: var(--primary) !important;
  font-size: 22px !important;
  color: var(--white) !important;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s linear;
  text-transform: lowercase !important;
  white-space: normal !important; /* stylelint-disable-line declaration-no-important */
}

.hs-button:hover {
  border: 1px solid var(--pink) !important;
  background: var(--pink) !important;
  color: var(--white) !important;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0;
}
/* Icon wrapper */

.icon {
  display: inline-flex;
  border-radius: 50%;
}

.icon--square .icon {
  border-radius: 0;
}

/* Icon */

.icon svg {
  vertical-align: middle;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

th,
td {
  padding: 0.7rem;
  vertical-align: top;
}

/* Table header */

thead th,
thead td {
  vertical-align: bottom;
}


/* Components */

/* Navigation skipper */

.header__skip {
  position: absolute;
  top: -1000px;
  left: -1000px;
  overflow: hidden;
  height: 1px;
  width: 1px;
  text-align: left;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  z-index: 2;
  top: 0;
  left: 0;
  overflow: visible;
  height: auto;
  width: auto;
}

.scrolled-padding{
  
}
.home #main-content .row-depth-1.row-number-1 {
  position: relative;
  z-index: 2;
}

html.services #main-content {
  position: relative;
  background: var(--white);
  z-index: 6;
}

html.join #main-content {
  position: relative;
  background: var(--white);
  z-index: 8;
}

html:not(.hs-inline-edit) .hs-content-id-55701490899 footer,
html:not(.hs-inline-edit) .hs-content-id-0 footer {
  position: relative;
  opacity: 1;
  z-index: 6;
}

html:not(.hs-inline-edit) .hs-content-id-55701490899 #main-content,
html:not(.hs-inline-edit) .hs-content-id-0 #main-content {
  margin-bottom: 0;
}

html:not(.hs-inline-edit) .hs-content-id-55701490899 #main-content:after,
html:not(.hs-inline-edit) .hs-content-id-0 #main-content:after,
html:not(.hs-inline-edit) .hs-content-id-0 .overflow,
html:not(.hs-inline-edit) .hs-content-id-0 .radial-gradient-light,
html:not(.hs-inline-edit) .hs-content-id-0 .hero-video-alt {
  display: none;
}

html.page_404 body {
  background: #202349;
}

/* = about hero banner -------------------- */
.about-hero-wrap {
  background-image: url("https://25591942.fs1.hubspotusercontent-eu1.net/hubfs/25591942/img-header-desktop.webp");
  background-position: 0 150px !important;
  background-color: var(--primary);
  background-blend-mode: lighten;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@media screen and (max-width: 767px) {
  .about-hero-wrap {
    background-position: 0 150px !important;
    background-size: contain !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .about-hero-wrap {
    background-position: 0 300px !important;
    background-size: contain !important;
  }
}

/* = simple hero banner -------------------- */
.simple-hero-banner p {
  max-width: 38rem;
}

/* = sunburst -------------------- */
.sunburst-wrap {
  position: relative;
  background-image: url("https://25591942.fs1.hubspotusercontent-eu1.net/hubfs/25591942/image-planet-optimised-1.webp") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .sunburst-wrap {
    position: relative;
    background-image: url("https://25591942.fs1.hubspotusercontent-eu1.net/hubfs/25591942/twogether-2022/img/image-planet-optimised.png") !important;
    background-size: 300% !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    z-index: 5;
  }
}

/* = two column background -------------------- */
.two-column-background img {
  mix-blend-mode: lighten;
  margin-left: -29px;
}

.two-column-background p {
  max-width: 28rem;
}

@media screen and (min-width: 667px) {
  .two-column-background img {
    margin-left: -45px;
  }
}

@media screen and (min-width: 1280px) {
  .two-column-background img {
    margin-left: -85px !important;
  }
}

@media screen and (min-width: 1920px) {
  .two-column-background img {
    margin-left: -110px;
  }
}

/* = two column wrap -------------------- */
@media screen and (min-width: 768px) and (max-width: 845px) {
  .two-column--wrap .hs-cta-wrapper:first-of-type {
    display: block;
    margin-bottom: 40px;
  }
}

/* = get in touch -------------------- */
.get-in-touch h2 {
  max-width: 18rem;
}

@media screen and (min-width: 1024px) {
  .get-in-touch h2 {
    font-size: 78px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .get-in-touch .span6 {
    width: 100%;
    margin: auto;
  }

  html.vacancies form,
  .get-in-touch form {
    padding: 45px 0;
  }
}

/* = our services -------------------- */
.our-services-wrap {
  background-image: url("https://25591942.fs1.hubspotusercontent-eu1.net/hubfs/25591942/img-parallax-our-services.png") !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .dnd_area-row-2-background-gradient {
    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1)
    ) !important;
  }

  .our-services-wrap .span6 {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1280px) {
  .dnd_area-row-2-background-gradient {
    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1)
    ) !important;
  }
}

@media screen and (max-width: 767px) {
  .filters li button a {
    width: 100%;
    text-align: left;
  }

  button.clear-all-filters {
    background: var(--pink) !important;
    color: var(--white) !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  html.service .dnd_area-column-18-padding {
    padding-left: 32px !important;
    padding-right: 0 !important;
  }
}

/* = our awards -------------------- */
html.our-awards .dnd_area-row-1-background-color {
  position: relative;
  z-index: 6;
}
/* Card */

.card {
  border: 0;
}

.card--dark,
.card--light {
  padding: 1.4rem;
}
/* Blog listing */

.blog-listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-listing--3-col,
.blog-listing--4-col {
  justify-content: flex-start;
}

/* Section heading */

.blog-listing__heading {
  width: 100%;
  text-align: center;
}

/* Article */

.blog-listing__post {
  display: flex;
  width: 100%;
  padding: 0;
  margin-bottom: 2.8rem;
  flex-direction: column;
}

.blog-listing__post-inner-wrapper {
  display: flex;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}

/* Featured image */

.blog-listing__post-image-wrapper {
  display: flex;
}

.blog-listing__post-image {
  height: auto;
  width: 100%;
}

/* Content */

.blog-listing__post-content {
  display: flex;
  padding: 0.7rem 0 0;
  flex-direction: column;
  flex-grow: 1;
}

.card--dark .blog-listing__post-content,
.card--light .blog-listing__post-content {
  padding: 1.4rem;
}

/* Heading */

.blog-listing__header {
  margin-bottom: 1.05rem;
}

/* Tags */

.blog-listing__post-tags {
  margin-bottom: 0.7rem;
}

.blog-listing__post-tag,
.blog-listing__post-tag:hover,
.blog-listing__post-tag:focus,
.blog-listing__post-tag:active {
  text-decoration: none;
}

/* Title */

.blog-listing__post-title {
  margin-bottom: 0.7rem;
}

/* Author */

.blog-listing__post-author {
  display: flex;
  margin-bottom: 0.7rem;
  align-items: center;
}

.blog-listing__post-author-image {
  height: auto;
  width: 50px;
  margin-right: 0.7rem;
}

.blog-listing__post-author-name,
.blog-listing__post-author-name:hover,
.blog-listing__post-author-name:focus,
.blog-listing__post-author-name:active {
  text-decoration: none;
}

/* Date */

.blog-listing__post-timestamp {
  display: block;
  margin-bottom: 0.35rem;
}

/* Button */

.blog-listing__post-button-wrapper {
  margin-top: auto;
}

/* Blog listing - basic grid */

.blog-listing--card .blog-listing__post {
  flex-direction: column;
}

.blog-listing--2-col .blog-listing__post {
  width: calc(50% - 1rem);
}

.blog-listing--3-col .blog-listing__post {
  width: calc(33.3% - 1rem);
}

.blog-listing--4-col .blog-listing__post {
  width: calc(25% - 1rem);
}

.blog-listing--3-col .blog-listing__post:nth-of-type(3n + 1),
.blog-listing--3-col .blog-listing__post:nth-of-type(3n + 2) {
  margin-right: 1.5rem;
}

.blog-listing--4-col .blog-listing__post:nth-of-type(4n + 1),
.blog-listing--4-col .blog-listing__post:nth-of-type(4n + 2),
.blog-listing--4-col .blog-listing__post:nth-of-type(4n + 3) {
  margin-right: 1.333rem;
}

@media (max-width: 767px) {
  .blog-listing .blog-listing__post {
    width: 100%;
    margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
  }
}

.blog-listing--card .blog-listing__post-image-wrapper {
  height: 200px;
}

.blog-listing--card .blog-listing__post-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .blog-listing--card .blog-listing__post-image-wrapper,
  .blog-listing--card .blog-listing__post-image {
    height: auto;
  }
}

/* Blog listing - side by side */

/* stylelint-disable no-descending-specificity */
.blog-listing--list .blog-listing__post {
  display: flex;
}
/* stylelint-enable no-descending-specificity */

.blog-listing--list .blog-listing__post-image-wrapper {
  width: 100%;
}

.blog-listing--list .blog-listing__post-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .blog-listing--list .blog-listing__post-image-wrapper,
  .blog-listing--list .blog-listing__post-image {
    height: auto;
  }
}

@media (min-width: 768px) {
  .blog-post-listing__post--list {
    flex-direction: row;
  }

  .blog-listing__post-content--list {
    order: 1;
  }

  .blog-post-listing__post-image-wrapper--list {
    order: 1;
  }

  .blog-post-listing__post-image-wrapper--right {
    order: 2;
  }

  .blog-listing--list .blog-listing__post-image-wrapper {
    width: 25%;
  }

  .blog-listing--list .blog-post-listing__post-image-wrapper--left {
    margin-right: 1.4rem;
  }

  .blog-listing--list .blog-post-listing__post-image-wrapper--right {
    margin-left: 1.4rem;
  }
}
/* Logo */

.widget-type-logo img {
  height: auto;
  max-width: 100%;
  margin-bottom: 1.4rem;
}

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  padding-left: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
}

.hs-menu-wrapper li {
  margin: 0;
}

@media (max-width: 1280px) {
  .hs-menu-wrapper li {
    width: calc(48% - 5px);
    margin-bottom: 0.25rem;
  }
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

/* prettier-ignore */
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
.hs-item-has-children:hover
> .hs-menu-children-wrapper {
  top: 100%;
  left: 0;
  opacity: 1;
}

/* prettier-ignore */
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts
.hs-item-has-children:hover
> .hs-menu-children-wrapper {
  top: 0;
  left: 100%;
  opacity: 1;
}

@media (max-width: 767px) {
  /* prettier-ignore */
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
  .hs-item-has-children:hover
  > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts
  .hs-item-has-children:hover
  > .hs-menu-children-wrapper {
    position: relative;
    top: auto;
    left: 0;
    opacity: 1;
  }
}

/* Rich text */

.widget-type-rich_text img {
  height: auto;
  max-width: 100%;
}
@media screen and (max-height: 595px) {
  html:not(.hs-inline-edit) footer.is-visible {
    position: relative;
    opacity: 1;
    z-index: 2;
  }

  main#main-content {
    margin-bottom: 0 !important;
  }
}


/* modules */
.radial-gradient {
  position: absolute;
  top: -70%;
  right: 0;
  width: 3326px;
  height: 100%;
  /* UI Properties */
  background: -webkit-gradient(
    radial,
    center center,
    0,
    center center,
    1663,
    color-stop(0, rgb(39, 162, 199, 0.75)),
    color-stop(1, rgba(39, 162, 199, 0))
  );
  transform: translate(50%, 50%);
  transform-origin: center center;
  z-index: 1;
}

.radial-gradient-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 2518px;
  height: 2518px;
  /* UI Properties */
  background: -webkit-gradient(
    radial,
    center center,
    0,
    center center,
    1259,
    color-stop(0, rgb(255, 255, 255, 1)),
    color-stop(1, rgba(255, 255, 255, 0))
  );
  transform: translate(-35%, -50%);
  transform-origin: center center;
  z-index: 2;
}

section.hero-video {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(var(--primary), 0.8);
  z-index: 1;
}

section.hero-video video {
  position: fixed;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  mix-blend-mode: lighten;
  z-index: -1;
}

section.hero-video-alt video {
  position: fixed;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  mix-blend-mode: lighten;
  z-index: -1;
}

section.hero-video #rhino-bg.is-hidden {
  visibility: hidden;
  opacity: 0;
}

section.hero-video .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(33, 33, 68);
  background: linear-gradient(
    0deg,
    rgba(33, 33, 68, 1) 0%,
    rgba(33, 33, 68, 0) 20%,
    rgba(33, 33, 68, 0) 50%,
    rgba(33, 33, 68, 0) 80%,
    rgba(33, 33, 68, 1) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

section.hero-video .gradient.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  section.hero-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 75px;
    left: 0;
    min-height: 380px;
  }

  .radial-gradient {
    display: none;
  }

  section.hero-video .gradient {
    top: 0;
    height: 230px;
  }

  html.about section.hero-video .gradient {
    display: none;
  }

  .radial-gradient-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 2518px;
    height: 2518px;
    /* UI Properties */
    background: -webkit-gradient(
      radial,
      center center,
      0,
      center center,
      1259,
      color-stop(0, rgb(255, 255, 255, 1)),
      color-stop(0.5, rgba(255, 255, 255, 0))
    );
    transform: translate(-45%, -50%);
    transform-origin: center center;
    z-index: 2;
  }

  section.hero-video video {
    position: fixed;
    width: 100%;
    max-width: 100%;
    height: auto;
    top: 75px;
    left: 0;
    right: 0;
    transition: opacity 8s ease-in-out;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  section.hero-video video {
    position: fixed;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    top: -25%;
    left: 0;
    right: 0;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    mix-blend-mode: lighten;
    z-index: -1;
  }
}

@media screen and (min-width: 1536px) {
  section.hero-video #rhino-bg {
    top: -50px;
    height: calc(100% + 50px);
  }

  section.hero-video .gradient {
    display: block;
  }
}
/* Layout */
header.header {
  position: fixed;
  width: 100%;
  background-color: transparent !important;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

header.header .header__logo svg {
  width: 206px;
  height: 50px;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 767px) {
  header.header .header__logo svg {
    width: 145px;
    height: 35px;
  }
}

body.hasScrolledDown header.header.hide-nav {
  margin-top: -100px;
}

header.header.scrolled {
  background-color: var(--primary) !important;
}

header.header.scrolled .header__logo svg {
  width: 188px;
}

@media screen and (min-width: 1024px) {
  header.header.scrolled .header__logo svg #twogether {
    opacity: 0;
  }
  header.header.scrolled .header__logo svg {
    margin-left: -95px;
  }
}

.header__container {
  position: relative;
}

.header__wrapper {
  display: flex;
  margin: 0 auto;
  align-items: center;
  max-width: 1700px;
}

.header__top {
  padding: 0.7rem 0;
}

.header__bottom {
  background-color: transparent !important;
  padding: 0 29px;
  transition: padding 0.3s ease-in-out;
}

header.scrolled .header__bottom {
  padding: 0 29px;
}

@media (max-width: 1139px) {
  .header__top {
    display: none;
  }

  header.scrolled .header__bottom,
  .header__bottom {
    padding: 15px 29px;
  }
}

.header__bottom .header__button {
  position: relative;
  font-size: 22px;
  color: var(--primary);
  z-index: 1;
  transition: transform 0.3s ease-in-out;
  transform: translateY(0);
}

.header__bottom .header__button::before {
  position: absolute;
  content: "";
  top: -65px;
  left: -1px;
  right: 0;
  width: calc(100% + 2px);
  background: linear-gradient(
    180deg,
    rgba(32, 35, 73, 1) 0%,
    rgba(39, 162, 199, 1) 100%
  );
  min-height: 80px;
  z-index: 0;
}

.header__bottom .header__button:hover {
  background-color: var(--pink) !important;
  border-color: var(--pink) !important;
  color: var(--white) !important;
  transform: translateY(20px);
}

.header__bottom .header__button:hover:before {
  background: rgb(32, 35, 73);
  background: linear-gradient(
    180deg,
    rgba(32, 35, 73, 1) 0%,
    rgba(219, 40, 133, 1) 100%
  );
  content: "";
  left: -1px;
  min-height: 85px;
  position: absolute;
  right: 0;
  top: -85px;
  width: calc(100% + 2px);
  z-index: 0;
}

/* Layout - left */

.header__container--left .header__language-switcher-col {
  margin-left: auto;
}

.header__container--left .header__wrapper--bottom {
  justify-content: space-between;
}

.header__container--left .header__menu-col {
  margin-left: auto;
  text-align: center;
}

.header__container--left .header__search-col .hs-search-field {
  display: flex;
  align-items: center;
  padding-bottom: 3px;
}

.header__container--left .header__search-col .hs-search-field__bar form {
  width: fit-content;
  height: fit-content;
  position: relative;
}

.header__container--left .header__search-col form {
  display: flex;
  align-items: center;
  border: 0;
  background: none;
  padding: 0;
}

.header__container--left .header__search-col form label {
  padding: 0;
  margin: 0;
  font-size: 20px;
  color: var(--white);
}

.header__container--left .header__search-col .hs-search-field__input {
  height: 50px;
  width: 50px !important;
  border-style: none;
  padding: 10px;
  font-size: 18px;
  outline: none;
  transition: all 0.5s ease-in-out;
  background: url("https://25591942.fs1.hubspotusercontent-eu1.net/hubfs/25591942/twogether-2022/img/icons/icon-search.png");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: right center;
  background-color: transparent;
  padding-right: 40px;
  color: #fff;
}

.header__container--left
  .header__search-col
  .hs-search-field__input::placeholder {
  color: var(--white);
  font-size: 18px;
  font-weight: 100;
}

.header__container--left .header__search-col .hs-search-field__input:focus {
  width: 300px !important;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

@media (min-width: 767px) {
  .header__container--left .header__logo-col {
    flex: 1 0 0;
  }

  .header__container--left .header__menu-col {
    flex: 5 0 0;
    width: 100%;
  }
}

/* Layout - centered */

.header__container--centered .header__button-col {
  margin-left: auto;
}

.header__container--centered .header__wrapper--bottom {
  flex-wrap: wrap;
  text-align: center;
}

.header__container--centered .header__logo-col {
  width: 100%;
  margin-bottom: 1.4rem;
}

.header__container--centered .header__menu-col {
  width: 100%;
}

@media (max-width: 767px) {
  .header__container--centered .header__wrapper--bottom {
    justify-content: space-around;
    text-align: left;
  }

  .header__container--centered .header__logo-col,
  .header__container--centered .header__menu-col {
    width: auto;
    margin-bottom: 0;
  }
}

/* Language switcher */

.header__language-switcher {
  position: relative;
  cursor: pointer;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

/* Language switcher - top level menu item */

.header__language-switcher-label {
  display: flex;
}

.header__language-switcher-current-label {
  display: flex;
  margin-bottom: 5px;
  margin-left: 0.5rem;
  align-items: center;
}

.header__language-switcher-child-toggle svg {
  height: 15px;
  width: 15px;
  margin-left: 0.35rem;
}

/* Language switcher - submenu */

.header__language-switcher .lang_list_class {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  left: auto;
  display: block;
  width: 200px;
  padding: 0;
  border-style: solid;
  border-width: 1px;
  opacity: 0;
  text-align: left;
  transform: none;
  visibility: hidden;
}

.header__language-switcher-label--open .lang_list_class,
.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  visibility: visible;
}

.header__language-switcher .lang_list_class:after,
.header__language-switcher .lang_list_class:before {
  content: none;
}

.header__language-switcher .lang_list_class li {
  padding: 0;
  border: none;
  margin: 0;
}

.header__language-switcher .lang_list_class li:first-child {
  padding-top: 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.header__language-switcher .lang_list_class .lang_switcher_link {
  display: inline-flex;
  width: 100%;
  padding: 0.7rem 1rem;
}

@media (max-width: 767px) {
  .header__language-switcher .lang_list_class {
    position: static;
    display: none;
    width: 100%;
    border: none;
  }

  .header__language-switcher-label--open .lang_list_class {
    display: block;
  }

  .header__language-switcher-current-label {
    display: block;
    width: 80%;
    padding: 0.7rem 0 0.7rem 1rem;
    margin: 0;
    order: 1;
  }

  .header__language-switcher .globe_class {
    height: auto;
    width: 100%;
  }

  .header__language-switcher-label {
    display: flex;
    flex-wrap: wrap;
  }

  .hs_cos_wrapper_type_language_switcher {
    width: 100%;
  }
}

/* Language switcher - icons */

@media (max-width: 767px) {
  .header__language-switcher-child-toggle,
  .header__language-switcher-child-toggle:hover,
  .header__language-switcher-child-toggle:focus,
  .header__language-switcher-child-toggle:active {
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    padding: 10px 30px;
    border: 0;
    cursor: pointer;
  }

  .header__language-switcher-child-toggle svg {
    margin-left: 0;
  }

  .header__language-switcher-child-toggle--open svg {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
    transition: transform 0.4s;
  }
}

/* Logo */
.header__logo img {
  height: auto;
  max-width: 100%;
}

@media screen and (min-width: 1024px) {
  .header__logo {
    padding: 30px 0;
    transition: padding 0.3s ease-in-out;
  }

  header.header.scrolled .header__logo {
    padding: 0;
  }
}

/* Menu */

.header__menu-container--mobile {
  display: none;
}

.header__menu--mobile {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  display: none;
  width: 100%;
}

@media (max-width: 767px) {
  .header__menu--desktop {
    display: none;
  }

  .header__menu-container--mobile {
    display: block;
  }

  .header__menu--show {
    display: block;
  }
}

/* Menu items */

.header__menu-item {
  position: relative;
  display: inline-flex;
}

@media (max-width: 767px) {
  .header__menu-item {
    display: block;
    width: 100%;
    text-align: left;
  }

  .header__menu-link {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
  }

  .header__menu-item--has-submenu .header__menu-link {
    width: 80%;
  }
}

/* Menu items - top level */

.header__menu-item--depth-1 {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .header__menu-item--depth-1 {
    padding: 0;
  }
}

/* Menu items - submenus */

.header__menu-submenu {
  position: absolute;
  z-index: 99;
  top: 100%;
  left: -1px;
  display: none;
  width: 200px;
  border-style: solid;
  border-width: 1px;
  text-align: left;
}

.header__menu-item--open > .header__menu-submenu {
  display: block;
}

.header__menu-item--depth-1:last-child > .header__menu-submenu {
  right: 0;
  left: auto;
}

.header__menu-submenu--level-3 {
  top: 0;
  left: 100%;
}

/* prettier-ignore */
.header__menu-item--depth-1:nth-last-child(-n + 2) .header__menu-submenu--level-3 {
    top: 0;
    right: 100%;
    left: auto;
}

.header__menu-submenu .header__menu-item {
  width: 100%;
  background-color: inherit;
}

.header__menu-submenu .header__menu-link {
  display: inline-flex;
  padding: 0.7rem 1rem;
}

.header__menu-item--depth-3 > .header__menu-link {
  margin-left: 10px;
}

.header__menu-item--depth-4 > .header__menu-link {
  margin-left: 20px;
}

.header__menu-item--depth-5 > .header__menu-link,
.header__menu-item--depth-6 > .header__menu-link,
.header__menu-item--depth-7 > .header__menu-link,
.header__menu-item--depth-8 > .header__menu-link,
.header__menu-item--depth-9 > .header__menu-link,
.header__menu-item--depth-10 > .header__menu-link {
  margin-left: 30px;
}

.header__menu-item--button {
  padding: 0.7rem 1rem;
}

@media (max-width: 767px) {
  /* prettier-ignore */
  .header__menu-submenu,
    .header__menu-submenu--level-3,
    .header__menu-item--depth-1:nth-last-child(-n + 2) .header__menu-submenu--level-3 {
        position: static;
        width: 100%;
        border: none;
    }
}

/* Menu icons */

@media (min-width: 767px) {
  .header__menu-submenu .header__menu-child-toggle {
    padding: 0.7rem 1rem;
    margin-left: auto;
  }
}

.header__menu-child-toggle svg {
  height: 15px;
  width: 15px;
  margin-left: 0.35rem;
}

.header__menu-toggle {
  display: none;
}

.header__menu-toggle svg {
  height: 30px;
  width: 30px;
}

@media (max-width: 767px) {
  .header__menu-child-toggle,
  .header__menu-child-toggle:hover,
  .header__menu-child-toggle:focus,
  .header__menu-child-toggle:active {
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    padding: 10px 30px;
    border: 0;
    cursor: pointer;
  }

  .header__menu-child-toggle svg {
    margin-left: 0;
  }

  .header__menu-child-toggle--open svg {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
    transition: transform 0.4s;
  }

  .header__menu-toggle--show {
    display: block;
  }
}

/* = primary nav -------------------- */
nav.primary {
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

nav.primary ul.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

nav.primary ul.nav-menu li {
  display: flex;
  justify-content: center;
  margin: 0;
}

nav.primary ul.nav-menu li.parent a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 32px;
  font-size: 20px;
  font-weight: var(--medium);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

header.header.scrolled nav.primary ul.nav-menu li.parent a {
  padding: 20px;
}

nav.primary ul.nav-menu li a::after,
nav.primary ul.nav-menu li:hover a::after,
nav.primary ul.nav-menu li:focus a::after,
nav.primary ul.nav-menu li.parent > .active::after {
  position: absolute;
  content: "";
  display: block;
  opacity: 0;
  width: 100%;
  background: var(--primary);
  height: 3px;
  bottom: 18px;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

nav.primary ul.nav-menu li:hover a,
nav.primary ul.nav-menu li > a.active::after {
  color: var(--primary);
}

.body-wrapper.home nav.primary ul.nav-menu li:hover > a,
.body-wrapper.home nav.primary ul.nav-menu li > a.active::after,
.body-wrapper.about nav.primary ul.nav-menu li:hover > a,
.body-wrapper.about nav.primary ul.nav-menu li > a.active::after,
.body-wrapper.campaign-template nav.primary ul.nav-menu li:hover > a,
.body-wrapper.campaign-template nav.primary ul.nav-menu li > a.active::after {
  color: var(--pale-blue);
}

nav.primary ul.nav-menu li.parent:hover > a::after,
nav.primary ul.nav-menu li.parent:focus > a::after,
nav.primary ul.nav-menu li.parent > a.active::after {
  display: block;
  opacity: 1;
  width: 100%;
  background: var(--primary);
  height: 3px;
  transform: translateY(calc(100% + 10px));
}

.body-wrapper.home nav.primary ul.nav-menu li.parent:hover > a::after,
.body-wrapper.home nav.primary ul.nav-menu li.parent:focus > a::after,
.body-wrapper.home nav.primary ul.nav-menu li.parent > .active::after,
.body-wrapper.about nav.primary ul.nav-menu li.parent:hover > a::after,
.body-wrapper.about nav.primary ul.nav-menu li.parent:focus > a::after,
.body-wrapper.about nav.primary ul.nav-menu li.parent > .active::after,
.body-wrapper.campaign-template
  nav.primary
  ul.nav-menu
  li.parent:hover
  > a::after,
.body-wrapper.campaign-template
  nav.primary
  ul.nav-menu
  li.parent:focus
  > a::after,
.body-wrapper.campaign-template
  nav.primary
  ul.nav-menu
  li.parent
  > .active::after {
  background: var(--pale-blue) !important;
}

.body-wrapper.home nav.primary ul.nav-menu li a.active::after {
  display: none;
}

.body-wrapper.home nav.primary ul.nav-menu li:hover a.active::after {
  display: block;
}

nav.primary ul.nav-menu li .primary-dropdown-menu {
  position: absolute;
  transform: translateY(-200%);
  top: 83%;
  width: 100%;
  left: 0;
  background-color: var(--primary);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

header.header.scrolled nav.primary ul.nav-menu li .primary-dropdown-menu {
  top: 93%;
}

nav.primary ul li .primary-dropdown-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

nav.primary ul li .primary-dropdown-menu ul li {
  display: inline-block;
  flex: 1;
  padding: 50px;
  border-right: 1px solid var(--pale-blue);
  margin: 0;
  transition: all 0.5s ease-in-out;
}

nav.primary ul li:nth-child(1) .primary-dropdown-menu ul li:hover {
  background: linear-gradient(
    122deg,
    rgba(32, 35, 73, 1) 0%,
    rgba(36, 107, 144, 1) 100%
  );
}

nav.primary ul li .primary-dropdown-menu ul li:last-child {
  border-right: 0;
}

nav.primary ul.nav-menu li .primary-dropdown-menu li a {
  padding: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

nav.primary ul li .primary-dropdown-menu ul li h3 {
  font-size: 36px;
  color: var(--pale-blue);
  margin-bottom: 0.75rem;
}

nav.primary ul li .primary-dropdown-menu ul li p {
  font-size: 18px;
  max-width: 15rem;
  color: var(--white);
  margin-bottom: 0;
}

nav.primary ul li .primary-dropdown-menu ul li a {
  padding: 0;
}

nav.primary ul li .primary-dropdown-menu ul li a,
nav.primary ul li:hover .primary-dropdown-menu ul li a {
  background: none;
}

nav.primary ul li .primary-dropdown-menu ul li,
nav.primary ul li .primary-dropdown-menu ul li a {
  justify-content: flex-start;
  align-items: center;
}

nav.primary ul li .primary-dropdown-menu ul li a {
  display: block;
  background: none !important;
  width: 100%;
  font-size: 18px;
}

nav.primary ul li:hover .primary-dropdown-menu {
  transform: translateY(0);
  border-top: 1px solid var(--pale-blue);
  border-bottom: 1px solid var(--pale-blue);
  opacity: 1;
}

@media screen and (min-width: 1140px) {
  nav.primary ul li:nth-child(2) .primary-dropdown-menu ul li.secondary ul {
    flex-direction: column;
  }

  nav.primary ul li:nth-child(2) .primary-dropdown-menu ul li.secondary ul li {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
  }

  nav.primary
    ul
    li:nth-child(2)
    .primary-dropdown-menu
    ul
    li.secondary
    ul
    li
    a {
    padding: 10px 20px !important;
    transition: color 0.3s ease-in-out;
    color: var(--white);
  }

  nav.primary
    ul
    li:nth-child(2)
    .primary-dropdown-menu
    ul
    li.secondary:nth-child(2)
    ul {
    display: block;
    column-count: 2;
    flex-direction: unset;
  }

  nav.primary
    ul
    li:nth-child(2)
    .primary-dropdown-menu
    ul
    li.secondary:nth-child(2)
    ul
    li {
    flex: 1;
  }

  nav.primary
    ul
    li:nth-child(2)
    .primary-dropdown-menu
    ul
    li.secondary
    ul
    li
    a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  nav.primary
    ul
    li:nth-child(2)
    .primary-dropdown-menu
    ul
    li.secondary
    ul
    li:hover
    a {
    color: var(--pale-blue) !important;
  }

  nav.primary
    ul
    li:nth-child(2)
    .primary-dropdown-menu
    ul
    li.secondary
    ul
    li
    a
    svg {
    margin-left: 0.35rem;
    transition: all 0.3s ease-in-out;
  }

  nav.primary
    ul
    li:nth-child(2)
    .primary-dropdown-menu
    ul
    li.secondary
    ul
    li:hover
    a
    svg {
    margin-left: 0.75rem;
  }

  nav.primary
    ul
    li:nth-child(2)
    .primary-dropdown-menu
    ul
    li.secondary
    ul
    li:hover
    a
    svg
    path {
    fill: var(--pale-blue);
  }
}

/* = mobile navigation --------------------- */
html.is-fixed header.scrolled nav.primary ul.nav-menu li a {
  padding: 1rem 0;
}

header.scrolled .mobile_nav nav.primary ul.nav-menu li:hover > a {
  background: none;
}

.mobile_nav {
  transform: translateX(100%);
  background-color: var(--primary);
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: transform 0.4s ease-in-out;
  overflow-x: hidden;
}

.mobile_nav .content-wrapper {
  width: 100%;
  padding: 0;
}

.mobile_nav.is-active {
  transform: translateX(0);
}

.mobile_nav nav.primary {
  display: block;
  padding: 45px 0 80px;
  overflow-x: hidden;
}

.mobile_nav nav.primary ul.nav-menu {
  position: relative;
  padding: 80px 0 0;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: left;
}

.mobile_nav nav.primary ul.nav-menu li {
  display: block;
  width: 100%;
  padding: 0 29px;
  background: none;
  height: unset;
  margin: 0;
}

.mobile_nav nav.primary ul.nav-menu li:hover {
  background: none !important;
}

.mobile_nav nav.primary ul.nav-menu li a,
.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu .back-secondary {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 0;
  font-family: proxima-nova, sans-serif;
  font-weight: var(--extra-bold);
  font-size: 32px;
  height: unset;
  background: none;
  border-bottom: 1px solid var(--pale-blue);
  color: var(--pale-blue) !important;
  text-transform: lowercase;
}

.mobile_nav nav.primary ul.nav-menu li a:hover {
  color: var(--pale-blue) !important;
}

.mobile_nav nav.primary ul.nav-menu li a.active::after,
.mobile_nav nav.primary ul.nav-menu li.parent.has-dropdown:hover > a:after {
  display: none !important;
}

.mobile_nav nav.primary ul.nav-menu li a p {
  max-width: 18rem;
  font-size: 16.5px;
  color: var(--white);
  margin-bottom: 0;
  text-transform: initial;
}

.mobile_nav nav.primary ul.nav-menu li.secondary a {
  font-weight: var(--regular);
}

.mobile_nav nav.primary ul.nav-menu li a svg {
  position: absolute;
  top: 30px;
  right: 0;
}

.mobile_nav nav.primary ul.nav-menu li.secondary a svg {
  position: absolute;
  top: 24px;
  right: 0;
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu,
.mobile_nav nav.primary ul.nav-menu li .secondary-dropdown-menu {
  transform: translateX(100%);
  position: absolute;
  top: 10%;
  left: auto;
  right: -20px;
  width: 100%;
  height: 100%;
  z-index: 10;
  border: 0;
  padding: 0;
  background-color: var(--primary);
  transition: transform 0.4s ease-in-out;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu,
  .mobile_nav nav.primary ul.nav-menu li .secondary-dropdown-menu {
    top: 5%;
  }
}

.mobile_nav nav.primary ul.nav-menu li .secondary-dropdown-menu {
  top: 0;
  z-index: 20;
}

.mobile_nav
  nav.primary
  ul.nav-menu
  li
  .primary-dropdown-menu
  ul
  li
  .secondary-dropdown-menu
  ul {
  padding-bottom: 300px;
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu.is-active,
.mobile_nav nav.primary ul.nav-menu li .secondary-dropdown-menu.is-active {
  top: 80px !important;
  right: 0;
  transform: translateX(0);
}
.mobile_nav nav.primary ul.nav-menu li .secondary-dropdown-menu.is-active {
  top: 0 !important;
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu li {
  display: block;
  width: 100%;
  border: 0;
  padding: 0 29px;
  height: unset;
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu li a {
  padding: 24px 0;
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu a.top-level,
.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu .back-secondary {
  padding-left: 5rem !important;
}

.mobile_nav
  nav.primary
  ul.nav-menu
  li
  .primary-dropdown-menu
  a.top-level::after {
  position: absolute;
  content: "";
  top: 100%;
  left: -20px;
  width: calc(100% + 40px);
  background: var(--pale-blue);
  height: 1px;
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu a.top-level svg,
.mobile_nav
  nav.primary
  ul.nav-menu
  li
  .primary-dropdown-menu
  .back-secondary
  svg {
  position: absolute;
  top: 30px;
  left: 20px;
  transform: rotate(-180deg);
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu ul {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu ul li {
  margin-bottom: 0;
}

.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu ul li a,
.mobile_nav nav.primary ul.nav-menu li .primary-dropdown-menu ul li ul li a {
  display: block;
  width: 100%;
  font-size: 18px;
  color: var(--white) !important;
}

.mobile_nav .search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.25rem;
  height: 100%;
  width: 100%;
  border: none;
  text-align: center;
}

.mobile_nav .search-container .hs-search-field,
.mobile_nav .search-container .hs-search-field__bar,
.mobile_nav .search-container form {
  width: 100%;
}

.mobile_nav .search-container form {
  position: relative;
  padding: 0;
  background: none;
}

.mobile_nav .search-container form input {
  border-radius: 50px;
  background: #4250be;
  border: 1px solid var(--white);
  color: var(--white);
}

.mobile_nav .search-container form ::placeholder {
  color: var(--white);
}

.mobile_nav .search-container form .search-btn {
  background: none;
  padding: 1rem !important;
  border: 0;
  position: absolute;
  top: 2px;
  right: 0;
}

.mobile_nav button.search {
  display: none;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
}

header.scrolled .hamburger svg line {
  stroke: var(--primary);
}

.mobile_nav .contact-info {
  position: relative;
  padding: 0 29px;
  z-index: 10;
}

.mobile_nav .contact-info h2 {
  font-size: 43px;
  color: var(--pale-blue);
}

.mobile_nav .contact-info .button--primary,
.mobile_nav .contact-info .button--secondary {
  margin: 0 20px;
}

@media screen and (min-width: 1140px) {
  .hamburger,
  .search-btn {
    display: none;
  }

  nav.primary {
    display: flex;
  }

  .mobile_nav {
    display: none;
  }
}

.mobile-btns .hamburger {
  position: relative;
  z-index: 999 !important;
}

.mobile-btns .search-btn {
  width: 28px;
  height: 28px;
  margin-right: 20px;
}

.mobile-btns .search-btn svg {
  width: 100%;
  height: 100%;
}

.mobile-btns .menu {
  height: 30px;
  width: 40px;
  position: relative;
  margin: auto;
  border: 5px solid transparent;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.mobile-btns .bar {
  height: 2px;
  width: 100%;
  display: block;
  position: relative;
  background-color: var(--white);
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mobile-btns .hamburger .bar {
  position: absolute;
}

.mobile-btns .hamburger.is-active .bar {
  background-color: var(--pale-blue);
}

.mobile-btns .hamburger .bar:nth-of-type(1) {
  top: 0;
  -moz-transition: top 0.3s ease 0.3s, -moz-transform 0.3s ease-out 0.1s;
  -o-transition: top 0.3s ease 0.3s, -o-transform 0.3s ease-out 0.1s;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.3s, 0.1s;
  transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
}

.mobile-btns .hamburger .bar:nth-of-type(2) {
  top: 50%;
  -moz-transition: ease 0.3s 0.3s;
  -o-transition: ease 0.3s 0.3s;
  -webkit-transition: ease 0.3s;
  -webkit-transition-delay: 0.3s;
  transition: opacity ease 0.3s 0.3s;
}

.mobile-btns .hamburger .bar:nth-of-type(3) {
  top: 100%;
  -moz-transition: top 0.3s ease 0.3s, -moz-transform 0.3s ease-out 0.1s;
  -o-transition: top 0.3s ease 0.3s, -o-transform 0.3s ease-out 0.1s;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.3s, 0.1s;
  transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
}

.mobile-btns .hamburger.is-active .menu {
  -moz-transition: -moz-transform 0.3s ease 0.5s;
  -o-transition: -o-transform 0.3s ease 0.5s;
  -webkit-transition: -webkit-transform 0.3s ease;
  -webkit-transition-delay: 0.5s;
  transition: transform 0.3s ease 0.5s;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-btns .hamburger.is-active .menu .bar:nth-of-type(1) {
  top: 50%;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: top 0.3s ease 0.1s, -moz-transform 0.3s ease-out 0.5s;
  -o-transition: top 0.3s ease 0.1s, -o-transform 0.3s ease-out 0.5s;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.1s, 0.5s;
  transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
}

.mobile-btns .hamburger.is-active .menu .bar:nth-of-type(2) {
  opacity: 0;
}

.mobile-btns .hamburger.is-active .menu .bar:nth-of-type(3) {
  top: 50%;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transition: top 0.3s ease 0.1s, -moz-transform 0.3s ease-out 0.7s;
  -o-transition: top 0.3s ease 0.1s, -o-transform 0.3s ease-out 0.7s;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.1s, 0.7s;
  transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.7s;
}
section.hero-banner {
  position: relative;
  color: var(--white);
  height: 100%;
  min-height: 100vh;
  z-index: 4;
}

section.hero-banner > .d-flex {
  position: relative;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

section.hero-banner .logo-content {
  margin-top: 5rem;
}

section.hero-banner .logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 50px;
}

section.hero-banner h1,
section.hero-banner p,
section.hero-banner img {
  position: relative;
  z-index: 2;
}

section.hero-banner h1 {
  max-width: 48rem;
}

section.hero-banner p {
  margin-bottom: 58px;
}

@media screen and (max-width: 767px) {
  section.hero-banner h1 {
    margin-bottom: 16px;
  }

  section.hero-banner p {
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 768px) {
  section.hero-banner .logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 992px) {
  section.hero-banner .logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 85px;
  }

  section.hero-banner .logo-content {
    margin-top: 5rem;
  }
}
section.about-hero-banner {
  position: relative;
  color: var(--white);
  min-height: 580px;
}

.campaign-template section.about-hero-banner {
  min-height: auto;
}

section.about-hero-banner > .d-flex {
  position: relative;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

section.about-hero-banner h1,
section.about-hero-banner p,
section.about-hero-banner img {
  position: relative;
  z-index: 2;
}

section.about-hero-banner p {
  position: relative;
  color: var(--white);
  max-width: 38rem;
  margin-bottom: 58px;
}

section.about-hero-banner p::after {
  position: absolute;
  content: "";
  bottom: -50px;
  left: 0;
  width: 250px;
  height: 1.5px;
  background: var(--white);
}

@media screen and (max-width: 767px) {
  section.about-hero-banner {
    min-height: 365px;
  }

  section.about-hero-banner p {
    margin-bottom: 32px;
  }

  section.about-hero-banner p br {
    content: "";
    display: block;
    margin-bottom: 16px;
  }
}
/* Accordion */

.accordion {
  padding: 15px 0;
}

/* Accordion title and content */

.accordion__summary {
  cursor: pointer;
  list-style-type: none;
}

.accordion__summary,
.accordion__content {
  padding: 0.7rem;
}

.accordion__summary h4 {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .accordion__summary h4 {
    max-width: 16rem;
  }
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.card--dark .accordion__summary,
.card--dark .accordion__content,
.card--light .accordion__summary,
.card--light .accordion__content {
  padding: 2.1rem;
}

.accordion__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Accordion icons */

.accordion__summary:-webkit-details-marker {
  display: none;
}

/* Accordion icons - closed icon */

.accordion--caret .accordion__summary:after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "\25BC";
  border-radius: 100px;
  font-size: 40px;
  color: var(--primary);
  width: 34px;
  height: 34px;
}

.accordion--plus .accordion__summary:after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "\002B";
  border-radius: 100px;
  font-size: 40px;
  color: var(--primary);
  width: 34px;
  height: 34px;
}

/* Accordion icons - opened icons */

.accordion--caret[open] .accordion__summary:after {
  content: "\002B";
}

.accordion--plus[open] .accordion__summary:after {
  content: "\002B";
}
.insight-posts-wrapper {
    background-color: var(--white);
}

.custom-select {
    display: none;
}

.insight-posts {
    background-color: var(--white);
}

.grid-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
}

.insight {
    margin-bottom: 20px;
    width: 100%;
    padding: 50px 45px;
    background-color: #d0eae6;
    text-decoration: none !important;
    z-index: 1;
    display: inline-flex;
    position: relative;
    text-align: left;
}

.insight-content-main {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
}

.insight-content-main .insight-content-top {
    flex: 1;
    max-height: 285px;
    overflow: hidden;
}

.cat-readtime {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 20px;
}

.cat-readtime strong.hidden-tag {
    display: none;
}

.cat-readtime p {
    margin-bottom: 0px;
}

.insight:hover::before {
    visibility: visible;
}

.insight a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.insight::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        320deg,
        rgba(39, 162, 199, 0.5) 0%,
        rgba(39, 162, 199, 0) 100%
    );
    visibility: hidden;
    z-index: 2;
}

.insight-title {
    text-align: left;
    margin-bottom: 20px;
}

.insight-content {
    margin-bottom: 0px;
}

.filters-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 32px;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
}

.filter-titles {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.pod-title {
    font-size: 24px;
    line-height: 24px;
}

.filter-titles h3.insight-title {
    margin-bottom: 16px;
}

.filter-pod-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.filter-pod-wrapper form,
.filter-pod-wrapper form fieldset {
    padding: 0 !important;
    border: 0px !important;
}

.filters {
    display: flex;
    width: 100%;
}

form.dropdown {
    display: none;
    width: 100%;
}

form.dropdown select {
    width: 100%;
    font-size: 18px;
    font-weight: var(--bold);
    padding: 18px;
}

.filters button {
    font-size: 18px;
    padding: 10px 24px;
    border: 1px solid #202349;
    border-radius: 32px;
    background-color: #20234900;
    transition: all 0.3s;
    margin-right: 16px;
    margin-bottom: 10px;
    text-transform: lowercase;
}
.filters button a {
    text-decoration: none;
    font-weight: 600;
}
.filters button:hover {
    background-color: #db2885;
    border: 1px solid #db2885;
    color: white;
}

button.active,
.mixitup-control-active {
    background-color: var(--pink) !important;
    border: 1px solid var(--pink) !important;
    color: white;
}
button.active a,
.mixitup-control-active a {
    color: #fff;
}
.clear-all-filters,
.clear-all-filters:hover,
.clear-all-filters:active,
.clear-all-filters a,
.clear-all-filters:hover a,
.clear-all-filters:active a {
    background: transparent !important;
    border: none !important;
    color: var(--pink) !important;
}
@media (min-width: 768px) {
}

.find-pod {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.sub-link {
    width: auto;
}

/* Read More link + Animation */

.read-more-link {
    position: relative;
}

a.insight-link {
    font-size: 24px;
    line-height: 28px;
    text-decoration: none;
}

section.insight-posts-wrapper .post-link span {
    position: relative;
    transition-duration: 0.5s;
}

section.insight-posts-wrapper .post-link span::after {
    height: 1px;
    width: 28px;
    background: #202349;
    content: "";
    position: absolute;
    top: 50%;
    margin-left: 8px;
    transition-duration: 0.5s;
}

section.insight-posts-wrapper .post-link span::before {
    height: 1px;
    width: 0px;
    background: #202349;
    content: "";
    position: absolute;
    top: 50%;
    transition-duration: 0.5s;
    left: -35px;
    margin-right: 8px;
}

section.insight-posts-wrapper .grid-item:hover .post-link span {
    margin-left: 35px;
    transition-duration: 0.5s;
    color: #202349;
}

section.insight-posts-wrapper .grid-item:hover .post-link span::after {
    width: 0;
    transition-duration: 0.5s;
}

section.insight-posts-wrapper .grid-item:hover .post-link span::before {
    width: 28px;
    transition-duration: 0.5s;
}

@media screen and (max-width: 767px) {
    .mixitup-control-active:not(.clear-all-filters),
    .filters button:not(.clear-all-filters):hover {
        background-color: var(--primary) !important;
        border: 1px solid var(--primary) !important;
        color: white;
    }
    .mixitup-control-active a.mixitup-control-active {
        background-color: transparent !important;
        border: none !important;
    }
    .filters-wrapper {
        padding: 0;
        margin-bottom: 4rem;
    }

    .custom-select {
        display: block;
    }

    .insight-title.filter,
    .filter-titles {
        display: none;
    }

    form.dropdown {
        display: block;
    }

    .insight-posts-wrapper {
        flex-direction: column !important;
        position: relative !important;
        justify-content: center;
        align-items: stretch;
        gap: 16px;
        flex-wrap: wrap;
        display: block;
    }

    .insight-posts {
        width: 100% !important;
    }

    .post-link {
        margin-top: 12px;
    }

    .insight {
        padding: 32px;
        width: 100%;
        min-height: 300px;
    }

    .insight:before {
        visibility: visible;
    }

    .insight-title {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 5px;
    }

    .insight-content {
        font-size: 16px;
        line-height: 24px;
        gap: 4px;
    }

    .pod-title {
        display: none;
    }

    .find-pod {
        display: none;
    }

    /* Read More link + Animation */

    .read-more-link {
        position: relative;
    }

    a.insight-link {
        font-size: 18px;
        line-height: 28px;
        text-decoration: none;
    }

    .insight-link span::after {
        height: 1px;
        width: 28px;
        background: #202349;
        content: "";
        position: absolute;
        top: 20px;
        margin-left: 8px;
        transition-duration: 0.5s;
    }
    .insight-link span::before {
        height: 1px;
        width: 0px;
        background: #202349;
        content: "";
        position: absolute;
        top: 20px;
        transition-duration: 0.5s;
        left: -35px;
        margin-right: 8px;
    }
    .mobile-filter-title {
        background: #fff;
        font-size: 0.5em;
        margin-bottom: -13px;
        margin-left: 10px;
        z-index: 20;
        position: relative;
        width: 78px;
        padding-left: 5px;
    }
    select#mobile-select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_147528' data-name='Rectangle 147528' width='24' height='24' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='icon-dropdown' transform='translate(24 24) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Group_8911' data-name='Group 8911' transform='translate(0.353 6.016)'%3E%3Cpath id='Path_28915' data-name='Path 28915' d='M23.489 11.984 11.99.354.353 11.984' transform='translate(-0.353 -0.354)' fill='none' stroke='%23202349' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        background-position: right 15px center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 2;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    select::-ms-expand {
        display: none;
    }
}

.filter dropdown input,
.filter dropdown label {
    display: none;
}
@media (min-width: 768px) {
    .filter dropdown ul {
        padding: 0;
        list-style: none;
    }
    .filter dropdown ul li {
        margin: 0;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    #filter {
        margin-bottom: 80px;
    }
    .filters button {
        width: 100%;
        justify-content: flex-start;
        border-radius: 0;
    }
    #filter h3 {
        display: none;
    }
    .filter > div:first-of-type {
        align-items: center;
        display: flex;
        gap: 50px;
        justify-content: center;
    }

    .filter dropdown {
        display: block;
        left: 0;
        position: absolute;
        top: -15px;
        width: 100%;
    }

    .filter dropdown ul {
        border-left: 1px solid var(--primary);
        border-right: 1px solid var(--primary);
        border-bottom: 1px solid var(--primary);
    }

    .filter dropdown label,
    .filter dropdown ul li {
        display: block;
    }

    .filter dropdown ul li {
        margin: 0;
    }

    .filter dropdown ul li button {
        padding: 20px;
        border: 0;
        border-bottom: 1px solid var(--primary);
        margin: 0;
        text-transform: capitalize !important;
    }

    .filter dropdown ul li:last-child button {
        border: 0 !important;
    }

    .filters .button-active,
    .filters .button-active a,
    .filters button:hover {
        border: 1px solid var(--primary);
    }

    .filter dropdown label {
        padding: 15px 20px;
        border: 1px solid #202349;
    }

    .filter dropdown ul li.active a,
    .filter dropdown ul li:hover a {
        color: #fff;
    }

    .filter dropdown label:hover,
    .filter dropdown ul li:hover {
        cursor: pointer;
    }

    .filter dropdown label {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_147528' data-name='Rectangle 147528' width='24' height='24' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='icon-dropdown' transform='translate(24 24) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Group_8911' data-name='Group 8911' transform='translate(0.353 6.016)'%3E%3Cpath id='Path_28915' data-name='Path 28915' d='M23.489 11.984 11.99.354.353 11.984' transform='translate(-0.353 -0.354)' fill='none' stroke='%23202349' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        background-position: right 15px center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 2;
        left: 0 !important;
    }

    .filter dropdown label:first-of-type {
        font-size: 24px;
        font-weight: 700;
        width: 100%;
    }

    .filter dropdown input ~ ul {
        float: right;
        opacity: 0;
        padding: 0;
        position: relative;
        top: -20px;
        visibility: hidden;
        z-index: 4;
        width: 100%;
    }

    .filter dropdown input:checked ~ ul {
        opacity: 1;

        visibility: visible;
        background: #fff;
    }

    .animate {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }
}

@media screen and (min-width: 768px) {
    .insight {
        width: calc(50% - 2px);
        margin-bottom: 4px;
    }
}

@media screen and (min-width: 1280px) {
    .insight {
        width: calc(33.333333% - 23px);
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) and (1280px) {
    .insight {
        padding: 36px;
    }
}
.anchor-links {
  transition: 0.3s ease-in-out;
}

.anchor-links::before {
  opacity: 0;
  position: absolute;
  height: 200%;
  width: 150vw;
  left: -50vw;
  display: block;
  content: "";
  background-color: #a0d4cd;
  z-index: -1;
  transition: 0.3s ease-in-out;
  top: -100%;
}

.anchor-links.scrolled::before {
  opacity: 1;
}

body.hasScrolledDown.nav-hidden .anchor-links.scrolled {
  top: 0;
}

.anchor-links.scrolled {
  background-color: #a0d4cd;
  position: fixed;
  top: 70px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.anchor-links a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  padding: 0 5px 10px 5px;
  margin: 0 10px 0 0;
  text-decoration: none !important;
}

.anchor-links a.active,
.anchor-links a:hover {
  border-bottom: 3px solid #202349;
  color: #202349;
}

@media (max-width: 1140px) {
  .anchor-links.scrolled {
    top: 100px;
  }
}

@media (max-width: 767px) {
  .anchor-links.scrolled {
    top: 70px;
    padding-bottom: 0;
  }
  .anchor-links a {
    margin: 0 10px 10px 0;
    padding: 0 5px 5px;
  }
}
.hidden {
  display: none;
}

html.our-awards #award_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1700px;
  margin: auto;
}

.award_list_item {
  width: 100%;
  border: 1px solid #202349;
  padding: 32px;
  display: flex !important;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.award_list_item img {
  max-height: 100px;
}

.end-of-results,
.show-more-ajax {
  opacity: 0;
  display: block;
  width: 100%;
}
.award_list_item * {
  margin-bottom: 0 !important;
}
.award_date {
  display: flex;
  gap: 20px;
  align-items: center;
}

#most_recent_award {
  border-top: 1px solid #202349;
  border-bottom: 1px solid #202349;
  margin-bottom: 100px;
  background: none;
  overflow: hidden;
}

.most_recent_award_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 80px 50px 50px;
  width: 50%;
  border-right: 1px solid #202349;
  position: relative;
  z-index: 0;
}
.most_recent_award_inner * {
  margin-bottom: 0 !important;
}

.most_recent_award_inner img {
  max-width: fit-content;
  margin-bottom: 40px !important;
}

.most_recent_award_inner:after {
  width: 50vw;
  height: 101%;
  position: absolute;
  left: 100%;
  top: -1px;
  content: "";
  z-index: -1;
  background-size: cover;
  background-position: center center;
}

.most_recent_award_inner h2 {
  margin-bottom: 24px !important;
}

@media (max-width: 767px) {
  .most_recent_award_inner {
    width: 100%;
    padding: 32px;
    border-right: none;
    align-items: flex-start;
  }

  .most_recent_award_inner:before {
    z-index: -1;
    width: 100%;
    background: rgb(32, 35, 73);
    border-right: none;
    background: linear-gradient(
      48deg,
      rgba(32, 35, 73, 1) 0%,
      rgba(32, 35, 73, 0) 100%
    );
  }

  .most_recent_award_inner img {
    width: 150px;
  }

  .most_recent_award_inner:after {
    left: 0;
    width: 100%;
    z-index: -2;
  }
  #most_recent_award {
    border-top: none;
    border-bottom: none;
    margin-bottom: 50px;
  }
  #most_recent_award * {
    color: #fff;
  }
  #most_recent_award img {
    filter: brightness(100);
    margin-bottom: 20px !important;
  }
  #most_recent_award h2 {
    color: #a0d4cd;
  }
}

@media screen and (min-width: 768px) {
  .award_list_item {
    padding: 55px 50px !important;
    width: calc(50% - 13.33333px);
  }

  #most_recent_award {
    background: rgb(160, 212, 205);
    background: linear-gradient(
      318deg,
      rgba(160, 212, 205, 0.15) 100%,
      rgba(160, 212, 205, 0) 100%
    );
  }
}

@media screen and (min-width: 1280px) {
  .award_list_item {
    width: calc(33.33333% - 25px) !important;
    margin-bottom: 35px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  #most_recent_award {
    border: 1px solid #202349;
    margin: 0 45px 100px;
  }

  .award_list_item {
    padding: 36px !important;
  }

  .award_list_item img {
    max-height: 50px !important;
  }

  .most_recent_award_inner {
    padding: 32px;
  }

  .most_recent_award_inner:after {
    width: calc(50vw - 45px);
  }

  .most_recent_award_inner img {
    width: 98px;
  }
}

@media screen and (min-width: 1366px) {
  .most_recent_award_inner {
    padding: 100px 50px 120px 0;
  }
}
.box-section-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 100%;
  max-width: 1920px;
}

section.box-section-wrapper .intro-content {
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 1350px;
  width: 100%;
}

.box-wrapper {
  width: 100%;
  border-top: 1px solid #202349;
  border-right: 1px solid #202349;
  border-left: 1px solid #202349;
}

.box:last-of-type .box-title,
.box:last-of-type .box-content {
  color: #fff;
}

.box .swirl-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  mix-blend-mode: color;
}

.box:last-of-type,
.box:last-of-type:hover {
  background: url("https://25591942.fs1.hubspotusercontent-eu1.net/hubfs/25591942/img-cant-find-1.webp");
  background-size: cover;
  background-position: bottom center;
}

.box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 70px;
  border-bottom: 1px solid #202349;
  text-decoration: none !important;
}

.box-title {
  flex: 1;
  font-weight: var(--regular) !important;
  transition: transform 0.3s ease-in-out;
}

.box-content {
  margin-top: 16px;
  margin-bottom: 24px;
}

.mobilenav.desktop-show {
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
}

.mobilenav.desktop-show a.button {
  display: none;
}

.mobilenav {
  display: none;
}

.mobilenav a {
  text-decoration: none !important;
}

.arrows {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.box-section-wrapper p.mob-link {
  margin-bottom: 0 !important;
}

.box-wrapper .box:last-of-type p.mob-link {
  color: var(--white);
}

@media screen and (max-width: 767px) {
  section.box-section-wrapper .intro-content {
    padding-right: 29px;
  }

  section.box-section-wrapper .intro-content,
  .box-section-wrapper .mobilenav {
    margin-top: 1rem;
  }

  .cs-view-all-button {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid #202349;
    text-decoration: none !important;
  }

  .box-wrapper {
    border: none;
  }

  .box-wrapper .box {
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #202349;
    border-left: 1px solid #202349;
    border-bottom: 1px solid #202349;
    height: auto;
    padding: 36px;
  }

  .desktop-link {
    display: none;
  }

  .mobilenav.desktop-show a.button {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .box-wrapper .box {
    height: 250px;
  }

  .box-section-wrapper .mobilenav {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 45px;
  }
}

@media screen and (min-width: 768px) {
  .box-wrapper.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, 250px);
    width: 100%;
  }

  .box-title {
    margin-bottom: 0;
  }

  .box {
    padding: 0 45px;
  }

  .box:hover {
    background: linear-gradient(
      320deg,
      rgba(39, 162, 199, 0.5) 0%,
      rgba(39, 162, 199, 0) 100%
    );
  }

  .box:nth-child(3n + 1) {
    border-right: 1px solid #202349;
  }

  .box:nth-child(3n + 2) {
    border-right: 1px solid #202349;
  }
  
  .box:nth-child(3n + 3) {
    border-right: 1px solid #202349;
  }

  .box-section-wrapper .box:last-of-type .desktop-link svg path {
    fill: #fff;
  }

  .box-section-wrapper p.desktop-link {
    position: absolute;
    right: 30px;
    bottom: 20px;
    opacity: 0;
    transition: 0.3s ease-in-out;
    margin: 0;
  }

  .box-section-wrapper p.mob-link {
    display: none;
    margin-bottom: 0 !important;
  }

  .mobilenav.desktop-show .arrows {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
}

@media screen and (min-width: 1920px) {
  .box:nth-child(0) {
    border-left: 1px solid #202349;
  }
  
  .box:nth-child(3n + 3) {
    border-right: 1px solid #202349;
  }
}

@media (hover) {
  .box:hover .box-title {
    transform: translateY(-10px);
  }

  .box-section-wrapper p.desktop-link {
    position: absolute;
    right: 60px;
    bottom: 20px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    margin: 0;
  }

  .box:hover p.desktop-link {
    opacity: 1;
    right: 30px;
  }
}

@media screen and (min-width: 667px) and (max-width: 1280px) {
  section.box-section-wrapper .intro-content {
    padding-left: 45px;
  }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  section.box-section-wrapper .intro-content {
    padding-left: 85px;
  }
}

@media screen and (min-width: 1280px) {
  .box-wrapper.swiper-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 300px);
  }

  .box {
    padding: 0 70px;
  }
}

@media screen and (min-width: 1536px) {
  .box-wrapper.swiper-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 400px);
  }
}
.case-studies-outer-wrapper {
  width: 100%;
}

.case-studies-outer-wrapper .case-swiper.swiper {
  overflow: visible;
}

.cs-title-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.4rem;
  max-width: 1350px;
  margin: auto;
  margin-bottom: 40px;
}

.case-study-post .cs-title-link {
  margin-bottom: 32px;
}

.cs-title {
  width: 80%;
}

h2.cs-section-title {
  margin-bottom: 0px;
}

p.cs-title-copy {
  margin-top: 1rem;
}

.cs-link-container {
  width: 20%;
  text-align: right;
}

.cs-all-link {
  font-size: 28px;
  line-height: 35px;
  text-decoration: none;
}

.case-studies-inner-container {
  max-width: 1700px;
  margin: auto;
}

.case-studies-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}

.case-study {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px;
  overflow: hidden;
  text-decoration: none !important;
  min-height: 480px;
}

@media screen and (min-width: 1366px) {
  .case-study {
    min-height: 700px;
  }
}

.case-study .case-study--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: top right !important;
  background-size: cover !important;
  transition: all 0.3s ease-in-out;
}

.case-study:hover .case-study--bg,
.case-study:focus .case-study--bg {
  transform: scale(1.2);
}

.case-study:hover .case-study::after {
  opacity: 0;
  transition-duration: 0.5s;
}

.case-study:hover h2.cs-headline,
.case-study:hover h2.cs-result {
  transform: translateY(50px);
  opacity: 0;
  transition-duration: 0.5s;
}

.case-study::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #202349;
  opacity: 0.5;
}

.case-study::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(32, 35, 73, 0) 30%,
    rgba(32, 35, 73, 1) 100%
  );
  opacity: 1;
  transition-duration: 0.5s;
}

.cs-content {
  position: relative;
  z-index: 3;
}

.cs-content-top {
  display: flex;

  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: clamp(18px, calc(1.125rem + ((1vw - 3.2px) * 1.875)), 48px);
}

.cs-logo {
  margin-bottom: 120px;
  z-index: 3;
}

h2.cs-headline {
  position: relative;
  color: #9bddda;
  margin-bottom: 24px;
  font-weight: normal !important;
  opacity: 1;
  transition-duration: 0.5s;
  transform: translateY(0);
  z-index: 3;
}

h2.cs-result {
  position: relative;
  color: var(--white);
  font-size: clamp(23px, calc(1.4375rem + ((1vw - 3.2px) * 0.5625)), 32px);
  font-weight: var(--regular) !important;
  margin-bottom: 0;
  opacity: 1;
  transition-duration: 0.5s;
  transform: translateY(0);
  z-index: 3;
}

.cs-img {
  display: flex;
  flex: 2;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 3;
}

.cs-link {
  color: var(--white);
  text-decoration: none;
}

.cs-link span::after {
  background: var(--white);
}

.cs-link span::before {
  background: var(--white);
}

.case-study:hover .cs-link span {
  margin-left: 35px;
  transition-duration: 0.5s;
}

.case-study:hover .cs-link span::after {
  width: 0;
  transition-duration: 0.5s;
}

.case-study:hover .cs-link span::before {
  width: 28px;
  transition-duration: 0.5s;
}

.mobilenav {
  display: none;
}

.cs-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .case-study-post.dnd-section {
    padding-right: 0;
  }

  .case-studies-inner-wrapper {
    overflow: visible;
  }

  .case-study:hover .case-study--bg,
  .case-study:focus .case-study--bg {
    transform: scale(1);
  }

  .case-study:hover .case-study::after {
    opacity: 1;
    transition-duration: 0.5s;
  }

  .case-study:hover h2.cs-headline,
  .case-study:hover h2.cs-result {
    transform: translateY(0);
    opacity: 1;
    transition-duration: 0.5s;
  }

  .cs-link-container {
    display: none;
  }

  h2.cs-headline {
    color: #9bddda;
    font-weight: normal !important;
    opacity: 1;
    transition-duration: 0.5s;
  }

  a.cs-link {
    line-height: 18px;
    color: white;
    text-decoration: none;
  }

  .cs-link span::after,
  .cs-link span::before {
    top: 12px;
  }

  .mobilenav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 29px 0 0;
    margin-top: 1rem;
  }

  .business-goal .mobilenav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 29px 0 0;
  }

  .business-goal .related-post-wrap .mobilenav {
    padding: 15px 0 0 0;
  }

  .arrows {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .cs-view-all-button {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid #202349;
  }
}

@media screen and (min-width: 1366px) {
  .cs-content-top {
    overflow: hidden;
  }
}
.additional_card_repeater_container {
  margin-bottom: 40px;
}
.additional_card_repeater {
  display: flex;
  gap: 1px;
}
.additional_card_repeater_card {
  width: 100%;
  background-color: #202349;
  text-align: center;
  padding: 30px;
}
.additional_card_repeater_card span:nth-of-type(1) {
  font-weight: 800;
  display: block;
  color: #a0d4cd;
}
.additional_card_repeater_card span:nth-of-type(2) {
  display: block;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .additional_card_repeater {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .additional_card_repeater_card {
    width: calc(50% - 1px);
  }

  .additional_card_repeater_container {
    margin-bottom: 0;
  }
}
.hidden {
  display: none;
}

html.case-study-post #award_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1700px;
  margin: auto;
  padding: 0;
}
.award_list_item {
  width: 100%;
  border: 1px solid #202349;
  padding: 32px;
  display: flex !important;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.award_list_item img {
  max-height: 100px;
}
.award_list_item * {
  margin-bottom: 0 !important;
}
.award_date {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  html.case-study-post #award_list {
    gap: 2px 4px;
  }

  .award_list_item {
    margin-bottom: 4px;
    width: calc(50% - 2px);
  }
}

@media screen and (min-width: 1280px) {
  html.case-study-post #award_list {
    gap: 30px;
  }

  html.case-study-post .award_list_item {
    width: calc(33.33333% - 25px);
    margin-bottom: 0px;
  }
}
#most_recent_post {
  border-top: 1px solid #202349;
  border-bottom: 1px solid #202349;
  background: none;
  overflow: hidden;
}

.most_recent_post_inner {
  display: flex;
  flex-direction: column;
  padding: 80px 50px 80px 50px;
  width: 50%;
  border-right: 1.5px solid #202349;
  position: relative;
  z-index: 0;
}

.most_recent_post_inner * {
  margin-bottom: 0 !important;
}

.most_recent_post_inner img {
  display: block;
  width: 150px;
  max-width: fit-content;
  margin-bottom: 40px !important;
}

.most_recent_post_inner .cs-logo-mobile {
  display: none;
  width: 150px;
  max-width: fit-content;
}

.most_recent_post_inner:after {
  width: 50vw;
  height: 101%;
  position: absolute;
  left: 100%;
  top: -1px;
  content: "";
  z-index: -1;
  background-size: cover !important;
  background-position: center !important;
}

.most_recent_post_inner h2 {
  margin-bottom: 24px !important;
}

.most_recent_post_inner h4 {
  margin-bottom: 54px !important;
}

#most_recent_post .cs-link {
  color: var(--primary);
  text-decoration: none;
}

#most_recent_post .cs-link span::after {
  height: 1px;
  width: 28px;
  background: var(--primary);
  content: "";
  position: absolute;
  top: 50%;
  margin-left: 8px;
  transition-duration: 0.5s;
}

#most_recent_post .cs-link span::before {
  height: 1px;
  width: 0px;
  background: var(--primary);
  content: "";
  position: absolute;
  top: 50%;
  transition-duration: 0.5s;
  left: -35px;
  margin-right: 8px;
}

#most_recent_post h2,
#most_recent_post h4 {
  transition: 0.5s ease-in-out;
}

#most_recent_post:hover .cs-link span {
  margin-left: 35px;
  transition-duration: 0.5s;
}

#most_recent_post:hover .cs-link span::after {
  width: 0;
  transition-duration: 0.5s;
}

#most_recent_post:hover .cs-link span::before {
  width: 28px;
  transition-duration: 0.5s;
}

@media (max-width: 767px) {
  #most_recent_post:hover .most_recent_post_inner:after {
    transform: scale(1.2);
  }

  .most_recent_post_inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
      180deg,
      rgba(32, 35, 73, 0) 30%,
      rgba(32, 35, 73, 1) 100%
    );
    opacity: 1;
    transition-duration: 0.5s;
  }

  .most_recent_post_inner .cs-logo-mobile {
    display: block;
  }

  .most_recent_post_inner .cs-logo-desktop {
    display: none;
  }

  #most_recent_post h2 {
    font-size: 24px;
    font-weight: 400 !important;
    line-height: 24px;
    opacity: 1;
    transition-duration: 0.5s;
    margin-bottom: 16px !important;
  }

  #most_recent_post h4 {
    font-size: 24px;
    font-weight: 400 !important;
    line-height: 24px;
    opacity: 1;
    margin-bottom: 64px !important;
  }

  #most_recent_post:hover h2,
  #most_recent_post:hover h4 {
    transform: translateY(50px);
    opacity: 0;
    transition: 0.5s ease-in-out;
  }
  .most_recent_post_inner {
    width: 100%;
    padding: 36px;
    border-right: none;
    overflow: hidden;
    z-index: 1;
    gap: 0;
  }
  .most_recent_post_inner:before {
    z-index: -1;
    width: 100%;
    background: rgb(32, 35, 73);
    border-right: none;
    background: linear-gradient(
      48deg,
      rgba(32, 35, 73, 1) 0%,
      rgba(32, 35, 73, 0) 100%
    );
  }
  .most_recent_post_inner:after {
    left: 0;
    width: 100%;
    z-index: -2;
    background-position: 100% 0 !important;
    background-size: cover !important;
    transition: all 0.3s ease-in-out;
  }
  #most_recent_post {
    border-top: none;
    border-bottom: none;
    margin-bottom: 50px;
  }
  #most_recent_post * {
    color: #fff;
  }
  #most_recent_post img {
    margin-bottom: 120px !important;
  }
  #most_recent_post h2 {
    color: #a0d4cd;
  }
  .post_list_item {
    width: 100%;
    padding: 25px;
  }

  .most_recent_post_inner .cs-link span::after,
  .most_recent_post_inner .cs-link span::before {
    background: var(--white) !important;
  }
}

@media screen and (min-width: 768px) {
  #most_recent_post {
    background: rgb(160, 212, 205);
    background: linear-gradient(
      318deg,
      rgba(160, 212, 205, 0.15) 100%,
      rgba(160, 212, 205, 0) 100%
    );
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  #most_recent_post {
    border: 1px solid #202349;
    margin: 0 45px;
  }

  .most_recent_post_inner {
    padding: 32px;
  }

  .most_recent_post_inner:after {
    width: calc(50vw - 45px);
  }

  .most_recent_post_inner img {
    width: 98px;
  }
}

@media screen and (min-width: 1366px) {
  .most_recent_post_inner {
    padding: 100px 50px 120px 0;
  }
}
.case-study-post header.header {
    background: var(--white) !important;
}

.case_study_container {
    width: 70%;
    background: #fff;
    padding-right: 50px;
    padding-bottom: 100px;
    padding-top: 45px;
}

.case_study_image.scrolled {
    position: absolute;
}

.case_study_image {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    width: 34%;
    height: 100%;
}
.case_study_image img {
    width: 100%;
    object-fit: cover;
    height: 100% !important;
    object-position: center;
}
.card_repeater_container {
    margin-bottom: 150px;
}
.card_repeater {
    display: flex;
    gap: 1px;
    position: absolute;
    max-width: 1350px;
    width: 100%;
    margin-right: 20px;
    margin-top: 28px;
}
.card_repeater_card {
    width: 100%;
    background-color: #d0eae6;
    text-align: center;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card_repeater_card span:nth-of-type(1) {
    min-height: 0vw;
    font-weight: 800;
    display: block;
    line-height: 1.3;
}
.card_repeater_card span:nth-of-type(2) {
    display: block;
    line-height: 1.3;
}
.anchor_links {
    max-width: 1280px;
    width: 100%;
    transition: 0.3s ease-in-out;
    z-index: 10;
}

.anchor_links::before {
    opacity: 0;
    position: absolute;
    width: 150vw;
    left: -50vw;
    display: block;
    content: "";
    background-color: #a0d4cd;
    z-index: -1;
    transition: 0.3s ease-in-out;
    top: -100%;
}
.anchor_links.scrolled::before {
    opacity: 1;
    height: 200%;
    z-index: 10;
}

body.hasScrolledDown.nav-hidden .anchor_links.scrolled {
    top: 0;
}

.anchor_links.scrolled {
    background-color: #a0d4cd;
    position: fixed;
    top: 70px;
    width: 100%;
    max-width: 1280px;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 15;
}

.anchor_links ul {
    position: relative;
    z-index: 20;
}

.anchor_links a.active,
.anchor_links a:hover {
    border-bottom: 3px solid #202349;
    color: #202349;
    text-decoration: none !important;
}

.anchor_links {
    margin-bottom: 80px;
}
.anchor_links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    padding: 0 5px 10px 5px;
    margin: 0 10px 0 0;
    z-index: 10;
}
.anchor_links a:hover {
    border-bottom: 3px solid #202349;
    color: #202349;
}

.case_study_breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.case_study_breadcrumb a {
    font-size: 18px;
    font-weight: var(--bold);
    color: #27a2c7;
    text-decoration: none;
}

.case_study_breadcrumb strong {
    font-size: 18px;
    font-weight: var(--bold);
    text-decoration: none;
    text-transform: lowercase;
}

@media (max-width: 1023px) {
    .card_repeater_card {
        height: 148px;
    }

    .case_study_breadcrumb_logo {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        margin-top: 20px;
    }
    .case_study_breadcrumb_logo img {
        height: 50px !important;
        width: auto;
    }
    .case_study_breadcrumb {
        font-size: 14px;
    }
    .sidebar_content {
        margin: 50px 0 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1140px) {
    .case_study_header_wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
    .case_study_image {
        position: relative;
        width: calc(100% + 90px);
        margin: 0 -45px;
    }
    .case_study_image img {
        display: block;
    }
    .case_study_breadcrumb {
        margin-bottom: 0;
    }
    .case_study_container {
        width: 100%;
    }
    .over_hide_tablet {
        overflow: hidden;
    }
    .card_repeater {
        position: relative;
    }
    .case_study_container {
        padding-right: 0;
    }
    .case-study-post main#main-content {
        padding-top: 85px !important;
    }
    .sticky-container {
        flex-direction: column;
    }
    .sidebar {
        position: relative;
        padding: 0 45px;
    }
    .sidebar_content {
        max-width: 100% !important;
        margin: 40px 0 !important;
    }
    .images .swiper-wrapper {
        display: flex !important;
    }
    .images {
        padding-right: 0 !important;
    }
    .case_study_image.scrolled {
        position: relative !important;
    }
}

@media (max-width: 767px) {
    .anchor_links a {
        margin-right: 0;
    }
    .case_study_breadcrumb {
        margin-bottom: 0;
    }

    .case_study_breadcrumb a,
    .case_study_breadcrumb strong,
    .case_study_breadcrumb span {
        font-size: 12px;
    }

    .case_study_container {
        width: 100%;
        padding: 0;
    }
    .card_repeater {
        position: relative;
        flex-wrap: wrap;
        margin-bottom: 80px;
    }
    .card_repeater_card {
        position: relative;
        width: calc(50% - 1px);
    }
    .case_study_image {
        position: relative;
        width: calc(100% + 90px);
        margin: 0 -45px;
    }
    .case_study_header_wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
    .card_repeater_card span:nth-of-type(1) {
        font-size: 20px;
    }
    .card_repeater_card span:nth-of-type(2) {
        font-size: 16.5px;
    }
    .card_repeater_container {
        margin-bottom: 50px;
    }
    .anchor_links {
        font-size: 14px;
    }
    .card_repeater_card span:nth-of-type(1) {
        font-size: 20px;
    }
    .card_repeater_card span:nth-of-type(2) {
        font-size: 16.5px;
    }
}

@media screen and (min-width: 992px) {
    .card_repeater {
        width: 80%;
    }
}

@media screen and (min-width: 1366px) {
    .card_repeater_card {
        height: 169px;
    }
}
.hidden {
  display: none;
}
#list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tema_list_wrapper {
  min-height: 407px;
}
#filter {
  margin-bottom: 40px;
}
.list_item {
  width: calc(25% - 20px);
}
.list_item img {
  width: 100%;
}
.list_details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.name {
  font-size: 24px;
  font-weight: 800;
  margin: 10px 0;
}
.socials {
}

.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.752' height='19.295' viewBox='0 0 20.752 19.295'%3E%3Cg id='icon-linkedin-team' transform='translate(0)'%3E%3Cpath id='Path_29586' data-name='Path 29586' d='M278.683 396.685h-4.212V383.431h4.02v1.978a5.062 5.062 0 0 1 2.368-1.726 6.251 6.251 0 0 1 4.389.178 3.945 3.945 0 0 1 2.322 3.354 17.773 17.773 0 0 1 .19 2.524c.025 2.291.008 4.582.008 6.924h-4.245c0-.181 0-.353 0-.525-.024-2.343-.016-4.688-.086-7.03a2 2 0 0 0-1.909-2.186 2.283 2.283 0 0 0-2.721 1.963 10.042 10.042 0 0 0-.118 1.628C278.675 392.558 278.683 394.6 278.683 396.685Z' transform='translate(-267.022 -377.39)' fill='%23202349'/%3E%3Cpath id='Path_29587' data-name='Path 29587' d='M204.448 397.287V384.044h4.344v13.243Z' transform='translate(-204.43 -377.993)' fill='%23202349'/%3E%3Cpath id='Path_29588' data-name='Path 29588' d='M206.482 331.954a2.141 2.141 0 0 1-2.2-2.183 2.2 2.2 0 1 1 4.39-.018A2.143 2.143 0 0 1 206.482 331.954Z' transform='translate(-204.279 -327.552)' fill='%23202349'/%3E%3C/g%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  margin-left: 10px;
  background-repeat: no-repeat;
}
.email {
  width: 25px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg id='Path_29584' data-name='Path 29584' xmlns='http://www.w3.org/2000/svg' width='24.661' height='20.205' viewBox='0 0 24.661 20.205'%3E%3Cpath id='Path_29697' data-name='Path 29697' d='M972.307 532.5H954.238a3.318 3.318 0 0 0-3.286 3.212v.1a.379.379 0 0 0 0 .125V549.41a3.307 3.307 0 0 0 3.286 3.3h18.068a3.322 3.322 0 0 0 3.3-3.31V535.81A3.331 3.331 0 0 0 972.307 532.5Zm-18.054 2.086h18.054a1.229 1.229 0 0 1 1.123.751l-10.15 7.134-10.151-7.134A1.2 1.2 0 0 1 954.252 534.586Zm19.275 14.81a1.233 1.233 0 0 1-1.22 1.224H954.252a1.224 1.224 0 0 1-1.22-1.224v-11.57l9.651 6.772a1.073 1.073 0 0 0 1.193 0l9.651-6.772Z' transform='translate(-950.946 -532.5)' fill='%23202349'/%3E%3C/svg%3E");
}
.list_roles {
  font-size: 19px;
  font-weight: 200;
}

.filters {
  width: 100%;
}

.filters button {
  background-color: #20234900;
  border: 1px solid #202349;
  border-radius: 32px;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 10px 24px;
  text-transform: lowercase;
  transition: all 0.3s;
}
.filters button a {
  text-decoration: none;
  font-weight: 600;
}
.filters button:hover {
  background-color: #db2885;
  border: 1px solid #db2885;
  color: white;
}
.filters button:hover a {
  color: white;
}
.filters .button-active {
  background-color: #db2885;
  border: 1px solid #db2885;
  color: white;
}
.filters .button-active a {
  color: #fff;
  border: 0;
}
.filters .clear-all-filters {
  background: transparent !important;
  border: none !important;
}
.filters .clear-all-filters a {
  color: #db2885 !important;
}
.filters .clear-all-filters:hover a {
  text-decoration: underline;
}
.end-of-results,
.show-more-ajax {
  display: none;
  width: 100%;
}
.show-more-ajax {
  border: 1px solid #202349;

  padding: 10px;
  margin: auto;
  width: 130px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 50px;
  text-align: center;
}
.show-more-ajax:hover,
.show-more-ajax:focus,
.show-more-ajax:active {
  background-color: #db2885;
  border: 1px solid #db2885;
  color: white;
}
@media (max-width: 767px) {
  .show-more-ajax {
    display: block;
  }
  .list_item {
    width: calc(50% - 1px);
  }
  #list {
    gap: 20px 2px;
  }
  .name {
    font-size: 14px;
  }
  .list_roles {
    font-size: 10px;
  }
  .email {
    width: 20px;
    height: 16px;
    margin: 0 10px 0 0;
  }
  .linkedin {
    width: 17px;
    height: 16px;
    margin: 0 10px 0 0;
  }
  .list_details,
  .list_roles {
    margin: 0 5px;
  }

  .filters button {
    justify-content: flex-start;
  }

  .filters .clear-all-filters {
    background: var(--pink) !important;
    color: var(--white) !important;
  }

  .filters .clear-all-filters:hover a,
  .filters .clear-all-filters a {
    color: var(--white) !important;
  }
}

.filter dropdown input,
.filter dropdown label {
  display: none;
}
@media (min-width: 768px) {
  .filter dropdown ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
  }
  .filter dropdown ul li {
    margin: 0 16px 0 0;
    display: inline-block;
  }

  .filters .clear-all-filters {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  #filter {
    margin-bottom: 5.5rem;
  }
  .filters button {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0;
  }
  #filter h3 {
    display: none;
  }
  .filter > div:first-of-type {
    align-items: center;
    display: flex;
    gap: 50px;
    justify-content: center;
  }

  .filter dropdown {
    display: block;
    left: 0;
    position: absolute;
    top: -15px;
    width: 100%;
  }

  .filter dropdown ul {
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
  }

  .filter dropdown label,
  .filter dropdown ul li {
    display: block;
  }

  .filter dropdown ul li {
    margin: 0;
  }

  .filter dropdown ul li button {
    padding: 18px 20px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--primary);
    margin: 0;
    text-transform: capitalize !important;
    justify-content: flex-start;
  }

  .filter dropdown ul li:last-child button {
    border: 0 !important;
  }

  .filters .button-active,
  .filters button:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
  }

  .filter dropdown label {
    padding: 15px 20px;
    border: 1px solid #202349;
  }

  .filter dropdown ul li.active a,
  .filter dropdown ul li:hover a {
    color: #fff;
  }

  .filter dropdown label:hover,
  .filter dropdown ul li:hover {
    cursor: pointer;
  }

  .filter dropdown label {
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
  }
  .filter dropdown label:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_147528' data-name='Rectangle 147528' width='24' height='24' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='icon-dropdown' transform='translate(24 24) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Group_8911' data-name='Group 8911' transform='translate(0.353 6.016)'%3E%3Cpath id='Path_28915' data-name='Path 28915' d='M23.489 11.984 11.99.354.353 11.984' transform='translate(-0.353 -0.354)' fill='none' stroke='%23202349' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: 7px;
    width: 40px;
    height: 30px;
    z-index: 99999;
    transform: rotate(0deg);
    transition: all 0.3s;
  }
  .filter dropdown input:checked ~ label:after {
    transform: rotate(180deg);
  }

  .filter dropdown label:first-of-type {
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    padding: 18px 20px !important;
    background: none;
  }

  .filter dropdown input ~ ul {
    float: right;
    opacity: 0;
    padding: 0;
    position: relative;
    top: -20px;
    visibility: hidden;
    z-index: 4;
    width: 100%;
  }

  .filter dropdown input:checked ~ ul {
    opacity: 1;
    top: 0;
    visibility: visible;
    background: #fff;
  }

  .insights .filter dropdown input:checked ~ ul {
    opacity: 1;
    top: -18px;
    visibility: visible;
    background: #fff;
  }

  .animate {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.case-studies-outer-wrapper {
  width: 100%;
}

.cs-title-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.4rem;
  max-width: 1350px;
}

.cs-title {
  width: 80%;
}

h2.cs-section-title {
  margin-bottom: 0px;
}

p.cs-title-copy {
  margin-top: 1rem;
}

.cs-link-container {
  width: 20%;
  text-align: right;
}

.cs-all-link {
  font-size: 28px;
  line-height: 35px;
  text-decoration: none;
}
.case-studies-inner-container {
  max-width: 1700px;
  margin: auto;
}

.case-studies-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}

.mobilenav {
  display: none;
}

@media screen and (max-width: 767px) {
  .case-studies-inner-wrapper {
    overflow: visible;
  }

  .cs-title {
    width: 100%;
  }

  .case-study:hover .case-study--bg,
  .case-study:focus .case-study--bg {
    transform: scale(1);
  }

  .case-study:hover .case-study::after {
    opacity: 1;
    transition-duration: 0.5s;
  }

  .case-study:hover h3.cs-headline,
  .case-study:hover h2.cs-result {
    transform: translateY(0);
    opacity: 1;
    transition-duration: 0.5s;
  }

  .cs-link-container {
    display: none;
  }

  .cs-logo {
    width: 96px;
    height: auto;
    margin-bottom: 120px;
  }

  h2.cs-headline {
    color: #9bddda;
    line-height: 24px;
    margin-bottom: 16px;
    font-weight: normal !important;
    opacity: 1;
    transition-duration: 0.5s;
  }

  h2.cs-result {
    font-size: clamp(23px, calc(1.4375rem + ((1vw - 3.2px) * 0.5625)), 32px);
    color: white;
    font-weight: normal !important;
    opacity: 1;
    transition-duration: 0.5s;
  }

  a.cs-link {
    font-size: 18px;
    line-height: 18px;
    color: white;
    text-decoration: none;
  }

  .mobilenav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
  }

  .arrows {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .cs-view-all-button {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid #202349;
  }

  .case-study-container > .case-study {
    width: 100% !important;
  }
}

.case-study-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .case-study-container > .case-study {
    width: calc(50% - 1px);
  }
}

@media screen and (min-width: 992px) {
  .case-study-container > .case-study {
    width: calc(33.33333% - 1px);
  }
}

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeScaleOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

.case-study-index .case-study {
  animation: fadeScaleIn 0.6s ease;
}
.case-study-index .case-study-out {
  animation: fadeScaleOut 0.6s ease;
}

.lds-spinner {
  opacity: 0;
  position: relative;
  width: 80px;
  height: 80px;
  right: 0;
  left: 0;
  display: block;
  margin: 20px auto;
  transform: scale(0.5);
  transform: all 0.3s;
}
.lds-spinner.active {
  opacity: 1;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #202349;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.video {
  position: relative;
  cursor: pointer;
  padding-bottom: 50px;
}

.video:hover .vid-button.closed {
  display: none;
}

.video:hover .vid-button {
  display: block;
  opacity: 1;
}
.video.paused .play-button {
  opacity: 1;
}
.video .vid-button {
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: 0.2s ease-in-out;
}

.video video {
  width: 100%;
}
.explore-services-outer-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.explore-services-inner-wrapper {
  width: 100%;
  max-width: 1337px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-start;
  gap: 100px;
}

.explore-column-title {
  width: 45%;
}

.explore-column-content {
  width: 55%;
}

.explore-column-content p {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .explore-services-inner-wrapper {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 0px;
  }

  .explore-column-title {
    width: 100%;
  }

  .explore-column-title h4 {
    font-size: 28px;
    line-height: 28px;
  }

  .explore-column-content {
    width: 100%;
  }
}
/* Accordion title and content */

.accordion__summary {
  cursor: pointer;
  list-style-type: none;
}

.accordion__summary,
.accordion__content {
  padding: 0.7rem;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.card--dark .accordion__summary,
.card--dark .accordion__content,
.card--light .accordion__summary,
.card--light .accordion__content {
  padding: 2.1rem;
}

/* Accordion icons */

.accordion__summary:-webkit-details-marker {
  display: none;
}

/* Accordion icons - closed icon */

.accordion--caret .accordion__summary:after {
  content: "\25BC";
}

.accordion--plus .accordion__summary:after {
  content: "\002B";
}

/* Accordion icons - opened icons */

.accordion--caret[open] .accordion__summary:after {
  content: "\25B2";
}

.accordion--plus[open] .accordion__summary:after {
  content: "\00D7";
}
section.featured-content--repeater {
}

section.featured-content--repeater .featured-content--intro {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 29px;
  margin-bottom: 2rem;
}

section.featured-content--repeater .featured-content--intro h2 {
  max-width: 48rem;
  color: var(--pale-blue) !important;
}

section.featured-content--repeater .featured-content--intro p {
  max-width: 36rem;
}

section.featured-content--repeater .featured-item--wrap {
  border-top: 1px solid var(--white);
  align-items: stretch;
}

section.featured-content--repeater .featured-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 32px;
  border-bottom: 1px solid var(--white);
}

section.featured-content--repeater .featured-item .featured-item--img {
  display: block;
  justify-content: center;
  margin-bottom: 0;
}

section.featured-content--repeater .featured-item .featured-item--content h3 {
  color: var(--pale-blue);
  margin-bottom: 1rem;
}

section.featured-content--repeater .featured-item .featured-item--content p {
  color: var(--white);
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  section.featured-content--repeater .featured-item {
    padding: 30px;
  }

  section.featured-content--repeater .featured-item {
    width: calc(100% / 2);
    padding: 30px;
  }

  section.featured-content--repeater .featured-item:nth-child(2n + 1) {
    border-right: 1px solid var(--white);
  }

  section.featured-content--repeater .featured-item:last-child {
    border-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  section.featured-content--repeater .featured-content--intro h2 {
    font-size: 56px;
  }

  section.featured-content--repeater .featured-item {
    width: calc(100% / 5);
  }

  section.featured-content--repeater .featured-item {
    border-right: 1px solid var(--white);
  }

  section.featured-content--repeater .featured-item:last-child {
    border-right: 0px;
    border-bottom: 0;
  }
}

@media screen and (min-width: 1366px) {
  section.featured-content--repeater .featured-item {
    padding: 40px 45px;
  }
}
.sticky-container {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  background: #fff;
}

.images {
  padding-right: 100px;
  flex-grow: 1;
  flex-basis: 50%;
}
.images img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar {
  /* Sticky */
  position: sticky;
  top: 0;
  height: 100%;
  padding-top: 0px;
  flex-basis: 50%;
  flex-grow: 1;
  top: 200px;
  background: #fff;
}
.sidebar_content {
  max-width: 600px;
  margin: 50px 0;
}

.sidebar h1 {
  font-size: 40px;
  line-height: 1;
}
.sidebar ul {
  padding: 0;
}
.sidebar ul li {
  list-style: none;
  padding: 10px;
  color: white;
  font-size: 12px;
  margin-bottom: 1em;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 200ms linear;
}
.sidebar ul li:hover {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.fsi-mobilenav{
      margin-top: -35px;
    z-index: 9;
    position: relative;
    width: 100%;
}
.fsi-mobilenav .arrows{
  justify-content: space-between;
    margin: 0 29px;
}
@media (min-width: 768px) {
  .images .swiper-wrapper {
    display: block;
  }
  .fsi-mobilenav{
    display:none;
  }
}
@media (max-width: 767px) {
  .images {
    padding-right: 0;
    margin: 0 -20px;
  }
  .sticky-container {
    width: 100%;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .sticky-container {
    display: block;
  }
  .images .swiper-slide:after{ 
    content:'';
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    height: 100px;
    background: rgb(32,35,73);
    background: linear-gradient(180deg, rgba(32,35,73,0) 0%, rgba(0,0,0,1) 100%);
     opacity: 0.65;
  }
}
.fade-content {
  width: 100%;
  height: 500px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  margin-top: -500px;
  z-index: 5;
  position: relative;
}

.signup {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 50px;
}

.signup-form {
  background: #fff;
  border: 1px solid #000;
  padding: 4em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.signup-form h3.module-title {
  text-align: center;
}

.signup-form form {
  width: 400px;
  margin: 0 auto;
  background-color: transparent;
  padding: 0;
}

.signup-form h3.form-title {
  display: none;
}

.signup-form form label {
  font-size: 0.95rem;
}

.signup-form form .legal-consent-container p,
.signup-form form .legal-consent-container span {
  font-size: 0.7rem;
  margin: 0;
}

.signup-form form label,
.signup-form form .legal-consent-container p,
.signup-form form .legal-consent-container span {
  color: #fff;
  padding: 0;
}

.signup-form form .legal-consent-container a {
  color: #fff;
  text-decoration: underline;
}

.signup-form form .hs-submit .actions {
  width: 100%;
  margin: 0 auto;
}

.signup-form form .hs-submit .actions input {
  border: 3px solid #fff;
  margin-top: 10px;
}

.signup-form form .hs-submit .actions input:hover {
  border: 3px solid #27b7e2;
  color: #000;
}

.signup-form form .legal-consent-container {
  display: inline-block;
  width: 55%;
  vertical-align: text-top;
  margin-right: 5%;
}

.signup-form form .hs-submit {
  display: inline-block;
  width: 40%;
  vertical-align: text-top;
}

@media (max-width: 767px) {
  .signup-form h3.module-title {
    font-size: 1.5rem;
  }

  .signup-form form {
    width: 100%;
  }
}
.title-wrapper {
  width: 100%;
  display: flex;
  width: 100%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.title-wrapper h2 {
  margin-bottom: 0;
}

.header-copy {
  font-size: 43px;
  line-height: 43px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 1350px;
  text-align: left;
}

.ins-resources-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  border: 1px solid #202349;
}

.ins-resources-column {
  padding: 64px 110px;
  width: 50%;
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 0) 0%,
    rgba(39, 162, 199, 0) 100%
  );
  text-decoration: none !important;
}

.ins-resources-column:first-of-type {
  border-right: 1px solid #202349;
}

.ins-resources-column:hover {
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 0.5) 0%,
    rgba(39, 162, 199, 0) 100%
  );
  -webkit-transition: background 500ms linear;
  -ms-transition: background 500ms linear;
  transition: background 500ms linear;
  cursor: pointer;
}

.ins-blog {
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 0.15) 0%,
    rgba(39, 162, 199, 0) 100%
  );
  position: relative;
  z-index: 6;
}

.ins-blog .cat-readtime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.ins-blog .cat-readtime a,
.ins-blog .cat-readtime p {
  font-weight: 100;
}

.ins-blog .cat-readtime a {
  font-weight: bold;
  text-decoration: none;
}

.ins-blog-link {
  font-size: 22px;
  text-decoration: none;
}

.ins-podcast {
  position: relative;
}

.ins-podcast strong {
  color: #a0d4cd;
}

.ins-podcast video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 0;
}

.ins-podcast::before {
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-color: #202349;
  position: absolute;
  opacity: 0.85;
  z-index: 5;
}

.pod-content {
  position: relative;
  z-index: 5;
}

.ins-podcast h2,
.ins-podcast p,
.ins-podcast a {
  color: var(--white);
  text-decoration: none;
}

.ins-podcast .cat-readtime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.ins-podcast .cat-readtime a,
.ins-podcast .cat-readtime p {
  font-weight: 100;
}

.ins-podcast .cat-readtime a {
  font-weight: bold;
  text-decoration: none;
  color: #a0d4cd;
}

.ins-podcast .cat-readtime p {
  color: #a0d4cd;
}

.ins-podcast .insight-link {
  color: var(--white);
}

.insight-link span,
.ins-podcast .insight-link span {
  position: relative;
  transition-duration: 0.5s;
}

.insight-link span::after,
.ins-podcast .insight-link span::after {
  height: 1px;
  width: 32px;
  background: #202349;
  content: "";
  position: absolute;
  top: 50%;
  margin-left: 4px;
  transition-duration: 0.5s;
}

.ins-podcast .insight-link span::after {
  background: var(--white);
}

.insight-link span::before,
.ins-podcast .insight-link span::before {
  height: 2px;
  width: 0px;
  background: #202349;
  content: "";
  position: absolute;
  top: 18px;
  transition-duration: 0.5s;
  left: -32px;
  margin-right: 4px;
}

.ins-podcast .insight-link span::before {
  background: var(--white);
}

@media (hover) {
  .ins-resources-column:hover .insight-link span,
  .ins-podcast .insight-link:hover span {
    margin-left: 32px;
    transition-duration: 0.5s;
    color: #202349;
  }

  .ins-podcast:hover .insight-link span {
    color: var(--white);
  }

  .ins-resources-column:hover .insight-link span::after {
    width: 0;
    transition-duration: 0.5s;
  }

  .ins-resources-column:hover .insight-link span::before {
    width: 32px;
    transition-duration: 0.5s;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .ins-resources-column {
    padding: 64px 50px;
  }
}

/* Experimental */

@media screen and (max-width: 768px) {
  .ins-header-content {
    padding: 128px 28px 0px 28px;
  }

  .ins-header-content h1 {
    font-size: 51px;
    line-height: 51px;
    margin-bottom: 32px;
  }

  .ins-header-content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 16px;
    width: 100%;
  }

  .ins-header-content hr {
    height: 1px;
    width: 22%;
    border-bottom: 1px solid #202349;
    text-align: left;
    margin-left: 0px;
    margin-bottom: 80px;
  }

  .header-copy {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 0px;
    padding-left: 28px;
  }

  .ins-resources-wrapper {
    flex-direction: column;
    padding: 28px;
    border: 0px;
  }

  .ins-resources-column {
    padding: 32px;
    width: 100%;
    border: 1px solid #202349;
  }

  .ins-resources-column:first-of-type {
    border-bottom: 0px;
  }

  .ins-resources-column h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .ins-blog .cat-readtime a,
  .ins-blog .cat-readtime p {
    font-size: 16px;
    font-weight: 100;
  }

  .ins-podcast .cat-readtime a,
  .ins-podcast .cat-readtime p {
    font-size: 16px;
    font-weight: 100;
  }

  a.ins-pod-link {
    font-size: 18px;
  }

  a.ins-blog-link {
    font-size: 18px;
  }
  .title-wrapper h2 {
    margin-left: 35px;
    margin-bottom: -30px;
  }
}

/* Temporary new insights styles */

section.ins-resources-3-split .ins-custom-image-desktop, section.ins-resources-3-split .ins-custom-image-mobile {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 0;
}

section.ins-resources-3-split .ins-custom-image-desktop {
  display: none;
}

section.ins-resources-3-split .ins-featured:before {
  display: none;
}


@media screen and (min-width: 768px) {
  section.ins-resources-3-split .ins-custom-image-mobile {
    display: none;
  }
  
  section.ins-resources-3-split .ins-custom-image-desktop {
    display: block;
  }

  section.ins-resources-3-split {
    flex-wrap: wrap;
  }
  
  section.ins-resources-3-split .ins-resources-column:first-of-type {
    border-right: none;
    border-bottom: 1px solid #202349;
    width: 100%;
  }
  
  section.ins-resources-3-split .ins-resources-column:nth-of-type(2) {
    border-right: 1px solid #202349;
  }
  
  section.ins-resources-3-split .ins-featured-description {
    max-width: 50%;
  }
  
  section.ins-resources-3-split .ins-featured {
    padding-top: 94px !important;
    padding-bottom: 111px !important;
  }
}
section.office-boxes .office-wrap {
  gap: 5px;
  align-items: stretch;
}

section.office-boxes .office-wrap .office-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 54px 54px;
  background: #d0eae6;
  text-align: center;
  text-decoration: none;
}

section.office-boxes .office-wrap .office-item h3 {
  margin-bottom: 1rem;
}

section.office-boxes .office-wrap .office-item .office-body {
  flex: 1;
  padding-bottom: 24px;
}

section.office-boxes .office-wrap .office-item .office-body p {
  margin-bottom: 0;
}

section.office-boxes .office-wrap .office-item .office-footer {
  position: relative;
  width: 100%;
}

section.office-boxes .office-wrap .office-item .office-footer svg {
  position: absolute;
  right: -30px;
  bottom: -30px;
  transition: all 0.3s ease-in-out;
}

section.office-boxes .office-wrap .office-item:hover .office-footer svg {
  right: -40px;
}

section.office-boxes .office-wrap .office-footer .post-link {
  display: none;
}

section.office-boxes a.post-link {
  font-size: 18px;
  text-decoration: none;
}

section.office-boxes .post-link span {
  position: relative;
  font-size: 18px;
  transition-duration: 0.5s;
}

section.office-boxes .post-link span::after {
  height: 1px;
  width: 28px;
  background: #202349;
  content: "";
  position: absolute;
  top: 20px;
  margin-left: 8px;
  transition-duration: 0.5s;
}

section.office-boxes .post-link span::before {
  height: 1px;
  width: 0px;
  background: #202349;
  content: "";
  position: absolute;
  top: 20px;
  transition-duration: 0.5s;
  left: -35px;
  margin-right: 8px;
}

@media (hover) {
  section.office-boxes .offic-item:hover .post-link span {
    margin-left: 35px;
    transition-duration: 0.5s;
    color: #202349;
  }

  section.office-boxes .office-item:hover .post-link span::after {
    width: 0;
    transition-duration: 0.5s;
  }

  section.office-boxes .office-item:hover .post-link span::before {
    width: 28px;
    transition-duration: 0.5s;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  section.office-boxes .office-wrap .office-item {
    flex: unset;
    width: calc(50% - 3px);
    margin-bottom: 2px;
  }
}

@media (max-width: 767px) {
  .office-boxes .d-flex {
    display: block;
  }

  .office-boxes .d-flex a {
    margin-bottom: 2px;
  }

  section.office-boxes .office-wrap .office-item {
    background: rgb(208, 234, 230);
    background: linear-gradient(
      125deg,
      rgba(208, 234, 230, 1) 0%,
      rgba(90, 198, 193, 1) 100%
    );
    padding: 32px;
    align-items: flex-start;
  }

  section.office-boxes .office-wrap .office-item {
    text-align: left;
  }

  section.office-boxes .office-wrap .office-header,
  section.office-boxes .office-wrap .office-body,
  section.office-boxes .office-wrap .office-footer {
    width: 100%;
  }

  section.office-boxes .office-wrap .office-footer svg {
    display: none;
  }

  section.office-boxes .office-wrap .office-footer .post-link {
    display: block;
  }

  section.office-boxes .post-link span::after,
  section.office-boxes .post-link span::before {
    top: 14px;
  }
}
.or-wrapper {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.or-wrapper h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1350px;
  width: 100%;
}

.other-resource-wrapper {
  height: auto !important;
}

.business-goal .other-resource {
  height: 100%;
}

.business-goal .other-resource .desktop-link {
  opacity: 0;
  bottom: 20px;
  margin: 0;
  opacity: 0;
  position: absolute;
  right: 60px;
  transition: all 0.3s ease-in-out;
}

.business-goal .other-resource .other-resource-title {
  transition: transform 0.3s ease-in-out;
}

@media (hover) {
  .business-goal .other-resource:hover .other-resource-title {
    transform: translateY(-10px);
  }
}

.other-resource:hover {
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 0.5) 0%,
    rgba(39, 162, 199, 0) 100%
  );
}

.resource-top h3 {
  flex: 1;
  font-size: clamp(23px, calc(1.4375rem + ((1vw - 3.2px) * 1.25)), 36px);
  font-weight: var(--regular) !important;
}

.other-resource-content {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 32px;
}

.other-resource p {
  margin-bottom: 24px;
}

.other-resource {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 96px;
  text-decoration: none !important;
}

.business-goal .other-resource {
  display: flex;
  flex-direction: unset;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none !important;
}

.business-goal .other-resource .post-link {
  display: none;
}

.business-goal .other-resource .post-link span::after {
  height: 1px;
  width: 28px;
  background: #202349;
  content: "";
  position: absolute;
  top: 50%;
  margin-left: 8px;
  transition-duration: 0.5s;
}

.business-goal .other-resource .post-link span::before {
  height: 1px;
  width: 0px;
  background: #202349;
  content: "";
  position: absolute;
  top: 50%;
  transition-duration: 0.5s;
  left: -35px;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .business-goal .or-wrapper {
    padding-bottom: 40px;
  }

  .business-goal .other-resource {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-bottom: 1px solid #202349;
    height: 100%;
  }

  .other-resource {
    border-top: 1px solid var(--primary);
    height: auto;
    padding: 32px;
    flex: none;
  }

  .other-resource.add--border {
    border-top: 1px solid var(--primary);
  }
}

@media screen and (max-width: 992px) {
  .business-goal .other-resource:not(:last-of-type) {
    border-right: none;
  }

  .or-wrapper h2 {
    padding: 0 29px !important;
  }

  .business-goal .other-resource {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-left: 1px solid #202349;
    height: auto;
    padding: 32px;
    flex: none;
    min-height: 220px;
  }

  .other-resource {
    height: auto;
    padding: 32px;
    flex: none;
    border-top: 1px solid var(--primary);
  }
}

@media screen and (max-width: 1024px) {
  .business-goal .other-resource.add--border {
    border-top: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
  }

  .business-goal .other-resource {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .business-goal .other-resource .post-link {
    display: inline-block;
  }
}

@media screen and (min-width: 992px) {
  .other-resource-wrapper {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid var(--primary);
  }

  .business-goal .goals-other-resource-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    width: 100%;
    border-top: 1px solid var(--primary);
  }

  .or-wrapper h2 {
    padding: 0 29px !important;
  }

  .other-resource {
    flex: 1;
    padding: 50px;
  }

  .other-resource:nth-child(1) {
    border-right: 1px solid var(--primary);
  }

  .other-resource.add--border {
    border-left: 1px solid var(--primary);
  }

  .business-goal .other-resource:hover .desktop-link {
    opacity: 1;
    right: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .other-resource {
    border-bottom: 1px solid #202349;
  }

  .other-resource.add--border {
    border-left: 1px solid var(--primary);
  }
}

@media screen and (min-width: 1280px) {
  .business-goal .goals-other-resource-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 300px);
  }

  .business-goal .other-resource {
    border-bottom: 0 solid var(--primary);
  }

  .or-wrapper h2 {
    padding: 0 85px !important;
  }

  .resource-top h3 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1536px) {
  .business-goal .goals-other-resource-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 400px);
  }

  .or-wrapper h2 {
    padding: 0 !important;
  }
}

/*@media screen and (max-width: 1280px) {
  .other-resource:not(:last-of-type) {
    border-right: none;
  }

  .or-wrapper .mobilenav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
  }

  .or-wrapper .arrows {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .business-goal .other-resource {
    border-bottom: 1px solid #202349;
    border-left: 1px solid #202349;
    border-top: 1px solid #202349;
    height: auto;
    padding: 36px;
    flex: none;
    font-size: clamp(23px, calc(1.4375rem + ((1vw - 3.2px) * 1.25)), 43px);
    min-height: 250px;
  }

  .business-goal .other-resource .resource-top {
    margin-bottom: 1.5rem;
  }

  .business-goal .other-resource.add--border {
    border-top: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
  }

  .business-goal .other-resource .post-link {
    display: inline-block;
  }

  .other-resource {
    border-bottom: 0px solid #202349;
    border-left: 0px solid #202349;
    border-top: 1px solid #202349;
    height: auto;
    padding: 40px 45px;
    flex: none;
  }

  .or-wrapper h2 {
    padding: 0 45px;
  }

  .other-resource.add--border {
    border-top: 1px solid var(--primary);
    border-left: 0;
  }
}*/
section.page-header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section.page-header .d-flex {
  width: 100%;
}

section.page-header video {
  position: fixed;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  mix-blend-mode: lighten;
  z-index: -1;
}

section.page-header h1 {
  margin-bottom: 32px;
}

section.page-header p {
  max-width: 38rem;
}

section.page-header hr {
  height: 1px;
  width: 22%;
  border-bottom: 1px solid #202349;
  text-align: left;
  margin-left: 0px;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  section.page-header hr {
    height: 1px;
    width: 22%;
    border-bottom: 1px solid #202349;
    text-align: left;
    margin-left: 0px;
    margin-bottom: 80px;
  }
}
.page-nav {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 180px;
  padding: 20px;
  border: 1px solid #000;
  background-color: #fff;
}

.page-nav ul,
.page-nav ul li {
  padding: 0;
  margin: 0;
}

.page-nav ul li {
  list-style: none;
}

.page-nav ul li a {
  text-decoration: none;
}

.mobile-page-nav {
  display: none;
}

@media screen and (max-width: 767px) {
  .page-nav {
    display: none;
  }

  .mobile-page-nav {
    display: block;
    position: fixed;
    transform: translateY(0);
    transition: 0.3s ease-in-out;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px 20px;
    z-index: 10;
    background-color: #fff;
    border-top: 1px solid #000;
  }

  .mobile-page-nav.hide {
    transform: translateY(100%);
  }

  .mobile-page-nav select {
    width: 100%;
  }
}
.related-asset-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #d0eae6;
  margin: 32px 0px;
}

.relasset-content {
  padding: 64px;
  width: 65%;
}

.relasset-content p {
  padding: 0px;
}

.relasset-image {
  width: 35%;
}

.relasset-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: -40px 0px -64px 0px;
}

@media screen and (max-width: 768px) {
  .related-asset-wrapper {
    flex-direction: column;
  }

  .relasset-content {
    padding: 28px;
    width: 100%;
  }

  .relasset-content p {
    padding: 0px;
  }

  .relasset-image {
    width: 100%;
  }

  .relasset-image img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    margin: 0px;
  }
}
section.related-resources {
  width: 100% !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 0px 0px;
  gap: 40px;
  flex-wrap: wrap;
}

section.related-resources .rr-title-copy {
  margin-top: 1rem;
}

section.related-resources .intro-wrap {
  width: 100%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 29px;
}

section.related-resources .rr-title-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.4rem;
  max-width: 1350px;
  margin: auto;
  margin-bottom: 40px;
}

section.related-resources .rr-title {
  width: 80%;
}

section.related-resources .rr-link-container {
  width: 20%;
  text-align: right;
}

section.related-resources .intro-wrap h2 {
  margin-bottom: 0;
}

section.related-resources .related-post-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

section.related-resources .related-post-wrap .button--bordered {
  color: var(--primary) !important;
}

section.related-resources .related-post-wrap .swiper-wrapper {
  justify-content: space-between;
}

section.related-resources .related-post-wrap .related-post {
  transition: all 0.3s ease-in-out;
}

section.related-resources .related-post-wrap a.related-post:hover {
  transform: translate(0, -10px);
}

section.related-resources .related-post-wrap a.related-post:before {
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 0.5),
    rgba(39, 162, 199, 0)
  );
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 2;
}

section.related-resources .related-post-wrap a.related-post:hover:before {
  visibility: visible;
}

section.related-resources .related-post {
  padding: 55px 45px;
  background-color: #d0eae6;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  width: calc(33.33333% - 23px);
  text-decoration: none;
}

section.related-resources .post-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
}

section.related-resources .cat-readtime {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

section.related-resources .cat-readtime p {
  margin-bottom: 0px;
}

section.related-resources .post:hover.post::before {
  visibility: visible;
}

section.related-resources .post::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 0.5) 0%,
    rgba(39, 162, 199, 0) 100%
  );
  visibility: hidden;
  z-index: 2;
}
section.related-resources .post-title {
  text-align: left;
  margin-bottom: 20px;
}

section.related-resources .post-content-top {
  flex: 1;
  max-height: 290px;
  overflow: hidden;
}

section.related-resources .paragraph-content {
  margin-bottom: 0;
}

.read-more-link {
  position: relative;
}

section.related-resources a.post-link {
  text-decoration: none;
}

section.related-resources .post-link span {
  position: relative;
  transition-duration: 0.5s;
}

section.related-resources .post-link span::after {
  height: 1px;
  width: 28px;
  background: #202349;
  content: "";
  position: absolute;
  top: 50%;
  margin-left: 8px;
  transition-duration: 0.5s;
}

section.related-resources .post-link span::before {
  height: 1px;
  width: 0px;
  background: #202349;
  content: "";
  position: absolute;
  top: 50%;
  transition-duration: 0.5s;
  left: -35px;
  margin-right: 8px;
}

section.related-resources .related-post:hover .post-link span {
  margin-left: 35px;
  transition-duration: 0.5s;
  color: #202349;
}

section.related-resources .related-post:hover .post-link span::after {
  width: 0;
  transition-duration: 0.5s;
}

section.related-resources .related-post:hover .post-link span::before {
  width: 28px;
  transition-duration: 0.5s;
}

section.related-resources .mobile-btn-wrap {
  display: none;
}

.mobilenav {
  display: none;
}

@media screen and (max-width: 767px) {
  section.related-resources {
    overflow: visible;
  }

  section.related-resources .swiper-wrapper {
    height: auto;
  }

  section.related-resources .related-post-wrap a.related-post:hover {
    transform: translate(0, 0);
  }

  section.related-resources .related-post-wrap a.related-post:before {
    visibility: visible;
  }
  section.related-resources {
    gap: 32px;
  }

  section.related-resources .view-all-link {
    display: none;
  }

  section.related-resources .related-post {
    padding: 32px;
    width: 100%;
    height: auto;
    background: rgb(208, 234, 230);
    background: linear-gradient(
      152deg,
      rgba(208, 234, 230, 1) 0%,
      rgba(90, 198, 193, 1) 100%
    );
  }

  section.related-resources .cat-readtime {
    font-size: 16.5px;
  }

  .mobilenav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 29px 0 0;
  }

  html.service .related-resources .mobilenav {
    padding: 15px 0 0;
  }

  .arrows {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .cs-view-all-button {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid #202349;
  }

  section.related-resources .post-content {
    gap: 4px;
  }

  section.related-resources .post-link span {
    line-height: 28px;
    text-decoration: none;
  }

  section.related-resources .mobile-btn-wrap {
    display: flex;
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  section.related-resources .swiper-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: flex-start;
    gap: 8px;
  }

  section.related-resources .related-post {
    width: 100% !important;
    padding: 36px;
    max-height: 450px;
    margin-right: 0 !important;
  }
}
.sl-outer-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sl-outer-wrapper .service-wrapper {
  gap: 150px;
  width: 100%;
}

.services {
  flex: 1;
}

.services .service-ct svg {
  width: 30px;
  height: 30px;
  margin-right: 32px;
  transition: margin-right 0.3s ease-in-out;
}

.service-ct {
  padding: 16px 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.service-ct:hover {
  text-decoration: none;
}

.service-ct:hover svg {
  margin-right: 0;
}

.service-title {
  font-size: clamp(20px, calc(1.25rem + ((1vw - 3.2px) * 0.75)), 32px);
  border-left: 0px solid;
  transition-duration: 0.3s;
  font-weight: 100;
  margin-bottom: 0px;
}

.service-ct:hover .service-title {
  border-left: 8px solid #27a2c7;
  padding-left: 8px;
  transition-duration: 0.3s;
}

@media screen and (max-width: 767px) {
  .sl-outer-wrapper .service-wrapper {
    gap: 0;
    width: 100%;
  }
  .sl-inner-wrapper {
    flex-direction: column;
    padding: 28px;
    gap: 0px;
  }

  .services {
    width: 100%;
    flex: unset;
  }

  .service-ct:hover .service-title {
    border-left: 0 solid #27a2c7;
    padding-left: 0;
    transition-duration: 0.3s;
  }
  .services .service-ct svg {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .sl-outer-wrapper .service-wrapper {
    gap: 0;
    width: 100%;
  }
  .sl-inner-wrapper {
    flex-direction: column;
    padding: 28px;
    gap: 0px;
  }

  .services {
    width: 100%;
    flex: unset;
  }
  .services .service-ct svg {
    margin-right: 0;
  }
}
section.benefit-boxes .benefit-wrap {
  gap: 2px;
  align-items: stretch;
}

section.benefit-boxes .benefit-wrap .benefit-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #d0eae6;
  text-align: center;
  text-decoration: none;
}

section.benefit-boxes .benefit-wrap .benefit-item h5 {
  font-size: 32px;
  margin-bottom: 1rem;
}

section.benefit-boxes .benefit-wrap .benefit-item .benefit-body {
  flex: 1;
}

section.benefit-boxes .benefit-wrap .benefit-item .benefit-body p {
  margin-bottom: 0;
}

section.benefit-boxes .benefit-wrap .benefit-item .benefit-footer {
  position: relative;
}

@media screen and (min-width: 768px) {
  section.benefit-boxes .benefit-wrap {
    gap: 10px;
  }
}

@media (max-width: 1280px) {
  section.benefit-boxes .benefit-wrap {
    flex-wrap: wrap;
  }

  section.benefit-boxes .benefit-wrap .benefit-item {
    width: calc(50% - 5px);
    flex: auto;
    padding: 36px;
  }

  section.benefit-boxes .benefit-wrap .benefit-item h5 {
    font-size: 20px;
  }
}
.statistics-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}

.statistic {
  background-color: #202349;
  padding: 28px;
  width: calc(100% / 3);
}

.statistic:nth-child(1) {
  border-right: 2px solid white;
}

.statistic:nth-child(2) {
  border-right: 2px solid white;
}

.statistic h3 {
  color: #a0d4cd;
  margin-bottom: 0px;
  text-align: center;
}

.statistic p {
  color: white;
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .statistic:nth-child(1) {
    border-bottom: 2px solid white;
    border-right: 0px solid;
  }

  .statistic:nth-child(2) {
    border-bottom: 2px solid white;
    border-right: 0px solid;
  }

  .statistics-wrapper {
    flex-direction: column;
  }

  .statistic {
    width: 100%;
  }
}
section.sunburst-two-column {
  position: relative;
}

section.sunburst-two-column .d-flex {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  flex-direction: column;
}

section.sunburst-two-column .col {
  flex: 1;
}

@media screen and (min-width: 992px) {
  section.sunburst-two-column .d-flex {
    flex-direction: row;
  }

  section.sunburst-two-column h2 {
    font-size: 56px;
  }
}
section.supported-charities .intro-content {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

section.supported-charities .charity-wrap {
  max-width: 1700px;
  width: 100%;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

section.supported-charities .charity-item {
  width: 100%;
  padding: 30px 27px;
  background: var(--light-blue);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in-out;
}

section.supported-charities .charity-item--pink {
  background: #FBE9F2;
}

section.supported-charities .charity-item--teal {
  background:#EEF9F8;
}

section.supported-charities .charity-item--navy {
  background:#202349;
  color: #fff;
}

section.supported-charities .charity-item--navy h3 {
  color: #fff !important;
}

section.supported-charities .charity-item--navy .post-link span {
  color: #fff !important;
}

section.supported-charities .charity-item--navy .post-link span::before {
  background: #fff !important;
}

section.supported-charities .charity-item--navy .post-link span::after {
  background: #fff !important;
}


section.supported-charities .charity-item::before {
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 0.5),
    rgba(39, 162, 199, 0)
  );
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

section.supported-charities .charity-item--pink::before {
  background: linear-gradient(
    320deg,
    rgba(240, 169, 206, 0.5),
    rgba(240, 169, 206, 0)
  );
}

section.supported-charities .charity-item--teal::before {
  background: linear-gradient(
    320deg,
    rgba(172, 226, 224, 0.5),
    rgba(172, 226, 224, 0)
  );
}

section.supported-charities .charity-item--navy::before {
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 1),
    rgba(39, 162, 199, 0)
  );
}


section.supported-charities .charity-item .charity-item--img {
  display: block;
  margin-bottom: 32px;
}

section.supported-charities .charity-item .charity-item--top {
  max-height: 200px;
  overflow: hidden;
  margin-bottom: 42px;
}

section.supported-charities .charity-item h3 {
  margin-bottom: 16px;
}

section.supported-charities .charity-item p {
  margin-bottom: 42px;
}

section.supported-charities a.post-link {
  position: relative;
  line-height: 28px;
  text-decoration: none;
}

section.supported-charities .post-link span::after {
  background: #202349;
}

section.supported-charities .post-link span::before {
  background: #202349;
}

@media (hover) {
  section.supported-charities .charity-item:hover {
    transform: translateY(-10px);
  }

  section.supported-charities .charity-item:hover .post-link span {
    margin-left: 32px;
    transition-duration: 0.5s;
    color: #202349;
  }

  section.supported-charities .charity-item:hover .post-link span::after {
    width: 0;
    transition-duration: 0.5s;
  }

  section.supported-charities .charity-item:hover .post-link span::before {
    width: 32px;
    transition-duration: 0.5s;
  }

  section.supported-charities .charity-item:hover::before {
    visibility: visible;
  }
}

@media screen and (max-width: 767px) {
  section.supported-charities .post-link span::after {
    height: 1px;
    width: 32px;
    background: #202349;
    content: "";
    position: absolute;
    top: 50%;
    margin-left: 4px;
    transition-duration: 0.5s;
  }

  section.supported-charities .post-link span::before {
    height: 1px;
    width: 0px;
    background: #202349;
    content: "";
    position: absolute;
    top: 50%;
    transition-duration: 0.5s;
    left: -32px;
    margin-right: 4px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  section.supported-charities .charity-wrap {
    gap: 4px;
  }

  section.supported-charities .charity-item {
    width: calc(100% / 2 - 2px);
    padding: 32px;
  }

  section.supported-charities .charity-item .charity-item--img {
    margin-bottom: 16px;
  }

  section.supported-charities .charity-item h3 {
    margin-bottom: 8px;
  }

  section.supported-charities .charity-item .charity-item--top {
    max-height: unset;
  }

  section.supported-charities .charity-item p {
    margin-bottom: 0;
  }

  .charity-item--img img {
    width: 98px;
  }
}

@media screen and (min-width: 1025px) {
  section.supported-charities .charity-item {
    width: calc(100% / 3 - 20px);
    padding: 60px 54px;
  }
}
.hidden {
  display: none;
}
#team_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.team_list_wrapper {
  min-height: 407px;
}
#team_filter {
  margin-bottom: 40px;
}
.team_list_item {
  width: calc(25% - 20px);
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .team_list_item:not(:nth-of-type(2n + 2)) {
    margin-right: clamp(2px, calc(0.0625rem + ((1vw - 3.9px) * 1.8702)), 1px);
  }
}

@media screen and (min-width: 768px) {
  .team_list_item:not(:nth-of-type(2n + 2)) {
    margin-right: clamp(1px, calc(0.0625rem + ((1vw - 3.9px) * 2.9771)), 1px);
  }
}

@media screen and (min-width: 992px) {
  .team_list_item:not(:nth-of-type(3n + 3)) {
    margin-right: clamp(1px, calc(0.0625rem + ((1vw - 3.9px) * 2.9771)), 1px);
  }
}

@media screen and (min-width: 1024px) {
  .team_list_item:not(:nth-of-type(4n + 4)) {
    margin-right: clamp(
      2px,
      calc(0.0625rem + ((1vw - 3.9px) * 1.8702)),
      25.5px
    );
  }
}

.team_list_item img {
  width: 100%;
}

.team_list_details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team_name {
  font-size: clamp(14px, calc(0.875rem + ((1vw - 3.9px) * 0.7634)), 24px);
  font-weight: 800;
  margin: 0;
}

.team_linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.752' height='19.295' viewBox='0 0 20.752 19.295'%3E%3Cg id='icon-linkedin-team' transform='translate(0)'%3E%3Cpath id='Path_29586' data-name='Path 29586' d='M278.683 396.685h-4.212V383.431h4.02v1.978a5.062 5.062 0 0 1 2.368-1.726 6.251 6.251 0 0 1 4.389.178 3.945 3.945 0 0 1 2.322 3.354 17.773 17.773 0 0 1 .19 2.524c.025 2.291.008 4.582.008 6.924h-4.245c0-.181 0-.353 0-.525-.024-2.343-.016-4.688-.086-7.03a2 2 0 0 0-1.909-2.186 2.283 2.283 0 0 0-2.721 1.963 10.042 10.042 0 0 0-.118 1.628C278.675 392.558 278.683 394.6 278.683 396.685Z' transform='translate(-267.022 -377.39)' fill='%23202349'/%3E%3Cpath id='Path_29587' data-name='Path 29587' d='M204.448 397.287V384.044h4.344v13.243Z' transform='translate(-204.43 -377.993)' fill='%23202349'/%3E%3Cpath id='Path_29588' data-name='Path 29588' d='M206.482 331.954a2.141 2.141 0 0 1-2.2-2.183 2.2 2.2 0 1 1 4.39-.018A2.143 2.143 0 0 1 206.482 331.954Z' transform='translate(-204.279 -327.552)' fill='%23202349'/%3E%3C/g%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  margin-left: 10px;
  background-repeat: no-repeat;
}

.team_email {
  width: 25px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  margin-left: 15px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg id='Path_29584' data-name='Path 29584' xmlns='http://www.w3.org/2000/svg' width='24.661' height='20.205' viewBox='0 0 24.661 20.205'%3E%3Cpath id='Path_29697' data-name='Path 29697' d='M972.307 532.5H954.238a3.318 3.318 0 0 0-3.286 3.212v.1a.379.379 0 0 0 0 .125V549.41a3.307 3.307 0 0 0 3.286 3.3h18.068a3.322 3.322 0 0 0 3.3-3.31V535.81A3.331 3.331 0 0 0 972.307 532.5Zm-18.054 2.086h18.054a1.229 1.229 0 0 1 1.123.751l-10.15 7.134-10.151-7.134A1.2 1.2 0 0 1 954.252 534.586Zm19.275 14.81a1.233 1.233 0 0 1-1.22 1.224H954.252a1.224 1.224 0 0 1-1.22-1.224v-11.57l9.651 6.772a1.073 1.073 0 0 0 1.193 0l9.651-6.772Z' transform='translate(-950.946 -532.5)' fill='%23202349'/%3E%3C/svg%3E");
}

.team_list_roles {
  font-size: clamp(10px, calc(0.625rem + ((1vw - 3.9px) * 0.687)), 19px);
  font-weight: 200;
}

.filters {
  width: 100%;
}

.filters button {
  font-size: 18px;
  padding: 10px 24px;
  border: 1px solid #202349;
  border-radius: 32px;
  background-color: #20234900;
  transition: all 0.3s;
  margin-bottom: 10px;
  text-transform: lowercase;
  width: 100%;
}

.filters button:hover {
  background-color: #db2885;
  border: 1px solid #db2885;
  color: white;
}

.filters .button-active {
  background-color: #db2885;
  border: 1px solid #db2885;
  color: white;
}
.end-of-results,
.show-more-ajax {
  display: none;
  width: 100%;
}
.show-more-ajax {
  border: 1px solid #202349;

  padding: 10px;
  margin: auto;
  width: 130px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 50px;
  text-align: center;
}
.show-more-ajax:hover,
.show-more-ajax:focus,
.show-more-ajax:active {
  background-color: #db2885;
  border: 1px solid #db2885;
  color: white;
}

.team_socials-mobile {
  display: none;
  margin: 0 12px;
}

.team-filter dropdown input,
.team-filter dropdown label {
  display: none;
}

@media (max-width: 1024px) {
  .show-more-ajax {
    display: block;
    opacity: 1;
  }

  .team_email {
    width: 20px;
    height: 16px;
    margin: 0 10px 0 0;
  }

  .team_linkedin {
    width: 17px;
    height: 16px;
    margin: 0 10px 0 0;
  }

  .team_list_details,
  .team_list_roles {
    margin: 0 12px;
  }

  .team_list_roles {
    margin-bottom: 12px;
  }

  .team_socials-mobile {
    display: block;
  }

  .team_socials {
    display: none;
  }

  #team_filter {
    margin-bottom: 100px;
  }

  .team_list_item {
    width: calc(50% - 1px);
    margin-bottom: 24px;
  }

  .team-filter dropdown ul {
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
  }

  #team_filter .filters button {
    width: 100%;
    padding: 18px 20px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--primary);

    justify-content: flex-start;
    margin: 0;
    text-transform: capitalize !important;
  }

  #team_filter .filters .button-active {
    background: var(--primary);
  }

  .filters li:last-child button {
    border-bottom: 0;
  }

  #team_filter h3 {
    display: none;
  }
  .team-filter > div:first-of-type {
    align-items: center;
    display: flex;
    gap: 50px;
    justify-content: center;
  }

  .team-filter dropdown {
    display: block;
    left: 20px;
    position: absolute;
    top: -15px;
    width: calc(100% - 40px);
  }

  .team-filter dropdown label,
  .team-filter dropdown ul li {
    display: block;
  }

  .team-filter dropdown ul li {
    margin: 0px;
  }

  .team-filter dropdown label {
    padding: 20px;
    border: 1px solid #202349;
  }

  .team-filter dropdown ul li.active a,
  .team-filter dropdown ul li:hover a {
    color: #fff;
  }

  .team-filter dropdown label:hover,
  .team-filter dropdown ul li:hover {
    cursor: pointer;
  }

  .team-filter dropdown label {
    position: relative;
    z-index: 2;
  }

  .team-filter dropdown label:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_147528' data-name='Rectangle 147528' width='24' height='24' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='icon-dropdown' transform='translate(24 24) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Group_8911' data-name='Group 8911' transform='translate(0.353 6.016)'%3E%3Cpath id='Path_28915' data-name='Path 28915' d='M23.489 11.984 11.99.354.353 11.984' transform='translate(-0.353 -0.354)' fill='none' stroke='%23202349' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: 7px;
    width: 40px;
    height: 30px;
    z-index: 99999;
    transform: rotate(0deg);
    transition: all 0.3s;
  }
  .team-filter dropdown input:checked ~ label:after {
    transform: rotate(180deg);
  }
  .team-filter dropdown label:first-of-type {
    font-size: 18px;
    font-weight: 700;
    width: 100%;
  }

  .team-filter dropdown input ~ ul {
    float: right;
    opacity: 0;
    padding: 0;
    position: relative;
    top: -20px;
    visibility: hidden;
    z-index: 1;
    width: 100%;
  }

  .team-filter dropdown input:checked ~ ul {
    opacity: 1;
    top: 0;
    visibility: visible;
    background: #fff;
  }

  .animate {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }

  .team_list_item img {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .team-filter dropdown ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
  }
  .team-filter dropdown ul li {
    margin: 0;
    margin-right: 16px;
    display: inline-block;
  }
}
.hidden {
  display: none;
}
#vacancy_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.vacancy_list_item {
  position: relative;
  width: 100%;
}

.vacancy_list_item {
  background: var(--primary);
  color: #fff;
  padding: 32px;
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

@media (hover) {
  .vacancy_list_item:hover::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(32, 35, 73);
    background: linear-gradient(
      145deg,
      rgba(32, 35, 73, 1) 50%,
      rgba(36, 107, 144, 1) 100%
    );
  }
}
.vacancy_head {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}
.vacancy_list_item h4 {
  color: #fff;
  font-size: 32px;
  margin: 0;
}
.vacancy_top {
  display: flex;
  gap: 20px;
  font-size: 24px;
}
.cover-link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.vacancy_list_item .post-link {
  font-size: 24px;
  line-height: 28px;
  position: relative;
  text-decoration: none;
  color: #fff;
}

.vacancy_list_item .post-link span {
  position: relative;
  transition-duration: 0.5s;
}

.vacancy_list_item .post-link span:after {
  background: #ffffff;
  content: "";
  height: 2px;
  margin-left: 4px;
  position: absolute;
  top: 18px;
  transition-duration: 0.5s;
  width: 32px;
}

.vacancy_list_item .post-link span:before {
  background: #ffffff;
  content: "";
  height: 2px;
  left: -32px;
  margin-right: 4px;
  position: absolute;
  top: 18px;
  transition-duration: 0.5s;
  width: 0;
}

.vacancy_list_item:hover .post-link span {
  color: #ffffff;
  margin-left: 32px;
  transition-duration: 0.5s;
}

.vacancy_list_item:hover .post-link span:after {
  transition-duration: 0.5s;
  width: 0;
}

.vacancy_list_item:hover .post-link span:before {
  transition-duration: 0.5s;
  width: 32px;
}

.show-more-ajax {
  border: 1px solid #202349;

  padding: 10px;
  margin: auto;
  width: 130px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 50px;
  text-align: center;
}
.show-more-ajax:hover,
.show-more-ajax:focus,
.show-more-ajax:active {
  background-color: #db2885;
  border: 1px solid #db2885;
  color: white;
}
@media (max-width: 767px) {
  .show-more-ajax {
    display: block;
  }
  #vacancy_list {
    flex-direction: column;
  }
  .vacancy_list_item {
    width: 100%;
  }
  .animate {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.vacancy_list_item {
  transform: translate(0, 0);
  transition: all 0.5s;
}
.vacancy_list_item:hover {
  transform: translate(0, -10px);
}

@media screen and (min-width: 768px) {
  .vacancy_list_item {
    width: calc(50% - 20px);
    min-height: 450px;
  }
}

@media screen and (min-width: 768px) {
  .vacancy_list_item {
    width: calc(50% - 2px);
    margin-bottom: 4px;
    padding: 36px;
  }
}

@media screen and (min-width: 1280px) {
  .vacancy_list_item {
    width: calc(33.333333% - 23px);
    margin-bottom: 30px;
    padding: 50px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .vacancy_list_item {
    padding: 36px;
    min-height: 0;
  }
}
html:not(.hs-inline-edit) footer {
  position: fixed;
  bottom: 0;
  width: 100vw;
  height: auto;
  padding: 80px 20px 0;
  background: var(--primary) !important;
  opacity: 0;
}

footer {
  padding: 80px 20px 0;
  background: var(--primary) !important;
}

footer li.hs-menu-item a:hover {
  color: var(--white) !important;
}

html:not(.hs-inline-edit) footer.is-visible {
  opacity: 1;
  z-index: 2;
}

html:not(.hs-inline-edit) footer h2.extra-large {
  line-height: 1;
}

html:not(.hs-inline-edit) .footer-gradient {
  position: absolute;
  top: 0;
  left: -50%;
  width: calc(100vw + 100%);
  height: calc(100% + 160px);
  background: rgb(32, 35, 73);
  background: linear-gradient(
    180deg,
    rgba(32, 35, 73, 1) 15%,
    rgba(32, 35, 73, 0.938813025210084) 50%,
    rgba(32, 35, 73, 1) 85%
  );
  z-index: -1;
}

html:not(.hs-inline-edit) section.footer-video {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -2;
}

section.footer-video #swirl-bg {
  position: absolute;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
  z-index: -1;
}

footer .col.footer-logos img:first-of-type {
  margin-right: 30px;
}

footer .col {
  flex: 1;
  width: 100%;
  z-index: 6;
}

footer .col p {
  color: var(--white);
}

footer .hs-menu-wrapper ul li a {
  color: var(--pale-blue) !important;
}

.footer .hs-menu-wrapper .active > a {
  font-weight: var(--regular);
  text-decoration: none !important;
}

footer div[style*="text-align: right; font-size: 14px;"] span {
  display: inline-block;
}

footer div[style*="text-align: right; font-size: 14px;"] span:nth-child(1) {
  margin-right: 10px;
}

footer .menu-wrap,
footer .copyright-wrap {
  padding: 15px 0;
  border-top: 1px solid var(--white) !important;
}

ul.social-share {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

ul.social-share li {
  padding: 0;
  margin: 0;
}

ul.social-share li a svg {
  background: transparent;
  transition: transform 0.3s ease-in-out;
}

@media (hover) {
  ul.social-share li:hover a svg {
    background: var(--pink);
    border-radius: 100px;
    transform: translateY(-10px);
  }

  ul.social-share li:hover a svg path {
    fill: var(--white);
  }
}

footer .copyright-wrap p,
footer .copyright-wrap p span {
  max-width: 100%;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--white);
  text-align: left;
}

@media screen and (max-width: 767px) {
  footer,
  html:not(.hs-inline-edit) footer {
    position: relative;
  }

  footer .d-flex {
    flex-direction: column;
  }

  footer .footer--get-in-touch {
    margin-bottom: 1rem;
  }

  footer .menu-wrap {
    padding-top: 20px;
  }

  footer .menu-wrap .col:nth-of-type(1) {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--white);
  }

  footer .menu-wrap .col:nth-of-type(2) {
    padding-top: 20px;
  }

  footer .col.footer-logos {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2em;
  }

  footer .col.footer-logos img {
    max-width: 40%;
  }
  ul.social-share {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  html:not(.hs-inline-edit) footer h2.extra-large {
    margin-top: -20px;
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 1024px) {
  footer .col h4 {
    font-size: 134px;
    line-height: 1;
  }

  footer p {
    max-width: 20rem;
    margin-top: 30px;
    color: var(--white);
  }

  footer .hs-menu-wrapper ul {
    gap: 20px;
    column-count: 3;
    margin-bottom: 0;
  }

  footer .hs-menu-wrapper ul li {
    display: inline-block;
    width: 30%;
  }

  footer .hs-menu-wrapper ul li a {
    font-size: 18px !important;
  }

  footer .copyright-wrap p,
  footer .copyright-wrap p span {
    text-align: right;
    margin-top: 0;
  }

  footer .copyright-wrap p span {
    margin-right: 1.5rem;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Data is Golden */
.hs-content-id-187948870869 .timeline-with-scrolling-animation-timeline-main h3 {
  text-transform: none !important;
  margin-bottom: 0.5rem;
  font-size: clamp(19px, calc(1.1875rem + ((1vw - 3.2px) * 0.8125)), 32px) !important;
}

.hs-content-id-187948870869 .timeline-with-scrolling-animation-timeline-main * {
  line-height: 1.4 !important;
}

@media screen and (max-width: 768px) {
  .hs-content-id-187948870869 .timeline-with-scrolling-animation-timeline-main .timeline-inner {
    padding-right: 20px !important;
  }
}




/* Utilities */

main#main-content {
  position: relative;
  padding-top: 120px;
}

html.meet-the-team main#main-content {
  background: var(--white);
  z-index: 6;
}

main#main-content .overflow {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: var(--white);
  width: 100%;
  height: 705px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  main#main-content,
  .case-study-post main#main-content {
    position: relative;
    padding-top: 60px;
    margin-bottom: 0;
  }

  main#main-content .overflow {
    display: none;
  }

  .case-study-post main#main-content {
    padding-top: 73px;
  }
}

html.data-protection main#main-content .overflow,
.body-wrapper.404 main#main-content .overflow {
  display: none;
}

html.data-protection main#main-content {
  margin-bottom: 0 !important;
}

.d-grid {
  display: grid;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.text-center {
  text-align: center;
}
.w-100 {
  width: 100%;
}

/* = box shadows -------------------- */
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* For content that needs to be visually hidden but stay visible for screenreaders */

/* stylelint-disable declaration-no-important */
.show-for-sr {
  position: absolute !important;
  overflow: hidden !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    position: absolute !important;
    overflow: hidden !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }
}
/* stylelint-enable declaration-no-important */
.overflow-hidden {
  overflow: hidden;
}
@media (max-width: 767px) {
  .overflow-hidden-mobile {
    overflow: hidden;
  }
}

.bg-white {
  background: var(--white);
}
.bg-blue {
  background: var(--primary);
}
.z2 {
  z-index: 2 !important;
}

.z5 {
  z-index: 5;
}
.z6 {
  z-index: 6 !important;
}
.z7 {
  z-index: 7 !important;
}
.pos-rel {
  position: relative;
}
.pt-150 {
  padding-top: 150px;
}
.pb-150 {
  padding-bottom: 150px;
}

.pt-60 {
  padding-top: 80px;
}

.pb-60 {
  padding-bottom: 80px;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}
.animate_width_in_view {
  margin: auto;
  max-width: 1400px;
  transition: all 0.5s;
}
.animate_width_in_view.in_view {
  max-width: 100%;
}

.animate_width_in_view.dnd-section {
  padding-top: 80px;
  border-top: 0px solid transparent;
  border-bottom: 0px solid var(--primary);
  transition: all 0.3s;
}

.animate_width_in_view_video {
  margin: auto;
  max-width: 1400px;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .animate_width_in_view.in_view.dnd-section {
    padding-top: 164px;
    border-top: 50px solid var(--primary);
    border-bottom: 50px solid var(--primary);
  }

  .animate_width_in_view_video.in_view {
    max-width: 100%;
  }
}

.vacnacy_anchor_links a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  padding: 0 5px 10px 5px;
  margin: 0 10px 0 0;
}
.vacnacy_anchor_links a:hover {
  border-bottom: 3px solid #202349;
  color: #202349;
  text-decoration: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
}

.row .col-6 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .row {
    display: flex;
    flex-wrap: unset;
  }

  .row .col-6 {
    width: 50%;
  }

  .animate_width_in_view.dnd-section {
    padding-top: 164px;
  }
}

.resource-wrapper {
  align-items: stretch;
  border-bottom: 1px solid var(--primary);
  border-top: 1px solid var(--primary);
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.resource:first-child {
  border-right: 1px solid var(--primary);
}

.resource.add--border {
  border-left: 1px solid var(--primary);
}

.resource {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 64px;
  transition: background 0.3s;
}

.resource:hover {
  background: linear-gradient(
    320deg,
    rgba(39, 162, 199, 0.5),
    rgba(39, 162, 199, 0)
  );
}

.resource-title {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 16px;
}

.resource-content {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 24px;
}

@media screen and (max-width: 992px) {
  .resource-wrapper {
    align-items: stretch;
    border-top: 1px solid #202349;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .resource:first-child {
    border-top: 0 solid #202349;
    border-right: 0;
  }

  .resource:nth-child(2) {
    border-bottom: 1px solid #202349;
    border-top: 1px solid #202349;
  }

  .resource {
    display: flex;
    padding: 28px;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .resource-title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .resource-content {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}


/* Libraries */
/**
 * Swiper 8.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 3, 2022
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}