/* 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;
  position: relative;
}

html:not(.hs-inline-edit) main {
  padding-top: 136px;
}

@media (max-width: 1000px) {
  html:not(.hs-inline-edit) main {
    padding-top: 89px;
  }
}

/**
 * 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 */

/* Custom section rules */

.members-menu {
  position: fixed;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #fff;
}

.white-border > .row-fluid > .dnd-column {
  border: 1px solid var(--white);
}

.map-section {
  position: relative;
}

.map-section > .row-fluid > .span6:last-of-type {
  position: absolute;
  right: 0;
}

.policy-header {
  position: relative;
}

.policy-header::after {
  background-color: var(--dark-blue);
  content: "";
  height: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  width: 400%;
  z-index: -2;
}

.pillar-page-title {
  position: relative;
}

.pillar-page-title::after {
  content: "";
  display: block;
  width: 50vw;
  right: -50vw;
  top: 0;
  z-index: 0;
  height: 100%;
  background-color: #00d2ff;
  position: absolute;
}

.pillar-page-title.red::after {
  background-color: #f25555;
}

.pillar-page-title.mint::after {
  background-color: #16dc9d;
}

.pillar-page-title.lime::after {
  background-color: #c8e13f;
}

@media screen and (max-width: 1024px) {
  .pillar-page-title {
    z-index: 2;
  }

  .block-form h2 {
    font-size: 1.85rem !important;
  }
}

.no-overlap {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .no-overlap .span12 {
    align-items: unset !important;
  }
}

/* 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: 1000px) {
  .visible-phone {
    display: inherit !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 ;
  }
}
.popup-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.popup-wrap > *:first-of-type {
  margin: 0;
}

.popup-wrap .popup-wrap__tooltip .popup-wrap__tooltip-popup {
  background-color: #fff;
  padding: 15px;
  right: -20px;
  top: -8px;
  position: absolute;
  z-index: 999;
  display: none;
  cursor: help;
  max-width: 250px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.popup-wrap .popup-wrap__tooltip:hover .popup-wrap__tooltip-popup {
  display: block;
}

.popup-wrap:hover .popup-wrap__tooltip-popup p {
  margin: 0;
}

/* Content wrappers for blog post and system templates */

.content-wrapper {
  padding: 0 20px;
  margin: 0 auto;
}

/* Drag and drop layout styles */

.dnd-section > .row-fluid {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements */

/* Custom typography rules */

@media screen and (max-width: 1024px) {
  .quote {
    font-size: 30px !important;
  }

  h1 {
    font-size: 2.5rem !important;
  }

  h2 {
    font-size: 2.25rem !important;
  }

  blockquote {
    font-size: 1.9rem !important;
  }
}

body {
  line-height: 1.4;
}

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;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0 0 1rem;
  line-height: 1.15;
}

/* Lists */

ul.custom {
  margin: 0;
  padding: 0;
}

ul.custom li {
  list-style: none;
  margin: 0.7rem 0.7rem 0.7rem 1.3rem;
}

ul.custom .list-wrap {
  position: relative;
}

ul.custom .list-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  top: 6px;
}

ul,
ol {
  padding-left: 1rem;
  margin: 0 0 1.4rem;
}

ul li,
ol li {
  margin: 0.7rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 1.4rem 0;
}

.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 {
  margin: 0 0 1.5em;
}

/* 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 {
  font-size: 1rem;
  word-break: normal;
}

address {
  font-style: normal;
}
/* Additional CTA margin */

p > .cta_button,
p > span > span > .cta_button,
p > .button,
p > span > span > .button {
  margin-top: 15px;
}

/* Cookie banner buttons */

#hs-eu-cookie-confirmation
  #hs-eu-cookie-confirmation-inner
  button#hs-eu-confirmation-button,
#hs-eu-cookie-confirmation
  #hs-eu-cookie-confirmation-inner
  button#hs-eu-decline-button {
  transition: 0.25s ease-in-out;
}

#hs-eu-cookie-confirmation
  #hs-eu-cookie-confirmation-inner
  button#hs-eu-confirmation-button:hover,
#hs-eu-cookie-confirmation
  #hs-eu-cookie-confirmation-inner
  button#hs-eu-decline-button:hover {
  color: #00013c !important;
  background-color: #fff !important;
  border-color: #00013c !important;
}

/* Primary button */

button,
.button,
.hs-button {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  transition: color 0.15s linear;
  white-space: normal;
}

/* 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;
}
/* 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 label {
  display: block;
  margin-bottom: 0.35rem;
}

/* Form fields */

form .hs-form-field {
  margin-bottom: 1.4rem;
}

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; /* stylelint-disable-line declaration-no-important */
}
.cta-form-block form select option:first,
.form-banner form select option:first {
  color: white !important;
}

.cta-form-block form select option,
.form-banner form select option {
  color: black !important;
}
form fieldset {
  max-width: 100% !important; /* stylelint-disable-line declaration-no-important */
}

@media screen and (min-width: 768px) {
  form fieldset.form-columns-2 > div:nth-of-type(2) {
    padding-left: 10px;
  }

  form fieldset.form-columns-2 > div:first-of-type {
    padding-right: 10px;
  }
}

/* Form fields - checkbox/radio */

form .inputs-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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 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 */
  font-size: 12px;
  font-weight: normal;
}

/* Validation */

form .hs-form-required {
  color: #ef6b51 !important;
}

form .hs-input.error {
  border-color: #ef6b51 !important;
}

form .hs-error-msg,
form .hs-error-msgs,
form .hs-error-msgs label {
  margin-top: 0.35rem;
  color: #ef6b51 !important;
}

/* Submit button */

@media screen and (max-width: 767px) {
  form input[type="submit"],
  form .hs-button {
    width: 100%;
  }
}

form input[type="submit"],
form .hs-button {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal !important; /* stylelint-disable-line declaration-no-important */
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* 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;
}
/* Resources */

a.card-cover {
  text-decoration: none;
}

a.card-cover:hover {
  text-decoration: none;
}

a.card-cover:hover h3,
.blog-feed .blog-card a.card-cover:hover .card_body h3.card_title {
  text-decoration: underline;
}

article.featured-blog-post:hover,
article.resource:hover,
article.blog-post:not(.column-wrap):hover {
  -webkit-box-shadow: 5px 5px 8px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 8px 2px rgba(0, 0, 0, 0.1);
}

article.featured-blog-post,
article.resource,
article.blog-post:not(.column-wrap) {
  -webkit-box-shadow: 5px 5px 8px 2px rgba(255, 255, 255, 0);
  box-shadow: 5px 5px 8px 2px rgba(255, 255, 255, 0);
  transition: box-shadow 0.2s ease-in-out;
}

article.featured-blog-post:hover .card img.card_featured-img,
article.resource:hover .card img.card_featured-img,
article.blog-post:not(.column-wrap):hover .card img.card_featured-img {
  transform: scale(1.05);
}

.card .card_header {
  position: relative;
  overflow: hidden;
}

.card .card_header span.service-type {
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: bold;
  padding: 0.6em 30px;
  font-size: 0.9rem;
}

article.resource {
  width: 48%;
  margin-bottom: 2.5em;
}

article.resource.related {
  width: auto;
}

article.blog-post.column-wrap {
  flex-direction: column;
}

article.resource,
article.blog-post {
  display: flex;
  position: relative;
  flex: 1;
  background-color: var(--white);
  height: auto;
}

article.resource .card.blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

article.resource .card img {
  width: 100%;
  display: flex;
}
article .card img.card_featured-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.35s ease-in-out;
}

article.resource .card .card-content-wrap {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--white);
}

article.resource .card .card-content-wrap .card_tags {
  margin-bottom: 0.5rem;
  display: flex;
}

article.resource .card .card-content-wrap .card_tags p,
article.resource .card .card-content-wrap .card_tags time {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0;
}

article.resource .card .card-content-wrap h3.card_title {
  margin-bottom: 0.7rem;
}

article.resource .card .card-content-wrap a {
  text-decoration: none;
}

article.resource .card .card-content-wrap a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  article.resource .card.blog-card {
    width: 100%;
  }

  article.blog-post.column-wrap .blog-post-details {
    flex-direction: column;
    margin-bottom: 2em;
  }
}

.blog-feed .card.blog-card-2025 .card_header {
  height: 209px;
}

.blog-feed .card.blog-card-2025 .card_header span.service-type {
  background-color: #fff;
  font-weight: normal;
  padding: 0.6em 20px;
}

.blog-feed .card.blog-card-2025 .card_body {
  padding: 20px 20px 7px;
}

.blog-feed .card.blog-card-2025 .card_footer p {
  margin: 0 20px 20px;
}

.blog-feed .card.blog-card-2025 .cta_button.button.transparent,
.blog-feed .card.blog-card-2025 .cta_button.button.transparent:hover {
  background-color: transparent !important;
  color: #00d2ff !important;
  padding: 0;
  margin: 0 20px;
  text-decoration: underline;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .blog-feed .card.blog-card-2025 .cta_button.button.transparent {
    justify-content: flex-start;
    padding: 0 20px;
  }
}

/* Card */

.card {
  border: 0;
}

.card--dark,
.card--light {
  padding: 1.4rem;
}
/* Pagination */

nav.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3em;
}

nav.pagination a {
  text-decoration: none;
  margin: 0 0.3rem;
  font-weight: bold;
  font-family: oscine, sans-serif;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav.pagination a.pagination__link--active,
nav.pagination a.active {
  color: var(--white);
  background-color: var(--dark-blue);
}

/* 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: space-around;
  list-style: none;
}

.hs-menu-wrapper li {
  margin: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper li {
    margin-bottom: 1.4rem;
    text-align: center;
  }
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    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%;
}

/* Utilities */

/* CTA Hover effects */

.cta_button.button.white {
  background-color: var(--white) !important;
  color: var(--dark-blue) !important;
}

.cta_button.button.turquoise:hover {
  background-color: var(--white) !important;
}

.cta_button.button.turquoise {
  background-color: var(--turquoise);
  color: var(--dark-blue);
}

.cta_button.button.white:hover,
.cta_button.button.blue:hover {
  background-color: var(--turquoise) !important;
  color: var(--dark-blue) !important;
}

.cta_button.button:hover {
  background-color: var(--turquoise) !important;
  color: var(--dark-blue) !important;
}

.cta_button.button.hov-red:hover {
  background-color: var(--red) !important;
  color: var(--dark-blue) !important;
}

.cta_button.button.hov-mint:hover {
  background-color: var(--mint) !important;
  color: var(--dark-blue) !important;
}

.cta_button.button.hov-green:hover {
  background-color: var(--green) !important;
  color: var(--dark-blue) !important;
}

.cta_button.button {
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .cta_button.button {
    display: flex;
    justify-content: center;
    float: none !important;
    margin: 0 !important;
  }
}

/* Blog card styling */

.blog-feed .blog-card {
  background-color: #fff;
  height: 100%;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.blog-feed .blog-card .card-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-feed .blog-card .card_body {
  padding: 20px 30px 7px;
}

.blog-feed .blog-card .card_body .card_tags {
  margin-bottom: 0.5em;
  display: flex;
}

.blog-feed .blog-card .card_body .card_tags p,
.blog-feed .blog-card .card_body .card_tags time {
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.blog-feed .blog-card .card_body h3.card_title {
  margin: 0 0 0.5rem;
  text-decoration: none;
}

.blog-feed .blog-card .card_body a.cover {
  text-decoration: none;
}

.blog-feed .blog-card .card_body a.cover:hover {
  text-decoration: underline;
}

.blog-feed .blog-card .card_footer {
  padding: 0 0 30px;
}

.blog-feed .blog-card .card_footer p {
  margin: 0 30px 25px;
}

.blog-feed .blog-card .card_footer a.button {
  display: flex;
  justify-content: center;
  margin: 0 30px;
}

.blog-feed .blog-card img {
  width: 100%;
}

/* Image settings */

img.img-right {
  width: calc(100% + 100px);
  max-width: none !important;
}

@media screen and (max-width: 1360px) {
  img.img-right {
    width: calc(100% + 50px);
  }
}

@media screen and (max-width: 1260px) {
  img.img-right {
    width: calc(100% + 40px);
  }
}

.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 {
  margin-left: auto;
  margin-right: auto;
  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 */


/* Modules */

.simple-tabber .tab-titles .tab-title {
  font-size: 0.9rem;
  font-weight: bold;
  border: 2px solid var(--grey);
  padding: 1.5rem 3rem;
  cursor: pointer;
  max-width: 50%;
}

.simple-tabber .tab-titles .tab-title.active {
  background-color: var(--grey);
}

.simple-tabber .tabs .simple-tab.hidden {
  height: 0;
  padding: 0;
}

.simple-tabber .tabs .simple-tab {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background-color: var(--grey);
  padding: 2.2rem 3rem;
}

@media screen and (max-width: 767px) {
  .simple-tabber .tabs .simple-tab {
    grid-template-columns: repeat(1, 1fr);
  }
}
.members_no_items_cta {
  background: var(--primary);
  padding: 35px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.members_no_items_cta h4 {
  color: #fff;
  font-size: 26px;
}
.members_no_items_cta p {
  color: #fff;
}
.members_no_items_cta a {
  background: var(--turquoise);
  color: var(--primary);
  min-width: 200px;
  padding: 20px;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.members_no_items_cta a:hover {
  background: #fff;
  color: var(--primary);
  text-decoration: none;
}
@media(max-width:767px){
    .members_no_items_cta{
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
    }
}
.card.blog-card .bookmark-item__bookmark-button:hover {
  background-color: var(--white);
}

.card.blog-card .bookmark-item__bookmark-button:hover svg path {
  fill: var(--dark-blue);
}

.card.blog-card .bookmark-item__bookmark-button {
  background-color: var(--dark-blue);
  padding: 11px;
  border-radius: 100%;
  transition: 0.3s ease-in-out;
}

.bookmark-item__bookmark-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.bookmark-item__bookmark-button[data-is-bookmark] svg path,
.bookmark-item__bookmark-button.active-bookmark svg path {
  fill: var(--white);
  transition: 0.3s ease-in-out;
}

.bookmark-button-wrap svg {
  margin-left: 10px;
}

.bookmark-button-wrap {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 85px;
  height: 50px;
  right: 0;
  background-color: var(--turquoise);
  z-index: 150;
  padding: 10px;
  transform: rotate(270deg);
  transform-origin: right bottom;
}

.bookmark-button-wrap.offset {
  top: 92px;
}

@media screen and (min-width: 1300px) {
  .bookmark-button-wrap {
    position: fixed;
  }
}

.pillar-page-bookmark-button-wrap {
  margin-top: 20px;
}

.pillar-page-bookmark-button-wrap .bookmark-item__bookmark-button.page-button {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  font-weight: normal;
  margin-top: 30px;
}

.pillar-page-bookmark-button-wrap .pillar-page-bookmark-button-wrap__inner svg {
  width: 30px;
}

.bookmark-item__bookmark-button.page-button {
  position: relative;
  top: auto;
  right: auto;
  color: var(--dark-blue);
}

.bookmark-item__bookmark-button.page-button svg path:nth-of-type(2) {
  fill: var(--dark-blue);
}

.page-button.bookmark-item__bookmark-button[data-is-bookmark] svg path,
.page-button.bookmark-item__bookmark-button.active-bookmark svg path {
  fill: var(--dark-blue);
}

.bookmark-item__bookmark-button.page-button::before {
  content: "Bookmark this page";
}

.page-button.bookmark-item__bookmark-button[data-is-bookmark]::before,
.page-button.bookmark-item__bookmark-button.active-bookmark::before {
  content: "Remove page from bookmarks";
}

@media screen and (max-width: 767px) {
  .bookmark-button-wrap {
    top: 99px;
    padding: 8px 10px;
    height: 40px;
  }

  .bookmark-button-wrap button {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 1300px) {
  .bookmark-item__bookmark-button.page-button::before,
  .page-button.bookmark-item__bookmark-button[data-is-bookmark]::before,
  .page-button.bookmark-item__bookmark-button.active-bookmark::before {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.hasScrolledMore .bookmark-item__bookmark-button.page-button::before,
  body.hasScrolledMore
    .page-button.bookmark-item__bookmark-button[data-is-bookmark]::before,
  body.hasScrolledMore
    .page-button.bookmark-item__bookmark-button.active-bookmark::before {
    opacity: 0;
    height: 0;
    width: 0;
    grid-template-columns: 0fr;
  }

  .bookmark-button-wrap {
    transition-delay: 0.3s;
    transition: 0.3s;
  }

  .bookmark-button-wrap svg {
    transition: 0.3s;
  }

  body.hasScrolledMore .bookmark-button-wrap svg {
    margin-left: 0;
  }
}
/* Header Styles 2024 */

@media (min-width: 1001px) {
  header.header.header-scrolled .header__menu-item--depth-1 {
    padding: 1.5rem 6px;
  }

  .header__logo img {
    transition: 0.25s ease-in-out;
  }

  header.header.header-scrolled .header__logo img {
    transform: scale(0.9);
  }

  header.header.header-shifted {
    transform: translateY(-200px);
  }
}

/* Layout */

.header__wrapper {
  display: flex;
  margin: 0 auto;
  align-items: center;
}

.header__top {
  padding: 0.7rem 0;
}

.header__top .links {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 115px;
}

.header__top .links a {
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 2em;
  font-weight: 700;
}

.header__top .links a:hover {
  text-decoration: underline;
}

.header__bottom {
  position: relative;
}

@media (max-width: 1000px) {
  .header__menu-wrapper.top-links {
    margin-top: 1.5em;
  }

  .header .header__menu-wrapper.top-links a {
    color: var(--white);
    text-align: left;
    padding: 0 20px;
    text-decoration: none;
  }

  .header__menu-wrapper.top-links li {
    margin-bottom: 1.5em;
    text-align: left;
  }
}

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

  .header__bottom {
    padding: 0 20px;
  }

  .header__bottom .header__button-col a {
    padding: 2.1em 1.4em;
  }
}

.header__bottom .header__button-col a {
  font-weight: normal;
}

/* Layout - left */

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

@media (max-width: 1000px) {
  .header__container--left .header__wrapper--bottom {
    justify-content: space-between;
  }
}

.header__container--left .header__menu-col {
  margin-left: 1em;
  text-align: right;
}

.header__container--left .header__button-col {
  margin-left: 1rem;
}

@media (min-width: 1001px) {
  ul.header__menu-wrapper {
    display: flex;
    align-items: center;
  }

  .header__container--left .header__button-col {
    margin-left: 14em;
  }

  .header__container--left .header__button-col .absolute-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .header__container--left .header__button-col a {
    height: 100%;
    font-family: "oscine", sans-serif;
  }

  .header__container--left .header__button-col .search-button {
    padding: 0 3em;
  }

  .header__container--left .header__logo-col {
    margin-right: 2em;
  }
}

@media (max-width: 1200px) and (min-width: 1001px) {
  .header__container--left .header__logo-col {
    max-width: 100px;
    margin-right: 1em;
  }
}

@media (max-width: 1000px) {
  /* .header__container--left .header__button-col .search-button {
      display: none;
    } */
  .header__button-col .absolute-wrapper {
    display: flex;
    flex-direction: row-reverse;
  }
}

/* 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: 1000px) {
  .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: 1000px) {
  nav.header__menu.open .mob-menu-top .header__menu-wrapper.top-links,
  nav.header__menu.open .mob-menu-bottom {
    display: none;
  }

  .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%;
  }

  .header .header__menu-item--depth-1 > .header__menu-link:not(.button) {
    color: #fff;
    padding: 2em 20px;
    font-family: "Tahoma", sans-serif;
  }

  .header__menu--show .mob-menu-bottom {
    text-align: left;
  }

  .header__menu--show .mob-menu-bottom .search-bar {
    border-top: 1px solid var(--white);
  }

  .header__menu--show .mob-menu-bottom .search-bar .search-bar-content {
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
  }

  .header__menu--show .mob-menu-bottom .search-bar .search-bar-content button {
    margin-top: 3px;
  }

  .header__menu--show .mob-menu-bottom .search-bar p {
    color: #fff;
  }
}

/* Language switcher - icons */

@media (max-width: 1000px) {
  .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%;
}

/* Menu */

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

.header__menu--mobile {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  display: none;
  width: 100%;
  height: calc(100vh + 600px);
  overflow-y: scroll;
  overflow-x: hidden;
}

.header__menu--mobile > .mob-menu-top,
.header__menu--mobile > .mob-menu-top > ul.header__menu-wrapper > li > ul {
  height: 100vh;
  padding-bottom: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}

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

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

  .header__menu--show {
    display: flex;
  }

  header .menu-wrapper {
    flex-direction: row-reverse;
  }
}

/* Menu items */

@media (max-width: 1000px) {
  .header__menu-item {
    flex-direction: column;
    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: 100%;
  }
}

/* Menu items - top level */

.header__menu-item--depth-1 {
  padding: 2.3rem 6px;
  display: flex;
  align-items: center;
  transition: 0.25s ease-in-out;
}

@media (min-width: 1001px) {
  .header__menu-item--depth-1 > .header__menu-link.header__menu-link--toggle {
    padding: 0 0px 0 13px;
  }
}

.header__menu-item--depth-2 p.sublink-title {
  font-weight: bold;
}

.header__menu-item--depth-2 {
  transition: 0.5s ease-in-out;
}

.header .header__menu-item--depth-2 p,
.header .third-level-col .header__menu-item--depth-2 a,
.header .third-level-col .header__menu-item--depth-3 a {
  color: #fff;
  font-family: Tahoma, sans-serif;
}

.header .third-level-col .header__menu-item--depth-2 a {
  padding: 0.7rem 0;
}

.header .third-level-col .header__menu-item--depth-2 a:hover {
  text-decoration: underline;
}

.header .third-level-col .header__menu-item--depth-3 a {
  font-weight: normal !important;
  text-decoration: underline;
  padding: 0.7rem 0;
  margin: 0;
}

.header .third-level-col .header__menu-item--depth-3 a:hover {
  text-decoration: none;
}

.header .third-level-col {
  grid-row-start: 1;
  grid-row-end: 5;
  padding: 0 25px;
  border-right: 1px solid var(--white);
}

.header .third-level-col:first-of-type {
  border-left: 1px solid var(--white);
}

.header__menu-item--depth-2 .sublink-img {
  margin-right: 22px;
}

@media (max-width: 1000px) {
  .header .third-level-col {
    padding: 0;
    border: none;
  }

  .header .third-level-col .header__menu-item--depth-3 a {
    padding: 1.6em 20px 0.5em;
  }

  .header .third-level-col .header__menu-link.depth-2 {
    border-bottom: none;
    padding: 2em 20px 0.5em !important;
  }

  .header .third-level-col li:last-of-type {
    border-bottom: 1px solid var(--white);
  }

  .header .third-level-col li:last-of-type a {
    padding: 1.6em 20px 2em;
  }
}

@media (min-width: 1001px) {
  .header__menu-item--depth-2 {
    display: flex;
  }

  .header__menu-item--depth-2 a.depth-2 {
    flex: 1;
  }

  .header__menu-item--depth-2 a.depth-2 .sublink-text {
    /* justify-content: space-between; */
  }
}

@media (max-width: 1000px) {
  ul.header__menu-wrapper.depth-2
    li.header__menu-item.header__menu-item--depth-1:not(
      .header__menu-item--open
    ) {
    display: none;
  }

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

/* Menu items - submenus */

.header__menu-submenu {
  position: absolute;
  z-index: 99;
  top: 100%;
  left: -1px;
  display: none;
  width: 100%;
  text-align: left;
  padding: 3em 0;
}

.header__menu-submenu .submenu-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1000px) {
  .header__menu-submenu {
    padding: 0;
  }

  .header__menu-submenu .submenu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .header__menu-item--depth-2 .sublink-img,
  .header__menu-item--depth-2 p:not(.sublink-title) {
    display: none;
  }

  .header__menu-item--depth-2 p.sublink-title {
    text-decoration: none;
    margin: 0;
  }

  .header__menu-submenu .header__menu-link.depth-2 {
    padding: 2em 20px !important;
    border-bottom: 1px solid var(--white);
  }
}

.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-submenu .header__menu-link.depth-2 p.sublink-title {
  padding: 0;
  margin-bottom: 10px;
  min-height: 25px;
}
.header__menu-submenu
  .header__menu-item:nth-of-type(5)
  .header__menu-link.depth-2
  p.sublink-title,
.header__menu-submenu
  .header__menu-item:nth-of-type(6)
  .header__menu-link.depth-2
  p.sublink-title {
  min-height: 25px;
}
.header__menu-submenu .header__menu-link.depth-2:hover p.sublink-title {
  text-decoration: underline;
}

.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: 1000px) {
  /* 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: 1001px) {
  .header__menu-submenu .header__menu-child-toggle {
    padding: 0.7rem 1rem;
    margin-left: auto;
  }
}

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

.header__menu-toggle {
  display: none;
}

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

.header__menu-child-toggle svg.mobile {
  display: none;
}

@media (max-width: 1000px) {
  header .content-wrapper {
    padding: 0;
  }

  .header__menu-child-toggle,
  .header__menu-child-toggle:hover,
  .header__menu-child-toggle:focus,
  .header__menu-child-toggle:active {
    position: absolute;
    top: 2.2em;
    right: 20px;
    border: 0;
    cursor: pointer;
    padding: 40px;
    margin: -40px;
  }

  .header .header__menu-link.header__menu-link--toggle[aria-expanded="true"] {
    background-color: var(--grey);
    color: var(--dark-blue);
  }

  .header__menu-child-toggle svg.mobile {
    display: block;
  }

  .header__menu-child-toggle svg.desktop {
    display: none;
  }

  .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-child-toggle--open {
    right: auto;
    left: 20px;
  }

  .header__menu-item--depth-1.header__menu-item--open
    a.header__menu-link.header__menu-link--toggle {
    padding: 2em 20px 2em 50px;
  }

  .header__menu-child-toggle--open svg path {
    fill: var(--dark-blue);
  }

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

a.no-underline-hover:hover {
  text-decoration: none !important;
}

a.underline-hover:hover {
  text-decoration: underline !important;
}
/* Footer 2024 - Styles  */

.footer-wrapper.footer-2024 .row .col.social-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-wrapper.footer-2024 .row .col.social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer-wrapper.footer-2024 .row .col.form-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-wrapper.footer-2024 .row .col.form-col h3 {
  margin: 0;
  font-weight: normal;
}

.footer-wrapper.footer-2024 .row .col.form-col form .hs-form-field label {
  display: none;
}

.footer-wrapper.footer-2024 .row .col.form-col form .hs-email input {
  padding: 10px 0;
  border-bottom: 1px solid white;
}

.footer-wrapper.footer-2024
  .row
  .col.form-col
  form
  input[type="submit"]:not(:hover) {
  background-color: var(--white);
  color: var(--dark-blue);
}

.footer-wrapper.footer-2024 .row .col.form-col form input[type="submit"] {
  margin-top: 20px;
}

.footer-wrapper.footer-2024 .col-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.footer-wrapper.footer-2024 .row {
  margin-bottom: 20px;
}

.footer-wrapper.footer-2024 .row.row-2 {
  grid-template-columns: 2fr 4fr;
}

.footer-wrapper.footer-2024 .row.row-3-2024 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.footer-wrapper.footer-2024 .row.row-3-2024 * {
  font-size: 14px;
}

.footer-wrapper.footer-2024 .row.row-3-2024 .col:last-of-type {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 1000px) {
  .footer-wrapper.footer-2024 .company-information-desktop {
    display: block;
  }

  .footer-wrapper.footer-2024 .company-information-desktop p {
    margin: 0;
  }

  .footer-wrapper.footer-2024 .row.row-3 .col:first-of-type {
    position: static;
  }

  .footer-wrapper.footer-2024 .col-wrapper {
    display: flex;
    flex-direction: column-reverse;
    margin: 20px 0;
  }

  .footer-wrapper.footer-2024 .row.row-3-2024 .col:last-of-type {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-wrapper.footer-2024 .row.row-3 {
    padding-bottom: 0;
  }
}

/* Legacy footer styles */

.footer-wrapper .row .col > *,
.footer-wrapper .row .col .submitted-message {
  color: var(--white) !important;
}

.footer-wrapper .row .col a {
  text-decoration: none;
}

.footer-wrapper .row .col a:hover {
  text-decoration: underline;
}

.footer-wrapper .row .col a:hover svg path,
.footer-wrapper .row .col a:hover svg rect {
  fill: var(--turquoise);
}

.footer-wrapper .row .col a:hover svg g.svg_circle {
  stroke: var(--turquoise);
}

.footer-wrapper .row .col a svg path,
.footer-wrapper .row .col a svg rect,
.footer-wrapper .row .col a svg g {
  transition: 0.3s ease-in-out;
}

.footer-wrapper .row,
.footer-wrapper .row:nth-of-type(3) {
  margin-bottom: 30px;
}

.footer-wrapper .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer-wrapper .row.row-2 {
  border-bottom: 1px solid var(--white);
  padding-bottom: 2em;
}

.footer-wrapper .row.row-1 {
  grid-template-columns: 1.95fr 1fr 2fr 1fr;
}

.footer-wrapper .row .col.social {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.footer-wrapper .row.row-1 form > .hs_email {
  width: 60%;
}

.footer-wrapper .row.row-1 form > .hs_submit {
  width: 40%;
}

.footer-wrapper .row.row-1 form {
  display: flex;
}

.footer-wrapper .row.row-1 form label {
  display: none;
}

.footer-wrapper .row.row-1 form .input input {
  border: 1px solid var(--white) !important;
  color: var(--white);
  padding: 12px 10px;
}

.footer-wrapper .row.row-1 form .hs-submit input {
  background-color: var(--white);
  color: var(--dark-blue);
  padding: 12px 25px 13px;
  font-size: 0.9rem;
}

.footer-wrapper .row.row-1 form .hs-submit input:hover {
  background-color: var(--turquoise);
}
.footer-wrapper .row.row-4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wrapper .copyright p {
  margin-bottom: 0;
  font-size: 12px;
}
footer ::-webkit-input-placeholder {
  color: var(--white);
}

footer ::-moz-placeholder {
  color: var(--white);
}

footer :-ms-input-placeholder {
  color: var(--white);
}

footer :-moz-placeholder {
  color: var(--white);
}

footer ::placeholder {
  color: var(--white);
}

.footer-wrapper .company-information-mobile {
  display: none;
}

@media (max-width: 1000px) {
  .footer-wrapper .row {
    display: flex;
    flex-direction: column;
  }

  .footer-wrapper .row.row-1 form {
    display: block;
    margin-bottom: 2em;
  }

  .footer-wrapper .row.row-1 form > .hs_email,
  .footer-wrapper .row.row-1 form > .hs_submit {
    width: 100%;
  }

  .footer-wrapper .row.row-1 form > .hs_submit input {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-wrapper .row .col.social {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-wrapper .row .col.social > * {
    margin-right: 5px;
  }

  .footer-wrapper .row.row-1 p {
    margin-bottom: 0;
  }

  .footer-wrapper .company-information-desktop {
    display: none;
  }

  .footer-wrapper .company-information-mobile {
    display: block;
    margin-bottom: 2em;
  }

  .footer-wrapper .row.row-3 {
    position: relative;
    padding-bottom: 6em;
  }

  .footer-wrapper .row.row-3 .col:first-of-type {
    position: absolute;
    bottom: 0;
  }
}
section.video-banner {
  position: relative;
}

section.video-banner h1 {
  color: var(--white);
}

section.video-banner .video-container {
  position: relative;
}

.video-banner .video-container::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  display: block;
  top: 0;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

section.video-banner .video-container video {
  width: 100%;
}

section.video-banner .content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1234px;
  max-width: calc(100% - 20px);
}

section.video-banner .content-wrapper h1 {
  max-width: 659px;
}

section.video-banner .content-wrapper *:not(h1) {
  max-width: 597px;
}
section.video-banner .content-wrapper h1,
section.video-banner .content-wrapper p {
  margin-bottom: 40px;
}

section.video-banner .pause-button {
  bottom: 20px;
  right: 20px;
  position: absolute;
}

section.video-banner .pause-button button svg.play,
section.video-banner .pause-button button.paused svg.pause {
  display: none;
}

section.video-banner .pause-button button.paused svg.play {
  display: block;
}

@media screen and (min-width: 1025px) {
  section.video-banner .video-container video {
    width: 100%;
    min-height: 800px;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 1024px) {
  section.video-banner {
    height: 600px;
  }

  section.video-banner .video-container {
    height: 100%;
  }

  section.video-banner .content-wrapper {
    transform: none;
    top: auto;
    left: auto;
    bottom: 40px;
    max-width: 100%;
  }

  section.video-banner .video-container video {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  section.video-banner .content-wrapper p {
    max-width: none;
  }
}
.stat-counter .img-wrap {
  margin-right: 1.4em;
  width: 25%;
}

.stat-counter .text-wrap {
  width: 75%;
}

.stat-counter p.stat-text {
  font-size: 4.1rem;
  font-weight: bold;
  margin-bottom: 0.1em;
  font-family: oscine, sans-serif;
}

.stat-counter p.stat-text.char {
  font-size: 2.9rem;
}

@media screen and (max-width: 1024px) {
  .stat-counter {
    flex-direction: column;
  }

  .stat-counter p.stat-text.char {
    font-size: 2.6rem;
  }

  .stat-counter .stat {
    margin: 0 0 1.5em 0 !important;
    justify-content: flex-start !important;
  }

  .stat-counter .img-wrap,
  .stat-counter .text-wrap {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .stat-counter .img-wrap {
    width: 25%;
  }

  .stat-counter .text-wrap {
    width: 75%;
  }
}
section.switchback {
  gap: 6em;
}

section.switchback .left,
section.switchback .right {
  flex: 2;
}

.switchback .left {
  position: relative;
}
section.switchback h2,
section.switchback p{
  margin-bottom: 40px;
}
.switchback .left::after {
  position: absolute;
  display: block;
  content: '';
  height: 300px;
  width: 50%;
  left: -60px;
  bottom: -60px;
  z-index: 0;
}

.switchback .left.video {
  display: flex;
}

.switchback .left video {
  width: 100%;
  position: relative;
  z-index: 1;
}

.switchback .left:hover button,
.switchback .left button.paused {
  opacity: 1;
}

.switchback .left img {
  position: relative;
  z-index: 1;
}

.switchback .left button {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  cursor: pointer;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.video-popup {
  display: none;
}

.video-popup.open {
  position: fixed;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  max-width: 1240px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-popup.open video {
  width: 100%;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}

.video-popup.open button {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.video-popup.open:hover button.pause-button,
.video-popup.open button.pause-button.paused {
  opacity: 1;
}

.video-popup.open button.pause-button {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, calc((-50%) + 32px));
  opacity: 0;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .switchback .left::after {
    height: 75%;
  }
}
.logo-slider,
.logo-slider .swiper-wrapper {
  overflow: visible;
}

.logo-slider .swiper-wrapper {
  align-items: center;
}

.logo-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.logo-slider .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}
.tabber .tab-titles {
  width: 40%;
}

.tabber .tab-titles h2 {
  margin: 0 0 1.3em 0;
  padding-right: 0.5em;
}

.tabber .tabs {
  width: 60%;
}
.tabber .tab-content p,
.tabber .tab-content h4 {
  margin-bottom: 40px;
}
.tabber .tab-titles h4 {
  cursor: pointer;
  margin: 0;
  padding: 1em 0;
  position: relative;
  transition: 0.3s ease-in-out;
}

.tabber .tab-titles h4::before {
  background-color: transparent;
  height: 100%;
  width: 100%;
  left: -100%;
  top: 0;
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.tabber .tabs .tab {
  padding: 0 20px 4em 6em;
  position: relative;
}

.tabber .tabs .tab::after {
  height: 100%;
  width: 50vw;
  right: -50%;
  top: 0;
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
}

.tabber .tabs .tab img {
  margin-bottom: 2rem;
}

.tabber .tabs .tab:not(.hidden) {
  display: flex;
}

.tabber select.mobile-selector {
  display: none;
}

@media screen and (max-width: 1020px) and (min-width: 768px) {
  .tabber .tab-titles h2 {
    font-size: 1.8rem !important;
  }
}

@media screen and (max-width: 767px) {
  .tabber {
    flex-direction: column;
  }

  .tabber .tab-titles {
    width: 100%;
  }

  .tabber .tab-titles h4.tabber-title {
    display: none;
  }

  .tabber .tabs {
    width: 100%;
  }

  .tabber .tabs .tab {
    padding: 0 0 4em;
  }

  .tabber .tabs .tab::after {
    right: auto;
    left: -20px;
    width: calc(100% + 40px);
  }

  .tabber .tabs .tab img {
    margin-bottom: 4rem;
  }

  .tabber .select-wrapper {
    position: relative;
    margin-bottom: 2em;
    display: flex;
  }

  .tabber select.mobile-selector,
  .tabber select.mobile-selector:focus,
  .tabber select.mobile-selector:focus-visible {
    display: block;
    color: var(--white);
    font-size: 1.6rem;
    padding: 1em 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    width: 100%;
    border: none;
    outline: unset;
  }

  .tabber .select-wrapper::before {
    height: 100%;
    width: 100%;
    left: -20px;
    top: 0;
    content: '';
    display: block;
    position: absolute;
  }

  .tabber .select-wrapper::after {
    content: '▼';
    color: #fff;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.content-slider .slide {
  padding: 6em 0 10em;
  background-size: cover;
  min-height: 696px;
}

.content-slider .slide::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
  mix-blend-mode: multiply;
}

.content-slider .slide video {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-slider .slide .content {
  max-width: 685px;
}
.content-slider .slide h2,
.content-slider .slide p{
  margin-bottom: 40px;
}

.content-slider .swiper-pagination {
  position: absolute;
  max-width: 1234px;
  bottom: 6em;
  padding: 0 20px 0 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1360px) {
  .content-slider .swiper-button-next,
  .content-slider .swiper-button-prev {
    top: auto;
    bottom: 6em;
  }

  .content-slider .swiper-pagination {
    left: 0;
    text-align: center;
    transform: none;
    bottom: 6em;
  }
}

@media screen and (max-width: 1024px) {
  .content-slider .slide {
    padding: 5em 0 12em;
  }
  .content-slider .slide .content {
    max-width: none;
  }
}
.related-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.resource-view-all-wrap {
  margin-top: 2em;
}

.resource-view-all-wrap a.blog-view-all {
  background-color: var(--white);
  color: var(--blue);
}

.resource-view-all-wrap a.blog-view-all:hover {
  background-color: var(--turquoise) !important;
}

@media screen and (min-width: 768px) {
  .resource-view-all-wrap {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .related-resources {
    grid-template-columns: 1fr;
  }
}
.blog-feed {
  display: grid;
  gap: 20px;
}

.blog-view-all-wrap {
  margin-top: 2em;
}

.blog-view-all-wrap a.blog-view-all {
  background-color: var(--white);
  color: var(--blue);
}

.blog-view-all-wrap a.blog-view-all:hover {
  background-color: var(--turquoise) !important;
}
.blog-feed .blog-post{
  margin-bottom: 2.5em;
}

@media screen and (min-width: 768px) {
  .blog-view-all-wrap {
    display: flex;
    justify-content: center;
  }
}
/* Accordion */

.accordion {
  padding: 0;
  margin-bottom: 1.4rem;
  border-top: 1px solid #00003a;
}

.accordion:last-of-type {
  border-bottom: 1px solid #00003a;
  padding-bottom: 1.4rem;
}

/* Accordion title and content */

.accordion__summary {
  cursor: pointer;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  padding: 1.7rem 0 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::after {
  margin-left: 1.4rem;
}

.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.active .accordion__summary::after {
  content: '\2212';
}

/* Accordion */

.accordion-column-wrap {
  display: grid;
  margin-top: 2.5em;
}

@media screen and (max-width: 767px) {
  .accordion-column-wrap {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
}

.accordion:not(.active) .accordion__content{
  height: 0;
}
.accordion .accordion__content{
  overflow: hidden;
  opacity: 0;
  height: auto;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.accordion.active .accordion__content{
  opacity: 1;
}
.address-with-map-wrap {
  position: relative;
  /* height: 475px; */
  margin: 4em 0;
}

.address-with-map-wrap .left {
  width: 45%;
}

.address-with-map-wrap .right {
  width: 50%;
}

.address-with-map-wrap .right iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .address-with-map-wrap {
    height: auto;
  }

  .address-with-map-wrap .address-with-map {
    flex-direction: column;
  }

  .address-with-map-wrap .left {
    width: 100%;
    margin-bottom: 2em;
  }

  .address-with-map-wrap .right {
    position: static;
    height: 345px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .address-with-map-wrap .right iframe {
    height: 100%;
  }
}
.agenda-slider .title-bar {
  margin-bottom: 5em;
}

.agenda-slider .title-bar h2 {
  margin: 0;
  max-width: 655px;
}

.agenda-slider .title-bar .slide-nav-wrapper {
  width: 50%;
  max-width: 390px;
  display: flex;
  justify-content: space-between;
}

.agenda-slider .agenda-slides {
  overflow: visible;
}

.agenda-slider .agenda-slide p.date-text {
  font-weight: bold;
  font-family: oscine, serif;
}

.agenda-slider .agenda-slide p.title-text {
  font-family: oscine, serif;
  font-size: 1.4rem;
}

.agenda-slider .agenda-slide img {
  margin-bottom: 1em;
}

.agenda-slider .swiper-button-disabled {
  opacity: 1;
}

.agenda-slider .swiper-button-prev,
.agenda-slider .swiper-button-next {
  top: 13px;
}

@media screen and (min-width: 768px) {
  .agenda-slider .title-bar .agenda-navigation {
    position: relative;
    width: 50px;
  }
}

@media screen and (max-width: 767px) {
  .agenda-slider {
    padding-bottom: 4em;
    position: relative;
    bottom: 0;
  }

  .agenda-slider .title-bar .agenda-scrollbar {
    max-width: none;
    margin: 0 30px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    bottom: -4em;
    top: auto;
  }

  .agenda-slider .title-bar .slide-nav-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: none;
  }

  .agenda-slider .swiper-button-prev,
  .agenda-slider .swiper-button-next {
    top: -42px;
  }
}
.blog-cta-banner {
  display: flex;
  justify-content: space-between;
  background-color: var(--dark-blue);
  align-items: center;
  padding: 3em 5em;
}

@media screen and (min-width: 768px) {
  .blog-cta-banner .col-2 {
    padding: 0 3em;
  }
}

@media screen and (max-width: 767px) {
  .blog-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 3em;
  }

  .blog-cta-banner .col-2 {
    padding: 2em 0;
  }
}
.blog-filter.filters-desktop {
  margin-top: 3em;
}

.blog-filter a.button.filter {
  border: 1px solid var(--white);
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.blog-filter a.button.filter.active {
  background-color: var(--white);
  color: var(--dark-blue);
}

.blog-filter a.button.filter:hover {
  border-color: var(--turquoise);
  background-color: var(--turquoise);
  color: var(--dark-blue);
}

.blog-filter a.button.filter.hidden {
  width: 0;
  padding: 0;
}

.blog-filter button.show-more:hover,
.blog-filter button.show-more:focus,
.blog-filter button.show-more:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .blog-filter.mob-select {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .blog-filter.filters-desktop {
    display: none;
  }

  .blog-filter.mob-select {
    margin-top: 3em;
  }

  .blog-filter.mob-select select {
    width: 100%;
    background-color: var(--white);
    color: var(--dark-blue);
    font-size: 0.9rem;
    padding: 1em 0;
    position: relative;
    border: none;
    outline: unset;
    text-align: center;
  }
}
.blog-listing {
  display: grid;
}

.blog-listing article.blog-post {
  display: flex;
  flex: 1;
  background-color: var(--white);
}

.blog-listing .card.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-listing .card img {
  width: 100%;
  display: flex;
}

.blog-listing .card .card-content-wrap {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.blog-listing .card .card-content-wrap .card_tags {
  margin-bottom: 0.5rem;
  display: flex;
}

.blog-listing .card .card-content-wrap .card_tags p,
.blog-listing .card .card-content-wrap .card_tags time {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0;
}

.blog-listing .card .card-content-wrap h3.card_title {
  margin-bottom: 0.7rem;
}

.blog-listing .card .card-content-wrap a {
  text-decoration: none;
}

.blog-listing .card .card-content-wrap a:hover {
  text-decoration: underline;
}
.custom-list .list-item {
  padding: 10px 0 10px 35px;
  margin-bottom: 2em;
}
div.d3-container .modal-toggle-on > img {
  cursor: pointer;
  margin-bottom: 2em;
}

div.d3-container .modal:not(.hidden) {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
  overflow-y: scroll;
}

div.d3-container .modal::after {
  background-color: #000;
  position: absolute;
  height: 150%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.6s ease-in-out;
}

div.d3-container .modal:not(.hidden)::after {
  content: '';
  opacity: 0.6;
}

div.d3-container div.d3 {
  height: auto;
  max-height: 85vh !important;
  max-width: none !important;
  margin: 0 20px;
  width: auto;
  z-index: 1;
}

button.toggle-modal {
  position: absolute;
  top: 14px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  div.d3-container div.d3 {
    max-width: 100vw !important;
  }
}
.document-slider .title-bar {
  margin-bottom: 5em;
}

.document-slider .title-bar .title {
  max-width: 655px;
}

.document-slider .title-bar .document-scrollbar {
  width: 50%;
  background-color: var(--dark-blue);
}

.document-slider .document-slides {
  overflow: visible;
}

.document-slider .document-slide {
  padding: 1.5em 0 1.5em 2.5em;
}

.document-slider .document-slide:nth-of-type(odd) {
  background-color: var(--dark-blue);
}

.document-slider .document-slide:nth-of-type(even) {
  background-color: var(--turquoise);
}

.document-slider
  .document-slide:nth-of-type(even)
  a.cta_button.button.white:hover {
  background-color: var(--dark-blue) !important;
  color: var(--white) !important;
}

.document-slider .document-slide .content {
  width: 52%;
}

.document-slider .document-slide .content h3,
.document-slider .document-slide .content p {
  color: var(--white);
}

.document-slider .document-slide img {
  position: absolute;
  right: 5%;
  width: 35%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-box-shadow: 6px 6px 6px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 6px 6px 6px 1px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 768px) {
  .document-slider .document-navigation {
    display: none;
  }

  .document-slider .title-bar .document-scrollbar {
    margin-top: 2em;
  }
}

@media screen and (max-width: 767px) {
  .document-slider-wrapper {
    padding: 60px 0 140px;
  }

  .document-slider {
    padding-bottom: 5em;
    position: relative;
    bottom: 0;
  }

  .document-slider .title-bar {
    margin-bottom: 2em;
  }

  .document-slider .title-bar .document-scrollbar {
    position: absolute;
    width: 100%;
    max-width: none;
    bottom: 0;
  }

  .document-slider .document-slide img {
    display: none;
  }

  .document-slider .document-slide .content {
    width: 100%;
  }

  .document-slider .document-slide {
    padding: 2em 40px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    bottom: -4em;
    top: auto;
  }

  .document-slider .swiper-button-disabled {
    opacity: 1;
  }

  .document-slider .swiper-button-disabled svg path {
    fill: var(--turquoise);
  }
}
.downloads-swiper {
  overflow: visible;
}

.downloads .download {
  padding: 2.5em;
  justify-content: space-between;
}

.downloads .download h4 {
  margin-right: 10px;
  font-weight: normal;
  max-width: 80%;
}

.downloads .download a {
  margin-top: 0.6em;
  display: flex;
  justify-content: center;
}

.downloads .title-bar {
  margin-bottom: 2em;
}

.downloads .title-bar .title-container {
  max-width: 655px;
}

.downloads .title-bar h3 {
  margin: 0 0 0.5rem;
}

.downloads .title-bar .slide-nav-wrapper {
  width: 50%;
  max-width: 390px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.downloads .swiper-button-disabled {
  opacity: 1;
}

.downloads .swiper-button-disabled svg path {
  fill: var(--turquoise);
}

.downloads .swiper-button-prev,
.downloads .swiper-button-next {
  top: 13px;
}

@media screen and (min-width: 768px) {
  .downloads .title-bar .downloads-navigation {
    position: relative;
    width: 50px;
  }
}

@media screen and (max-width: 767px) {
  .downloads {
    padding-bottom: 4em;
    position: relative;
    bottom: 0;
  }

  .downloads .title-bar .slide-nav-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: none;
  }

  .downloads .title-bar .slide-nav-wrapper .swiper-scrollbar {
    max-width: none;
    margin: 0 30px;
  }

  .downloads .swiper-button-prev,
  .downloads .swiper-button-next {
    top: -42px;
  }

  .downloads .swiper-button-prev,
  .downloads .swiper-button-next {
    bottom: -0.5em;
    top: auto;
  }
}

.module_downloads {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.download_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #fff;
  padding: 20px;
}
.download_file_name,
.download_file_name a {
  color: #fff;
  display: block;
  width: 100%;
}
.download_icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.download_icons a {
  transform: translate(0, 0);
  transition: all 0.3s;
}
.download_icons a:hover,
.download_file_name:hover ~ .download_icons a:first-child {
  transform: translate(0, -2px);
}
.event-banner {
  min-height: 680px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}

.event-banner::before,
.event-banner::after {
  display: block;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.event-banner::after {
  opacity: 0.5;
}

.event-banner::before {
  background: rgb(0, 0, 60);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 60, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.event-banner .content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

.event-banner .content-wrapper .banner-content-wrapper {
  max-width: 595px;
}

.event-banner .content-wrapper .banner-content-wrapper h1 {
  margin-bottom: 0.8em;
}

.event-banner .details {
  margin-bottom: 3em;
}

.event-banner .details .detail {
  margin-bottom: 1.5em;
}

.event-banner .details .detail img {
  margin-right: 1em;
}

.event-banner .details .detail h3 {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .event-banner .content-wrapper .banner-content-wrapper h1 {
    margin-bottom: 1.8em;
  }

  .event-banner .content-wrapper .banner-content-wrapper {
    max-width: 460px;
  }

  .event-banner .content-wrapper .banner-content-wrapper h3 {
    font-size: 1.12rem;
  }

  .event-banner .details .detail {
    margin-bottom: 2em;
  }
}
article.featured-blog-post .card {
  height: 538px;
  position: relative;
}

article.featured-blog-post .card a:hover {
  text-decoration: none;
}

article.featured-blog-post .alignment-wrap {
  display: flex;
  height: 100%;
}

article.featured-blog-post .card_header {
  width: 100%;
  height: 100%;
}

article.featured-blog-post .card_header img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

article.featured-blog-post .card-content-wrap {
  padding: 2em;
  background-color: var(--white);
  width: 640px;
}

article.featured-blog-post .card_tags {
  margin-bottom: 0.4rem !important;
  display: flex;
}

article.featured-blog-post .card_tags p,
article.featured-blog-post .card_tags time {
  font-weight: bold;
  margin-bottom: 0;
}

article.featured-blog-post a {
  text-decoration: none;
}

article.featured-blog-post a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  article.featured-blog-post .alignment-wrap {
    flex-direction: column;
  }

  article.featured-blog-post .card-content-wrap {
    width: 100%;
  }
}
.form-banner-wrapper {
  position: relative;
}

.form-banner-wrapper::before {
  left: 0;
}

.form-banner-wrapper::after {
  right: 0;
}

.form-banner-wrapper::before,
.form-banner-wrapper::after {
  width: 50%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.form-banner-wrapper .form-banner {
  position: relative;
  z-index: 2;
}

.form-banner-wrapper .form-banner .left {
  margin-top: 5em;
  width: 45%;
  max-width: 470px;
}

.form-banner-wrapper .form-banner .left img.form-banner-icon {
  margin-bottom: 2em;
}

.form-banner-wrapper .form-banner .left h1 {
  margin-bottom: 0.5em;
}

.form-banner-wrapper .form-banner .left .bottom-image img {
  margin-bottom: -50px;
  margin-top: 5em;
}

.form-banner-wrapper .form-banner .right {
  width: 45%;
  padding: 5em 0;
}

.form-banner-wrapper
  .form-banner
  .right.hide-intro
  .form-columns-0
  .hs-richtext {
  display: none;
}

@media screen and (max-width: 767px) {
  .form-banner-wrapper .content-wrapper {
    padding: 0;
  }
  .form-banner-wrapper .form-banner {
    flex-direction: column;
  }

  .form-banner-wrapper .form-banner .left,
  .form-banner-wrapper .form-banner .right {
    width: 100%;
  }

  .form-banner-wrapper::before,
  .form-banner-wrapper::after {
    display: none;
  }

  .form-banner-wrapper .form-banner .left {
    max-width: none;
    margin: 0;
    padding: 5em 20px;
  }

  .form-banner-wrapper .form-banner .right {
    padding: 4em 20px;
  }

  .form-banner-wrapper .form-banner .left .bottom-image {
    position: relative;
  }

  .form-banner-wrapper .form-banner .left .bottom-image img {
    margin-bottom: -100px;
  }
}


.sticky-columns section.gated-content {
  position: relative;
  bottom: 0;
  z-index: 9;
}
@media (min-width: 1025px) {
  .sticky-columns section.gated-content {
    width: calc(100% + 140px);
    left: -100px;
  }
}

section.gated-content::before {
  top: 0;
  height: 40%;
}

section.gated-content::after {
  bottom: 0;
  height: 60%;
}

section.gated-content::before,
section.gated-content::after {
  position: absolute;
  width: 100%;
  content: "";
  display: block;
  z-index: 4;
}

section.gated-content {
  position: relative;
}

section.gated-content .content-wrapper {
  position: relative;
  z-index: 5;
}

section.gated-content .content-wrapper .content-columns {
  gap: 30px;
  display: grid;
  justify-items: center;
  margin-top: 4em;
}

section.gated-content .content-wrapper .content-column {
  max-width: 780px;
}

.graph-slider {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.graph-slider .column {
  display: flex;
  flex-direction: column;
}

.graph-slider .column .cell {
  display: flex;
  flex-direction: column;
  min-height: 120px;
  margin: 10px 0;
}

.graph-slider .column .cell p,
.graph-slider .column .cell h2,
.graph-slider .column .cell h3,
.graph-slider .column .cell h4 {
  margin: 0;
}

.graph-slider .column .cell:not(.top-row) {
  justify-content: center;
}

.graph-slider .column .cell.bg {
  background-color: #e5faff;
  padding: 0 1em;
}

.graph-slider .column .cell.top-row {
  min-height: 195px;
  justify-content: flex-end;
}

.graph-slider .column .cell img {
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .graph-nav-wrapper {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .graph-slider {
    overflow: visible;
    position: relative;
    padding-bottom: 50px;
  }

  .graph-slider .graph-nav-wrapper {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
  }

  .graph-slider .graph-nav-wrapper svg path {
    fill: var(--dark-blue);
  }

  .graph-slider .graph-nav-wrapper .swiper-button-disabled {
    opacity: 1;
  }

  .graph-slider .graph-nav-wrapper .swiper-button-disabled svg path {
    fill: var(--turquoise);
  }

  .graph-slider .graph-scrollbar {
    background: var(--dark-blue);
    margin: -13px 30px 0;
    max-width: none;
  }
}
.hero-banner-wrapper {
  position: relative;
}

.hero-banner {
  padding: 4em 0;
}

.hero-banner .left {
  width: 55%;
}

.hero-banner .right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40%;
}

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

@media screen and (max-width: 767px) {
  .hero-banner {
    flex-direction: column;
    padding: 4em 0 0;
  }

  .hero-banner .left,
  .hero-banner .right {
    width: 100%;
    max-width: none;
  }

  .hero-banner .left {
    margin-bottom: 3em;
  }

  .hero-banner .right {
    position: static;
    display: flex;
  }

  .hero-banner .right img {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}
section.image-carousel-wrapper .title-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

section.image-carousel-wrapper .title-nav h3 {
  margin: 0;
}

section.image-carousel-wrapper .title-nav .image-carousel-scrollbar {
  height: 1px;
  width: 50%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

section.image-carousel-wrapper
  .title-nav
  .image-carousel-scrollbar
  .swiper-scrollbar-drag {
  height: 6px;
  position: absolute;
  top: -2px;
  left: 0px;
  border-radius: 0px;
}

section.image-carousel-wrapper .swiper-wrapper {
  transition-timing-function: linear;
  padding: 64px 0px;
}

section.image-carousel-wrapper .swiper-wrapper .swiper-slide {
  height: auto;
}

.ls-logo img {
  width: 100%;
}

.image-carousel-arrows {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 100%;
  z-index: 200;
}

.image-carousel-arrows .arrow {
  width: 24px;
  height: auto;
  cursor: pointer;
}

.image-carousel-arrows .arrow.swiper-button-disabled {
  opacity: 0.5;
}

.image-carousel-arrows .arrow svg {
  width: 100%;
  height: auto;
}
.image-carousel-wrapper .swiper-slide img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  section.image-carousel-wrapper {
    margin-top: 0px;
  }

  section.image-carousel-wrapper .content-wrapper {
    padding: 24px;
    border-radius: 0px;
    width: 100%;
  }
}

/* modal content styles */
.modal-content-wrapper {
  max-width: 1400px;
  width: 90%;
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 70px 0;
}
.modal-content-wrapper .image-modal-content {
  flex: 0 0 30%;
  cursor: pointer;
  transition: 300ms ease-out;
  margin-right: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .modal-content-wrapper .image-modal-content {
    flex: 0 0 45%;
  }
}
@media (max-width: 550px) {
  .modal-content-wrapper .image-modal-content {
    flex: 0 0 100%;
  }
}
.modal-content-wrapper .image-modal-content:hover {
  transform: scale(1.03);
  transition: 300ms ease-in;
}
.modal-content-wrapper .image-modal-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* modal popup styles */
.image-modal-popup {
  position: fixed;
  overflow: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  animation: 500ms fadeIn;
  display: none;
  z-index: 9999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.image-modal-popup .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  margin-top: 30px;
  position: relative;
}

.image-modal-popup .description {
  text-align: center;
}
.image-modal-popup img {
  max-height: calc(100vh - 150px);
  margin-bottom: 10px;
  cursor: pointer;
  max-width: 95%;
}
.image-modal-popup span {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.image-carousel-wrapper .swiper-slide img:hover {
  cursor: pointer !important;
}

section.image-carousel-wrapper .swiper-slide {
  height: auto;
}
.fullscreen-icon {
  right: 10px;
  position: absolute;
  bottom: 10px;
  z-index: 9999;
  width: 35px;
  pointer-events: none;
}

.fullscreen-icon .fs-icon {
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
}

.fullscreen-icon .fs-icon .arrow {
  -webkit-transition: prefixed-for-transition(-webkit-, fill 1s ease);
  -moz-transition: prefixed-for-transition(-moz-, fill 1s ease);
  -ms-transition: prefixed-for-transition(-ms-, fill 1s ease);
  -o-transition: prefixed-for-transition(-o-, fill 1s ease);
  transition: fill 1s ease;
}
.fullscreen-icon .fs-icon .tl {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform: 50%;
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
  animation: tl 1s ease-in-out;
}
.fullscreen-icon .fs-icon .tr {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform: 50%;
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
  animation: tr 1s ease-in-out;
}
.fullscreen-icon .fs-icon .bl {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform: 50%;
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
  animation: bl 1s ease-in-out;
}
.fullscreen-icon .fs-icon .br {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform: 50%;
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
  animation: br 1s ease-in-out;
}
.image-carousel-wrapper .swiper-slide:hover .fs-icon {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
}
.image-carousel-wrapper .swiper-slide:hover .fs-icon .arrow {
  -webkit-transition: prefixed-for-transition(-webkit-, fill 1s ease);
  -moz-transition: prefixed-for-transition(-moz-, fill 1s ease);
  -ms-transition: prefixed-for-transition(-ms-, fill 1s ease);
  -o-transition: prefixed-for-transition(-o-, fill 1s ease);
  transition: fill 1s ease;
  -webkit-transition: prefixed-for-transition(
    -webkit-,
    transform 0.5s ease-out
  );
  -moz-transition: prefixed-for-transition(-moz-, transform 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, transform 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, transform 0.5s ease-out);
  transition: transform 0.5s ease-out;
}
.image-carousel-wrapper .swiper-slide:hover .fs-icon .tl {
  -webkit-transform: translate(-4px, -4px);
  -moz-transform: translate(-4px, -4px);
  -ms-transform: translate(-4px, -4px);
  -o-transform: translate(-4px, -4px);
  transform: translate(-4px, -4px);
}
.image-carousel-wrapper .swiper-slide:hover .fs-icon .tr {
  -webkit-transform: translate(4px, -4px);
  -moz-transform: translate(4px, -4px);
  -ms-transform: translate(4px, -4px);
  -o-transform: translate(4px, -4px);
  transform: translate(4px, -4px);
}
.image-carousel-wrapper .swiper-slide:hover .fs-icon .bl {
  -webkit-transform: translate(-4px, 4px);
  -moz-transform: translate(-4px, 4px);
  -ms-transform: translate(-4px, 4px);
  -o-transform: translate(-4px, 4px);
  transform: translate(-4px, 4px);
}
.image-carousel-wrapper .swiper-slide:hover .fs-icon .br {
  -webkit-transform: translate(4px, 4px);
  -moz-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  -o-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
}
.image-carousel-wrapper .swiper-slide:active .fs-icon {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
}
.image-carousel-wrapper .swiper-slide:active .fs-icon .arrow {
  fill: #82d44b;
  -webkit-transition: prefixed-for-transition(-webkit-, fill 1s ease);
  -moz-transition: prefixed-for-transition(-moz-, fill 1s ease);
  -ms-transition: prefixed-for-transition(-ms-, fill 1s ease);
  -o-transition: prefixed-for-transition(-o-, fill 1s ease);
  transition: fill 1s ease;
  opacity: 0;
}
.image-carousel-wrapper .swiper-slide:active .fs-icon .tl {
  -webkit-transform: translate(-60px, -60px);
  -moz-transform: translate(-60px, -60px);
  -ms-transform: translate(-60px, -60px);
  -o-transform: translate(-60px, -60px);
  transform: translate(-60px, -60px);
  -webkit-transition: prefixed-for-transition(-webkit-, 0.2s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.2s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.2s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.2s ease-out);
  transition: 0.2s ease-out;
}
.image-carousel-wrapper .swiper-slide:active .fs-icon .tr {
  -webkit-transform: translate(60px, -60px);
  -moz-transform: translate(60px, -60px);
  -ms-transform: translate(60px, -60px);
  -o-transform: translate(60px, -60px);
  transform: translate(60px, -60px);
  -webkit-transition: prefixed-for-transition(-webkit-, 0.2s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.2s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.2s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.2s ease-out);
  transition: 0.2s ease-out;
}
.image-carousel-wrapper .swiper-slide:active .fs-icon .bl {
  -webkit-transform: translate(-60px, 60px);
  -moz-transform: translate(-60px, 60px);
  -ms-transform: translate(-60px, 60px);
  -o-transform: translate(-60px, 60px);
  transform: translate(-60px, 60px);
  -webkit-transition: prefixed-for-transition(-webkit-, 0.2s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.2s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.2s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.2s ease-out);
  transition: 0.2s ease-out;
}
.image-carousel-wrapper .swiper-slide:active .fs-icon .br {
  -webkit-transform: translate(60px, 60px);
  -moz-transform: translate(60px, 60px);
  -ms-transform: translate(60px, 60px);
  -o-transform: translate(60px, 60px);
  transform: translate(60px, 60px);
  -webkit-transition: prefixed-for-transition(-webkit-, 0.2s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.2s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.2s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.2s ease-out);
  transition: 0.2s ease-out;
}
.fullscreen.full .fs-icon .tl,
.fullscreen.full .fs-icon .br {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform: 50%;
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
}
.fullscreen.full .fs-icon .tr,
.fullscreen.full .fs-icon .bl {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform: 50%;
  -webkit-transition: prefixed-for-transition(-webkit-, 0.5s ease-out);
  -moz-transition: prefixed-for-transition(-moz-, 0.5s ease-out);
  -ms-transition: prefixed-for-transition(-ms-, 0.5s ease-out);
  -o-transition: prefixed-for-transition(-o-, 0.5s ease-out);
  transition: 0.5s ease-out;
}
.fullscreen.full:hover .fs-icon {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.fullscreen.full:hover .fs-icon .tl {
  -webkit-transform: translate(-8px, -8px);
  -moz-transform: translate(-8px, -8px);
  -ms-transform: translate(-8px, -8px);
  -o-transform: translate(-8px, -8px);
  transform: translate(-8px, -8px);
}
.fullscreen.full:hover .fs-icon .tr {
  -webkit-transform: translate(8px, -8px);
  -moz-transform: translate(8px, -8px);
  -ms-transform: translate(8px, -8px);
  -o-transform: translate(8px, -8px);
  transform: translate(8px, -8px);
}
.fullscreen.full:hover .fs-icon .bl {
  -webkit-transform: translate(-8px, 8px);
  -moz-transform: translate(-8px, 8px);
  -ms-transform: translate(-8px, 8px);
  -o-transform: translate(-8px, 8px);
  transform: translate(-8px, 8px);
}
.fullscreen.full:hover .fs-icon .br {
  -webkit-transform: translate(8px, 8px);
  -moz-transform: translate(8px, 8px);
  -ms-transform: translate(8px, 8px);
  -o-transform: translate(8px, 8px);
  transform: translate(8px, 8px);
}

@keyframes tl {
  0% {
    transform: translate(8px, 8px);
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes tr {
  0% {
    transform: translate(-8px, 8px);
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes bl {
  0% {
    transform: translate(8px, -8px);
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes br {
  0% {
    transform: translate(-8px, -8px);
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.quote-box {
  padding: 100px 70px 50px;
  position: relative;
}

.quote-box .quote-icon {
  position: absolute;
  top: -6em;
  left: -3em;
  width: 198px;
}
.quote-box .quote-icon svg {
  width: 100%;
}
@media screen and (max-width: 1330px) {
  .quote-box .quote-icon {
    left: -10px;
  }
}

@media screen and (max-width: 767px) {
  .quote-box {
    padding: 50px 20px 3em;
    margin-left: -20px;
    width: calc(100% + 40px);
  }

  /* START LINE ADDED BY PC TO FIX PADDING/MARGIN ISSUE ON PROD LIST PAGE */

  .quote-box.v2 {
    padding: 50px 20px 3em;
    margin-left: 0px;
    width: 100% !important;
  }

  /* END LINE ADDED BY PC TO FIX PADDING/MARGIN ISSUE ON PROD LIST PAGE */

  .quote-box .quote-icon {
    left: 20px;
  }

  .quote-box .quote-icon svg {
    max-width: 100px;
  }
}

.quote-box.v2 {
  padding: 130px 50px 130px 230px;
}

.quote-box.v2 .quote-box__icon {
  position: absolute;
  left: 0;
  top: 0;
  padding: 40px;
  transform-origin: top left;
}

.quote-box.v2 h3 {
  font-size: 46px;
}

.quote-swiper__controls {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 40px;
  right: 50px;
  bottom: 80px;
  z-index: 2;
}

.quote-swiper__controls > * {
  cursor: pointer;
}

.quote-swiper__controls__prev svg {
  transform: rotate(180deg);
}

.quote-swiper__controls > *:not(.swiper-button-disabled) svg g g,
.quote-swiper__controls > *:not(.swiper-button-disabled) svg g path {
  transition: 0.2s ease-in-out;
}

.quote-swiper__controls > *:not(.swiper-button-disabled) svg g g {
  fill: #01003c;
}

.quote-swiper__controls > *:not(.swiper-button-disabled) svg g path {
  fill: #fff;
}

@media screen and (max-width: 767px) {
  .quote-box.v2 h3 {
    font-size: 30px;
  }
}
h3.all {
  margin-bottom: 2em;
}
.resource-listing article.resource {
  margin: 0 1% 2.5em;
}
.resource-listing article.resource:hover h3 {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .resource-listing {
    height: auto !important;
  }

  .resource-listing article.resource {
    width: 100%;
    display: block;
    margin: 20px 0;
    position: static !important;
  }
}
.selected-filter-item {
  display: inline-flex;
  background: #dedede;
  padding: 3px 15px 3px 10px;
  position: relative;
  gap: 10px;
  margin: 0 10px 10px 0;
  font-size: 12px;
  border-radius: 2px;
}
.selected-filter-item:hover {
  cursor: pointer;
}
.selected-filter-item:after {
  content: '\00d7';
  position: absolute;
  top: 1px;
  right: 3px;
  font-size: 8px;
}
.selected-filter-item.service {
  background-color: #e9e9e9;
}
.selected-filter-item.riskprogramme {
  background-color: #dddddd;
}
.selected-filter-item.resourcetype {
  background-color: #cfcccc;
}
.selected-filter-item.orxcommunity {
  background-color: #c7c6c6;
}
.selected-filter-item.year {
  background-color: #b4b4b4;
}
.no-results-message-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.speaker-slider-wrapper {
  padding: 60px 0;
  position: relative;
}

.speaker-slider-wrapper::after {
  display: block;
  content: '';
  width: 100%;
  height: 128px;
  position: absolute;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
}

.speaker-slider .title-bar {
  margin-bottom: 5em;
}

.speaker-slider .title-bar h2 {
  margin: 0;
  max-width: 655px;
}

.speaker-slider .title-bar .slide-nav-wrapper {
  width: 50%;
  max-width: 390px;
  display: flex;
  justify-content: space-between;
}

.speaker-slider .speaker-slides {
  overflow: visible;
}

.speaker-slider .speaker-slide img {
  margin-bottom: 1em;
  height: 410px !important;
  width: 298px;
  object-fit: cover;
}

.speaker-slider .speaker-slide svg {
  margin-right: 0.5em;
}

.speaker-slider .speaker-slide a {
  text-decoration: none;
}

.speaker-slider .speaker-slide a:hover span {
  text-decoration: underline;
}

.speaker-slider-wrapper a.button {
  margin-top: 4em;
}

.speaker-slider .swiper-button-disabled {
  opacity: 1;
}

.speaker-slider .swiper-button-disabled svg path {
  fill: var(--turquoise);
}

.speaker-slider .swiper-button-prev,
.speaker-slider .swiper-button-next {
  top: 13px;
}

.speaker-slider span.linkedin {
  font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
  .speaker-slider .title-bar .speaker-navigation {
    position: relative;
    width: 50px;
  }
}

@media screen and (max-width: 767px) {
  .speaker-slider-wrapper {
    padding: 60px 0 140px;
  }

  .speaker-slider {
    padding-bottom: 4em;
    position: relative;
    bottom: 0;
  }

  .speaker-slider .title-bar .slide-nav-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: none;
  }

  .speaker-slider .title-bar .slide-nav-wrapper .swiper-scrollbar {
    max-width: none;
    margin: 0 30px;
  }

  .speaker-slider .swiper-button-prev,
  .speaker-slider .swiper-button-next {
    top: -42px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    bottom: -4em;
    top: auto;
  }

  .speaker-slider-wrapper a.button {
    position: absolute;
    bottom: 0;
    margin-bottom: 50px !important;
  }

  .speaker-slider-wrapper::after {
    top: 40%;
  }
}
.tabbed-loader .title-bar {
  margin-bottom: 4em;
}

.tabbed-loader .title-bar .title {
  margin: 0 5px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.tabbed-loader .title-bar .title p {
  font-family: oscine, sans-serif;
}

.tabbed-loader .title-bar .title.active::after {
  width: 100%;
}

.tabbed-loader .title-bar .title::after {
  content: '';
  display: block;
  height: 5px;
  left: 0;
  bottom: -3px;
  position: absolute;
  transition: none;
}

.tabbed-loader.autotab .title-bar .title::after {
  width: 0;
}

.tabbed-loader .tabs .tab.show {
  opacity: 1;
}

.tabbed-loader .tabs .tab p {
  font-family: oscine, sans-serif;
}

.tabbed-loader .tabs .tab {
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  opacity: 0;
  transition: 0.4s linear;
}

.tabbed-loader .tabs .tab:not(.active) {
  display: none;
}

@media (min-width: 768px) {
  .tabbed-loader .title-bar .title:last-of-type {
    margin: 0 0 0 10px;
  }

  .tabbed-loader .title-bar .title:first-of-type {
    margin: 0 10px 0 0;
  }

  .tabbed-loader .mob-arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .tabbed-loader .tabs .tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .tabbed-loader .tabs .tab img {
    margin-top: 3em;
  }

  .tabbed-loader .title-bar {
    position: relative;
  }

  .tabbed-loader .title-bar .title {
    margin: 0;
  }

  .tabbed-loader .title-bar .title:not(.active) {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .tabbed-loader .mob-arrow {
    position: absolute;
    z-index: 2;
  }

  .tabbed-loader .mob-arrow.right {
    right: 0;
  }
}
.testimonial {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 8em 0 5em;
  position: relative;
  z-index: 2;
}

.testimonial-wrapper svg {
  position: absolute;
  top: -4.5em;
  left: 0;
}

@media screen and (max-width: 767px) {
  .testimonial {
    display: flex;
    flex-direction: column;
    padding: 7em 0 5em;
  }

  .testimonial-wrapper svg {
    max-width: 127px;
  }

  .testimonial-wrapper img {
    width: 100%;
  }
}
.three-column-repeater {
  gap: 20px;
}

.three-column-repeater .column {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: ;
}

.three-column-repeater .column img {
  width: 100%;
  height: 221px !important;
  object-fit: cover;
  object-position: center;
}

.three-column-repeater .column .content {
  padding: 2em 2em 3em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.three-column-repeater .column .content a.cta_button.button {
  margin: 1.5em 0 0 !important;
  display: flex;
  justify-content: center;
}
.video-wrapper {
  position: relative;
  cursor: pointer;
}

.video-wrapper svg path,
.video-wrapper svg > g > g {
  transition: all 0.3s ease-in-out;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
}
.video-wrapper.paused video {

  pointer-events: none;
}

.video-wrapper.paused svg {
  opacity: 1;
}

.video-wrapper svg {
  position: absolute;
  display: block;
  bottom: 50%;
  right: 50%;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translate(50%, 50%);
}

@media (max-width: 767px) {
  .video-wrapper svg {
    width: 30%;
    height: 30%;
  }
}
.gated_video{
  position: relative;

}
.gated_video img{
  width: 100%;
  height: auto;
}
.gated_video_message{

  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  position: absolute;
padding: 20px;
}