@charset "UTF-8";
/**
 * All abstracts import
 * (Split out to a dedicated file so that all abstracts can be imported at once in styles:blocks created stylesheets)
 */
:root {
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.nav-menu-open, body.dialog-open {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--dp-black);
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}

:root {
  --block-padding__small: 25px;
  --block-padding__medium: 50px;
  --block-padding__large: 100px;
}
@media (max-width: 61.24em) {
  :root {
    --block-padding__small: calc(25px * 0.75);
    --block-padding__medium: calc(50px * 0.6);
    --block-padding__large: calc(100px * 0.5);
  }
}
:root {
  /*
   * Team grid vars
   */
  --max-width: 1362px;
  --card-gap: 48px;
  --card-width: 100%;
}
@media (min-width: 28.75em) {
  :root {
    --card-width: calc(50% - var(--card-gap));
  }
}
@media (min-width: 45em) {
  :root {
    --card-width: calc((((var(--max-width) - 72px)) - (var(--card-gap) * 4)) / 5);
  }
}
@media (min-width: 76.75em) and (max-width: 85.115em) {
  :root {
    --max-width: 1228px;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

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

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

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

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

body {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dp-black);
}

p {
  margin: 0 0 20px;
}
p + ul {
  margin-top: 1.6rem;
}

.site-main ul:not(.support-article__sidebar-nav ul, .single ul, .pricing-card__list-points) {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 26px;
  margin: 0 0 16px;
  list-style: none;
}
.site-main ul:not(.support-article__sidebar-nav ul, .single ul, .pricing-card__list-points) li {
  position: relative;
  margin-bottom: 16px;
}
.site-main ul:not(.support-article__sidebar-nav ul, .single ul, .pricing-card__list-points) li:before {
  content: "";
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  background: var(--bullet-point-color, var(--dp-red));
  display: block;
  position: absolute;
  left: -26px;
  top: -1px;
  height: 24px;
  width: 12px;
}
.site-main .block p a, .site-main .block li a {
  color: var(--dp-red);
}
.single .site-main {
  font-size: 1rem;
  line-height: 1.875;
}
.single .site-main p {
  margin-bottom: var(--block-padding__small);
}
.single .site-main p a {
  color: var(--dp-red);
}
.single .site-main > p:first-child {
  padding-top: var(--block-padding__medium);
}
.single .site-main ul {
  padding-left: 55px;
}
.single .site-main ul.support-article__sidebar-page-list {
  padding-left: 0;
}

strong {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.8125rem;
  line-height: 1.1111111111;
}
@media (min-width: 45em) {
  h1 {
    font-size: 4.0625rem;
    line-height: 1.0769230769;
  }
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.625rem;
  line-height: 1.1428571429;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  h3 {
    font-size: 2rem;
    line-height: 1.25;
  }
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.25;
}

.polylink-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.site-main {
  flex: 1 0 auto;
  width: 100%;
}
.site-main:not(.single-support_hub .site-main) {
  overflow-x: hidden;
}
.site-main > *:not(.block) {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .site-main > *:not(.block) {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .site-main > *:not(.block) {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .site-main > *:not(.block) {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .site-main > *:not(.block) {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .site-main > *:not(.block) {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .site-main > *:not(.block) {
    padding-right: 36px;
  }
}
.single-post .site-main > *, .single-case_studies .site-main > *, .single-team .site-main > * {
  max-width: 911px;
  margin-left: auto;
  margin-right: auto;
}
.single-post .site-main > *:last-child.call-to-action, .single-case_studies .site-main > *:last-child.call-to-action, .single-team .site-main > *:last-child.call-to-action {
  max-width: none;
}

.site-header {
  width: 100%;
  z-index: 101;
  position: sticky;
  top: 0;
  height: 90px;
  pointer-events: none;
}
@media (min-width: 85.125em) {
  .site-header {
    height: 147px;
  }
  .page-template-template-support-hub .site-header, .single-support_hub .site-header {
    height: 118px;
  }
}
body.admin-bar .site-header {
  top: 32px;
}
.site-header__inner {
  background-color: #FFFFFF;
  transition: height 0.3s;
  pointer-events: all;
  position: relative;
}
.site-header__inner,
.site-header__inner .site-header__content {
  height: 100%;
}
.site-header__inner .site-header__content {
  max-width: 1462px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .site-header__inner .site-header__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .site-header__inner .site-header__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .site-header__inner .site-header__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .site-header__inner .site-header__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .site-header__inner .site-header__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .site-header__inner .site-header__content {
    padding-right: 36px;
  }
}
.site-header__inner .site-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 41.24em) {
  .site-header__inner .site-header__content {
    gap: 20px;
  }
}
@media (min-width: 85.125em) {
  .scrolled .site-header__inner {
    height: 90px;
  }
}
.nav-menu-open .site-header .site-header__inner,
.nav-menu-open .site-header .site-header__content {
  height: 90px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-header__logo svg {
  width: auto;
  height: 52px;
  transition: height 0.3s;
}
@media (min-width: 61.25em) {
  .site-header__logo svg {
    height: 62px;
  }
}
@media (min-width: 85.125em) {
  .site-header__logo svg {
    height: 78px;
  }
}
@media (min-width: 85.125em) {
  .scrolled .site-header__logo svg {
    height: 62px;
  }
}
.site-header__buttons {
  display: flex;
  align-items: center;
  column-gap: 25px;
  height: 100%;
}
@media (min-width: 45em) {
  .site-header__buttons {
    column-gap: 45px;
  }
}
.site-header__buttons .site-header__request-cta {
  font-size: 1.125rem;
  line-height: 1.7777777778;
}
@media (max-width: 61.24em) {
  .site-header__buttons .site-header__request-cta {
    display: none;
  }
}
.site-header__buttons .site-header__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 25px;
}
.site-header__buttons .site-header__icons-search {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 28.74em) {
  .site-header__buttons .site-header__icons-search {
    display: none;
  }
}
.site-header__buttons .site-header__icons-login {
  font-size: 1.125rem;
  line-height: 1.7777777778;
}
.site-header__buttons .site-header__icons-account {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.site-header__buttons .site-header__icons-account:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
@media (max-width: 41.24em) {
  .site-header__buttons .site-header__icons-account {
    font-size: 0.875rem;
    line-height: 1.2;
    padding: 10px;
  }
}
.site-header {
  /**
     * Burger menu
     */
}
.site-header__nav-menu-button {
  width: 40px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 1000;
}
@media (min-width: 85.125em) {
  .site-header__nav-menu-button {
    display: none;
  }
}
.site-header__nav-menu-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--dp-red);
  border-radius: 10px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.site-header__nav-menu-button span:nth-child(1) {
  top: 0;
}
.site-header__nav-menu-button span:nth-child(2), .site-header__nav-menu-button span:nth-child(3) {
  top: 12px;
}
.site-header__nav-menu-button span:nth-child(4) {
  top: 24px;
}
.nav-menu-open .site-header__nav-menu-button span {
  background: #FFFFFF;
}
.nav-menu-open .site-header__nav-menu-button span:nth-child(1), .nav-menu-open .site-header__nav-menu-button span:nth-child(4) {
  width: 0;
  left: 50%;
}
.nav-menu-open .site-header__nav-menu-button span:nth-child(1) {
  top: 12px;
}
.nav-menu-open .site-header__nav-menu-button span:nth-child(2) {
  transform: rotate(45deg);
}
.nav-menu-open .site-header__nav-menu-button span:nth-child(3) {
  transform: rotate(-45deg);
}
.nav-menu-open .site-header__nav-menu-button span:nth-child(4) {
  top: 12px;
}

.site-footer {
  margin-top: 3rem;
}
.site-footer__nav {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .site-footer__nav {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .site-footer__nav {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .site-footer__nav {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .site-footer__nav {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .site-footer__nav {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .site-footer__nav {
    padding-right: 36px;
  }
}
.site-footer__nav {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 45em) {
  .site-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 61.25em) {
  .site-footer__nav {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 53.75em) {
  .site-footer__nav .footer-nav__container {
    margin-bottom: 25px;
  }
}
.site-footer__nav .footer-nav__container h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 10px;
}
.site-footer__nav .footer-nav__container .menu {
  font-size: 1rem;
  line-height: 1.875;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 44.99em) {
  .site-footer__nav-iso-logo svg {
    width: 140px;
  }
}
@media (min-width: 61.25em) {
  .site-footer__nav-iso-logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
.site-footer__notice-bar {
  background-color: var(--dp-red);
}
.site-footer__notice-bar .site-footer__notice {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .site-footer__notice-bar .site-footer__notice {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .site-footer__notice-bar .site-footer__notice {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .site-footer__notice-bar .site-footer__notice {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .site-footer__notice-bar .site-footer__notice {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .site-footer__notice-bar .site-footer__notice {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .site-footer__notice-bar .site-footer__notice {
    padding-right: 36px;
  }
}
.site-footer__notice-bar .site-footer__notice {
  font-size: 0.75rem;
  line-height: 2;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  column-gap: 1rem;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 45em) {
  .site-footer__notice-bar .site-footer__notice {
    flex-direction: row;
  }
}
.site-footer__notice-bar .site-footer__notice p {
  margin: 0;
}
.site-footer__notice-bar .site-footer__notice p:last-child {
  width: 150px;
}
@media (min-width: 45em) {
  .site-footer__notice-bar .site-footer__notice p:last-child {
    text-align: right;
  }
}
.site-footer__notice-bar .site-footer__notice p a {
  color: #FFFFFF;
}
.site-footer__social-links {
  list-style: none;
  padding-left: 0 !important;
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}
.site-footer__social-links li {
  display: flex;
  align-items: center;
}
.site-footer__social-links li:before {
  content: none !important;
}
.site-footer__social-links li svg {
  width: 32px;
  fill: var(--dp-red);
}
.site-footer__social-links li svg path {
  fill: var(--dp-red);
}

.site-nav {
  --secondary-padding: 20px;
}
.site-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav__menu li {
  font-size: 1.125rem;
  line-height: 1.7777777778;
}
@media (max-width: 85.115em) {
  .site-nav {
    background-color: var(--dp-black);
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 58px;
    z-index: 999;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s 0.1s;
  }
  .site-nav,
  .site-nav ul {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .site-nav__menu {
    opacity: 0;
    transform: translateX(50%);
    transition: transform 0.3s 0.2s, opacity 0.1s 0s;
    height: 100%;
  }
}
@media (max-width: 85.115em) and (min-width: 85.125em) {
  .site-nav__menu > li {
    cursor: pointer;
  }
}
@media (max-width: 85.115em) {
  .site-nav__menu > li:first-child {
    margin-top: 42px;
  }
  .site-nav__menu > li a {
    color: #FFFFFF;
  }
  .site-nav__menu > li > span > a {
    color: #FFFFFF;
  }
  .site-nav__menu > li > .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    transition: transform 0.3s;
    background-color: var(--dp-black);
    z-index: 1000;
  }
  .site-nav__menu > li > .sub-menu--is-hidden {
    transform: translateX(100%);
  }
  .site-nav__menu > li > .sub-menu a {
    color: #FFFFFF;
  }
  .site-nav__menu > li > .sub-menu li > .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    transition: transform 0.3s;
    background-color: var(--dp-black);
    z-index: 1000;
  }
  .site-nav__menu > li > .sub-menu li > .sub-menu--is-hidden {
    transform: translateX(100%);
  }
  .site-nav__menu > li > .sub-menu li > .sub-menu a {
    color: #FFFFFF;
  }
  .site-nav__menu > li.menu-item-has-children .menu-item-has-children__title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 85.115em) and (max-width: 85.115em) {
  .site-nav__menu > li.menu-item-has-children .menu-item-has-children__title {
    cursor: pointer;
  }
}
@media (max-width: 85.115em) {
  .site-nav__menu > li.menu-item-has-children .nav-arrow {
    width: 16px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='8'%20viewBox='0%200%2014%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7%207.4625C6.91563%207.4625%206.8375%207.42813%206.77813%207.37188L0.478125%201.07187C0.35625%200.949999%200.35625%200.753124%200.478125%200.631249C0.6%200.509374%200.796875%200.509374%200.91875%200.631249L7%206.70937L13.0781%200.631249C13.2%200.509374%2013.3969%200.509374%2013.5188%200.631249C13.6406%200.753124%2013.6406%200.949999%2013.5188%201.07187L7.22188%207.37188C7.1625%207.42813%207.08438%207.4625%207%207.4625Z'%20fill='%23fff'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    transform: rotate(-90deg) translateY(-50%);
    margin-left: auto;
  }
  .site-nav__menu li {
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    padding: 5px 30px;
  }
  .site-nav__menu li .sub-menu a {
    transition: transform 0.3s ease;
  }
  .site-nav__menu li .sub-menu__go-back {
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }
  .site-nav__menu li .sub-menu__parent-link {
    font-size: 1.375rem;
    background-color: #362D2D;
    margin-bottom: 10px;
  }
  .site-nav__menu li {
    /**
             * Next level special links
             */
  }
  .site-nav__menu li.alt-sub-menu.menu-item-has-children {
    position: relative;
  }
  .site-nav__menu li.alt-sub-menu.menu-item-has-children:after {
    display: block;
    content: "";
    position: absolute;
    right: 18px;
    top: 15px;
    width: 16px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='8'%20viewBox='0%200%2014%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7%207.4625C6.91563%207.4625%206.8375%207.42813%206.77813%207.37188L0.478125%201.07187C0.35625%200.949999%200.35625%200.753124%200.478125%200.631249C0.6%200.509374%200.796875%200.509374%200.91875%200.631249L7%206.70937L13.0781%200.631249C13.2%200.509374%2013.3969%200.509374%2013.5188%200.631249C13.6406%200.753124%2013.6406%200.949999%2013.5188%201.07187L7.22188%207.37188C7.1625%207.42813%207.08438%207.4625%207%207.4625Z'%20fill='%23fff'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    transform: rotate(-90deg);
  }
  .site-nav__menu li.alt-sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    transition: transform 0.3s;
  }
  .site-nav__menu li.alt-sub-menu .sub-menu--is-hidden {
    transform: translateX(100%);
  }
  .site-nav--move-out > li > span {
    transform: translateX(-100%);
    transition: transform 0.3s 0.2s, opacity 0.3s 0.2s;
  }
  .nav-menu-open .site-nav {
    transform: translateX(0%);
  }
  .nav-menu-open .site-nav__menu {
    opacity: 1;
    transform: translateX(0%);
    transition: transform 0.3s 0.2s, opacity 0.3s 0.2s;
  }
}
@media (min-width: 28.75em) and (max-width: 85.115em) {
  .site-nav {
    width: 350px;
  }
}
@media (min-width: 85.125em) {
  .site-nav {
    flex: 1;
    margin-right: 25px;
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 67px;
  }
  .site-nav__menu {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
  }
  .site-nav__menu > li {
    padding-left: 18px;
    padding-right: 18px;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .site-nav__menu > li > span,
  .site-nav__menu > li > span > a {
    cursor: default;
    transition: color 0.3s;
  }
  .site-nav__menu > li.open > span,
  .site-nav__menu > li.open > span > a {
    color: var(--bg-color) !important;
    font-weight: 500;
  }
}

@media (min-width: 85.125em) {
  #site-nav-mobile {
    display: none;
  }
}

@media (max-width: 85.115em) {
  #site-nav-desktop {
    display: none;
  }
}

.mega-menu {
  position: relative;
}
.mega-menu:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.mega-menu {
  position: absolute;
  width: 100%;
  height: auto;
  top: 100%;
  left: 0;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 85.115em) {
  .mega-menu {
    display: none;
  }
}
.mega-menu:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: -1;
  pointer-events: none;
}
.mega-menu--open {
  opacity: 1;
  visibility: visible;
}
.mega-menu__inner {
  max-width: 1462px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .mega-menu__inner {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .mega-menu__inner {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .mega-menu__inner {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .mega-menu__inner {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .mega-menu__inner {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .mega-menu__inner {
    padding-right: 36px;
  }
}
.mega-menu__inner {
  padding-top: 45px;
  padding-bottom: 45px;
}
.mega-menu__item {
  --gap: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  height: fit-content;
  display: none;
}
.mega-menu__item--open {
  display: grid;
}
.mega-menu__item ul {
  position: relative;
  list-style: none;
  margin: 0;
}
.mega-menu__item ul:not(:first-child) {
  padding-top: var(--secondary-padding);
}
.mega-menu__item ul .mega-menu-item--has-items {
  position: relative;
}
.mega-menu__item ul .mega-menu-item--has-items .mega-menu-item__arrow-wrapper {
  position: absolute;
  top: 6px;
  right: 0;
  width: 14px;
  height: 8px;
  transform: rotate(-90deg);
}
.mega-menu__item ul .mega-menu-item--has-items .mega-menu-item__arrow-wrapper path {
  stroke: var(--dp-black);
  transition: stroke 0.3s;
}
.mega-menu__item ul .mega-menu-item--has-items.mega-menu-item--open .mega-menu-item__arrow-wrapper path {
  stroke: var(--bg-color) !important;
}
.mega-menu__item ul .mega-menu-item--has-items.mega-menu-item--open .mega-menu-item__title {
  color: var(--bg-color) !important;
}
.mega-menu__item ul .mega-menu-item__title {
  font-size: 1.125rem;
  line-height: 1.1111111111;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color 0.3s;
}
.mega-menu__item ul .mega-menu-item__desc {
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  font-weight: 400;
  color: #919191;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mega-menu__item ul .mega-menu-item, .mega-menu__item ul .mega-menu-item__link {
  display: flex;
  flex-direction: column;
  padding-right: 25px;
}
.mega-menu__item ul .mega-menu-item__link:hover {
  color: var(--bg-color) !important;
}
.mega-menu__item-image {
  grid-column: var(--image-grid-column);
}
.mega-menu__item-image--cols-1 {
  --image-grid-column: 4;
  padding-left: 40px;
  padding-right: 60px;
}
.mega-menu__item-image--cols-2 {
  --image-grid-column: 3/-1;
  padding-left: 40px;
  padding-right: 60px;
}
.mega-menu__item-image--cols-2 img {
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
}
.mega-menu__item-image--cols-3 {
  --image-grid-column: 2/-1;
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.mega-menu__item-image--cols-3:before {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #E0E0E0;
}
.mega-menu__item-image--cols-3 img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.mega-menu__item-secondary {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 0;
}
.mega-menu__item-secondary:has(+ .mega-menu__item-image) {
  --gap: 20px;
  display: grid;
  grid-template-columns: repeat(var(--links-template-columns), 1fr);
  gap: var(--gap);
  height: fit-content;
  grid-column: var(--links-grid-column);
  gap: 30px;
}
.mega-menu__item-secondary:has(+ .mega-menu__item-image):has(+ .mega-menu__item-image--cols-1) {
  --links-grid-column: 1/4;
  --links-template-columns: 3;
}
.mega-menu__item-secondary:has(+ .mega-menu__item-image):has(+ .mega-menu__item-image--cols-2) {
  --links-grid-column: 1/3;
  --links-template-columns: 2;
}
.mega-menu__item-secondary:has(+ .mega-menu__item-image):has(+ .mega-menu__item-image--cols-3) {
  --links-grid-column: 1;
  --links-template-columns: 1;
}
.mega-menu__item-tertiary {
  --gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  height: fit-content;
  grid-template-rows: auto 1fr;
  align-items: start;
  row-gap: 0;
  grid-column: 2/-1;
  position: relative;
  display: none;
}
.mega-menu__item-tertiary--open {
  display: grid;
}
.mega-menu__item-tertiary:before {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #E0E0E0;
}
.mega-menu__item-tertiary {
  --links-grid-column: 1/4;
  --links-template-columns: 3;
}
.mega-menu__item-tertiary--image-cols-1 {
  --image-grid-column: 3;
  --links-grid-column: 1/3;
  --links-template-columns: 2;
}
.mega-menu__item-tertiary--image-cols-2 {
  --image-grid-column: 2/-1;
  --links-grid-column: 1;
  --links-template-columns: 1;
}
.mega-menu__item-tertiary--image-cols-3 {
  --image-grid-column: 1/-1;
}
.mega-menu__item-tertiary-featured, .mega-menu__item-tertiary-regular {
  --gap: 20px;
  display: grid;
  grid-template-columns: repeat(var(--links-template-columns), 1fr);
  gap: var(--gap);
  height: fit-content;
  grid-column: var(--links-grid-column);
  padding-left: var(--gap);
  gap: 30px;
}
.mega-menu__item-tertiary-featured {
  padding-bottom: var(--gap);
}
.mega-menu__item-tertiary-featured:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #E0E0E0;
}
.mega-menu__item-tertiary-image {
  grid-column: var(--image-grid-column);
  grid-row: 1/-1;
  padding-left: 40px;
  padding-right: 60px;
}
.mega-menu__item-tertiary-image img {
  border-radius: 20px;
  overflow: hidden;
}

.header-block.block--background-color-default, .header-block.block--background-color-white {
  position: relative;
}
.header-block.block--background-color-default:before, .header-block.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-grey {
  position: relative;
}
.header-block.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-yellow {
  position: relative;
}
.header-block.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-orange-light {
  position: relative;
}
.header-block.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-orange-dark {
  position: relative;
}
.header-block.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-red {
  position: relative;
}
.header-block.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-purple {
  position: relative;
}
.header-block.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-blue {
  position: relative;
}
.header-block.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-green {
  position: relative;
}
.header-block.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-teal {
  position: relative;
}
.header-block.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-pink {
  position: relative;
}
.header-block.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-black {
  position: relative;
}
.header-block.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block.block--background-color-yellow.block, .header-block.block--background-color-orange-light.block, .header-block.block--background-color-orange-dark.block, .header-block.block--background-color-red.block, .header-block.block--background-color-purple.block, .header-block.block--background-color-blue.block, .header-block.block--background-color-green.block, .header-block.block--background-color-teal.block, .header-block.block--background-color-pink.block, .header-block.block--background-color-black.block, .header-block.block--background-color-gradient.block {
  color: #FFFFFF;
}
.header-block.block--background-color-yellow.block p a, .header-block.block--background-color-orange-light.block p a, .header-block.block--background-color-orange-dark.block p a, .header-block.block--background-color-red.block p a, .header-block.block--background-color-purple.block p a, .header-block.block--background-color-blue.block p a, .header-block.block--background-color-green.block p a, .header-block.block--background-color-teal.block p a, .header-block.block--background-color-pink.block p a, .header-block.block--background-color-black.block p a, .header-block.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.header-block.block--background-color-yellow.block li:before, .header-block.block--background-color-orange-light.block li:before, .header-block.block--background-color-orange-dark.block li:before, .header-block.block--background-color-red.block li:before, .header-block.block--background-color-purple.block li:before, .header-block.block--background-color-blue.block li:before, .header-block.block--background-color-green.block li:before, .header-block.block--background-color-teal.block li:before, .header-block.block--background-color-pink.block li:before, .header-block.block--background-color-black.block li:before, .header-block.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.header-block.block--background-color-gradient {
  position: relative;
}
.header-block.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.header-block {
  display: grid;
  justify-items: center;
  min-height: 240px;
}
@media (min-width: 45em) {
  .header-block {
    min-height: 300px;
  }
}
.header-block__image {
  position: relative;
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  z-index: 1;
  position: relative;
}
.header-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.header-block__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.header-block__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .header-block__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .header-block__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .header-block__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .header-block__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .header-block__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .header-block__content {
    padding-right: 36px;
  }
}
.header-block__content {
  grid-column: 1/-1;
  grid-row: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 70px;
  padding-bottom: 70px;
  width: 100%;
  z-index: 2;
}
.header-block__content-title {
  margin-bottom: 0;
}
.header-block__content-title--color-white {
  color: #FFFFFF;
}
.header-block__content-title--color-red {
  color: var(--dp-red);
}
.header-block__content-title--color-purple {
  color: var(--dp-purple);
}
.header-block__content-title--color-dark-orange {
  color: var(--dp-orange-dark);
}
.header-block__content-title--color-light-orange {
  color: var(--dp-orange-light);
}
.header-block__content-title--color-yellow {
  color: var(--dp-yellow);
}
.header-block__content-title--color-green {
  color: var(--dp-green);
}
.header-block__content-title--color-blue {
  color: var(--dp-blue);
}
.header-block__content-title--color-teal {
  color: var(--dp-teal);
}
.header-block__content-title--color-pink {
  color: var(--dp-pink);
}
.header-block__content-title--color-black {
  color: var(--dp-black);
}
.header-block__content-subtitle {
  margin: 10px 0 0;
}

.dividing-line {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.dividing-line.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.dividing-line.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.dividing-line.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.dividing-line.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.dividing-line.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.dividing-line.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.dividing-line.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.dividing-line.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.dividing-line.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.dividing-line.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.dividing-line.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.dividing-line.block--background-color-default, .dividing-line.block--background-color-white {
  position: relative;
}
.dividing-line.block--background-color-default:before, .dividing-line.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-grey {
  position: relative;
}
.dividing-line.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-yellow {
  position: relative;
}
.dividing-line.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-orange-light {
  position: relative;
}
.dividing-line.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-orange-dark {
  position: relative;
}
.dividing-line.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-red {
  position: relative;
}
.dividing-line.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-purple {
  position: relative;
}
.dividing-line.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-blue {
  position: relative;
}
.dividing-line.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-green {
  position: relative;
}
.dividing-line.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-teal {
  position: relative;
}
.dividing-line.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-pink {
  position: relative;
}
.dividing-line.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-black {
  position: relative;
}
.dividing-line.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--background-color-yellow.block, .dividing-line.block--background-color-orange-light.block, .dividing-line.block--background-color-orange-dark.block, .dividing-line.block--background-color-red.block, .dividing-line.block--background-color-purple.block, .dividing-line.block--background-color-blue.block, .dividing-line.block--background-color-green.block, .dividing-line.block--background-color-teal.block, .dividing-line.block--background-color-pink.block, .dividing-line.block--background-color-black.block, .dividing-line.block--background-color-gradient.block {
  color: #FFFFFF;
}
.dividing-line.block--background-color-yellow.block p a, .dividing-line.block--background-color-orange-light.block p a, .dividing-line.block--background-color-orange-dark.block p a, .dividing-line.block--background-color-red.block p a, .dividing-line.block--background-color-purple.block p a, .dividing-line.block--background-color-blue.block p a, .dividing-line.block--background-color-green.block p a, .dividing-line.block--background-color-teal.block p a, .dividing-line.block--background-color-pink.block p a, .dividing-line.block--background-color-black.block p a, .dividing-line.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.dividing-line.block--background-color-yellow.block li:before, .dividing-line.block--background-color-orange-light.block li:before, .dividing-line.block--background-color-orange-dark.block li:before, .dividing-line.block--background-color-red.block li:before, .dividing-line.block--background-color-purple.block li:before, .dividing-line.block--background-color-blue.block li:before, .dividing-line.block--background-color-green.block li:before, .dividing-line.block--background-color-teal.block li:before, .dividing-line.block--background-color-pink.block li:before, .dividing-line.block--background-color-black.block li:before, .dividing-line.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.dividing-line.block--background-color-gradient {
  position: relative;
}
.dividing-line.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.dividing-line.block--previous-title-block {
  --block-padding__top-default: 0;
}
.dividing-line__divider {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .dividing-line__divider {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .dividing-line__divider {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .dividing-line__divider {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .dividing-line__divider {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .dividing-line__divider {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .dividing-line__divider {
    padding-right: 36px;
  }
}
.dividing-line__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dividing-line__divider svg {
  background-color: transparent;
}
.dividing-line__divider--circles-center:after, .dividing-line__divider--circles-center:before {
  content: "";
  display: flex;
  flex-grow: 1;
  height: 10px;
  background-color: #F2F2F2;
}
.dividing-line__divider--circles-center:before {
  margin-right: 20px;
}
@media (min-width: 28.75em) {
  .dividing-line__divider--circles-center:before {
    margin-right: 40px;
  }
}
.dividing-line__divider--circles-center:after {
  margin-left: 20px;
}
@media (min-width: 28.75em) {
  .dividing-line__divider--circles-center:after {
    margin-left: 40px;
  }
}
.dividing-line__divider--circles-left:after, .dividing-line__divider--circles-right:after {
  content: "";
  display: flex;
  flex-grow: 1;
  height: 10px;
  background-color: #F2F2F2;
}
.dividing-line__divider--circles-left:after {
  margin-left: 20px;
  order: 1;
}
@media (min-width: 28.75em) {
  .dividing-line__divider--circles-left:after {
    margin-left: 40px;
  }
}
.dividing-line__divider--circles-right:after {
  margin-right: 20px;
  order: -1;
}
@media (min-width: 28.75em) {
  .dividing-line__divider--circles-right:after {
    margin-right: 40px;
  }
}
.dividing-line__divider--single-line {
  height: 1px;
  background-color: #D8D8D8;
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-yellow {
  background-color: var(--dp-yellow);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-light-orange {
  background-color: var(--dp-orange-light);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-dark-orange {
  background-color: var(--dp-orange-dark);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-red {
  background-color: var(--dp-red);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-purple {
  background-color: var(--dp-purple);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-green {
  background-color: var(--dp-green);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-blue {
  background-color: var(--dp-blue);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-teal {
  background-color: var(--dp-teal);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-pink {
  background-color: var(--dp-pink);
}
.dividing-line__divider--single-line.dividing-line__divider--line-color-black {
  background-color: var(--dp-black);
}
.dividing-line__divider--single-line svg {
  display: none;
}
.dividing-line__divider--line-color-yellow:after {
  background-color: var(--dp-yellow);
}
.dividing-line__divider--line-color-light-orange:after {
  background-color: var(--dp-orange-light);
}
.dividing-line__divider--line-color-dark-orange:after {
  background-color: var(--dp-orange-dark);
}
.dividing-line__divider--line-color-red:after {
  background-color: var(--dp-red);
}
.dividing-line__divider--line-color-purple:after {
  background-color: var(--dp-purple);
}
.dividing-line__divider--line-color-green:after {
  background-color: var(--dp-green);
}
.dividing-line__divider--line-color-blue:after {
  background-color: var(--dp-blue);
}
.dividing-line__divider--line-color-teal:after {
  background-color: var(--dp-teal);
}
.dividing-line__divider--line-color-pink:after {
  background-color: var(--dp-pink);
}
.dividing-line__divider--line-color-black:after {
  background-color: var(--dp-black);
}
.dividing-line__divider--padding-none {
  padding-left: 0;
  padding-right: 0;
}
.dividing-line.block--background-color-yellow .dividing-line__divider:after, .dividing-line.block--background-color-orange-light .dividing-line__divider:after, .dividing-line.block--background-color-orange-dark .dividing-line__divider:after, .dividing-line.block--background-color-red .dividing-line__divider:after, .dividing-line.block--background-color-purple .dividing-line__divider:after, .dividing-line.block--background-color-blue .dividing-line__divider:after, .dividing-line.block--background-color-green .dividing-line__divider:after, .dividing-line.block--background-color-teal .dividing-line__divider:after, .dividing-line.block--background-color-pink .dividing-line__divider:after, .dividing-line.block--background-color-black .dividing-line__divider:after {
  background-color: #FFFFFF;
}
.dividing-line.block--background-color-yellow .dividing-line__divider svg circle, .dividing-line.block--background-color-orange-light .dividing-line__divider svg circle, .dividing-line.block--background-color-orange-dark .dividing-line__divider svg circle, .dividing-line.block--background-color-red .dividing-line__divider svg circle, .dividing-line.block--background-color-purple .dividing-line__divider svg circle, .dividing-line.block--background-color-blue .dividing-line__divider svg circle, .dividing-line.block--background-color-green .dividing-line__divider svg circle, .dividing-line.block--background-color-teal .dividing-line__divider svg circle, .dividing-line.block--background-color-pink .dividing-line__divider svg circle, .dividing-line.block--background-color-black .dividing-line__divider svg circle {
  fill: #FFFFFF;
}

.text-with-image {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.text-with-image.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.text-with-image.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.text-with-image.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.text-with-image.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.text-with-image.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.text-with-image.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.text-with-image.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.text-with-image.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.text-with-image.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.text-with-image.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.text-with-image.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.text-with-image.block--background-color-default, .text-with-image.block--background-color-white {
  position: relative;
}
.text-with-image.block--background-color-default:before, .text-with-image.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-grey {
  position: relative;
}
.text-with-image.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-yellow {
  position: relative;
}
.text-with-image.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-orange-light {
  position: relative;
}
.text-with-image.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-orange-dark {
  position: relative;
}
.text-with-image.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-red {
  position: relative;
}
.text-with-image.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-purple {
  position: relative;
}
.text-with-image.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-blue {
  position: relative;
}
.text-with-image.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-green {
  position: relative;
}
.text-with-image.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-teal {
  position: relative;
}
.text-with-image.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-pink {
  position: relative;
}
.text-with-image.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-black {
  position: relative;
}
.text-with-image.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-with-image.block--background-color-yellow.block, .text-with-image.block--background-color-orange-light.block, .text-with-image.block--background-color-orange-dark.block, .text-with-image.block--background-color-red.block, .text-with-image.block--background-color-purple.block, .text-with-image.block--background-color-blue.block, .text-with-image.block--background-color-green.block, .text-with-image.block--background-color-teal.block, .text-with-image.block--background-color-pink.block, .text-with-image.block--background-color-black.block, .text-with-image.block--background-color-gradient.block {
  color: #FFFFFF;
}
.text-with-image.block--background-color-yellow.block p a, .text-with-image.block--background-color-orange-light.block p a, .text-with-image.block--background-color-orange-dark.block p a, .text-with-image.block--background-color-red.block p a, .text-with-image.block--background-color-purple.block p a, .text-with-image.block--background-color-blue.block p a, .text-with-image.block--background-color-green.block p a, .text-with-image.block--background-color-teal.block p a, .text-with-image.block--background-color-pink.block p a, .text-with-image.block--background-color-black.block p a, .text-with-image.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.text-with-image.block--background-color-yellow.block li:before, .text-with-image.block--background-color-orange-light.block li:before, .text-with-image.block--background-color-orange-dark.block li:before, .text-with-image.block--background-color-red.block li:before, .text-with-image.block--background-color-purple.block li:before, .text-with-image.block--background-color-blue.block li:before, .text-with-image.block--background-color-green.block li:before, .text-with-image.block--background-color-teal.block li:before, .text-with-image.block--background-color-pink.block li:before, .text-with-image.block--background-color-black.block li:before, .text-with-image.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.text-with-image.block--background-color-gradient {
  position: relative;
}
.text-with-image.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 44.99em) {
  .text-with-image__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .text-with-image__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .text-with-image__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .text-with-image__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .text-with-image__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .text-with-image__content {
    padding-right: 36px;
  }
}
@media (min-width: 45em) {
  .text-with-image__content {
    max-width: 1362px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
@media (max-width: 44.99em) {
  .text-with-image__image {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 45em) {
  .text-with-image--image-fit-column-width .text-with-image__content {
    column-gap: 40px;
  }
}
@media (min-width: 45em) and (min-width: 61.25em) {
  .text-with-image--image-fit-column-width .text-with-image__content {
    column-gap: 100px;
  }
}
@media (min-width: 45em) {
  .text-with-image--image-fit-block-height.text-with-image--option-image .text-with-image__image {
    position: relative;
  }
  .text-with-image--image-fit-block-height.text-with-image--option-image .text-with-image__image:before {
    display: block;
    content: "";
  }
  .text-with-image--image-fit-block-height.text-with-image--option-image .text-with-image__image:before {
    padding-top: 88.5714285714%;
  }
  .text-with-image--image-fit-block-height.text-with-image--option-image .text-with-image__image img, .text-with-image--image-fit-block-height.text-with-image--option-image .text-with-image__image svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .text-with-image--image-fit-block-height.text-with-image--option-image .text-with-image__image {
    height: 100%;
  }
  .text-with-image--image-fit-block-height .text-with-image__text {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .text-with-image--image-fit-block-height.text-with-image--image-position-left .text-with-image__text {
    padding-left: 100px;
  }
}
@media (min-width: 45em) and (min-width: 70.25em) {
  .text-with-image--image-fit-block-height.text-with-image--image-position-left .text-with-image__text {
    padding-left: 130px;
  }
}
@media (min-width: 45em) {
  .text-with-image--image-fit-block-height.text-with-image--image-position-right .text-with-image__text {
    padding-right: 100px;
  }
}
@media (min-width: 45em) and (min-width: 70.25em) {
  .text-with-image--image-fit-block-height.text-with-image--image-position-right .text-with-image__text {
    padding-right: 130px;
  }
}
@media (min-width: 45em) {
  .text-with-image--image-position-right .text-with-image__image {
    order: 1;
  }
}
.text-with-image__text {
  font-size: 1rem;
  line-height: 1.875;
  padding-bottom: 25px;
}
@media (max-width: 44.99em) {
  .text-with-image__text {
    margin-bottom: 20px;
  }
}
.text-with-image__text > p:last-child,
.text-with-image__text ul li:last-child {
  margin: 0;
}
.text-with-image__text-title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  .text-with-image__text-title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.text-with-image__text-title--bold {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 800;
  font-style: normal;
}
.text-with-image__text-button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
  margin-top: 20px;
}
@media (max-width: 44.99em) {
  .text-with-image__text-button {
    margin-bottom: 20px;
  }
}
.text-with-image__text-button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.text-with-image__text-button--style-primary:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.text-with-image__text-button--style-secondary {
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.text-with-image__text-button--style-secondary:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.text-with-image {
  /*
   * Background colour variations
   */
}
.text-with-image.block--background-color-yellow .text-with-image__text-button, .text-with-image.block--background-color-orange-light .text-with-image__text-button, .text-with-image.block--background-color-orange-dark .text-with-image__text-button, .text-with-image.block--background-color-red .text-with-image__text-button, .text-with-image.block--background-color-purple .text-with-image__text-button, .text-with-image.block--background-color-blue .text-with-image__text-button, .text-with-image.block--background-color-green .text-with-image__text-button, .text-with-image.block--background-color-teal .text-with-image__text-button, .text-with-image.block--background-color-pink .text-with-image__text-button, .text-with-image.block--background-color-black .text-with-image__text-button {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.text-with-image.block--background-color-yellow .text-with-image__text-button:hover, .text-with-image.block--background-color-orange-light .text-with-image__text-button:hover, .text-with-image.block--background-color-orange-dark .text-with-image__text-button:hover, .text-with-image.block--background-color-red .text-with-image__text-button:hover, .text-with-image.block--background-color-purple .text-with-image__text-button:hover, .text-with-image.block--background-color-blue .text-with-image__text-button:hover, .text-with-image.block--background-color-green .text-with-image__text-button:hover, .text-with-image.block--background-color-teal .text-with-image__text-button:hover, .text-with-image.block--background-color-pink .text-with-image__text-button:hover, .text-with-image.block--background-color-black .text-with-image__text-button:hover {
  opacity: 0.8;
}

.call-to-action {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.call-to-action.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.call-to-action.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.call-to-action.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.call-to-action.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.call-to-action.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.call-to-action.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.call-to-action.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.call-to-action.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.call-to-action.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.call-to-action.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.call-to-action.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.call-to-action {
  --block-padding__bottom-default: 0;
  --block-padding__top-default: 0;
  /**
   * Global styles
   */
}
.call-to-action__grid {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .call-to-action__grid {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .call-to-action__grid {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .call-to-action__grid {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .call-to-action__grid {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .call-to-action__grid {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .call-to-action__grid {
    padding-right: 36px;
  }
}
.call-to-action__grid {
  display: grid;
  column-gap: 40px;
}
.call-to-action__grid .call-to-action__content {
  color: var(--text-color, #FFFFFF);
}
.call-to-action__grid .call-to-action__content-heading {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.625rem;
  line-height: 1.1428571429;
  margin-bottom: 10px;
}
@media (max-width: 56.25em) {
  .call-to-action__grid .call-to-action__content-heading {
    font-size: 2.125rem;
    line-height: 1.1764705882;
  }
}
.call-to-action__grid .call-to-action__content-text {
  font-size: 1.25rem;
  line-height: 1.7;
}
.call-to-action__grid .call-to-action__content-text p:last-child {
  margin-bottom: 0;
}
.call-to-action__grid .call-to-action__button {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: max-content;
}
.call-to-action {
  /**
   * Block styles
   */
}
@media (max-width: 44.99em) {
  .call-to-action--style-stripes-large .call-to-action__grid {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 45em) {
  .call-to-action--style-stripes-large .call-to-action__grid {
    grid-template-columns: 60fr 40fr;
    column-gap: 40px;
  }
}
@media (min-width: 61.25em) {
  .call-to-action--style-stripes-large .call-to-action__grid {
    column-gap: 80px;
  }
}
@media (min-width: 70.25em) {
  .call-to-action--style-stripes-large .call-to-action__grid {
    grid-template-columns: auto 390px;
  }
}
@media (min-width: 85.125em) {
  .call-to-action--style-stripes-large .call-to-action__grid {
    grid-template-columns: auto 430px;
  }
}
@media (max-width: 44.99em) {
  .call-to-action--style-stripes-large .call-to-action__grid .call-to-action__image {
    text-align: center;
    padding-bottom: 25px;
  }
}
@media (min-width: 45em) {
  .call-to-action--style-stripes-large .call-to-action__grid .call-to-action__image {
    order: 2;
    padding-bottom: 100px;
  }
  .call-to-action--style-stripes-large .call-to-action__grid .call-to-action__image svg.stripes-small {
    display: none;
  }
}
.call-to-action--style-stripes-large .call-to-action__grid .call-to-action__image svg.stripes-large {
  display: none;
}
@media (min-width: 45em) {
  .call-to-action--style-stripes-large .call-to-action__grid .call-to-action__image svg.stripes-large {
    display: block;
    width: 100%;
    height: auto;
  }
}
.call-to-action--style-stripes-large .call-to-action__grid .call-to-action__content {
  align-self: center;
}
@media (min-width: 45em) {
  .call-to-action--style-stripes-large .call-to-action__grid .call-to-action__content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 70.25em) {
  .call-to-action--style-stripes-large .call-to-action__grid .call-to-action__content {
    padding-top: 110px;
    padding-bottom: 75px;
  }
}
@media (min-width: 61.25em) {
  .call-to-action--style-stripes-large .call-to-action__grid .call-to-action__content {
    max-width: 620px;
  }
}
.call-to-action--style-stripes-large .call-to-action__grid .call-to-action__content-heading {
  margin-bottom: 25px;
}
.call-to-action--style-stripes-large .call-to-action__grid .call-to-action__button {
  margin-top: 30px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 1.375rem;
  line-height: 0.7272727273;
  padding: 20px 18px;
}
@media (min-width: 45em) {
  .call-to-action--style-stripes-small .call-to-action__grid {
    column-gap: 50px;
  }
}
@media (min-width: 41.25em) and (max-width: 85.115em) {
  .call-to-action--style-stripes-small .call-to-action__grid img, .call-to-action--style-stripes-small .call-to-action__grid svg {
    max-width: 100px;
  }
}
@media (min-width: 41.25em) and (max-width: 70.24em) {
  .call-to-action--style-stripes-small .call-to-action__grid {
    grid-template-columns: auto 1fr;
  }
  .call-to-action--style-stripes-small .call-to-action__grid .call-to-action__image {
    grid-area: 1/1/3/1;
  }
  .call-to-action--style-stripes-small .call-to-action__grid .call-to-action__content {
    grid-area: 1/2/1/2;
  }
  .call-to-action--style-stripes-small .call-to-action__grid .call-to-action__button {
    grid-area: 2/2/3/3;
  }
}
@media (min-width: 70.25em) {
  .call-to-action--style-stripes-small .call-to-action__grid {
    grid-template-columns: auto 1fr auto;
  }
}
.call-to-action--style-stripes-small .call-to-action__grid .call-to-action__button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
}
@media (max-width: 41.24em) {
  .call-to-action--style-stripes-small .call-to-action__grid .call-to-action__button {
    margin: auto;
  }
}
@media (min-width: 41.25em) and (max-width: 70.24em) {
  .call-to-action--style-default.call-to-action--has-icon .call-to-action__grid {
    grid-template-columns: auto 1fr;
  }
  .call-to-action--style-default.call-to-action--has-icon .call-to-action__grid .call-to-action__image {
    grid-area: 1/1/3/1;
  }
  .call-to-action--style-default.call-to-action--has-icon .call-to-action__grid .call-to-action__content {
    grid-area: 1/2/1/2;
  }
  .call-to-action--style-default.call-to-action--has-icon .call-to-action__grid .call-to-action__button {
    grid-area: 2/2/3/3;
  }
}
@media (min-width: 70.25em) {
  .call-to-action--style-default.call-to-action--has-icon .call-to-action__grid {
    grid-template-columns: 165px 1fr auto;
  }
}
@media (min-width: 85.125em) {
  .call-to-action--style-default.call-to-action--has-icon .call-to-action__grid {
    grid-template-columns: 200px 1fr auto;
  }
}
@media (min-width: 70.25em) {
  .call-to-action--style-default.call-to-action--no-icon .call-to-action__grid {
    grid-template-columns: 1fr auto;
    row-gap: 0;
  }
  .call-to-action--style-default.call-to-action--no-icon .call-to-action__grid .call-to-action__content {
    grid-area: 1/1/2/2;
  }
  .call-to-action--style-default.call-to-action--no-icon .call-to-action__grid .call-to-action__button {
    grid-area: 1/2/3/3;
  }
}
@media (min-width: 41.25em) and (max-width: 85.115em) {
  .call-to-action--style-default .call-to-action__grid {
    column-gap: 60px;
  }
}
@media (max-width: 44.99em) {
  .call-to-action--style-default .call-to-action__grid img, .call-to-action--style-default .call-to-action__grid svg {
    max-width: 200px;
  }
}
.call-to-action--style-default .call-to-action__grid .call-to-action__button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 1.375rem;
  line-height: 0.7272727273;
  padding: 23px 63px;
}
@media (max-width: 41.24em) {
  .call-to-action--style-default .call-to-action__grid .call-to-action__button {
    margin: auto;
  }
}
.call-to-action--style-stripes-small .call-to-action__grid, .call-to-action--style-default .call-to-action__grid {
  row-gap: 35px;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 60px;
}
@media (max-width: 41.24em) {
  .call-to-action--style-stripes-small .call-to-action__grid, .call-to-action--style-default .call-to-action__grid {
    text-align: center;
  }
}
@media (max-width: 44.99em) {
  .call-to-action--style-stripes-small .call-to-action__grid .call-to-action__image, .call-to-action--style-default .call-to-action__grid .call-to-action__image {
    text-align: center;
  }
  .call-to-action--style-stripes-small .call-to-action__grid .call-to-action__image img, .call-to-action--style-default .call-to-action__grid .call-to-action__image img {
    margin: auto;
  }
}
@media (min-width: 70.25em) {
  .call-to-action--style-stripes-small .call-to-action__grid, .call-to-action--style-default .call-to-action__grid {
    grid-template-rows: minmax(190px, auto);
  }
}
.call-to-action {
  /**
   * Background color styles
   */
}
.call-to-action--style-stripes-large, .call-to-action--style-stripes-small, .call-to-action--style-default {
  /**
   * Background/button colors
   */
}
.call-to-action--style-stripes-large.block--background-color-default .call-to-action__full-width-wrapper, .call-to-action--style-stripes-large.block--background-color-white .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-default .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-white .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-default .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-white .call-to-action__full-width-wrapper {
  background-color: #FFFFFF;
}
.call-to-action--style-stripes-large.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-large.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border-color: var(--button-color, var(--dp-red));
}
.call-to-action--style-stripes-large.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-large.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-red));
}
.call-to-action--style-stripes-large.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-large.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, var(--dp-red));
  border-color: var(--button-color, var(--dp-red));
  background-color: #FFFFFF;
}
.call-to-action--style-stripes-large.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-large.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-default .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-white .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
}
.call-to-action--style-stripes-large.block--background-color-grey .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-grey .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-grey .call-to-action__full-width-wrapper {
  background-color: var(--dp-grey);
}
.call-to-action--style-stripes-large.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-grey);
  background-color: var(--button-color, var(--dp-red));
  border-color: var(--button-color, var(--dp-red));
}
.call-to-action--style-stripes-large.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-red));
}
.call-to-action--style-stripes-large.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, var(--dp-red));
  border-color: var(--button-color, var(--dp-red));
  background-color: var(--dp-grey);
}
.call-to-action--style-stripes-large.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-grey .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-grey);
  background-color: var(--button-color, var(--dp-red));
}
.call-to-action--style-stripes-large.block--background-color-yellow .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-yellow .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-yellow .call-to-action__full-width-wrapper {
  background-color: var(--dp-yellow);
}
.call-to-action--style-stripes-large.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-yellow);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-yellow);
}
.call-to-action--style-stripes-large.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-yellow .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-yellow);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-orange-light .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-orange-light .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-orange-light .call-to-action__full-width-wrapper {
  background-color: var(--dp-orange-light);
}
.call-to-action--style-stripes-large.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-orange-light);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-orange-light);
}
.call-to-action--style-stripes-large.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-orange-light .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-orange-light);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-orange-dark .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-orange-dark .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-orange-dark .call-to-action__full-width-wrapper {
  background-color: var(--dp-orange-dark);
}
.call-to-action--style-stripes-large.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-orange-dark);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-orange-dark);
}
.call-to-action--style-stripes-large.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-orange-dark .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-orange-dark);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-purple .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-purple .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-purple .call-to-action__full-width-wrapper {
  background-color: var(--dp-purple);
}
.call-to-action--style-stripes-large.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-purple);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-purple);
}
.call-to-action--style-stripes-large.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-purple .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-purple);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-red .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-red .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-red .call-to-action__full-width-wrapper {
  background-color: var(--dp-red);
}
.call-to-action--style-stripes-large.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-red);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-red);
}
.call-to-action--style-stripes-large.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-red .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-red);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-blue .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-blue .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-blue .call-to-action__full-width-wrapper {
  background-color: var(--dp-blue);
}
.call-to-action--style-stripes-large.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-blue);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-blue);
}
.call-to-action--style-stripes-large.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-blue .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-blue);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-green .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-green .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-green .call-to-action__full-width-wrapper {
  background-color: var(--dp-green);
}
.call-to-action--style-stripes-large.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-green);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-green);
}
.call-to-action--style-stripes-large.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-green .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-green);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-teal .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-teal .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-teal .call-to-action__full-width-wrapper {
  background-color: var(--dp-teal);
}
.call-to-action--style-stripes-large.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-teal);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-teal);
}
.call-to-action--style-stripes-large.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-teal .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-teal);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-pink .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-pink .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-pink .call-to-action__full-width-wrapper {
  background-color: var(--dp-pink);
}
.call-to-action--style-stripes-large.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-pink);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-pink);
}
.call-to-action--style-stripes-large.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-pink .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-pink);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-black .call-to-action__full-width-wrapper, .call-to-action--style-stripes-small.block--background-color-black .call-to-action__full-width-wrapper, .call-to-action--style-default.block--background-color-black .call-to-action__full-width-wrapper {
  background-color: var(--dp-black);
}
.call-to-action--style-stripes-large.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__button--style-primary {
  color: var(--dp-black);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-stripes-small.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary, .call-to-action--style-default.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-primary {
  color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
  background-color: var(--dp-black);
}
.call-to-action--style-stripes-large.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-stripes-small.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary, .call-to-action--style-default.block--background-color-black .call-to-action__full-width-wrapper .call-to-action__grid:hover .call-to-action__button--style-secondary {
  color: var(--dp-black);
  background-color: var(--button-color, #FFFFFF);
}
.call-to-action--style-stripes-large.block--background-color, .call-to-action--style-stripes-small.block--background-color, .call-to-action--style-default.block--background-color {
  /**
   * SVG color
   */
}
.call-to-action--style-stripes-large.block--background-color-yellow svg path, .call-to-action--style-stripes-large.block--background-color-orange-light svg path, .call-to-action--style-stripes-large.block--background-color-orange-dark svg path, .call-to-action--style-stripes-large.block--background-color-red svg path, .call-to-action--style-stripes-large.block--background-color-purple svg path, .call-to-action--style-stripes-large.block--background-color-blue svg path, .call-to-action--style-stripes-large.block--background-color-green svg path, .call-to-action--style-stripes-large.block--background-color-teal svg path, .call-to-action--style-stripes-large.block--background-color-pink svg path, .call-to-action--style-stripes-large.block--background-color-black svg path, .call-to-action--style-stripes-small.block--background-color-yellow svg path, .call-to-action--style-stripes-small.block--background-color-orange-light svg path, .call-to-action--style-stripes-small.block--background-color-orange-dark svg path, .call-to-action--style-stripes-small.block--background-color-red svg path, .call-to-action--style-stripes-small.block--background-color-purple svg path, .call-to-action--style-stripes-small.block--background-color-blue svg path, .call-to-action--style-stripes-small.block--background-color-green svg path, .call-to-action--style-stripes-small.block--background-color-teal svg path, .call-to-action--style-stripes-small.block--background-color-pink svg path, .call-to-action--style-stripes-small.block--background-color-black svg path, .call-to-action--style-default.block--background-color-yellow svg path, .call-to-action--style-default.block--background-color-orange-light svg path, .call-to-action--style-default.block--background-color-orange-dark svg path, .call-to-action--style-default.block--background-color-red svg path, .call-to-action--style-default.block--background-color-purple svg path, .call-to-action--style-default.block--background-color-blue svg path, .call-to-action--style-default.block--background-color-green svg path, .call-to-action--style-default.block--background-color-teal svg path, .call-to-action--style-default.block--background-color-pink svg path, .call-to-action--style-default.block--background-color-black svg path {
  fill: #FFFFFF;
}
.call-to-action {
  /**
   * Content colors
   */
}
.call-to-action.block--background-color-default .call-to-action__content, .call-to-action.block--background-color-white .call-to-action__content, .call-to-action.block--background-color-grey .call-to-action__content {
  color: var(--text-color, var(--dp-black));
}
.call-to-action {
  /**
   * Background image styles
   */
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-default .call-to-action__content, .call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-white .call-to-action__content {
  color: #FFFFFF;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-default.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path, .call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-white.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: #FFFFFF;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-default .call-to-action__button--style-primary, .call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-white .call-to-action__button--style-primary {
  color: var(--dp-red);
  background-color: var(--button-color, #FFFFFF);
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-default .call-to-action__button--style-secondary, .call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-white .call-to-action__button--style-secondary {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-default .call-to-action__grid:hover .call-to-action__button, .call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-white .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-grey .call-to-action__content {
  color: #C0C0C0;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-grey.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: #C0C0C0;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-grey .call-to-action__button--style-primary {
  color: var(--dp-red);
  background-color: var(--button-color, #C0C0C0);
  border-color: var(--button-color, #C0C0C0);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-grey .call-to-action__button--style-secondary {
  color: var(--button-color, #C0C0C0);
  background-color: transparent;
  border-color: var(--button-color, #C0C0C0);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-grey .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-yellow .call-to-action__content {
  color: var(--dp-yellow);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-yellow.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-yellow);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-yellow .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-yellow));
  border-color: var(--button-color, var(--dp-yellow));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-yellow .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-yellow));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-yellow));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-yellow .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-light .call-to-action__content {
  color: var(--dp-orange-light);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-light.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-orange-light);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-light .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-orange-light));
  border-color: var(--button-color, var(--dp-orange-light));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-light .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-orange-light));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-orange-light));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-light .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-dark .call-to-action__content {
  color: var(--dp-orange-dark);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-dark.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-orange-dark);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-dark .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-orange-dark));
  border-color: var(--button-color, var(--dp-orange-dark));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-dark .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-orange-dark));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-orange-dark));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-orange-dark .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-red .call-to-action__content {
  color: var(--dp-red);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-red.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-red);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-red .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border-color: var(--button-color, var(--dp-red));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-red .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-red));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-red .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-purple .call-to-action__content {
  color: var(--dp-purple);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-purple.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-purple);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-purple .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-purple));
  border-color: var(--button-color, var(--dp-purple));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-purple .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-purple));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-purple));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-purple .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-blue .call-to-action__content {
  color: var(--dp-blue);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-blue.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-blue);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-blue .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-blue));
  border-color: var(--button-color, var(--dp-blue));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-blue .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-blue));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-blue));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-blue .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-green .call-to-action__content {
  color: var(--dp-green);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-green.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-green);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-green .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-green));
  border-color: var(--button-color, var(--dp-green));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-green .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-green));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-green));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-green .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-teal .call-to-action__content {
  color: var(--dp-teal);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-teal.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-teal);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-teal .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-teal));
  border-color: var(--button-color, var(--dp-teal));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-teal .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-teal));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-teal));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-teal .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-pink .call-to-action__content {
  color: var(--dp-pink);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-pink.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-pink);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-pink .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-pink));
  border-color: var(--button-color, var(--dp-pink));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-pink .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-pink));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-pink));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-pink .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-black .call-to-action__content {
  color: var(--dp-black);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-black.call-to-action__full-width-wrapper--svg-color-content .call-to-action__image svg path {
  fill: var(--dp-black);
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-black .call-to-action__button--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-black));
  border-color: var(--button-color, var(--dp-black));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-black .call-to-action__button--style-secondary {
  color: var(--button-color, var(--dp-black));
  background-color: transparent;
  border-color: var(--button-color, var(--dp-black));
}
.call-to-action--has-background-image .call-to-action__full-width-wrapper--content-colour-black .call-to-action__grid:hover .call-to-action__button {
  opacity: 0.75;
}

.hero-image {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.hero-image.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.hero-image.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.hero-image.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.hero-image.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.hero-image.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.hero-image.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.hero-image.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.hero-image.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.hero-image.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.hero-image.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.hero-image.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.hero-image .swiper {
  position: relative;
}
.hero-image .swiper-wrapper {
  display: flex;
}
.hero-image .swiper-slide {
  flex-shrink: 0;
}
.hero-image .swiper-button-prev, .hero-image .swiper-button-next {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid;
  z-index: 1;
  cursor: pointer;
}
.hero-image .swiper-button-prev {
  left: 0;
}
.hero-image .swiper-button-next {
  right: 0;
}
.hero-image .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.hero-image .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--dp-red);
  border-radius: 10px;
  cursor: pointer;
}
.hero-image .swiper-pagination-bullet-active {
  background-color: var(--dp-red);
}
.hero-image .swiper .swiper-slide-active {
  z-index: 100;
}
.hero-image {
  --block-padding__bottom-default: 0;
  --block-padding__top-default: 0;
  position: relative;
  z-index: 1;
}
.hero-image--contained-width {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .hero-image--contained-width {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-image--contained-width {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-image--contained-width {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .hero-image--contained-width {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-image--contained-width {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-image--contained-width {
    padding-right: 36px;
  }
}
.hero-image--contained-width .hero-image__image {
  position: relative;
}
.hero-image--contained-width .hero-image__image:before {
  display: block;
  content: "";
}
.hero-image--contained-width .hero-image__image:before {
  padding-top: 35%;
}
.hero-image--contained-width .hero-image__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 44.99em) {
  .hero-image--contained-width .hero-image__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-image--contained-width .hero-image__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-image--contained-width .hero-image__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .hero-image--contained-width .hero-image__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-image--contained-width .hero-image__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-image--contained-width .hero-image__content {
    padding-right: 36px;
  }
}
.hero-image--contained-width .hero-image__content--align-center > * {
  max-width: 900px;
}
.hero-image--full-bleed .hero-image__image {
  position: relative;
}
.hero-image--full-bleed .hero-image__image:before {
  display: block;
  content: "";
}
.hero-image--full-bleed .hero-image__image:before {
  padding-top: 34.7222222222%;
}
.hero-image--full-bleed .hero-image__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image--full-bleed .hero-image__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .hero-image--full-bleed .hero-image__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-image--full-bleed .hero-image__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-image--full-bleed .hero-image__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .hero-image--full-bleed .hero-image__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-image--full-bleed .hero-image__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-image--full-bleed .hero-image__content {
    padding-right: 36px;
  }
}
.hero-image--full-bleed .hero-image__content--align-center > * {
  max-width: 1200px;
}
.hero-image__image {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero-image__image--has-video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-image__image--has-video iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.7777777778vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 28.74em) {
  .hero-image__image.hero-image__image--has-mobile-image .hero-image__image-desktop {
    display: none;
  }
}
@media (min-width: 28.75em) {
  .hero-image__image.hero-image__image--has-mobile-image .hero-image__image-mobile {
    display: none;
  }
  .hero-image__image.hero-image__image--has-mobile-image .hero-image__image-desktop {
    display: block;
  }
}
.hero-image__content {
  color: var(--text-color, #FFFFFF);
  grid-column: 1/-1;
  grid-row: 1/-1;
  padding-top: 65px;
  padding-bottom: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-image__content--align-center {
  text-align: center;
}
.hero-image__content--align-left > *, .hero-image__content--align-right > * {
  max-width: 620px;
}
.hero-image__content--align-left {
  align-items: flex-start;
  text-align: left;
}
.hero-image__content--align-right {
  align-items: flex-end;
  text-align: right;
}
.hero-image__content--narrow > * {
  max-width: 450px;
}
.hero-image__content.has-description .hero-image__content-title {
  margin-bottom: 20px;
}
@media (min-width: 61.25em) {
  .hero-image__content {
    padding-top: 95px;
    padding-bottom: 95px;
  }
}
.hero-image__content-subtitle {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.25;
  padding-bottom: 12px;
}
.hero-image__content-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 5px;
  margin-bottom: 32px;
}
@media (max-width: 61.24em) {
  .hero-image__content-title {
    font-size: 2.5rem;
    line-height: 1.375;
  }
}
@media (min-width: 61.25em) {
  .hero-image__content-title {
    font-size: 3.125rem;
    line-height: 1.12;
  }
}
@media (max-width: 61.24em) {
  .hero-image__content-title--small {
    font-size: 2rem;
    line-height: 1.1875;
  }
}
@media (min-width: 61.25em) {
  .hero-image__content-title--small {
    font-size: 2.625rem;
    line-height: 1.1428571429;
  }
}
@media (max-width: 61.24em) {
  .hero-image__content-description {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media (min-width: 61.25em) {
  .hero-image__content-description {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}
@media (min-width: 61.25em) {
  .hero-image__content-description--small {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.hero-image__content-btn-wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}
@media (max-width: 28.74em) {
  .hero-image__content-btn-wrapper--has-secondary-video {
    grid-template-columns: auto;
    gap: 15px;
  }
  .hero-image__content-btn-wrapper--has-secondary-video .hero-image__content-secondary-button {
    padding-left: 0;
    padding-right: 0;
  }
}
.hero-image__content-secondary-button {
  background-color: transparent;
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.hero-image__promo-card {
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr;
  gap: 10px;
  grid-template-areas: "title title title" "price subs was" "note note note";
  align-items: end;
  margin-top: 22px;
  margin-bottom: 8px;
  border: 1px solid color-mix(in srgb, var(--text-color) 20%, transparent);
  border-radius: 10px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.14);
}
.hero-image__promo-card-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  letter-spacing: 0.03em;
  grid-area: title;
}
.hero-image__promo-card-current-price {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 2.1875rem;
  line-height: 0.9142857143;
  grid-area: price;
}
.hero-image__promo-card-subscription {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1;
  grid-area: subs;
}
.hero-image__promo-card-was-price {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  text-decoration: line-through;
  grid-area: was;
  opacity: 0.5;
  padding-left: 5px;
}
.hero-image__promo-card-note {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  grid-area: note;
  max-width: 375px;
}
.hero-image__item {
  display: grid;
  justify-items: center;
}
.hero-image__item--overlay-dark .hero-image__overlay {
  background-color: var(--dp-black);
}
.hero-image__item--overlay-light .hero-image__overlay {
  background-color: #FFFFFF;
}
.hero-image__item--overlay-light .hero-image__content-title,
.hero-image__item--overlay-light .hero-image__content-subtitle {
  color: var(--text-color, #362D2D);
}
.hero-image__item--overlay-brand-color-red .hero-image__overlay {
  background-color: var(--dp-red);
}
.hero-image__item--overlay-brand-color-purple .hero-image__overlay {
  background-color: var(--dp-purple);
}
.hero-image__item--overlay-brand-color-orange-dark .hero-image__overlay {
  background-color: var(--dp-orange-dark);
}
.hero-image__item--overlay-brand-color-orange-light .hero-image__overlay {
  background-color: var(--dp-orange-light);
}
.hero-image__item--overlay-brand-color-yellow .hero-image__overlay {
  background-color: var(--dp-yellow);
}
.hero-image__item--overlay-brand-color-green .hero-image__overlay {
  background-color: var(--dp-green);
}
.hero-image__item--overlay-brand-color-blue .hero-image__overlay {
  background-color: var(--dp-blue);
}
.hero-image__item--overlay-brand-color-teal .hero-image__overlay {
  background-color: var(--dp-teal);
}
.hero-image__item--overlay-brand-color-pink .hero-image__overlay {
  background-color: var(--dp-pink);
}
.hero-image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}

.title-block {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.title-block.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.title-block.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.title-block.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.title-block.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.title-block.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.title-block.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.title-block.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.title-block.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.title-block.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.title-block.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.title-block.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.title-block.block--background-color-default, .title-block.block--background-color-white {
  position: relative;
}
.title-block.block--background-color-default:before, .title-block.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-grey {
  position: relative;
}
.title-block.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-yellow {
  position: relative;
}
.title-block.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-orange-light {
  position: relative;
}
.title-block.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-orange-dark {
  position: relative;
}
.title-block.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-red {
  position: relative;
}
.title-block.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-purple {
  position: relative;
}
.title-block.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-blue {
  position: relative;
}
.title-block.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-green {
  position: relative;
}
.title-block.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-teal {
  position: relative;
}
.title-block.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-pink {
  position: relative;
}
.title-block.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-black {
  position: relative;
}
.title-block.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block.block--background-color-yellow.block, .title-block.block--background-color-orange-light.block, .title-block.block--background-color-orange-dark.block, .title-block.block--background-color-red.block, .title-block.block--background-color-purple.block, .title-block.block--background-color-blue.block, .title-block.block--background-color-green.block, .title-block.block--background-color-teal.block, .title-block.block--background-color-pink.block, .title-block.block--background-color-black.block, .title-block.block--background-color-gradient.block {
  color: #FFFFFF;
}
.title-block.block--background-color-yellow.block p a, .title-block.block--background-color-orange-light.block p a, .title-block.block--background-color-orange-dark.block p a, .title-block.block--background-color-red.block p a, .title-block.block--background-color-purple.block p a, .title-block.block--background-color-blue.block p a, .title-block.block--background-color-green.block p a, .title-block.block--background-color-teal.block p a, .title-block.block--background-color-pink.block p a, .title-block.block--background-color-black.block p a, .title-block.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.title-block.block--background-color-yellow.block li:before, .title-block.block--background-color-orange-light.block li:before, .title-block.block--background-color-orange-dark.block li:before, .title-block.block--background-color-red.block li:before, .title-block.block--background-color-purple.block li:before, .title-block.block--background-color-blue.block li:before, .title-block.block--background-color-green.block li:before, .title-block.block--background-color-teal.block li:before, .title-block.block--background-color-pink.block li:before, .title-block.block--background-color-black.block li:before, .title-block.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.title-block.block--background-color-gradient {
  position: relative;
}
.title-block.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.title-block {
  text-align: left;
}
.title-block:not(:last-child) {
  --block-padding__bottom-default: 0;
}
.title-block.block--previous-hero-image {
  --block-padding__top-default: var(--block-padding__large);
}
.title-block.block--previous-call-to-action {
  --block-padding__top-default: var(--block-padding__large);
}
.title-block__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .title-block__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .title-block__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .title-block__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .title-block__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .title-block__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .title-block__content {
    padding-right: 36px;
  }
}
.title-block__title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  .title-block__title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.title-block__title--bold {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 800;
  font-style: normal;
}
.title-block__description {
  max-width: 560px;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.title-block--align-center {
  text-align: center;
}
.title-block--align-center .title-block__description {
  margin: auto;
}
.title-block--align-center .title-block__mega-title:before {
  content: "";
  flex-grow: 1;
}
.title-block--align-right {
  text-align: right;
}
.title-block--align-right .title-block__description {
  margin-left: auto;
}
.title-block--align-right .title-block__mega-title:before {
  content: "";
  flex-grow: 1;
}
.title-block--align-right .title-block__mega-title:after {
  display: none;
}
.title-block__mega-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 3.4375rem;
  line-height: 1;
  color: var(--dp-red);
  display: flex;
  align-items: center;
}
@media (min-width: 45em) and (max-width: 61.24em) {
  .title-block__mega-title {
    font-size: 5.9375rem;
    line-height: 0.9473684211;
  }
}
@media (min-width: 61.25em) {
  .title-block__mega-title {
    font-size: 9.375rem;
    line-height: 0.9333333333;
  }
}
.title-block__mega-title:before, .title-block__mega-title:after {
  display: block;
  background-color: #F2F2F2;
  height: 10px;
  margin-top: 15px;
}
.title-block__mega-title:before {
  margin-right: 10px;
}
@media (min-width: 45em) {
  .title-block__mega-title:before {
    margin-top: 30px;
    margin-right: 30px;
  }
}
.title-block__mega-title:after {
  content: "";
  flex-grow: 1;
  margin-left: 10px;
}
@media (min-width: 45em) {
  .title-block__mega-title:after {
    margin-top: 30px;
    margin-left: 30px;
  }
}

.text-block {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.text-block.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.text-block.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.text-block.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.text-block.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.text-block.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.text-block.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.text-block.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.text-block.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.text-block.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.text-block.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.text-block.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.text-block.block--background-color-default, .text-block.block--background-color-white {
  position: relative;
}
.text-block.block--background-color-default:before, .text-block.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-grey {
  position: relative;
}
.text-block.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-yellow {
  position: relative;
}
.text-block.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-orange-light {
  position: relative;
}
.text-block.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-orange-dark {
  position: relative;
}
.text-block.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-red {
  position: relative;
}
.text-block.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-purple {
  position: relative;
}
.text-block.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-blue {
  position: relative;
}
.text-block.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-green {
  position: relative;
}
.text-block.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-teal {
  position: relative;
}
.text-block.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-pink {
  position: relative;
}
.text-block.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-black {
  position: relative;
}
.text-block.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--background-color-yellow.block, .text-block.block--background-color-orange-light.block, .text-block.block--background-color-orange-dark.block, .text-block.block--background-color-red.block, .text-block.block--background-color-purple.block, .text-block.block--background-color-blue.block, .text-block.block--background-color-green.block, .text-block.block--background-color-teal.block, .text-block.block--background-color-pink.block, .text-block.block--background-color-black.block, .text-block.block--background-color-gradient.block {
  color: #FFFFFF;
}
.text-block.block--background-color-yellow.block p a, .text-block.block--background-color-orange-light.block p a, .text-block.block--background-color-orange-dark.block p a, .text-block.block--background-color-red.block p a, .text-block.block--background-color-purple.block p a, .text-block.block--background-color-blue.block p a, .text-block.block--background-color-green.block p a, .text-block.block--background-color-teal.block p a, .text-block.block--background-color-pink.block p a, .text-block.block--background-color-black.block p a, .text-block.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.text-block.block--background-color-yellow.block li:before, .text-block.block--background-color-orange-light.block li:before, .text-block.block--background-color-orange-dark.block li:before, .text-block.block--background-color-red.block li:before, .text-block.block--background-color-purple.block li:before, .text-block.block--background-color-blue.block li:before, .text-block.block--background-color-green.block li:before, .text-block.block--background-color-teal.block li:before, .text-block.block--background-color-pink.block li:before, .text-block.block--background-color-black.block li:before, .text-block.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.text-block.block--background-color-gradient {
  position: relative;
}
.text-block.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.text-block.block--previous-quote-block {
  --block-padding__top-default: var(--block-padding__small);
}
.text-block.block--next-quote-block {
  --block-padding__bottom-default: var(--block-padding__small);
}
.text-block__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .text-block__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .text-block__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .text-block__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .text-block__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .text-block__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .text-block__content {
    padding-right: 36px;
  }
}
.text-block__content a {
  color: #FFFFFF;
  font-weight: 500;
}
.text-block__single-content--align-left, .text-block__single-content--align-right {
  max-width: 945px;
}
.text-block__single-content--align-right {
  text-align: right;
  margin-left: auto;
}
.text-block__single-content--align-center {
  text-align: center;
}
.text-block__single-content--width-narrow {
  max-width: 862px;
  margin: auto;
}
.text-block__columns {
  display: grid;
  row-gap: 35px;
}
@media (min-width: 61.25em) {
  .text-block__columns {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
  .text-block--layout-column-30-60 .text-block__columns {
    grid-template-columns: 30fr 70fr;
  }
  .text-block--layout-column-60-30 .text-block__columns {
    grid-template-columns: 70fr 30fr;
  }
}
@media (min-width: 70.25em) {
  .text-block__columns {
    column-gap: 100px;
  }
}
.text-block__column-title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  .text-block__column-title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.text-block__column-title--bold {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 800;
  font-style: normal;
}
.text-block p:last-child {
  margin-bottom: 0;
}
.text-block ul {
  text-align: left;
}

.icon-grid {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.icon-grid.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.icon-grid.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.icon-grid.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.icon-grid.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.icon-grid.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.icon-grid.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.icon-grid.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.icon-grid.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.icon-grid.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.icon-grid.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.icon-grid.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.icon-grid.block--background-color-default, .icon-grid.block--background-color-white {
  position: relative;
}
.icon-grid.block--background-color-default:before, .icon-grid.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-grey {
  position: relative;
}
.icon-grid.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-yellow {
  position: relative;
}
.icon-grid.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-orange-light {
  position: relative;
}
.icon-grid.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-orange-dark {
  position: relative;
}
.icon-grid.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-red {
  position: relative;
}
.icon-grid.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-purple {
  position: relative;
}
.icon-grid.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-blue {
  position: relative;
}
.icon-grid.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-green {
  position: relative;
}
.icon-grid.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-teal {
  position: relative;
}
.icon-grid.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-pink {
  position: relative;
}
.icon-grid.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-black {
  position: relative;
}
.icon-grid.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid.block--background-color-yellow.block, .icon-grid.block--background-color-orange-light.block, .icon-grid.block--background-color-orange-dark.block, .icon-grid.block--background-color-red.block, .icon-grid.block--background-color-purple.block, .icon-grid.block--background-color-blue.block, .icon-grid.block--background-color-green.block, .icon-grid.block--background-color-teal.block, .icon-grid.block--background-color-pink.block, .icon-grid.block--background-color-black.block, .icon-grid.block--background-color-gradient.block {
  color: #FFFFFF;
}
.icon-grid.block--background-color-yellow.block p a, .icon-grid.block--background-color-orange-light.block p a, .icon-grid.block--background-color-orange-dark.block p a, .icon-grid.block--background-color-red.block p a, .icon-grid.block--background-color-purple.block p a, .icon-grid.block--background-color-blue.block p a, .icon-grid.block--background-color-green.block p a, .icon-grid.block--background-color-teal.block p a, .icon-grid.block--background-color-pink.block p a, .icon-grid.block--background-color-black.block p a, .icon-grid.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.icon-grid.block--background-color-yellow.block li:before, .icon-grid.block--background-color-orange-light.block li:before, .icon-grid.block--background-color-orange-dark.block li:before, .icon-grid.block--background-color-red.block li:before, .icon-grid.block--background-color-purple.block li:before, .icon-grid.block--background-color-blue.block li:before, .icon-grid.block--background-color-green.block li:before, .icon-grid.block--background-color-teal.block li:before, .icon-grid.block--background-color-pink.block li:before, .icon-grid.block--background-color-black.block li:before, .icon-grid.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.icon-grid.block--background-color-gradient {
  position: relative;
}
.icon-grid.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.icon-grid__title {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .icon-grid__title {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .icon-grid__title {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .icon-grid__title {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .icon-grid__title {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .icon-grid__title {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .icon-grid__title {
    padding-right: 36px;
  }
}
.icon-grid__title {
  margin-bottom: 30px;
  max-width: 970px;
  color: var(--text-color);
}
@media (min-width: 41.25em) {
  .icon-grid__title {
    margin-bottom: 45px;
  }
}
.icon-grid__title--align-center {
  text-align: center;
}
.icon-grid__title--align-right {
  text-align: right;
}
.icon-grid__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .icon-grid__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .icon-grid__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .icon-grid__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .icon-grid__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .icon-grid__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .icon-grid__content {
    padding-right: 36px;
  }
}
.icon-grid__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 45px;
}
@media (min-width: 41.25em) {
  .icon-grid__content {
    row-gap: 70px;
  }
}
.icon-grid__content .icon-grid__title,
.icon-grid__content .icon-grid__stat,
.icon-grid__content .icon-grid__icon {
  color: var(--text-color);
}
.icon-grid {
  /*
     * Grid styles
     */
}
.icon-grid--style-stats .icon-grid__content, .icon-grid--style-icons .icon-grid__content {
  column-gap: 20px;
}
.icon-grid--style-stats .icon-grid__stat,
.icon-grid--style-stats .icon-grid__icon, .icon-grid--style-icons .icon-grid__stat,
.icon-grid--style-icons .icon-grid__icon {
  flex: 1 0 100%;
  max-width: 100%;
}
@media (min-width: 28.75em) {
  .icon-grid--style-stats .icon-grid__stat,
  .icon-grid--style-stats .icon-grid__icon, .icon-grid--style-icons .icon-grid__stat,
  .icon-grid--style-icons .icon-grid__icon {
    flex: 1 0 40%;
    max-width: 40%;
  }
}
@media (min-width: 41.25em) {
  .icon-grid--style-stats .icon-grid__stat,
  .icon-grid--style-stats .icon-grid__icon, .icon-grid--style-icons .icon-grid__stat,
  .icon-grid--style-icons .icon-grid__icon {
    flex: 1 0 29.5%;
    max-width: 29.5%;
  }
}
.icon-grid__impact-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.icon-grid__impact-title--show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 70.25em) {
  .icon-grid--style-stats .icon-grid__content {
    row-gap: 120px;
  }
}
.icon-grid--style-stats .icon-grid__stat,
.icon-grid--style-stats .icon-grid__impact {
  display: flex;
  flex-direction: column;
  position: relative;
}
.icon-grid--style-stats .icon-grid__stat-title,
.icon-grid--style-stats .icon-grid__impact-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 3.125rem;
  line-height: 0.9;
  margin-bottom: 10px;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (min-width: 28.75em) {
  .icon-grid--style-stats .icon-grid__stat-title,
  .icon-grid--style-stats .icon-grid__impact-title {
    font-size: 8vw;
  }
}
@media (min-width: 41.25em) {
  .icon-grid--style-stats .icon-grid__stat-title,
  .icon-grid--style-stats .icon-grid__impact-title {
    font-size: 5.75vw;
    margin-bottom: 20px;
  }
}
@media (min-width: 85.125em) {
  .icon-grid--style-stats .icon-grid__stat-title,
  .icon-grid--style-stats .icon-grid__impact-title {
    font-size: 5rem;
    margin-bottom: 2rem;
  }
}
.icon-grid--style-stats .icon-grid__stat-title--hide,
.icon-grid--style-stats .icon-grid__impact-title--hide {
  opacity: 0;
  visibility: hidden;
}
.icon-grid--style-stats .icon-grid__stat-title-start--hide, .icon-grid--style-stats .icon-grid__stat-title-end--hide,
.icon-grid--style-stats .icon-grid__impact-title-start--hide,
.icon-grid--style-stats .icon-grid__impact-title-end--hide {
  display: none;
}
.icon-grid--style-stats .icon-grid__stat-subtitle,
.icon-grid--style-stats .icon-grid__impact-subtitle {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.25;
  max-width: 400px;
  position: relative;
}
@media (min-width: 61.25em) {
  .icon-grid--style-stats .icon-grid__stat-subtitle,
  .icon-grid--style-stats .icon-grid__impact-subtitle {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-top: auto;
  }
}
.icon-grid--style-stats .icon-grid__stat-subtitle-inner,
.icon-grid--style-stats .icon-grid__impact-subtitle-inner {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.icon-grid--style-stats .icon-grid__stat-subtitle-inner--hide,
.icon-grid--style-stats .icon-grid__impact-subtitle-inner--hide {
  opacity: 0;
  visibility: hidden;
}
.icon-grid--style-stats {
  /*
       * Stats layout styles
       */
}
@media (min-width: 70.25em) {
  .icon-grid--style-stats.icon-grid--layout-4 .icon-grid__content, .icon-grid--style-stats.icon-grid--layout-5 .icon-grid__content {
    row-gap: 100px;
  }
}
@media (min-width: 70.25em) {
  .icon-grid--style-stats.icon-grid--layout-4 .icon-grid__content {
    column-gap: 5px;
  }
  .icon-grid--style-stats.icon-grid--layout-4 .icon-grid__stat {
    flex: 1 0 24%;
    max-width: 24%;
  }
  .icon-grid--style-stats.icon-grid--layout-4 .icon-grid__stat-title {
    font-size: 4.2vw;
  }
  .icon-grid--style-stats.icon-grid--layout-4 .icon-grid__stat-subtitle {
    font-size: 1.4vw;
  }
}
@media (min-width: 85.125em) {
  .icon-grid--style-stats.icon-grid--layout-4 .icon-grid__stat-title {
    font-size: 3.6vw;
  }
  .icon-grid--style-stats.icon-grid--layout-4 .icon-grid__stat-subtitle {
    font-size: 1.2vw;
  }
}
@media (min-width: 70.25em) {
  .icon-grid--style-stats.icon-grid--layout-5 .icon-grid__content {
    column-gap: 10px;
  }
  .icon-grid--style-stats.icon-grid--layout-5 .icon-grid__stat {
    flex: 1 0 19%;
    max-width: 19%;
  }
  .icon-grid--style-stats.icon-grid--layout-5 .icon-grid__stat-title {
    font-size: 4vw;
  }
  .icon-grid--style-stats.icon-grid--layout-5 .icon-grid__stat-subtitle {
    font-size: 1.5vw;
  }
}
@media (min-width: 85.125em) {
  .icon-grid--style-stats.icon-grid--layout-5 .icon-grid__stat-title {
    font-size: 3.3vw;
  }
  .icon-grid--style-stats.icon-grid--layout-5 .icon-grid__stat-subtitle {
    font-size: 1.05vw;
  }
}
@media (min-width: 61.25em) {
  .icon-grid--style-icons .icon-grid__content {
    column-gap: 3rem;
  }
}
.icon-grid--style-icons .icon-grid__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-grid--style-icons .icon-grid__icon-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 45em) {
  .icon-grid--style-icons .icon-grid__icon-title {
    margin-top: 1.6rem;
    margin-bottom: 1.3rem;
  }
}
.icon-grid--style-icons .icon-grid__icon-subtitle {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  max-width: 340px;
}
@media (min-width: 45em) {
  .icon-grid--style-icons .icon-grid__icon-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}
@media (min-width: 61.25em) {
  .icon-grid--style-icons .icon-grid__icon-subtitle {
    font-size: 1.45vw;
  }
}
@media (min-width: 85.125em) {
  .icon-grid--style-icons .icon-grid__icon-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}
.icon-grid--style-icons .icon-grid__icon img,
.icon-grid--style-icons .icon-grid__icon svg {
  max-height: 80px;
}
.icon-grid--style-icons {
  /*
       * Icons layout styles
       */
}
@media (min-width: 70.25em) {
  .icon-grid--style-icons.icon-grid--layout-4 .icon-grid__content, .icon-grid--style-icons.icon-grid--layout-5 .icon-grid__content, .icon-grid--style-icons.icon-grid--layout-6 .icon-grid__content {
    row-gap: 100px;
  }
}
@media (min-width: 61.25em) {
  .icon-grid--style-icons.icon-grid--layout-4 .icon-grid__content {
    column-gap: 25px;
  }
  .icon-grid--style-icons.icon-grid--layout-4 .icon-grid__icon {
    flex: 1 0 23%;
    max-width: 23%;
  }
}
@media (min-width: 70.25em) {
  .icon-grid--style-icons.icon-grid--layout-5 .icon-grid__content {
    column-gap: 10px;
  }
  .icon-grid--style-icons.icon-grid--layout-5 .icon-grid__icon {
    flex: 1 0 19.2%;
    max-width: 19.2%;
  }
  .icon-grid--style-icons.icon-grid--layout-5 .icon-grid__icon-title {
    font-size: 1.8vw;
  }
}
@media (min-width: 70.25em) and (min-width: 85.125em) {
  .icon-grid--style-icons.icon-grid--layout-5 .icon-grid__icon-title {
    font-size: 1.5625rem;
  }
}
@media (min-width: 70.25em) {
  .icon-grid--style-icons.icon-grid--layout-5 .icon-grid__icon-subtitle {
    font-size: 1.2vw;
  }
}
@media (min-width: 70.25em) and (min-width: 85.125em) {
  .icon-grid--style-icons.icon-grid--layout-5 .icon-grid__icon-subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 70.25em) {
  .icon-grid--style-icons.icon-grid--layout-6 .icon-grid__content {
    column-gap: 10px;
  }
  .icon-grid--style-icons.icon-grid--layout-6 .icon-grid__icon {
    flex: 1 0 15.8%;
    max-width: 15.8%;
  }
  .icon-grid--style-icons.icon-grid--layout-6 .icon-grid__icon-title {
    font-size: 1.5vw;
  }
}
@media (min-width: 70.25em) and (min-width: 85.125em) {
  .icon-grid--style-icons.icon-grid--layout-6 .icon-grid__icon-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 70.25em) {
  .icon-grid--style-icons.icon-grid--layout-6 .icon-grid__icon-subtitle {
    font-size: 1.2vw;
  }
}
@media (min-width: 70.25em) and (min-width: 85.125em) {
  .icon-grid--style-icons.icon-grid--layout-6 .icon-grid__icon-subtitle {
    font-size: 1rem;
  }
}
.icon-grid__stat, .icon-grid__icon {
  text-align: center;
}
.icon-grid {
  /*
     * Background colour variations
     */
}
.icon-grid.block--background-color-yellow .icon-grid__icon svg path, .icon-grid.block--background-color-orange-light .icon-grid__icon svg path, .icon-grid.block--background-color-orange-dark .icon-grid__icon svg path, .icon-grid.block--background-color-red .icon-grid__icon svg path, .icon-grid.block--background-color-purple .icon-grid__icon svg path, .icon-grid.block--background-color-blue .icon-grid__icon svg path, .icon-grid.block--background-color-green .icon-grid__icon svg path, .icon-grid.block--background-color-teal .icon-grid__icon svg path, .icon-grid.block--background-color-pink .icon-grid__icon svg path {
  fill: #FFFFFF;
}

.logo-grid {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.logo-grid.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.logo-grid.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.logo-grid.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.logo-grid.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.logo-grid.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.logo-grid.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.logo-grid.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.logo-grid.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.logo-grid.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.logo-grid.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.logo-grid.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.logo-grid.block--background-color-default, .logo-grid.block--background-color-white {
  position: relative;
}
.logo-grid.block--background-color-default:before, .logo-grid.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-grey {
  position: relative;
}
.logo-grid.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-yellow {
  position: relative;
}
.logo-grid.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-orange-light {
  position: relative;
}
.logo-grid.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-orange-dark {
  position: relative;
}
.logo-grid.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-red {
  position: relative;
}
.logo-grid.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-purple {
  position: relative;
}
.logo-grid.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-blue {
  position: relative;
}
.logo-grid.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-green {
  position: relative;
}
.logo-grid.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-teal {
  position: relative;
}
.logo-grid.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-pink {
  position: relative;
}
.logo-grid.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-black {
  position: relative;
}
.logo-grid.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid.block--background-color-yellow.block, .logo-grid.block--background-color-orange-light.block, .logo-grid.block--background-color-orange-dark.block, .logo-grid.block--background-color-red.block, .logo-grid.block--background-color-purple.block, .logo-grid.block--background-color-blue.block, .logo-grid.block--background-color-green.block, .logo-grid.block--background-color-teal.block, .logo-grid.block--background-color-pink.block, .logo-grid.block--background-color-black.block, .logo-grid.block--background-color-gradient.block {
  color: #FFFFFF;
}
.logo-grid.block--background-color-yellow.block p a, .logo-grid.block--background-color-orange-light.block p a, .logo-grid.block--background-color-orange-dark.block p a, .logo-grid.block--background-color-red.block p a, .logo-grid.block--background-color-purple.block p a, .logo-grid.block--background-color-blue.block p a, .logo-grid.block--background-color-green.block p a, .logo-grid.block--background-color-teal.block p a, .logo-grid.block--background-color-pink.block p a, .logo-grid.block--background-color-black.block p a, .logo-grid.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.logo-grid.block--background-color-yellow.block li:before, .logo-grid.block--background-color-orange-light.block li:before, .logo-grid.block--background-color-orange-dark.block li:before, .logo-grid.block--background-color-red.block li:before, .logo-grid.block--background-color-purple.block li:before, .logo-grid.block--background-color-blue.block li:before, .logo-grid.block--background-color-green.block li:before, .logo-grid.block--background-color-teal.block li:before, .logo-grid.block--background-color-pink.block li:before, .logo-grid.block--background-color-black.block li:before, .logo-grid.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.logo-grid.block--background-color-gradient {
  position: relative;
}
.logo-grid.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.logo-grid--color-black-white .logo-grid__image img {
  filter: grayscale(1);
}
.logo-grid--layout-slider .swiper {
  position: relative;
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .logo-grid--layout-slider .swiper {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .logo-grid--layout-slider .swiper {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .logo-grid--layout-slider .swiper {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .logo-grid--layout-slider .swiper {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .logo-grid--layout-slider .swiper {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .logo-grid--layout-slider .swiper {
    padding-right: 36px;
  }
}
.logo-grid--layout-slider .swiper-wrapper {
  display: flex;
}
.logo-grid--layout-slider .swiper-slide {
  flex-shrink: 0;
}
.logo-grid--layout-slider .swiper-button-prev, .logo-grid--layout-slider .swiper-button-next {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid;
  z-index: 1;
  cursor: pointer;
}
.logo-grid--layout-slider .swiper-button-prev {
  left: 0;
}
.logo-grid--layout-slider .swiper-button-next {
  right: 0;
}
.logo-grid--layout-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.logo-grid--layout-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--dp-red);
  border-radius: 10px;
  cursor: pointer;
}
.logo-grid--layout-slider .swiper-pagination-bullet-active {
  background-color: var(--dp-red);
}
.logo-grid--layout-slider .swiper .swiper-slide-active {
  z-index: 100;
}
.logo-grid--layout-slider .swiper {
  overflow: hidden;
}
.logo-grid--layout-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
    padding-right: 36px;
  }
}
.logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 30px;
}
@media (min-width: 45em) {
  .logo-grid:not(.logo-grid--layout-slider) .logo-grid__content {
    column-gap: 40px;
    row-gap: 70px;
  }
}
.logo-grid__image {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 41.25em) {
  .logo-grid__image {
    padding: 10px;
  }
}
.logo-grid--layout-3 .logo-grid__image, .logo-grid--layout-4 .logo-grid__image, .logo-grid--layout-5 .logo-grid__image {
  flex: 1 0 45%;
  max-width: 45%;
}
@media (min-width: 41.25em) {
  .logo-grid--layout-3 .logo-grid__image, .logo-grid--layout-4 .logo-grid__image, .logo-grid--layout-5 .logo-grid__image {
    flex: 1 0 28%;
    max-width: 28%;
  }
}
@media (min-width: 61.25em) {
  .logo-grid--layout-4 .logo-grid__image {
    flex: 1 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 45em) {
  .logo-grid--layout-5 .logo-grid__image {
    flex: 1 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 61.25em) {
  .logo-grid--layout-5 .logo-grid__image {
    flex: 1 0 16%;
    max-width: 16%;
  }
}
.logo-grid {
  /*
   * Background colour variations
   */
}
.logo-grid.block--background-color-yellow .logo-grid__image svg path, .logo-grid.block--background-color-orange-light .logo-grid__image svg path, .logo-grid.block--background-color-orange-dark .logo-grid__image svg path, .logo-grid.block--background-color-red .logo-grid__image svg path, .logo-grid.block--background-color-purple .logo-grid__image svg path {
  fill: #FFFFFF;
}

.resource-listing {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.resource-listing.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.resource-listing.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.resource-listing.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.resource-listing.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.resource-listing.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.resource-listing.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.resource-listing.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.resource-listing.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.resource-listing.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.resource-listing.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.resource-listing.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.resource-listing .swiper {
  position: relative;
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .resource-listing .swiper {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .resource-listing .swiper {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .resource-listing .swiper {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .resource-listing .swiper {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .resource-listing .swiper {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .resource-listing .swiper {
    padding-right: 36px;
  }
}
.resource-listing .swiper-wrapper {
  display: flex;
}
.resource-listing .swiper-slide {
  flex-shrink: 0;
}
.resource-listing .swiper-button-prev, .resource-listing .swiper-button-next {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid;
  z-index: 1;
  cursor: pointer;
}
.resource-listing .swiper-button-prev {
  left: 0;
}
.resource-listing .swiper-button-next {
  right: 0;
}
.resource-listing .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.resource-listing .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--dp-red);
  border-radius: 10px;
  cursor: pointer;
}
.resource-listing .swiper-pagination-bullet-active {
  background-color: var(--dp-red);
}
.resource-listing .swiper .swiper-slide-active {
  z-index: 100;
}
.resource-listing:not(.resource-listing--layout-slider) {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .resource-listing:not(.resource-listing--layout-slider) {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .resource-listing:not(.resource-listing--layout-slider) {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .resource-listing:not(.resource-listing--layout-slider) {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .resource-listing:not(.resource-listing--layout-slider) {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .resource-listing:not(.resource-listing--layout-slider) {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .resource-listing:not(.resource-listing--layout-slider) {
    padding-right: 36px;
  }
}
.resource-listing:not(.resource-listing--layout-slider) {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 1.6rem;
}
.resource-listing {
  /**
   * 2 column layout
   */
}
@media (min-width: 28.75em) {
  .resource-listing--layout-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.resource-listing--layout-2 .resource-listing__card--style-resource {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.resource-listing--layout-2 .resource-listing__card--style-resource .resource-listing__card-button {
  margin: 0;
}
.resource-listing {
  /**
   * 3 column layout
   */
}
@media (min-width: 28.75em) {
  .resource-listing--layout-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 45em) {
  .resource-listing--layout-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 61.24em) {
  .resource-listing--layout-3 .resource-listing__card--style-resource {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 61.25em) {
  .resource-listing--layout-3 .resource-listing__card--style-resource {
    display: grid;
    grid-template-areas: "title title" "subtitle subtitle" "desc desc" "media button";
    grid-template-rows: max-content max-content max-content auto;
  }
  .resource-listing--layout-3 .resource-listing__card--style-resource .resource-listing__card-title {
    grid-area: title;
  }
  .resource-listing--layout-3 .resource-listing__card--style-resource .resource-listing__card-subtitle {
    grid-area: subtitle;
  }
  .resource-listing--layout-3 .resource-listing__card--style-resource .resource-listing__card-description {
    grid-area: desc;
  }
  .resource-listing--layout-3 .resource-listing__card--style-resource .resource-listing__card-media {
    grid-area: media;
    margin-bottom: 0;
    align-self: flex-end;
  }
  .resource-listing--layout-3 .resource-listing__card--style-resource .resource-listing__card-button {
    grid-area: button;
    justify-self: flex-end;
    margin-top: auto;
  }
  .resource-listing--layout-3 .resource-listing__card--style-resource.resource-listing__card--no-media .resource-listing__card-button {
    grid-area: media;
    justify-self: auto;
  }
}
.resource-listing {
  /**
   * 4 column layout
   */
}
@media (min-width: 28.75em) {
  .resource-listing--layout-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 45em) {
  .resource-listing--layout-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 61.25em) {
  .resource-listing--layout-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.resource-listing {
  /**
   * 5 column layout
   */
}
@media (min-width: 28.75em) {
  .resource-listing--layout-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .resource-listing--layout-5 {
    grid-template-columns: repeat(47, 1fr);
    column-gap: 0;
  }
  .resource-listing--layout-5 .resource-listing__card:nth-child(5n+1) {
    grid-column: 1/16;
  }
  .resource-listing--layout-5 .resource-listing__card:nth-child(5n+2) {
    grid-column: 17/32;
  }
  .resource-listing--layout-5 .resource-listing__card:nth-child(5n+3) {
    grid-column: 33/-1;
  }
  .resource-listing--layout-5 .resource-listing__card:nth-child(5n+4) {
    grid-column: 1/24;
  }
  .resource-listing--layout-5 .resource-listing__card:nth-child(5n) {
    grid-column: 25/-1;
  }
}
@media (min-width: 70.25em) {
  .resource-listing--layout-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 28.75em) {
  .resource-listing--layout-4 .resource-listing__card, .resource-listing--layout-5 .resource-listing__card, .resource-listing--layout-slider .resource-listing__card {
    display: flex;
    flex-direction: column;
  }
}
.resource-listing {
  /**
   * Card styles
   */
}
.resource-listing__card {
  color: #FFFFFF;
}
.resource-listing__card-title {
  margin-bottom: 10px;
}
.resource-listing__card-subtitle {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  margin-bottom: 10px;
}
.resource-listing__card-description {
  font-size: 0.875rem;
  line-height: 1.2857142857;
  margin-top: auto;
  margin-bottom: 20px;
}
.resource-listing__card-media {
  margin-bottom: 20px;
  display: flex;
}
.resource-listing__card-button {
  padding-right: 15px;
  border-bottom: 1px solid;
  width: fit-content;
}
.resource-listing__card {
  /**
   * Resource card style
   */
}
.resource-listing__card--style-resource {
  min-height: 150px;
}
@media (max-width: 85.115em) {
  .resource-listing__card--style-resource {
    padding: 1.2rem;
  }
}
@media (min-width: 85.125em) {
  .resource-listing__card--style-resource {
    padding: 2rem;
  }
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-red {
  background-color: var(--dp-red);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-purple {
  background-color: var(--dp-purple);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-orange-dark {
  background-color: var(--dp-orange-dark);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-orange-light {
  background-color: var(--dp-orange-light);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-yellow {
  background-color: var(--dp-yellow);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-green {
  background-color: var(--dp-green);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-blue {
  background-color: var(--dp-blue);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-teal {
  background-color: var(--dp-teal);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-pink {
  background-color: var(--dp-pink);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-grey {
  background-color: var(--dp-grey);
  color: var(--dp-black);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-grey .resource-listing__card-media svg path {
  fill: var(--dp-black);
}
.resource-listing__card--style-resource.resource-listing__card--bg-color-black {
  background-color: var(--dp-black);
}
.resource-listing__card--style-resource .resource-listing__card-media svg path {
  fill: #FFFFFF;
}
.resource-listing__card {
  /**
   * Image stripe style
   */
}
.resource-listing__card--style-image-stripe {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 372px;
}
.resource-listing__card--style-image-stripe .resource-listing__card-image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
}
.resource-listing__card--style-image-stripe .resource-listing__card-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.resource-listing__card--style-image-stripe .resource-listing__card-title {
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  padding: 1rem;
  margin-bottom: 75px;
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-grey .resource-listing__card-title {
  background-color: var(--dp-grey);
  color: var(--dp-black);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-red .resource-listing__card-title {
  background-color: var(--dp-red);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-purple .resource-listing__card-title {
  background-color: var(--dp-purple);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-orange-dark .resource-listing__card-title {
  background-color: var(--dp-orange-dark);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-orange-light .resource-listing__card-title {
  background-color: var(--dp-orange-light);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-yellow .resource-listing__card-title {
  background-color: var(--dp-yellow);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-green .resource-listing__card-title {
  background-color: var(--dp-green);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-blue .resource-listing__card-title {
  background-color: var(--dp-blue);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-teal .resource-listing__card-title {
  background-color: var(--dp-teal);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-pink .resource-listing__card-title {
  background-color: var(--dp-pink);
}
.resource-listing__card--style-image-stripe.resource-listing__card--bg-color-black .resource-listing__card-title {
  background-color: var(--dp-black);
}

.cross-linking {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.cross-linking.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.cross-linking.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.cross-linking.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.cross-linking.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.cross-linking.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.cross-linking.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.cross-linking.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.cross-linking.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.cross-linking.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.cross-linking.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.cross-linking.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.cross-linking.block--background-color-default, .cross-linking.block--background-color-white {
  position: relative;
}
.cross-linking.block--background-color-default:before, .cross-linking.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-grey {
  position: relative;
}
.cross-linking.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-yellow {
  position: relative;
}
.cross-linking.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-orange-light {
  position: relative;
}
.cross-linking.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-orange-dark {
  position: relative;
}
.cross-linking.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-red {
  position: relative;
}
.cross-linking.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-purple {
  position: relative;
}
.cross-linking.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-blue {
  position: relative;
}
.cross-linking.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-green {
  position: relative;
}
.cross-linking.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-teal {
  position: relative;
}
.cross-linking.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-pink {
  position: relative;
}
.cross-linking.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-black {
  position: relative;
}
.cross-linking.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking.block--background-color-yellow.block, .cross-linking.block--background-color-orange-light.block, .cross-linking.block--background-color-orange-dark.block, .cross-linking.block--background-color-red.block, .cross-linking.block--background-color-purple.block, .cross-linking.block--background-color-blue.block, .cross-linking.block--background-color-green.block, .cross-linking.block--background-color-teal.block, .cross-linking.block--background-color-pink.block, .cross-linking.block--background-color-black.block, .cross-linking.block--background-color-gradient.block {
  color: #FFFFFF;
}
.cross-linking.block--background-color-yellow.block p a, .cross-linking.block--background-color-orange-light.block p a, .cross-linking.block--background-color-orange-dark.block p a, .cross-linking.block--background-color-red.block p a, .cross-linking.block--background-color-purple.block p a, .cross-linking.block--background-color-blue.block p a, .cross-linking.block--background-color-green.block p a, .cross-linking.block--background-color-teal.block p a, .cross-linking.block--background-color-pink.block p a, .cross-linking.block--background-color-black.block p a, .cross-linking.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.cross-linking.block--background-color-yellow.block li:before, .cross-linking.block--background-color-orange-light.block li:before, .cross-linking.block--background-color-orange-dark.block li:before, .cross-linking.block--background-color-red.block li:before, .cross-linking.block--background-color-purple.block li:before, .cross-linking.block--background-color-blue.block li:before, .cross-linking.block--background-color-green.block li:before, .cross-linking.block--background-color-teal.block li:before, .cross-linking.block--background-color-pink.block li:before, .cross-linking.block--background-color-black.block li:before, .cross-linking.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.cross-linking.block--background-color-gradient {
  position: relative;
}
.cross-linking.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.cross-linking .swiper {
  position: relative;
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .cross-linking .swiper {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .cross-linking .swiper {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .cross-linking .swiper {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .cross-linking .swiper {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .cross-linking .swiper {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .cross-linking .swiper {
    padding-right: 36px;
  }
}
.cross-linking .swiper-wrapper {
  display: flex;
}
.cross-linking .swiper-slide {
  flex-shrink: 0;
}
.cross-linking .swiper-button-prev, .cross-linking .swiper-button-next {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid;
  z-index: 1;
  cursor: pointer;
}
.cross-linking .swiper-button-prev {
  left: 0;
}
.cross-linking .swiper-button-next {
  right: 0;
}
.cross-linking .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.cross-linking .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--dp-red);
  border-radius: 10px;
  cursor: pointer;
}
.cross-linking .swiper-pagination-bullet-active {
  background-color: var(--dp-red);
}
.cross-linking .swiper .swiper-slide-active {
  z-index: 100;
}
.cross-linking:not(.cross-linking--layout-slider) {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .cross-linking:not(.cross-linking--layout-slider) {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .cross-linking:not(.cross-linking--layout-slider) {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .cross-linking:not(.cross-linking--layout-slider) {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .cross-linking:not(.cross-linking--layout-slider) {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .cross-linking:not(.cross-linking--layout-slider) {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .cross-linking:not(.cross-linking--layout-slider) {
    padding-right: 36px;
  }
}
.cross-linking:not(.cross-linking--layout-slider) {
  display: grid;
  column-gap: 25px;
  row-gap: 30px;
}
.cross-linking {
  /**
   * 2 column layout
   */
}
@media (min-width: 28.75em) {
  .cross-linking--layout-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cross-linking {
  /**
   * 3 column layout
   */
}
@media (min-width: 28.75em) {
  .cross-linking--layout-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 45em) {
  .cross-linking--layout-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cross-linking {
  /**
   * 4 column layout
   */
}
@media (min-width: 41.25em) {
  .cross-linking--layout-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 45em) {
  .cross-linking--layout-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 61.25em) {
  .cross-linking--layout-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cross-linking {
  /**
   * 5 column layout
   */
}
@media (min-width: 28.75em) {
  .cross-linking--layout-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .cross-linking--layout-5 {
    grid-template-columns: repeat(47, 1fr);
    column-gap: 0;
  }
  .cross-linking--layout-5 .cross-linking__card:nth-child(5n+1) {
    grid-column: 1/16;
  }
  .cross-linking--layout-5 .cross-linking__card:nth-child(5n+2) {
    grid-column: 17/32;
  }
  .cross-linking--layout-5 .cross-linking__card:nth-child(5n+3) {
    grid-column: 33/-1;
  }
  .cross-linking--layout-5 .cross-linking__card:nth-child(5n+4) {
    grid-column: 1/24;
  }
  .cross-linking--layout-5 .cross-linking__card:nth-child(5n) {
    grid-column: 25/-1;
  }
}
@media (min-width: 70.25em) {
  .cross-linking--layout-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .cross-linking--layout-5 .cross-linking__card .cross-linking__text-overlay .cross-linking__subtitle {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.cross-linking--layout-2, .cross-linking--layout-5 {
  grid-auto-rows: minmax(290px, 1fr);
}
.cross-linking--layout-4 {
  grid-auto-rows: minmax(200px, 1fr);
}
.cross-linking {
  /**
   * Card styles
   */
}
.cross-linking__card {
  position: relative;
  word-break: break-word;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}
.cross-linking__card:where(a) {
  transition: transform 0.3s ease-in-out;
}
.cross-linking__card:where(a):hover {
  transform: scale(1.05);
}
.cross-linking__card .cross-linking__text {
  width: 100%;
}
.cross-linking__card .cross-linking__text-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5625rem;
  line-height: 1.28;
}
.cross-linking__card .cross-linking__text-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto;
}
.cross-linking__card {
  /**
   * Icon
   */
}
.cross-linking__card--style-icon {
  display: grid;
  grid-template-rows: 110px auto;
}
.cross-linking__card--style-icon .cross-linking__image {
  display: flex;
  justify-content: center;
  padding: 25px 20px 2px 20px;
}
.cross-linking__card--style-icon .cross-linking__image img {
  height: 100%;
}
.cross-linking__card--style-icon .cross-linking__text {
  padding: 1rem;
}
.cross-linking__card {
  /**
   * Card
   */
}
.cross-linking__card--style-card {
  background-color: #FAFAFA;
}
.cross-linking__card--style-card .cross-linking__image {
  position: relative;
}
.cross-linking__card--style-card .cross-linking__image:before {
  display: block;
  content: "";
}
.cross-linking__card--style-card .cross-linking__image:before {
  padding-top: 40%;
}
.cross-linking__card--style-card .cross-linking__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cross-linking__card--style-card .cross-linking__divider {
  width: 100%;
  height: 12px;
}
.cross-linking__card--style-card .cross-linking__text {
  color: #000000;
  padding: 1rem;
}
.cross-linking__card {
  /**
   * Image Background
   */
}
.cross-linking__card--style-image-background {
  color: #FFFFFF;
}
.cross-linking__card--style-image-background .cross-linking__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cross-linking__card--style-image-background .cross-linking__image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.cross-linking__card--style-image-background .cross-linking__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 1rem;
  height: 100%;
  z-index: 1;
}
@media (max-width: 28.74em) {
  .cross-linking__card--style-image-background .cross-linking__text {
    justify-content: center;
  }
}
.cross-linking__card--style-image-background .cross-linking__color-overlay, .cross-linking__card--style-icon .cross-linking__color-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.cross-linking__card--style-image-background .cross-linking__color-overlay, .cross-linking__card--style-icon:not(.cross-linking__card--bg-color-gradient) .cross-linking__color-overlay {
  opacity: 0.87;
}
.cross-linking__card--bg-color-red .cross-linking__color-overlay,
.cross-linking__card--bg-color-red .cross-linking__divider {
  background-color: var(--dp-red);
}
.cross-linking__card--bg-color-purple .cross-linking__color-overlay,
.cross-linking__card--bg-color-purple .cross-linking__divider {
  background-color: var(--dp-purple);
}
.cross-linking__card--bg-color-orange-dark .cross-linking__color-overlay,
.cross-linking__card--bg-color-orange-dark .cross-linking__divider {
  background-color: var(--dp-orange-dark);
}
.cross-linking__card--bg-color-orange-light .cross-linking__color-overlay,
.cross-linking__card--bg-color-orange-light .cross-linking__divider {
  background-color: var(--dp-orange-light);
}
.cross-linking__card--bg-color-yellow .cross-linking__color-overlay,
.cross-linking__card--bg-color-yellow .cross-linking__divider {
  background-color: var(--dp-yellow);
}
.cross-linking__card--bg-color-green .cross-linking__color-overlay,
.cross-linking__card--bg-color-green .cross-linking__divider {
  background-color: var(--dp-green);
}
.cross-linking__card--bg-color-blue .cross-linking__color-overlay,
.cross-linking__card--bg-color-blue .cross-linking__divider {
  background-color: var(--dp-blue);
}
.cross-linking__card--bg-color-teal .cross-linking__color-overlay,
.cross-linking__card--bg-color-teal .cross-linking__divider {
  background-color: var(--dp-teal);
}
.cross-linking__card--bg-color-pink .cross-linking__color-overlay,
.cross-linking__card--bg-color-pink .cross-linking__divider {
  background-color: var(--dp-pink);
}
.cross-linking__card--bg-color-grey {
  color: #362D2D;
}
.cross-linking__card--bg-color-grey .cross-linking__color-overlay,
.cross-linking__card--bg-color-grey .cross-linking__divider {
  background-color: #F2F2F2;
}
.cross-linking__card--bg-color-white {
  color: var(--dp-black);
}
.cross-linking__card--bg-color-white .cross-linking__color-overlay,
.cross-linking__card--bg-color-white .cross-linking__divider {
  background-color: #FFFFFF;
}
.cross-linking__card--bg-color-black {
  color: #FFFFFF;
}
.cross-linking__card--bg-color-black .cross-linking__color-overlay,
.cross-linking__card--bg-color-black .cross-linking__divider {
  background-color: var(--dp-black);
}
.cross-linking__card--bg-color-gradient {
  color: #FFFFFF;
}
.cross-linking__card--bg-color-gradient .cross-linking__color-overlay,
.cross-linking__card--bg-color-gradient .cross-linking__divider {
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
}

.faqs-box {
  display: block;
  border-top: 1px solid #D8D8D8;
}
.faqs-box:last-child {
  border-bottom: 1px solid #D8D8D8;
}
.faqs-box__question {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 30px;
  margin-bottom: 0;
  cursor: pointer;
}
.faqs-box__question:after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='8'%20viewBox='0%200%2014%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7%207.4625C6.91563%207.4625%206.8375%207.42813%206.77813%207.37188L0.478125%201.07187C0.35625%200.949999%200.35625%200.753124%200.478125%200.631249C0.6%200.509374%200.796875%200.509374%200.91875%200.631249L7%206.70937L13.0781%200.631249C13.2%200.509374%2013.3969%200.509374%2013.5188%200.631249C13.6406%200.753124%2013.6406%200.949999%2013.5188%201.07187L7.22188%207.37188C7.1625%207.42813%207.08438%207.4625%207%207.4625Z'%20fill='%236A6A6A'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
}
.faqs-box__answer {
  display: none;
}
.faqs-box.active .faqs-box__question:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.faqs-box.active .faqs-box__answer {
  display: block;
}
.featured-articles .faqs-box:first-child {
  border-top: none;
}
.featured-articles .faqs-box .faqs-box__question {
  padding-top: 20px;
  padding-bottom: 20px;
}
.featured-articles .faqs-box .faqs-box__question:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.faqs-block {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.faqs-block.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.faqs-block.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.faqs-block.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.faqs-block.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.faqs-block.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.faqs-block.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.faqs-block.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.faqs-block.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.faqs-block.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.faqs-block.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.faqs-block.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.faqs-block.block--background-color-default, .faqs-block.block--background-color-white {
  position: relative;
}
.faqs-block.block--background-color-default:before, .faqs-block.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-grey {
  position: relative;
}
.faqs-block.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-yellow {
  position: relative;
}
.faqs-block.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-orange-light {
  position: relative;
}
.faqs-block.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-orange-dark {
  position: relative;
}
.faqs-block.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-red {
  position: relative;
}
.faqs-block.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-purple {
  position: relative;
}
.faqs-block.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-blue {
  position: relative;
}
.faqs-block.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-green {
  position: relative;
}
.faqs-block.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-teal {
  position: relative;
}
.faqs-block.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-pink {
  position: relative;
}
.faqs-block.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-black {
  position: relative;
}
.faqs-block.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block.block--background-color-yellow.block, .faqs-block.block--background-color-orange-light.block, .faqs-block.block--background-color-orange-dark.block, .faqs-block.block--background-color-red.block, .faqs-block.block--background-color-purple.block, .faqs-block.block--background-color-blue.block, .faqs-block.block--background-color-green.block, .faqs-block.block--background-color-teal.block, .faqs-block.block--background-color-pink.block, .faqs-block.block--background-color-black.block, .faqs-block.block--background-color-gradient.block {
  color: #FFFFFF;
}
.faqs-block.block--background-color-yellow.block p a, .faqs-block.block--background-color-orange-light.block p a, .faqs-block.block--background-color-orange-dark.block p a, .faqs-block.block--background-color-red.block p a, .faqs-block.block--background-color-purple.block p a, .faqs-block.block--background-color-blue.block p a, .faqs-block.block--background-color-green.block p a, .faqs-block.block--background-color-teal.block p a, .faqs-block.block--background-color-pink.block p a, .faqs-block.block--background-color-black.block p a, .faqs-block.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.faqs-block.block--background-color-yellow.block li:before, .faqs-block.block--background-color-orange-light.block li:before, .faqs-block.block--background-color-orange-dark.block li:before, .faqs-block.block--background-color-red.block li:before, .faqs-block.block--background-color-purple.block li:before, .faqs-block.block--background-color-blue.block li:before, .faqs-block.block--background-color-green.block li:before, .faqs-block.block--background-color-teal.block li:before, .faqs-block.block--background-color-pink.block li:before, .faqs-block.block--background-color-black.block li:before, .faqs-block.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.faqs-block.block--background-color-gradient {
  position: relative;
}
.faqs-block.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.faqs-block__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .faqs-block__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .faqs-block__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .faqs-block__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .faqs-block__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .faqs-block__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .faqs-block__content {
    padding-right: 36px;
  }
}
.faqs-block {
  /*
   * Background colour variations
   */
}
.faqs-block.block--background-color-yellow .faqs-box, .faqs-block.block--background-color-orange-light .faqs-box, .faqs-block.block--background-color-orange-dark .faqs-box, .faqs-block.block--background-color-red .faqs-box, .faqs-block.block--background-color-purple .faqs-box {
  border-color: #FFFFFF;
}
.faqs-block.block--background-color-yellow .faqs-box__question:after, .faqs-block.block--background-color-orange-light .faqs-box__question:after, .faqs-block.block--background-color-orange-dark .faqs-box__question:after, .faqs-block.block--background-color-red .faqs-box__question:after, .faqs-block.block--background-color-purple .faqs-box__question:after {
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='8'%20viewBox='0%200%2014%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7%207.4625C6.91563%207.4625%206.8375%207.42813%206.77813%207.37188L0.478125%201.07187C0.35625%200.949999%200.35625%200.753124%200.478125%200.631249C0.6%200.509374%200.796875%200.509374%200.91875%200.631249L7%206.70937L13.0781%200.631249C13.2%200.509374%2013.3969%200.509374%2013.5188%200.631249C13.6406%200.753124%2013.6406%200.949999%2013.5188%201.07187L7.22188%207.37188C7.1625%207.42813%207.08438%207.4625%207%207.4625Z'%20fill='%23fff'/%3e%3c/svg%3e");
}

.single-video {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.single-video.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.single-video.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.single-video.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.single-video.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.single-video.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.single-video.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.single-video.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.single-video.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.single-video.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.single-video.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.single-video.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.single-video.block--background-color-default, .single-video.block--background-color-white {
  position: relative;
}
.single-video.block--background-color-default:before, .single-video.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-grey {
  position: relative;
}
.single-video.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-yellow {
  position: relative;
}
.single-video.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-orange-light {
  position: relative;
}
.single-video.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-orange-dark {
  position: relative;
}
.single-video.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-red {
  position: relative;
}
.single-video.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-purple {
  position: relative;
}
.single-video.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-blue {
  position: relative;
}
.single-video.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-green {
  position: relative;
}
.single-video.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-teal {
  position: relative;
}
.single-video.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-pink {
  position: relative;
}
.single-video.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-black {
  position: relative;
}
.single-video.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video.block--background-color-yellow.block, .single-video.block--background-color-orange-light.block, .single-video.block--background-color-orange-dark.block, .single-video.block--background-color-red.block, .single-video.block--background-color-purple.block, .single-video.block--background-color-blue.block, .single-video.block--background-color-green.block, .single-video.block--background-color-teal.block, .single-video.block--background-color-pink.block, .single-video.block--background-color-black.block, .single-video.block--background-color-gradient.block {
  color: #FFFFFF;
}
.single-video.block--background-color-yellow.block p a, .single-video.block--background-color-orange-light.block p a, .single-video.block--background-color-orange-dark.block p a, .single-video.block--background-color-red.block p a, .single-video.block--background-color-purple.block p a, .single-video.block--background-color-blue.block p a, .single-video.block--background-color-green.block p a, .single-video.block--background-color-teal.block p a, .single-video.block--background-color-pink.block p a, .single-video.block--background-color-black.block p a, .single-video.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.single-video.block--background-color-yellow.block li:before, .single-video.block--background-color-orange-light.block li:before, .single-video.block--background-color-orange-dark.block li:before, .single-video.block--background-color-red.block li:before, .single-video.block--background-color-purple.block li:before, .single-video.block--background-color-blue.block li:before, .single-video.block--background-color-green.block li:before, .single-video.block--background-color-teal.block li:before, .single-video.block--background-color-pink.block li:before, .single-video.block--background-color-black.block li:before, .single-video.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.single-video.block--background-color-gradient {
  position: relative;
}
.single-video.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-video__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .single-video__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .single-video__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .single-video__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .single-video__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .single-video__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .single-video__content {
    padding-right: 36px;
  }
}
.single-video--col-2 .single-video__content {
  display: grid;
  gap: 50px;
}
@media (min-width: 61.25em) {
  .single-video--col-2 .single-video__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.image-gallery {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.image-gallery.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.image-gallery.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.image-gallery.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.image-gallery.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.image-gallery.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.image-gallery.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.image-gallery.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.image-gallery.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.image-gallery.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.image-gallery.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.image-gallery.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.image-gallery.block--background-color-default, .image-gallery.block--background-color-white {
  position: relative;
}
.image-gallery.block--background-color-default:before, .image-gallery.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-grey {
  position: relative;
}
.image-gallery.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-yellow {
  position: relative;
}
.image-gallery.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-orange-light {
  position: relative;
}
.image-gallery.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-orange-dark {
  position: relative;
}
.image-gallery.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-red {
  position: relative;
}
.image-gallery.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-purple {
  position: relative;
}
.image-gallery.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-blue {
  position: relative;
}
.image-gallery.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-green {
  position: relative;
}
.image-gallery.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-teal {
  position: relative;
}
.image-gallery.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-pink {
  position: relative;
}
.image-gallery.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-black {
  position: relative;
}
.image-gallery.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery.block--background-color-yellow.block, .image-gallery.block--background-color-orange-light.block, .image-gallery.block--background-color-orange-dark.block, .image-gallery.block--background-color-red.block, .image-gallery.block--background-color-purple.block, .image-gallery.block--background-color-blue.block, .image-gallery.block--background-color-green.block, .image-gallery.block--background-color-teal.block, .image-gallery.block--background-color-pink.block, .image-gallery.block--background-color-black.block, .image-gallery.block--background-color-gradient.block {
  color: #FFFFFF;
}
.image-gallery.block--background-color-yellow.block p a, .image-gallery.block--background-color-orange-light.block p a, .image-gallery.block--background-color-orange-dark.block p a, .image-gallery.block--background-color-red.block p a, .image-gallery.block--background-color-purple.block p a, .image-gallery.block--background-color-blue.block p a, .image-gallery.block--background-color-green.block p a, .image-gallery.block--background-color-teal.block p a, .image-gallery.block--background-color-pink.block p a, .image-gallery.block--background-color-black.block p a, .image-gallery.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.image-gallery.block--background-color-yellow.block li:before, .image-gallery.block--background-color-orange-light.block li:before, .image-gallery.block--background-color-orange-dark.block li:before, .image-gallery.block--background-color-red.block li:before, .image-gallery.block--background-color-purple.block li:before, .image-gallery.block--background-color-blue.block li:before, .image-gallery.block--background-color-green.block li:before, .image-gallery.block--background-color-teal.block li:before, .image-gallery.block--background-color-pink.block li:before, .image-gallery.block--background-color-black.block li:before, .image-gallery.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.image-gallery.block--background-color-gradient {
  position: relative;
}
.image-gallery.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.image-gallery__items {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .image-gallery__items {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .image-gallery__items {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .image-gallery__items {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .image-gallery__items {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .image-gallery__items {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .image-gallery__items {
    padding-right: 36px;
  }
}
.image-gallery__items {
  display: grid;
  gap: 25px;
}
.image-gallery__items:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 61.25em) {
  .image-gallery__items {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 10px;
  }
}
.image-gallery__items-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 45em) {
  .image-gallery__items-item:nth-last-child(n+1):nth-last-child(-n+1):first-child:nth-child(1n), .image-gallery__items-item:nth-last-child(n+1):nth-last-child(-n+1):first-child ~ .image-gallery__items-item:nth-child(1n) {
    grid-column: span 12;
    grid-row: span 22;
  }
  .image-gallery__items-item:nth-last-child(n+2):nth-last-child(-n+2):first-child:nth-child(2n-1), .image-gallery__items-item:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ .image-gallery__items-item:nth-child(2n-1) {
    grid-column: span 6;
    grid-row: span 14;
  }
  .image-gallery__items-item:nth-last-child(n+2):nth-last-child(-n+2):first-child:nth-child(2n), .image-gallery__items-item:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ .image-gallery__items-item:nth-child(2n) {
    grid-column: span 6;
    grid-row: span 14;
  }
  .image-gallery__items-item:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n-2), .image-gallery__items-item:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .image-gallery__items-item:nth-child(3n-2) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n-1), .image-gallery__items-item:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .image-gallery__items-item:nth-child(3n-1) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n), .image-gallery__items-item:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .image-gallery__items-item:nth-child(3n) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-3), .image-gallery__items-item:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .image-gallery__items-item:nth-child(4n-3) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-2), .image-gallery__items-item:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .image-gallery__items-item:nth-child(4n-2) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-1), .image-gallery__items-item:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .image-gallery__items-item:nth-child(4n-1) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n), .image-gallery__items-item:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .image-gallery__items-item:nth-child(4n) {
    grid-column: span 12;
    grid-row: span 22;
  }
  .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-4), .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .image-gallery__items-item:nth-child(5n-4) {
    grid-column: span 6;
    grid-row: span 14;
  }
  .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-3), .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .image-gallery__items-item:nth-child(5n-3) {
    grid-column: span 6;
    grid-row: span 14;
  }
  .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-2), .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .image-gallery__items-item:nth-child(5n-2) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-1), .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .image-gallery__items-item:nth-child(5n-1) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n), .image-gallery__items-item:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .image-gallery__items-item:nth-child(5n) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-5), .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .image-gallery__items-item:nth-child(6n-5) {
    grid-column: span 6;
    grid-row: span 12;
  }
  .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-4), .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .image-gallery__items-item:nth-child(6n-4) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-3), .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .image-gallery__items-item:nth-child(6n-3) {
    grid-column: span 6;
    grid-row: span 20;
  }
  .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-2), .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .image-gallery__items-item:nth-child(6n-2) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-1), .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .image-gallery__items-item:nth-child(6n-1) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n), .image-gallery__items-item:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .image-gallery__items-item:nth-child(6n) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-6), .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .image-gallery__items-item:nth-child(7n-6) {
    grid-column: span 6;
    grid-row: span 12;
  }
  .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-5), .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .image-gallery__items-item:nth-child(7n-5) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-4), .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .image-gallery__items-item:nth-child(7n-4) {
    grid-column: span 6;
    grid-row: span 20;
  }
  .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-3), .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .image-gallery__items-item:nth-child(7n-3) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-2), .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .image-gallery__items-item:nth-child(7n-2) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-1), .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .image-gallery__items-item:nth-child(7n-1) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n), .image-gallery__items-item:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .image-gallery__items-item:nth-child(7n) {
    grid-column: span 12;
    grid-row: span 22;
  }
  .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-7), .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .image-gallery__items-item:nth-child(8n-7) {
    grid-column: span 12;
    grid-row: span 22;
  }
  .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-6), .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .image-gallery__items-item:nth-child(8n-6) {
    grid-column: span 6;
    grid-row: span 12;
  }
  .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-5), .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .image-gallery__items-item:nth-child(8n-5) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-4), .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .image-gallery__items-item:nth-child(8n-4) {
    grid-column: span 6;
    grid-row: span 20;
  }
  .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-3), .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .image-gallery__items-item:nth-child(8n-3) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-2), .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .image-gallery__items-item:nth-child(8n-2) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-1), .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .image-gallery__items-item:nth-child(8n-1) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n), .image-gallery__items-item:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .image-gallery__items-item:nth-child(8n) {
    grid-column: span 12;
    grid-row: span 22;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n-8), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n-8) {
    grid-column: span 6;
    grid-row: span 12;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n-7), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n-7) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n-6), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n-6) {
    grid-column: span 6;
    grid-row: span 20;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n-5), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n-5) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n-4), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n-4) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n-3), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n-3) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n-2), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n-2) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n-1), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n-1) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(9n), .image-gallery__items-item:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .image-gallery__items-item:nth-child(9n) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-9), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-9) {
    grid-column: span 6;
    grid-row: span 12;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-8), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-8) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-7), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-7) {
    grid-column: span 6;
    grid-row: span 20;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-6), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-6) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-5), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-5) {
    grid-column: span 3;
    grid-row: span 8;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-4), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-4) {
    grid-column: span 6;
    grid-row: span 10;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-3), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-3) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-2), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-2) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-1), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n-1) {
    grid-column: span 4;
    grid-row: span 11;
  }
  .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n), .image-gallery__items-item:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .image-gallery__items-item:nth-child(10n) {
    grid-column: span 12;
    grid-row: span 22;
  }
}

.press-mentions {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .press-mentions {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .press-mentions {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .press-mentions {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .press-mentions {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .press-mentions {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .press-mentions {
    padding-right: 36px;
  }
}
.press-mentions {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.press-mentions.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.press-mentions.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.press-mentions.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.press-mentions.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.press-mentions.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.press-mentions.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.press-mentions.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.press-mentions.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.press-mentions.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.press-mentions.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.press-mentions.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.press-mentions__mention {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 128px;
  grid-template-areas: "date   date" "desc   desc" "image  link";
  column-gap: 20px;
}
@media (max-width: 41.24em) {
  .press-mentions__mention {
    align-items: end;
  }
}
@media (min-width: 41.25em) {
  .press-mentions__mention {
    align-items: center;
    column-gap: 35px;
  }
}
@media (min-width: 41.25em) and (max-width: 61.24em) {
  .press-mentions__mention {
    grid-template-columns: 150px 1fr 128px;
    grid-template-areas: "image  date  link" "image  desc  link";
  }
}
@media (min-width: 61.25em) {
  .press-mentions__mention {
    grid-template-columns: 180px 180px auto 128px;
    grid-template-areas: "image  date  desc  link";
  }
}
.press-mentions__mention:not(:last-child) {
  border-bottom: 1px solid #D8D8D8;
}
.press-mentions__mention-image {
  grid-area: image;
}
.press-mentions__mention-image img {
  max-height: 70px;
}
@media (min-width: 45em) {
  .press-mentions__mention-image img {
    margin: auto;
  }
}
.press-mentions__mention-date {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  grid-area: date;
}
.press-mentions__mention-description {
  grid-area: desc;
}
@media (max-width: 41.24em) {
  .press-mentions__mention-description {
    margin-bottom: 1.5rem;
  }
}
.press-mentions__mention-link {
  grid-area: link;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.press-mentions__mention-link:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.press-mentions__mention-link {
  padding: 14px 15px;
}

.blog-listings {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .blog-listings {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .blog-listings {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .blog-listings {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .blog-listings {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .blog-listings {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .blog-listings {
    padding-right: 36px;
  }
}
.blog-listings {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.blog-listings.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.blog-listings.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.blog-listings.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.blog-listings.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.blog-listings.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.blog-listings.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.blog-listings.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.blog-listings.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.blog-listings.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.blog-listings.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.blog-listings.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
@media (min-width: 28.75em) {
  .blog-listings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
    row-gap: 4rem;
  }
}
@media (min-width: 61.25em) {
  .blog-listings {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-listings__article-image {
  position: relative;
}
.blog-listings__article-image:before {
  display: block;
  content: "";
}
.blog-listings__article-image:before {
  padding-top: 85.7142857143%;
}
.blog-listings__article-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-listings__article-category {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: var(--dp-black);
  color: #FFFFFF;
  padding: 9px 13px;
  text-transform: uppercase;
  line-height: 1.3;
  z-index: 1;
  margin-left: 20px;
}
.blog-listings__article-meta {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 20px;
  color: var(--dp-black);
}
.blog-listings__article-meta-author {
  display: flex;
  gap: 6px;
}
.blog-listings__article-meta-author svg path {
  fill: var(--dp-black);
}
@media (max-width: 44.99em) {
  .blog-listings__article-excerpt {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.blog-listings__pagination {
  width: 100%;
  grid-column: 1/-1;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 28.74em) {
  .blog-listings__pagination .page-numbers {
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }
}
@media (min-width: 28.75em) {
  .blog-listings__pagination .page-numbers {
    font-size: 1rem;
    line-height: 1.875;
  }
}
.blog-listings__pagination .page-numbers:not(.prev):not(.next) {
  padding: 8px 15px;
}
.blog-listings__pagination .page-numbers:first-child:not(.prev), .blog-listings__pagination .page-numbers.next {
  margin-left: auto;
}
.blog-listings__pagination .page-numbers:last-child:not(.next), .blog-listings__pagination .page-numbers.prev {
  margin-right: auto;
}
.blog-listings__pagination .page-numbers.next, .blog-listings__pagination .page-numbers.prev {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.blog-listings__pagination .page-numbers.next:hover, .blog-listings__pagination .page-numbers.prev:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.blog-listings__pagination .page-numbers.next, .blog-listings__pagination .page-numbers.prev {
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 12px 20px;
}
@media (max-width: 28.74em) {
  .blog-listings__pagination .page-numbers.next, .blog-listings__pagination .page-numbers.prev {
    font-size: 0.75rem;
    line-height: 1.3333333333;
    padding: 8px 16px;
  }
}
.blog-listings__pagination .page-numbers.current {
  background-color: var(--dp-red);
  color: #FFFFFF;
  border-radius: 10px;
}

.event-listings {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.event-listings.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.event-listings.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.event-listings.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.event-listings.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.event-listings.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.event-listings.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.event-listings.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.event-listings.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.event-listings.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.event-listings.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.event-listings.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.event-listings.block--background-color-default, .event-listings.block--background-color-white {
  position: relative;
}
.event-listings.block--background-color-default:before, .event-listings.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-grey {
  position: relative;
}
.event-listings.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-yellow {
  position: relative;
}
.event-listings.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-orange-light {
  position: relative;
}
.event-listings.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-orange-dark {
  position: relative;
}
.event-listings.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-red {
  position: relative;
}
.event-listings.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-purple {
  position: relative;
}
.event-listings.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-blue {
  position: relative;
}
.event-listings.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-green {
  position: relative;
}
.event-listings.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-teal {
  position: relative;
}
.event-listings.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-pink {
  position: relative;
}
.event-listings.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-black {
  position: relative;
}
.event-listings.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings.block--background-color-yellow.block, .event-listings.block--background-color-orange-light.block, .event-listings.block--background-color-orange-dark.block, .event-listings.block--background-color-red.block, .event-listings.block--background-color-purple.block, .event-listings.block--background-color-blue.block, .event-listings.block--background-color-green.block, .event-listings.block--background-color-teal.block, .event-listings.block--background-color-pink.block, .event-listings.block--background-color-black.block, .event-listings.block--background-color-gradient.block {
  color: #FFFFFF;
}
.event-listings.block--background-color-yellow.block p a, .event-listings.block--background-color-orange-light.block p a, .event-listings.block--background-color-orange-dark.block p a, .event-listings.block--background-color-red.block p a, .event-listings.block--background-color-purple.block p a, .event-listings.block--background-color-blue.block p a, .event-listings.block--background-color-green.block p a, .event-listings.block--background-color-teal.block p a, .event-listings.block--background-color-pink.block p a, .event-listings.block--background-color-black.block p a, .event-listings.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.event-listings.block--background-color-yellow.block li:before, .event-listings.block--background-color-orange-light.block li:before, .event-listings.block--background-color-orange-dark.block li:before, .event-listings.block--background-color-red.block li:before, .event-listings.block--background-color-purple.block li:before, .event-listings.block--background-color-blue.block li:before, .event-listings.block--background-color-green.block li:before, .event-listings.block--background-color-teal.block li:before, .event-listings.block--background-color-pink.block li:before, .event-listings.block--background-color-black.block li:before, .event-listings.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.event-listings.block--background-color-gradient {
  position: relative;
}
.event-listings.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.event-listings .swiper {
  position: relative;
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .event-listings .swiper {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .event-listings .swiper {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .event-listings .swiper {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .event-listings .swiper {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .event-listings .swiper {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .event-listings .swiper {
    padding-right: 36px;
  }
}
.event-listings .swiper-wrapper {
  display: flex;
}
.event-listings .swiper-slide {
  flex-shrink: 0;
}
.event-listings .swiper-button-prev, .event-listings .swiper-button-next {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid;
  z-index: 1;
  cursor: pointer;
}
.event-listings .swiper-button-prev {
  left: 0;
}
.event-listings .swiper-button-next {
  right: 0;
}
.event-listings .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.event-listings .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--dp-red);
  border-radius: 10px;
  cursor: pointer;
}
.event-listings .swiper-pagination-bullet-active {
  background-color: var(--dp-red);
}
.event-listings .swiper .swiper-slide-active {
  z-index: 100;
}
.event-listings {
  /**
   * Grid layout
   */
}
.event-listings:not(.event-listings--type-slider) {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .event-listings:not(.event-listings--type-slider) {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .event-listings:not(.event-listings--type-slider) {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .event-listings:not(.event-listings--type-slider) {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .event-listings:not(.event-listings--type-slider) {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .event-listings:not(.event-listings--type-slider) {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .event-listings:not(.event-listings--type-slider) {
    padding-right: 36px;
  }
}
.event-listings:not(.event-listings--type-slider) {
  display: grid;
  row-gap: 3rem;
}
@media (min-width: 41.25em) {
  .event-listings:not(.event-listings--type-slider) {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}
@media (min-width: 61.25em) {
  .event-listings:not(.event-listings--type-slider) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 70.25em) {
  .event-listings:not(.event-listings--type-slider) {
    column-gap: 3.8rem;
  }
}
.event-listings {
  /**
   * Event cards
   */
}
.event-listings__event {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #C0C0C0;
}
.event-listings__event-image {
  position: relative;
}
.event-listings__event-image-img {
  position: relative;
}
.event-listings__event-image-img:before {
  display: block;
  content: "";
}
.event-listings__event-image-img:before {
  padding-top: 55.8823529412%;
}
.event-listings__event-image-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-listings__event-date {
  text-align: center;
}
.event-listings__event-date-month {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: -5px;
}
.event-listings__event-date-day {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.375rem;
  line-height: 1.1578947368;
}
.event-listings__event-meta {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 15px 25px 20px 0;
  background-color: #FFFFFF;
  height: 100%;
}
@media (min-width: 70.25em) {
  .event-listings__event-meta {
    grid-template-columns: 95px 1fr;
  }
}
.event-listings__event-meta .event-listings__event-details .event-listings__event-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.event-listings__event-meta .event-listings__event-details .event-listings__event-venue {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}
.event-listings__event-meta .event-listings__event-details .event-listings__event-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 10px;
}
.event-listings__event-meta .event-listings__event-details .event-listings__event-type {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.event-listings__event-action {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.1875;
  color: #FFFFFF;
  padding: 10px 20px;
  text-align: center;
  margin: -1px;
}
@media (min-width: 70.25em) {
  .event-listings__event-action {
    padding: 10px 30px;
  }
}
.event-listings__event--color-red .event-listings__event-day, .event-listings__event--color-red .event-listings__event-type {
  color: var(--dp-red);
}
.event-listings__event--color-red .event-listings__event-action {
  background-color: var(--dp-red);
}
.event-listings__event--color-yellow .event-listings__event-day, .event-listings__event--color-yellow .event-listings__event-type {
  color: var(--dp-yellow);
}
.event-listings__event--color-yellow .event-listings__event-action {
  background-color: var(--dp-yellow);
}
.event-listings__event--color-orange-light .event-listings__event-day, .event-listings__event--color-orange-light .event-listings__event-type {
  color: var(--dp-orange-light);
}
.event-listings__event--color-orange-light .event-listings__event-action {
  background-color: var(--dp-orange-light);
}
.event-listings__event--color-orange-dark .event-listings__event-day, .event-listings__event--color-orange-dark .event-listings__event-type {
  color: var(--dp-orange-dark);
}
.event-listings__event--color-orange-dark .event-listings__event-action {
  background-color: var(--dp-orange-dark);
}
.event-listings__event--color-purple .event-listings__event-day, .event-listings__event--color-purple .event-listings__event-type {
  color: var(--dp-purple);
}
.event-listings__event--color-purple .event-listings__event-action {
  background-color: var(--dp-purple);
}
.event-listings__event--color-green .event-listings__event-day, .event-listings__event--color-green .event-listings__event-type {
  color: var(--dp-green);
}
.event-listings__event--color-green .event-listings__event-action {
  background-color: var(--dp-green);
}
.event-listings__event--color-blue .event-listings__event-day, .event-listings__event--color-blue .event-listings__event-type {
  color: var(--dp-blue);
}
.event-listings__event--color-blue .event-listings__event-action {
  background-color: var(--dp-blue);
}
.event-listings__event--color-teal .event-listings__event-day, .event-listings__event--color-teal .event-listings__event-type {
  color: var(--dp-teal);
}
.event-listings__event--color-teal .event-listings__event-action {
  background-color: var(--dp-teal);
}
.event-listings__event--color-pink .event-listings__event-day, .event-listings__event--color-pink .event-listings__event-type {
  color: var(--dp-pink);
}
.event-listings__event--color-pink .event-listings__event-action {
  background-color: var(--dp-pink);
}
.event-listings__event--color-black .event-listings__event-day, .event-listings__event--color-black .event-listings__event-type {
  color: var(--dp-black);
}
.event-listings__event--color-black .event-listings__event-action {
  background-color: var(--dp-black);
}
.event-listings__event.has-pointer {
  cursor: pointer;
}

.content-listings {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.content-listings.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.content-listings.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.content-listings.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.content-listings.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.content-listings.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.content-listings.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.content-listings.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.content-listings.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.content-listings.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.content-listings.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.content-listings.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.content-listings .swiper {
  position: relative;
}
.content-listings .swiper-wrapper {
  display: flex;
}
.content-listings .swiper-slide {
  flex-shrink: 0;
}
.content-listings .swiper-button-prev, .content-listings .swiper-button-next {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid;
  z-index: 1;
  cursor: pointer;
}
.content-listings .swiper-button-prev {
  left: 0;
}
.content-listings .swiper-button-next {
  right: 0;
}
.content-listings .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.content-listings .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--dp-red);
  border-radius: 10px;
  cursor: pointer;
}
.content-listings .swiper-pagination-bullet-active {
  background-color: var(--dp-red);
}
.content-listings .swiper .swiper-slide-active {
  z-index: 100;
}
.content-listings {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .content-listings {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .content-listings {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .content-listings {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .content-listings {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .content-listings {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .content-listings {
    padding-right: 36px;
  }
}
@media (min-width: 45em) {
  .content-listings__grid-mobile-swiper {
    display: none;
  }
}
@media (max-width: 44.99em) {
  .content-listings__grid-desktop-view:not(.content-listings__grid-desktop-view--stacked) {
    display: none;
  }
}
.content-listings__grid-desktop-view, .content-listings__grid-desktop-view.content-listings__grid-desktop--stacked {
  display: grid;
  row-gap: 3rem;
}
@media (min-width: 41.25em) {
  .content-listings__grid-desktop-view, .content-listings__grid-desktop-view.content-listings__grid-desktop--stacked {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}
@media (min-width: 61.25em) {
  .content-listings__grid-desktop-view, .content-listings__grid-desktop-view.content-listings__grid-desktop--stacked {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 70.25em) {
  .content-listings__grid-desktop-view, .content-listings__grid-desktop-view.content-listings__grid-desktop--stacked {
    column-gap: 3.8rem;
  }
}
.content-listings__slider {
  display: grid;
  align-items: center;
  gap: 40px;
}
.content-listings__slider-text-title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  .content-listings__slider-text-title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.content-listings__slider-swiper {
  position: relative;
  overflow: hidden;
}
@media (max-width: 44.99em) {
  .content-listings__slider-swiper--hide-mobile {
    display: none;
  }
}
@media (min-width: 45em) {
  .content-listings__slider-swiper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 45em) {
  .content-listings__slider-mobile-grid {
    display: none;
  }
}
.content-listings__slider--text-position-right.content-listings__slider--columns-1up {
  --grid-columns: 1fr 2fr;
}
.content-listings__slider--text-position-right.content-listings__slider--columns-2up {
  --grid-columns: 2fr 1fr;
}
@media (min-width: 61.25em) {
  .content-listings__slider--text-position-right .content-listings__slider-text {
    order: 2;
  }
}
.content-listings__slider--text-position-left.content-listings__slider--columns-1up {
  --grid-columns: 2fr 1fr;
}
.content-listings__slider--text-position-left.content-listings__slider--columns-2up {
  --grid-columns: 1fr 2fr;
}
@media (min-width: 61.25em) {
  .content-listings__slider {
    grid-template-columns: var(--grid-columns);
  }
}
.content-listings__post-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: calc(100% - 1px);
  border: 1px solid #C0C0C0;
}
.content-listings__post-image {
  position: relative;
  margin-bottom: -1px;
}
.content-listings__post-image-img {
  position: relative;
}
.content-listings__post-image-img:before {
  display: block;
  content: "";
}
.content-listings__post-image-img:before {
  padding-top: 55.8823529412%;
}
.content-listings__post-image-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-listings__post-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  padding: 15px 15px 25px;
  background-color: #FFFFFF;
}
.content-listings__post-meta .content-listings__post-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.content-listings__post-meta .content-listings__post-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  overflow: hidden;
}
.content-listings__post-meta .content-listings__post-type {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: var(--block-color, var(--dp-red));
  padding-top: 8px;
  padding-bottom: 8px;
}
.content-listings__post-action {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.1875;
  color: #FFFFFF;
  padding: 10px 20px;
  text-align: center;
  background-color: var(--block-color, var(--dp-red));
  margin: -1px;
}
@media (min-width: 70.25em) {
  .content-listings__post-action {
    padding: 10px 30px;
  }
}
.content-listings .swiper {
  overflow: hidden;
}
.content-listings .swiper-button-prev, .content-listings .swiper-button-next {
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}
@media (max-width: 44.99em) {
  .content-listings .swiper-button-prev, .content-listings .swiper-button-next {
    display: none;
  }
}
.content-listings .swiper-button-prev {
  transform: rotate(90deg);
}
.content-listings .swiper-button-next {
  transform: rotate(-90deg);
}

.case-study-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 60px;
  padding: 20px 20px 50px;
}
@media (min-width: 45em) {
  .case-study-card {
    padding: 30px 30px 50px;
  }
}
@media (min-width: 28.75em) {
  .case-study-card:not(:has(.case-study-card__logo)) {
    row-gap: 80px;
  }
}
@media (min-width: 85.125em) {
  .case-study-card:not(:has(.case-study-card__logo)) {
    row-gap: 135px;
  }
}
@media (min-width: 28.75em) {
  .case-study-card:has(.case-study-card__logo) {
    row-gap: 40px;
  }
}
.case-study-card__speaker .case-study-card__person .case-study-card__name {
  font-size: 0.875rem;
  line-height: 1.1428571429;
  margin-bottom: 3px;
}
.case-study-card__speaker .case-study-card__person .case-study-card__company {
  font-size: 0.75rem;
  line-height: 1.3333333333;
}
.case-study-card__speaker .case-study-card__person .case-study-card__name,
.case-study-card__speaker .case-study-card__person .case-study-card__company {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.case-study-card__logo {
  display: flex;
  justify-content: center;
}
.case-study-card__logo img {
  max-width: 85%;
  max-height: 80px;
}
.case-study-card__body .case-study-card__categories {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.1875;
  margin-bottom: 16px;
}
.case-study-card__body .case-study-card__quote {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  margin-bottom: 20px;
}
.case-study-card__body .case-study-card__link {
  display: inline-block;
  border-bottom: 1px solid;
}

.case-study-listings {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.case-study-listings.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.case-study-listings.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.case-study-listings.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.case-study-listings.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.case-study-listings.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.case-study-listings.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.case-study-listings.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.case-study-listings.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.case-study-listings.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.case-study-listings.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.case-study-listings.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.case-study-listings.block--background-color-default, .case-study-listings.block--background-color-white {
  position: relative;
}
.case-study-listings.block--background-color-default:before, .case-study-listings.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-grey {
  position: relative;
}
.case-study-listings.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-yellow {
  position: relative;
}
.case-study-listings.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-orange-light {
  position: relative;
}
.case-study-listings.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-orange-dark {
  position: relative;
}
.case-study-listings.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-red {
  position: relative;
}
.case-study-listings.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-purple {
  position: relative;
}
.case-study-listings.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-blue {
  position: relative;
}
.case-study-listings.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-green {
  position: relative;
}
.case-study-listings.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-teal {
  position: relative;
}
.case-study-listings.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-pink {
  position: relative;
}
.case-study-listings.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-black {
  position: relative;
}
.case-study-listings.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-listings.block--background-color-yellow.block, .case-study-listings.block--background-color-orange-light.block, .case-study-listings.block--background-color-orange-dark.block, .case-study-listings.block--background-color-red.block, .case-study-listings.block--background-color-purple.block, .case-study-listings.block--background-color-blue.block, .case-study-listings.block--background-color-green.block, .case-study-listings.block--background-color-teal.block, .case-study-listings.block--background-color-pink.block, .case-study-listings.block--background-color-black.block, .case-study-listings.block--background-color-gradient.block {
  color: #FFFFFF;
}
.case-study-listings.block--background-color-yellow.block p a, .case-study-listings.block--background-color-orange-light.block p a, .case-study-listings.block--background-color-orange-dark.block p a, .case-study-listings.block--background-color-red.block p a, .case-study-listings.block--background-color-purple.block p a, .case-study-listings.block--background-color-blue.block p a, .case-study-listings.block--background-color-green.block p a, .case-study-listings.block--background-color-teal.block p a, .case-study-listings.block--background-color-pink.block p a, .case-study-listings.block--background-color-black.block p a, .case-study-listings.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.case-study-listings.block--background-color-yellow.block li:before, .case-study-listings.block--background-color-orange-light.block li:before, .case-study-listings.block--background-color-orange-dark.block li:before, .case-study-listings.block--background-color-red.block li:before, .case-study-listings.block--background-color-purple.block li:before, .case-study-listings.block--background-color-blue.block li:before, .case-study-listings.block--background-color-green.block li:before, .case-study-listings.block--background-color-teal.block li:before, .case-study-listings.block--background-color-pink.block li:before, .case-study-listings.block--background-color-black.block li:before, .case-study-listings.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.case-study-listings.block--background-color-gradient {
  position: relative;
}
.case-study-listings.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 70.25em) {
  .case-study-listings {
    gap: 50px;
  }
}
.case-study-listings__grid {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .case-study-listings__grid {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .case-study-listings__grid {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .case-study-listings__grid {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .case-study-listings__grid {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .case-study-listings__grid {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .case-study-listings__grid {
    padding-right: 36px;
  }
}
.case-study-listings__grid {
  display: grid;
  gap: 30px;
}
.case-study-listings {
  /**
   * Layout variants
   */
}
.case-study-listings--layout-auto .case-study-listings__grid:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 41.25em) {
  .case-study-listings--layout-auto .case-study-listings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 61.25em) {
  .case-study-listings--layout-auto .case-study-listings__grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+1):nth-last-child(-n+1):first-child:nth-child(1n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+1):nth-last-child(-n+1):first-child ~ .case-study-listings__card:nth-child(1n) {
    grid-column: span 12;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+2):nth-last-child(-n+2):first-child:nth-child(2n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ .case-study-listings__card:nth-child(2n-1) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+2):nth-last-child(-n+2):first-child:nth-child(2n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ .case-study-listings__card:nth-child(2n) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n-2), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .case-study-listings__card:nth-child(3n-2) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .case-study-listings__card:nth-child(3n-1) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .case-study-listings__card:nth-child(3n) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-3), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .case-study-listings__card:nth-child(4n-3) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-2), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .case-study-listings__card:nth-child(4n-2) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .case-study-listings__card:nth-child(4n-1) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .case-study-listings__card:nth-child(4n) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-4), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .case-study-listings__card:nth-child(5n-4) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-3), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .case-study-listings__card:nth-child(5n-3) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-2), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .case-study-listings__card:nth-child(5n-2) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .case-study-listings__card:nth-child(5n-1) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .case-study-listings__card:nth-child(5n) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-5), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .case-study-listings__card:nth-child(6n-5) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-4), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .case-study-listings__card:nth-child(6n-4) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-3), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .case-study-listings__card:nth-child(6n-3) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-2), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .case-study-listings__card:nth-child(6n-2) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .case-study-listings__card:nth-child(6n-1) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .case-study-listings__card:nth-child(6n) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-6), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .case-study-listings__card:nth-child(7n-6) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-5), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .case-study-listings__card:nth-child(7n-5) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-4), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .case-study-listings__card:nth-child(7n-4) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-3), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .case-study-listings__card:nth-child(7n-3) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-2), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .case-study-listings__card:nth-child(7n-2) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .case-study-listings__card:nth-child(7n-1) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .case-study-listings__card:nth-child(7n) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-7), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .case-study-listings__card:nth-child(8n-7) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-6), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .case-study-listings__card:nth-child(8n-6) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-5), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .case-study-listings__card:nth-child(8n-5) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-4), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .case-study-listings__card:nth-child(8n-4) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-3), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .case-study-listings__card:nth-child(8n-3) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-2), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .case-study-listings__card:nth-child(8n-2) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .case-study-listings__card:nth-child(8n-1) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .case-study-listings__card:nth-child(8n) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-6), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .case-study-listings__card:nth-child(7n-6) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-5), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .case-study-listings__card:nth-child(7n-5) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-4), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .case-study-listings__card:nth-child(7n-4) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-3), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .case-study-listings__card:nth-child(7n-3) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-2), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .case-study-listings__card:nth-child(7n-2) {
    grid-column: span 4;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .case-study-listings__card:nth-child(7n-1) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .case-study-listings__card:nth-child(7n) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-9), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-9) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-8), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-8) {
    grid-column: span 6;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-7), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-7) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-6), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-6) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-5), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-5) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-4), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-4) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-3), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-3) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-2), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-2) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-1), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n-1) {
    grid-column: span 3;
  }
  .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n), .case-study-listings--layout-auto .case-study-listings__grid .case-study-listings__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .case-study-listings__card:nth-child(10n) {
    grid-column: span 3;
  }
}
@media (min-width: 28.75em) {
  .case-study-listings--layout-2 .case-study-listings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 45em) {
  .case-study-listings--layout-3 .case-study-listings__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 28.75em) and (max-width: 70.24em) {
  .case-study-listings--layout-4 .case-study-listings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 70.25em) {
  .case-study-listings--layout-4 .case-study-listings__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.case-study-listings {
  /**
   * Card foreground colour variants
   */
}
.case-study-listings--card-foreground-auto.case-study-listings--layout-auto .case-study-card:nth-child(4n+1), .case-study-listings--card-foreground-auto.case-study-listings--layout-3 .case-study-card:nth-child(4n+1), .case-study-listings--card-foreground-auto.case-study-listings--layout-2 .case-study-card:nth-child(4n+1) {
  background-color: var(--dp-purple);
}
.case-study-listings--card-foreground-auto.case-study-listings--layout-auto .case-study-card:nth-child(4n+2), .case-study-listings--card-foreground-auto.case-study-listings--layout-3 .case-study-card:nth-child(4n+2), .case-study-listings--card-foreground-auto.case-study-listings--layout-2 .case-study-card:nth-child(4n+2) {
  background-color: var(--dp-red);
}
.case-study-listings--card-foreground-auto.case-study-listings--layout-auto .case-study-card:nth-child(4n+3), .case-study-listings--card-foreground-auto.case-study-listings--layout-3 .case-study-card:nth-child(4n+3), .case-study-listings--card-foreground-auto.case-study-listings--layout-2 .case-study-card:nth-child(4n+3) {
  background-color: var(--dp-orange-dark);
}
.case-study-listings--card-foreground-auto.case-study-listings--layout-auto .case-study-card:nth-child(4n+4), .case-study-listings--card-foreground-auto.case-study-listings--layout-3 .case-study-card:nth-child(4n+4), .case-study-listings--card-foreground-auto.case-study-listings--layout-2 .case-study-card:nth-child(4n+4) {
  background-color: var(--dp-yellow);
}
.case-study-listings--card-foreground-auto.case-study-listings--layout-4 .case-study-card:nth-child(8n), .case-study-listings--card-foreground-auto.case-study-listings--layout-4 .case-study-card:nth-child(8n-7) {
  background-color: var(--dp-purple);
}
.case-study-listings--card-foreground-auto.case-study-listings--layout-4 .case-study-card:nth-child(8n-1), .case-study-listings--card-foreground-auto.case-study-listings--layout-4 .case-study-card:nth-child(8n-6) {
  background-color: var(--dp-red);
}
.case-study-listings--card-foreground-auto.case-study-listings--layout-4 .case-study-card:nth-child(8n-2), .case-study-listings--card-foreground-auto.case-study-listings--layout-4 .case-study-card:nth-child(8n-5) {
  background-color: var(--dp-orange-dark);
}
.case-study-listings--card-foreground-auto.case-study-listings--layout-4 .case-study-card:nth-child(8n-3), .case-study-listings--card-foreground-auto.case-study-listings--layout-4 .case-study-card:nth-child(8n-4) {
  background-color: var(--dp-yellow);
}
.case-study-listings--card-foreground-white .case-study-card {
  color: var(--dp-black);
  background-color: #FFFFFF;
}
.case-study-listings--card-foreground-white .case-study-card svg path {
  fill: var(--dp-red);
}
.case-study-listings--card-foreground-white .case-study-card__link, .case-study-listings--card-foreground-white .case-study-card__name, .case-study-listings--card-foreground-white .case-study-card__company {
  color: var(--dp-red);
}
.case-study-listings--card-foreground-yellow .case-study-card {
  background-color: var(--dp-yellow);
}
.case-study-listings--card-foreground-orange-light .case-study-card {
  background-color: var(--dp-orange-light);
}
.case-study-listings--card-foreground-orange-dark .case-study-card {
  background-color: var(--dp-orange-dark);
}
.case-study-listings--card-foreground-red .case-study-card {
  background-color: var(--dp-red);
}
.case-study-listings--card-foreground-purple .case-study-card {
  background-color: var(--dp-purple);
}
.case-study-listings--card-foreground-blue .case-study-card {
  background-color: var(--dp-blue);
}
.case-study-listings--card-foreground-green .case-study-card {
  background-color: var(--dp-green);
}
.case-study-listings--card-foreground-teal .case-study-card {
  background-color: var(--dp-teal);
}
.case-study-listings--card-foreground-pink .case-study-card {
  background-color: var(--dp-pink);
}
.case-study-listings--card-foreground-black .case-study-card {
  background-color: var(--dp-black);
}
.case-study-listings--card-foreground-auto .case-study-card, .case-study-listings--card-foreground-yellow .case-study-card, .case-study-listings--card-foreground-orange-light .case-study-card, .case-study-listings--card-foreground-orange-dark .case-study-card, .case-study-listings--card-foreground-red .case-study-card, .case-study-listings--card-foreground-purple .case-study-card, .case-study-listings--card-foreground-blue .case-study-card, .case-study-listings--card-foreground-green .case-study-card, .case-study-listings--card-foreground-teal .case-study-card, .case-study-listings--card-foreground-pink .case-study-card, .case-study-listings--card-foreground-black .case-study-card {
  color: #FFFFFF;
}
.case-study-listings--card-foreground-auto .case-study-card svg path, .case-study-listings--card-foreground-yellow .case-study-card svg path, .case-study-listings--card-foreground-orange-light .case-study-card svg path, .case-study-listings--card-foreground-orange-dark .case-study-card svg path, .case-study-listings--card-foreground-red .case-study-card svg path, .case-study-listings--card-foreground-purple .case-study-card svg path, .case-study-listings--card-foreground-blue .case-study-card svg path, .case-study-listings--card-foreground-green .case-study-card svg path, .case-study-listings--card-foreground-teal .case-study-card svg path, .case-study-listings--card-foreground-pink .case-study-card svg path, .case-study-listings--card-foreground-black .case-study-card svg path {
  fill: #FFFFFF;
}
.case-study-listings {
  /**
   * Background colour variants
   */
}
.case-study-listings.block--background-color {
  /*
   * Card shadow
   */
}
.case-study-listings.block--background-color-grey.case-study-listings--card-foreground-white .case-study-card {
  box-shadow: 1px 6px 9px 0 rgba(0, 0, 0, 0.03);
}

.single-case-study {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .single-case-study {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .single-case-study {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .single-case-study {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .single-case-study {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .single-case-study {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .single-case-study {
    padding-right: 36px;
  }
}
.single-case-study {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.single-case-study.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.single-case-study.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.single-case-study.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.single-case-study.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.single-case-study.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.single-case-study.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.single-case-study.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.single-case-study.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.single-case-study.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.single-case-study.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.single-case-study.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.single-case-study.block--background-color-default, .single-case-study.block--background-color-white {
  position: relative;
}
.single-case-study.block--background-color-default:before, .single-case-study.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-grey {
  position: relative;
}
.single-case-study.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-yellow {
  position: relative;
}
.single-case-study.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-orange-light {
  position: relative;
}
.single-case-study.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-orange-dark {
  position: relative;
}
.single-case-study.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-red {
  position: relative;
}
.single-case-study.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-purple {
  position: relative;
}
.single-case-study.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-blue {
  position: relative;
}
.single-case-study.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-green {
  position: relative;
}
.single-case-study.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-teal {
  position: relative;
}
.single-case-study.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-pink {
  position: relative;
}
.single-case-study.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-black {
  position: relative;
}
.single-case-study.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study.block--background-color-yellow.block, .single-case-study.block--background-color-orange-light.block, .single-case-study.block--background-color-orange-dark.block, .single-case-study.block--background-color-red.block, .single-case-study.block--background-color-purple.block, .single-case-study.block--background-color-blue.block, .single-case-study.block--background-color-green.block, .single-case-study.block--background-color-teal.block, .single-case-study.block--background-color-pink.block, .single-case-study.block--background-color-black.block, .single-case-study.block--background-color-gradient.block {
  color: #FFFFFF;
}
.single-case-study.block--background-color-yellow.block p a, .single-case-study.block--background-color-orange-light.block p a, .single-case-study.block--background-color-orange-dark.block p a, .single-case-study.block--background-color-red.block p a, .single-case-study.block--background-color-purple.block p a, .single-case-study.block--background-color-blue.block p a, .single-case-study.block--background-color-green.block p a, .single-case-study.block--background-color-teal.block p a, .single-case-study.block--background-color-pink.block p a, .single-case-study.block--background-color-black.block p a, .single-case-study.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.single-case-study.block--background-color-yellow.block li:before, .single-case-study.block--background-color-orange-light.block li:before, .single-case-study.block--background-color-orange-dark.block li:before, .single-case-study.block--background-color-red.block li:before, .single-case-study.block--background-color-purple.block li:before, .single-case-study.block--background-color-blue.block li:before, .single-case-study.block--background-color-green.block li:before, .single-case-study.block--background-color-teal.block li:before, .single-case-study.block--background-color-pink.block li:before, .single-case-study.block--background-color-black.block li:before, .single-case-study.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.single-case-study.block--background-color-gradient {
  position: relative;
}
.single-case-study.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-case-study .swiper {
  overflow: hidden;
}
.single-case-study .swiper-wrapper {
  display: flex;
}
.single-case-study .swiper-slide {
  flex-shrink: 0;
}
.single-case-study .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.single-case-study .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--dp-red);
  border-radius: 10px;
  cursor: pointer;
}
.single-case-study .swiper-pagination-bullet-active {
  background-color: var(--dp-red);
}
.single-case-study .swiper .swiper-slide-active {
  z-index: 100;
}
.single-case-study__item {
  display: grid;
}
@media (min-width: 41.25em) {
  .single-case-study__item {
    grid-template-columns: 200px auto;
    align-items: center;
    column-gap: 3.5rem;
  }
  .case-study-primary-contact .single-case-study__item {
    grid-template-columns: 189px auto;
  }
}
@media (min-width: 61.25em) {
  .single-case-study__item {
    grid-template-columns: 275px auto;
  }
  .single-case-study__item__quote {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}
.single-case-study__image {
  position: relative;
}
.single-case-study__image:before {
  display: block;
  content: "";
}
.single-case-study__image:before {
  padding-top: 100%;
}
.single-case-study__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 41.24em) {
  .single-case-study__image {
    width: 200px;
    margin-bottom: 1.5rem;
  }
}
.single-case-study__image img {
  box-shadow: 1px 6px 9px 0 rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.single-case-study__content {
  color: var(--text-color, var(--dp-black));
}
.single-case-study__names {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.1875;
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.case-study-primary-contact .single-case-study__names {
  font-size: 1.5625rem;
  line-height: 1.6;
}
.single-case-study__company {
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 500;
  margin-top: 5px;
}
.single-case-study__link {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
  margin-top: 0.8rem;
}
.single-case-study__link--style-primary {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.single-case-study__link--style-primary:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.single-case-study__link--style-secondary {
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.single-case-study__link--style-secondary:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.single-case-study .swiper-pagination-bullet {
  border: 1px solid var(--dp-black);
}
.single-case-study .swiper-pagination-bullet-active {
  background-color: var(--dp-black);
}
.case-study-primary-contact .single-case-study .single-case-study__image {
  width: 189px;
}
.case-study-primary-contact .single-case-study .single-case-study__link {
  display: none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 23px 25px;
}
.testimonial-card__description {
  margin-bottom: 25px;
}
.testimonial-card__description:before, .testimonial-card__description:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
}
.testimonial-card__description:before {
  top: 7px;
  width: 7px;
  height: 41px;
}
.testimonial-card__description:after {
  top: 0;
  width: 48px;
  height: 7px;
}
.testimonial-card__speaker {
  display: grid;
  grid-template-columns: minmax(60px, max-content) 1fr;
  align-items: center;
  min-height: 50px;
}
.testimonial-card__speaker .testimonial-card__image {
  position: relative;
}
.testimonial-card__speaker .testimonial-card__image:before {
  display: block;
  content: "";
}
.testimonial-card__speaker .testimonial-card__image:before {
  padding-top: 100%;
}
.testimonial-card__speaker .testimonial-card__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__speaker .testimonial-card__image {
  width: 50px;
  height: 50px;
}
.testimonial-card__speaker .testimonial-card__image img {
  border-radius: 50%;
}
.testimonial-card__speaker .testimonial-card__person .testimonial-card__name {
  font-size: 0.875rem;
  line-height: 1.1428571429;
  margin-bottom: 3px;
}
.testimonial-card__speaker .testimonial-card__person .testimonial-card__company {
  font-size: 0.75rem;
  line-height: 1.3333333333;
}
.testimonial-card__speaker .testimonial-card__person .testimonial-card__name,
.testimonial-card__speaker .testimonial-card__person .testimonial-card__company {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.testimonial-card__speaker {
  margin-top: auto;
}
.testimonial-card {
  /*
   * Single quote
   */
}
.testimonial-grid--single-quote .testimonial-card .testimonial-card__description, .quote-block .testimonial-card .testimonial-card__description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-grid {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.testimonial-grid.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.testimonial-grid.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.testimonial-grid.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.testimonial-grid.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.testimonial-grid.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.testimonial-grid.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.testimonial-grid.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.testimonial-grid.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.testimonial-grid.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.testimonial-grid.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.testimonial-grid.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.testimonial-grid.block--background-color-default, .testimonial-grid.block--background-color-white {
  position: relative;
}
.testimonial-grid.block--background-color-default:before, .testimonial-grid.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-grey {
  position: relative;
}
.testimonial-grid.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-yellow {
  position: relative;
}
.testimonial-grid.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-orange-light {
  position: relative;
}
.testimonial-grid.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-orange-dark {
  position: relative;
}
.testimonial-grid.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-red {
  position: relative;
}
.testimonial-grid.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-purple {
  position: relative;
}
.testimonial-grid.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-blue {
  position: relative;
}
.testimonial-grid.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-green {
  position: relative;
}
.testimonial-grid.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-teal {
  position: relative;
}
.testimonial-grid.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-pink {
  position: relative;
}
.testimonial-grid.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-black {
  position: relative;
}
.testimonial-grid.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.testimonial-grid.block--background-color-yellow.block, .testimonial-grid.block--background-color-orange-light.block, .testimonial-grid.block--background-color-orange-dark.block, .testimonial-grid.block--background-color-red.block, .testimonial-grid.block--background-color-purple.block, .testimonial-grid.block--background-color-blue.block, .testimonial-grid.block--background-color-green.block, .testimonial-grid.block--background-color-teal.block, .testimonial-grid.block--background-color-pink.block, .testimonial-grid.block--background-color-black.block, .testimonial-grid.block--background-color-gradient.block {
  color: #FFFFFF;
}
.testimonial-grid.block--background-color-yellow.block p a, .testimonial-grid.block--background-color-orange-light.block p a, .testimonial-grid.block--background-color-orange-dark.block p a, .testimonial-grid.block--background-color-red.block p a, .testimonial-grid.block--background-color-purple.block p a, .testimonial-grid.block--background-color-blue.block p a, .testimonial-grid.block--background-color-green.block p a, .testimonial-grid.block--background-color-teal.block p a, .testimonial-grid.block--background-color-pink.block p a, .testimonial-grid.block--background-color-black.block p a, .testimonial-grid.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.testimonial-grid.block--background-color-yellow.block li:before, .testimonial-grid.block--background-color-orange-light.block li:before, .testimonial-grid.block--background-color-orange-dark.block li:before, .testimonial-grid.block--background-color-red.block li:before, .testimonial-grid.block--background-color-purple.block li:before, .testimonial-grid.block--background-color-blue.block li:before, .testimonial-grid.block--background-color-green.block li:before, .testimonial-grid.block--background-color-teal.block li:before, .testimonial-grid.block--background-color-pink.block li:before, .testimonial-grid.block--background-color-black.block li:before, .testimonial-grid.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.testimonial-grid.block--background-color-gradient {
  position: relative;
}
.testimonial-grid.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 70.25em) {
  .testimonial-grid {
    gap: 50px;
  }
}
.testimonial-grid__grid {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .testimonial-grid__grid {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .testimonial-grid__grid {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .testimonial-grid__grid {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .testimonial-grid__grid {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .testimonial-grid__grid {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .testimonial-grid__grid {
    padding-right: 36px;
  }
}
.testimonial-grid__grid {
  display: grid;
  gap: 35px;
}
.testimonial-grid {
  /**
   * Layout variants
   */
}
.testimonial-grid--layout-auto .testimonial-grid__grid:not(:first-child) {
  margin-top: 35px;
}
@media (min-width: 41.25em) {
  .testimonial-grid--layout-auto .testimonial-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 61.25em) {
  .testimonial-grid--layout-auto .testimonial-grid__grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+1):nth-last-child(-n+1):first-child:nth-child(1n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+1):nth-last-child(-n+1):first-child ~ .testimonial-grid__card:nth-child(1n) {
    grid-column: span 12;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+2):nth-last-child(-n+2):first-child:nth-child(2n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ .testimonial-grid__card:nth-child(2n-1) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+2):nth-last-child(-n+2):first-child:nth-child(2n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ .testimonial-grid__card:nth-child(2n) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n-2), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .testimonial-grid__card:nth-child(3n-2) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .testimonial-grid__card:nth-child(3n-1) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+3):nth-last-child(-n+3):first-child:nth-child(3n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ .testimonial-grid__card:nth-child(3n) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-3), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .testimonial-grid__card:nth-child(4n-3) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-2), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .testimonial-grid__card:nth-child(4n-2) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .testimonial-grid__card:nth-child(4n-1) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+4):nth-last-child(-n+4):first-child:nth-child(4n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ .testimonial-grid__card:nth-child(4n) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-4), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .testimonial-grid__card:nth-child(5n-4) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-3), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .testimonial-grid__card:nth-child(5n-3) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-2), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .testimonial-grid__card:nth-child(5n-2) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .testimonial-grid__card:nth-child(5n-1) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child:nth-child(5n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+5):nth-last-child(-n+5):first-child ~ .testimonial-grid__card:nth-child(5n) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-5), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .testimonial-grid__card:nth-child(6n-5) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-4), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .testimonial-grid__card:nth-child(6n-4) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-3), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .testimonial-grid__card:nth-child(6n-3) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-2), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .testimonial-grid__card:nth-child(6n-2) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .testimonial-grid__card:nth-child(6n-1) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child:nth-child(6n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+6):nth-last-child(-n+6):first-child ~ .testimonial-grid__card:nth-child(6n) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-6), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .testimonial-grid__card:nth-child(7n-6) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-5), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .testimonial-grid__card:nth-child(7n-5) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-4), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .testimonial-grid__card:nth-child(7n-4) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-3), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .testimonial-grid__card:nth-child(7n-3) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-2), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .testimonial-grid__card:nth-child(7n-2) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .testimonial-grid__card:nth-child(7n-1) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child:nth-child(7n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+7):nth-last-child(-n+7):first-child ~ .testimonial-grid__card:nth-child(7n) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-7), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .testimonial-grid__card:nth-child(8n-7) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-6), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .testimonial-grid__card:nth-child(8n-6) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-5), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .testimonial-grid__card:nth-child(8n-5) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-4), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .testimonial-grid__card:nth-child(8n-4) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-3), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .testimonial-grid__card:nth-child(8n-3) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-2), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .testimonial-grid__card:nth-child(8n-2) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .testimonial-grid__card:nth-child(8n-1) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child:nth-child(8n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+8):nth-last-child(-n+8):first-child ~ .testimonial-grid__card:nth-child(8n) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-6), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .testimonial-grid__card:nth-child(7n-6) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-5), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .testimonial-grid__card:nth-child(7n-5) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-4), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .testimonial-grid__card:nth-child(7n-4) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-3), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .testimonial-grid__card:nth-child(7n-3) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-2), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .testimonial-grid__card:nth-child(7n-2) {
    grid-column: span 4;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .testimonial-grid__card:nth-child(7n-1) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child:nth-child(7n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+9):nth-last-child(-n+9):first-child ~ .testimonial-grid__card:nth-child(7n) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-9), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-9) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-8), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-8) {
    grid-column: span 6;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-7), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-7) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-6), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-6) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-5), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-5) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-4), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-4) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-3), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-3) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-2), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-2) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n-1), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n-1) {
    grid-column: span 3;
  }
  .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child:nth-child(10n), .testimonial-grid--layout-auto .testimonial-grid__grid .testimonial-grid__card:nth-last-child(n+10):nth-last-child(-n+10):first-child ~ .testimonial-grid__card:nth-child(10n) {
    grid-column: span 3;
  }
}
@media (min-width: 28.75em) {
  .testimonial-grid--layout-2 .testimonial-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 28.75em) {
  .testimonial-grid--layout-3 .testimonial-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 61.25em) {
  .testimonial-grid--layout-3 .testimonial-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-grid {
  /**
   * Card foreground colour variants
   */
}
.testimonial-grid--card-foreground-auto .testimonial-card {
  color: #000000;
}
.testimonial-grid--card-foreground-auto .testimonial-card:nth-child(4n+1) {
  background-color: var(--dp-purple);
}
.testimonial-grid--card-foreground-auto .testimonial-card:nth-child(4n+2) {
  background-color: var(--dp-red);
}
.testimonial-grid--card-foreground-auto .testimonial-card:nth-child(4n+3) {
  background-color: var(--dp-yellow);
}
.testimonial-grid--card-foreground-auto .testimonial-card:nth-child(4n+4) {
  background-color: var(--dp-orange-dark);
}
.testimonial-grid--card-foreground-white .testimonial-card {
  background-color: #FFFFFF;
  color: #000000;
}
.testimonial-grid--card-foreground-yellow .testimonial-card {
  background-color: var(--dp-yellow);
}
.testimonial-grid--card-foreground-orange-light .testimonial-card {
  background-color: var(--dp-orange-light);
}
.testimonial-grid--card-foreground-orange-dark .testimonial-card {
  background-color: var(--dp-orange-dark);
}
.testimonial-grid--card-foreground-red .testimonial-card {
  background-color: var(--dp-red);
}
.testimonial-grid--card-foreground-purple .testimonial-card {
  background-color: var(--dp-purple);
}
.testimonial-grid--card-foreground-green .testimonial-card {
  background-color: var(--dp-green);
}
.testimonial-grid--card-foreground-blue .testimonial-card {
  background-color: var(--dp-blue);
}
.testimonial-grid--card-foreground-teal .testimonial-card {
  background-color: var(--dp-teal);
}
.testimonial-grid--card-foreground-pink .testimonial-card {
  background-color: var(--dp-pink);
}
.testimonial-grid--card-foreground-black .testimonial-card {
  background-color: var(--dp-black);
}
.testimonial-grid--card-foreground-auto .testimonial-card, .testimonial-grid--card-foreground-yellow .testimonial-card, .testimonial-grid--card-foreground-orange-light .testimonial-card, .testimonial-grid--card-foreground-orange-dark .testimonial-card, .testimonial-grid--card-foreground-red .testimonial-card, .testimonial-grid--card-foreground-purple .testimonial-card, .testimonial-grid--card-foreground-blue .testimonial-card, .testimonial-grid--card-foreground-green .testimonial-card, .testimonial-grid--card-foreground-teal .testimonial-card, .testimonial-grid--card-foreground-pink .testimonial-card, .testimonial-grid--card-foreground-black .testimonial-card {
  color: #FFFFFF;
}
.testimonial-grid--card-foreground-auto .testimonial-card__description:before, .testimonial-grid--card-foreground-auto .testimonial-card__description:after, .testimonial-grid--card-foreground-yellow .testimonial-card__description:before, .testimonial-grid--card-foreground-yellow .testimonial-card__description:after, .testimonial-grid--card-foreground-orange-light .testimonial-card__description:before, .testimonial-grid--card-foreground-orange-light .testimonial-card__description:after, .testimonial-grid--card-foreground-orange-dark .testimonial-card__description:before, .testimonial-grid--card-foreground-orange-dark .testimonial-card__description:after, .testimonial-grid--card-foreground-red .testimonial-card__description:before, .testimonial-grid--card-foreground-red .testimonial-card__description:after, .testimonial-grid--card-foreground-purple .testimonial-card__description:before, .testimonial-grid--card-foreground-purple .testimonial-card__description:after, .testimonial-grid--card-foreground-blue .testimonial-card__description:before, .testimonial-grid--card-foreground-blue .testimonial-card__description:after, .testimonial-grid--card-foreground-green .testimonial-card__description:before, .testimonial-grid--card-foreground-green .testimonial-card__description:after, .testimonial-grid--card-foreground-teal .testimonial-card__description:before, .testimonial-grid--card-foreground-teal .testimonial-card__description:after, .testimonial-grid--card-foreground-pink .testimonial-card__description:before, .testimonial-grid--card-foreground-pink .testimonial-card__description:after, .testimonial-grid--card-foreground-black .testimonial-card__description:before, .testimonial-grid--card-foreground-black .testimonial-card__description:after {
  background: #FFFFFF;
  opacity: 0.4;
}
.testimonial-grid--card-foreground-default .testimonial-card__description:before, .testimonial-grid--card-foreground-default .testimonial-card__description:after, .testimonial-grid--card-foreground-white .testimonial-card__description:before, .testimonial-grid--card-foreground-white .testimonial-card__description:after, .testimonial-grid--card-foreground-grey .testimonial-card__description:before, .testimonial-grid--card-foreground-grey .testimonial-card__description:after {
  background: var(--dp-red);
}
.testimonial-grid--card-quote-padded .testimonial-card {
  padding: 43px 50px;
}
.testimonial-grid--card-quote-padded .testimonial-card__description:before {
  top: 27px;
  left: 20px;
}
.testimonial-grid--card-quote-padded .testimonial-card__description:after {
  top: 20px;
  left: 20px;
}
.testimonial-grid {
  /**
   * Background colour variants
   */
}
.testimonial-grid.block--background-color {
  /*
   * Description quote mark
   */
}
.testimonial-grid.block--background-color-yellow .testimonial-card__description:before, .testimonial-grid.block--background-color-yellow .testimonial-card__description:after, .testimonial-grid.block--background-color-orange-light .testimonial-card__description:before, .testimonial-grid.block--background-color-orange-light .testimonial-card__description:after, .testimonial-grid.block--background-color-orange-dark .testimonial-card__description:before, .testimonial-grid.block--background-color-orange-dark .testimonial-card__description:after, .testimonial-grid.block--background-color-red .testimonial-card__description:before, .testimonial-grid.block--background-color-red .testimonial-card__description:after, .testimonial-grid.block--background-color-purple .testimonial-card__description:before, .testimonial-grid.block--background-color-purple .testimonial-card__description:after, .testimonial-grid.block--background-color-blue .testimonial-card__description:before, .testimonial-grid.block--background-color-blue .testimonial-card__description:after, .testimonial-grid.block--background-color-green .testimonial-card__description:before, .testimonial-grid.block--background-color-green .testimonial-card__description:after, .testimonial-grid.block--background-color-teal .testimonial-card__description:before, .testimonial-grid.block--background-color-teal .testimonial-card__description:after, .testimonial-grid.block--background-color-pink .testimonial-card__description:before, .testimonial-grid.block--background-color-pink .testimonial-card__description:after, .testimonial-grid.block--background-color-black .testimonial-card__description:before, .testimonial-grid.block--background-color-black .testimonial-card__description:after {
  background: #E0E0E0;
}
.testimonial-grid.block--background-color {
  /*
   * Card shadow
   */
}
.testimonial-grid.block--background-color-grey.testimonial-grid--card-foreground-white .testimonial-card {
  box-shadow: 1px 6px 9px 0 rgba(0, 0, 0, 0.03);
}

/*
 * USED FOR PEOPLE GRID AND TEAM LISTINGS BLOCKS
 */
.people-grid {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.people-grid.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.people-grid.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.people-grid.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.people-grid.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.people-grid.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.people-grid.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.people-grid.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.people-grid.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.people-grid.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.people-grid.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.people-grid.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.people-grid.block--background-color-default, .people-grid.block--background-color-white {
  position: relative;
}
.people-grid.block--background-color-default:before, .people-grid.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-grey {
  position: relative;
}
.people-grid.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-yellow {
  position: relative;
}
.people-grid.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-orange-light {
  position: relative;
}
.people-grid.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-orange-dark {
  position: relative;
}
.people-grid.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-red {
  position: relative;
}
.people-grid.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-purple {
  position: relative;
}
.people-grid.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-blue {
  position: relative;
}
.people-grid.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-green {
  position: relative;
}
.people-grid.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-teal {
  position: relative;
}
.people-grid.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-pink {
  position: relative;
}
.people-grid.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-black {
  position: relative;
}
.people-grid.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid.block--background-color-yellow.block, .people-grid.block--background-color-orange-light.block, .people-grid.block--background-color-orange-dark.block, .people-grid.block--background-color-red.block, .people-grid.block--background-color-purple.block, .people-grid.block--background-color-blue.block, .people-grid.block--background-color-green.block, .people-grid.block--background-color-teal.block, .people-grid.block--background-color-pink.block, .people-grid.block--background-color-black.block, .people-grid.block--background-color-gradient.block {
  color: #FFFFFF;
}
.people-grid.block--background-color-yellow.block p a, .people-grid.block--background-color-orange-light.block p a, .people-grid.block--background-color-orange-dark.block p a, .people-grid.block--background-color-red.block p a, .people-grid.block--background-color-purple.block p a, .people-grid.block--background-color-blue.block p a, .people-grid.block--background-color-green.block p a, .people-grid.block--background-color-teal.block p a, .people-grid.block--background-color-pink.block p a, .people-grid.block--background-color-black.block p a, .people-grid.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.people-grid.block--background-color-yellow.block li:before, .people-grid.block--background-color-orange-light.block li:before, .people-grid.block--background-color-orange-dark.block li:before, .people-grid.block--background-color-red.block li:before, .people-grid.block--background-color-purple.block li:before, .people-grid.block--background-color-blue.block li:before, .people-grid.block--background-color-green.block li:before, .people-grid.block--background-color-teal.block li:before, .people-grid.block--background-color-pink.block li:before, .people-grid.block--background-color-black.block li:before, .people-grid.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.people-grid.block--background-color-gradient {
  position: relative;
}
.people-grid.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.people-grid__inner {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .people-grid__inner {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .people-grid__inner {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .people-grid__inner {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .people-grid__inner {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .people-grid__inner {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .people-grid__inner {
    padding-right: 36px;
  }
}
@media (min-width: 28.75em) and (max-width: 44.99em) {
  .people-grid__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 3rem;
  }
}
@media (min-width: 45em) {
  .people-grid__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--card-gap);
    max-width: var(--max-width);
    margin: auto;
  }
}
@media (min-width: 45em) {
  .people-grid__grid--columns-2 {
    --max-width: calc((var(--card-width) * 2) + (var(--card-gap) * 2));
  }
}
@media (min-width: 45em) {
  .people-grid__grid--columns-3 {
    --max-width: calc((var(--card-width) * 3) + (var(--card-gap) * 3));
  }
}
@media (min-width: 61.25em) {
  .people-grid__grid--columns-4 {
    --max-width: calc((var(--card-width) * 4) + (var(--card-gap) * 4));
  }
}
@media (min-width: 45em) and (max-width: 76.74em) {
  .people-grid__grid--columns-5 {
    --max-width: calc(1362px - (var(--card-width) * 2));
  }
}
.people-grid__person {
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 45em) {
  .people-grid__person {
    flex: 0 0 var(--card-width);
    max-width: var(--card-width);
  }
}
.people-grid__person-photo {
  position: relative;
}
.people-grid__person-photo:before {
  display: block;
  content: "";
}
.people-grid__person-photo:before {
  padding-top: 100%;
}
.people-grid__person-photo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.people-grid__person-photo {
  overflow: hidden;
}
.people-grid__person-name {
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}
.people-grid__person-description {
  max-width: 250px;
  margin: 0 auto;
}
.people-grid__person-link {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.people-grid__person-link:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.people-grid__person-link {
  width: max-content;
  border-width: 4px;
  margin: 24px auto 0;
}
.people-grid {
  /*
   * Background colour variations
   */
}
.people-grid.block--background-color-yellow .people-grid__person-link, .people-grid.block--background-color-orange-light .people-grid__person-link, .people-grid.block--background-color-orange-dark .people-grid__person-link, .people-grid.block--background-color-red .people-grid__person-link, .people-grid.block--background-color-purple .people-grid__person-link {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border-color: var(--button-color, #FFFFFF);
}
.people-grid.block--background-color-yellow .people-grid__person-link:hover, .people-grid.block--background-color-orange-light .people-grid__person-link:hover, .people-grid.block--background-color-orange-dark .people-grid__person-link:hover, .people-grid.block--background-color-red .people-grid__person-link:hover, .people-grid.block--background-color-purple .people-grid__person-link:hover {
  opacity: 0.8;
}

.featured-articles {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .featured-articles {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .featured-articles {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .featured-articles {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .featured-articles {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .featured-articles {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .featured-articles {
    padding-right: 36px;
  }
}
.featured-articles {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.featured-articles.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.featured-articles.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.featured-articles.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.featured-articles.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.featured-articles.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.featured-articles.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.featured-articles.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.featured-articles.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.featured-articles.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.featured-articles.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.featured-articles.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
@media (max-width: 44.99em) {
  .featured-articles--display-faqs-show .featured-articles__faqs {
    margin-bottom: 3rem;
  }
}
@media (min-width: 45em) {
  .featured-articles--display-faqs-show {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "faqs-title article-title" "faqs       article";
    column-gap: 45px;
    row-gap: 20px;
  }
  .featured-articles--display-faqs-show h3 {
    margin-bottom: 0;
  }
  .featured-articles--display-faqs-show .featured-articles__faqs-title {
    grid-area: faqs-title;
  }
  .featured-articles--display-faqs-show .featured-articles__most-read-title {
    grid-area: article-title;
  }
  .featured-articles--display-faqs-show .featured-articles__faqs {
    grid-area: faqs;
  }
  .featured-articles--display-faqs-show .featured-articles__most-read {
    grid-area: article;
  }
}
@media (min-width: 45em) {
  .featured-articles--display-faqs-hide .featured-articles__most-read {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
  }
}
.featured-articles__most-read {
  display: grid;
  column-gap: 45px;
  row-gap: 25px;
}

.article-card {
  background-color: #F2F2F2;
  border-radius: 25px;
  padding: 20px;
}
.article-card__button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  padding: 8px 16px;
  border-radius: 6px;
  border-width: 1px;
  text-transform: uppercase;
  padding: 5px 13px 4px;
  margin-bottom: 20px;
  pointer-events: none;
}
.article-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
.article-card--background-default .article-card__button {
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.article-card--background-default .article-card__button:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.article-card--background-color {
  color: #FFFFFF;
}
.article-card--background-color .article-card__button {
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border: 2px solid var(--button-color, #FFFFFF);
}
.article-card--background-color .article-card__button:hover {
  background-color: var(--button-color, #FFFFFF);
  color: #FFFFFF;
}

.contact-area {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.contact-area.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.contact-area.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.contact-area.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.contact-area.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.contact-area.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.contact-area.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.contact-area.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.contact-area.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.contact-area.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.contact-area.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.contact-area.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.contact-area {
  background-color: var(--dp-grey);
}
.contact-area__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .contact-area__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .contact-area__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .contact-area__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .contact-area__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .contact-area__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .contact-area__content {
    padding-right: 36px;
  }
}
@media (min-width: 61.25em) {
  .contact-area__content {
    display: grid;
    grid-template-columns: auto 525px;
    column-gap: 40px;
  }
}
@media (min-width: 70.25em) {
  .contact-area__content {
    column-gap: 85px;
  }
}
.contact-area__contact-form-description {
  margin-bottom: 40px;
}
@media (max-width: 70.24em) {
  .contact-area__contact-form-hubspot-form {
    padding-bottom: 45px;
  }
}
.contact-area__link-board {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.contact-area__link-board .link-board__card {
  padding: 40px 35px;
}
.contact-area__link-board .link-board__card-subscribe {
  display: flex;
  column-gap: 25px;
}
.contact-area__link-board .link-board__card-subscribe-icon {
  display: flex;
  align-items: center;
}
.contact-area__link-board .link-board__card-subscribe-icon, .contact-area__link-board .link-board__card-subscribe-icon svg, .contact-area__link-board .link-board__card-subscribe-icon img {
  width: 65px;
  height: auto;
}
.contact-area__link-board .link-board__card-subscribe-icon svg path {
  fill: #FFFFFF;
}
.contact-area__link-board .link-board__card-subscribe-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-area__link-board .link-board__card-subscribe-content > * {
  margin-bottom: 0;
}
.contact-area__link-board .link-board__card-social-title {
  margin-bottom: 5px;
}
.contact-area__link-board .link-board__card-social-description {
  margin-bottom: 25px;
}
.contact-area__link-board .link-board__card-social-links {
  list-style: none;
  padding-left: 0 !important;
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}
.contact-area__link-board .link-board__card-social-links li {
  display: flex;
  align-items: center;
}
.contact-area__link-board .link-board__card-social-links li:before {
  content: none !important;
}
.contact-area__link-board .link-board__card-social-links li svg {
  width: 40px;
  fill: var(--dp-red);
}
.contact-area__link-board .link-board__card-social-links li svg path {
  fill: var(--dp-red);
}
.contact-area__link-board .link-board__card-social-links {
  column-gap: 30px;
}
.contact-area__link-board .link-board__card-social-links, .contact-area__link-board .link-board__card-social-links li {
  margin-bottom: 0 !important;
}
.contact-area__link-board .link-board__card-social-links a, .contact-area__link-board .link-board__card-social-links li a {
  display: flex;
}
.contact-area__link-board .link-board__card-demo {
  color: #FFFFFF;
  text-align: center;
}
.contact-area__link-board .link-board__card-demo-icon {
  margin-top: 20px;
  margin-bottom: 30px;
}
.contact-area__link-board .link-board__card-demo-icon svg path {
  fill: #FFFFFF;
}
.contact-area__link-board .link-board__card-demo-description {
  font-size: 1.25rem;
  line-height: 1.7;
}
.contact-area__link-board .link-board__card-demo-button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--button-color, #FFFFFF);
  background-color: transparent;
  border: 2px solid var(--button-color, #FFFFFF);
  font-size: 1.375rem;
  line-height: 0.7272727273;
  padding: 20px 18px;
  margin-top: 15px;
  width: 90%;
}
.contact-area__link-board .link-board__card--bg-color-white {
  background-color: #FFFFFF;
}
.contact-area__link-board .link-board__card--bg-color-red {
  background-color: var(--dp-red);
}

.hubspot-form {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.hubspot-form.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.hubspot-form.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.hubspot-form.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.hubspot-form.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.hubspot-form.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.hubspot-form.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.hubspot-form.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.hubspot-form.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.hubspot-form.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.hubspot-form.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.hubspot-form.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
@media (max-width: 44.99em) {
  .hubspot-form__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hubspot-form__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hubspot-form__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .hubspot-form__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hubspot-form__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hubspot-form__content {
    padding-right: 36px;
  }
}
.hubspot-form__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 61.25em) {
  .hubspot-form__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
  }
}
@media (min-width: 61.25em) {
  .hubspot-form--width-contained .hubspot-form__content {
    max-width: 911px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }
}
.hubspot-form__description {
  margin-bottom: 35px;
}
.hubspot-form__form-script {
  width: 100%;
}

.single-image {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.single-image.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.single-image.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.single-image.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.single-image.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.single-image.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.single-image.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.single-image.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.single-image.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.single-image.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.single-image.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.single-image.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.single-image.block--background-color-default, .single-image.block--background-color-white {
  position: relative;
}
.single-image.block--background-color-default:before, .single-image.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-grey {
  position: relative;
}
.single-image.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-yellow {
  position: relative;
}
.single-image.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-orange-light {
  position: relative;
}
.single-image.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-orange-dark {
  position: relative;
}
.single-image.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-red {
  position: relative;
}
.single-image.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-purple {
  position: relative;
}
.single-image.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-blue {
  position: relative;
}
.single-image.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-green {
  position: relative;
}
.single-image.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-teal {
  position: relative;
}
.single-image.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-pink {
  position: relative;
}
.single-image.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-black {
  position: relative;
}
.single-image.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.single-image.block--background-color-yellow.block, .single-image.block--background-color-orange-light.block, .single-image.block--background-color-orange-dark.block, .single-image.block--background-color-red.block, .single-image.block--background-color-purple.block, .single-image.block--background-color-blue.block, .single-image.block--background-color-green.block, .single-image.block--background-color-teal.block, .single-image.block--background-color-pink.block, .single-image.block--background-color-black.block, .single-image.block--background-color-gradient.block {
  color: #FFFFFF;
}
.single-image.block--background-color-yellow.block p a, .single-image.block--background-color-orange-light.block p a, .single-image.block--background-color-orange-dark.block p a, .single-image.block--background-color-red.block p a, .single-image.block--background-color-purple.block p a, .single-image.block--background-color-blue.block p a, .single-image.block--background-color-green.block p a, .single-image.block--background-color-teal.block p a, .single-image.block--background-color-pink.block p a, .single-image.block--background-color-black.block p a, .single-image.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.single-image.block--background-color-yellow.block li:before, .single-image.block--background-color-orange-light.block li:before, .single-image.block--background-color-orange-dark.block li:before, .single-image.block--background-color-red.block li:before, .single-image.block--background-color-purple.block li:before, .single-image.block--background-color-blue.block li:before, .single-image.block--background-color-green.block li:before, .single-image.block--background-color-teal.block li:before, .single-image.block--background-color-pink.block li:before, .single-image.block--background-color-black.block li:before, .single-image.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.single-image.block--background-color-gradient {
  position: relative;
}
.single-image.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 44.99em) {
  .single-image__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .single-image__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .single-image__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .single-image__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .single-image__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .single-image__content {
    padding-right: 36px;
  }
}
.single-image__content img {
  width: 100%;
  height: auto;
}
.single-image--fit-standard .single-image__content {
  max-width: 911px;
  margin-left: auto;
  margin-right: auto;
}
.single-post .single-image--fit-standard .single-image__content, .single-case_studies .single-image--fit-standard .single-image__content {
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.quote-block {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.quote-block.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.quote-block.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.quote-block.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.quote-block.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.quote-block.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.quote-block.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.quote-block.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.quote-block.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.quote-block.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.quote-block.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.quote-block.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.quote-block {
  --block-padding__bottom-default: var(--block-padding__small);
  --block-padding__top-default: var(--block-padding__small);
}
.quote-block__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .quote-block__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .quote-block__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .quote-block__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .quote-block__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .quote-block__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .quote-block__content {
    padding-right: 36px;
  }
}
.quote-block__content-text {
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.quote-block__content .testimonial-card {
  padding-bottom: 0;
}
.quote-block__content .testimonial-card__description:before, .quote-block__content .testimonial-card__description:after {
  background: var(--dp-red);
}

.button.block--background-color-default, .button.block--background-color-white {
  position: relative;
}
.button.block--background-color-default:before, .button.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-grey {
  position: relative;
}
.button.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-yellow {
  position: relative;
}
.button.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-orange-light {
  position: relative;
}
.button.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-orange-dark {
  position: relative;
}
.button.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-red {
  position: relative;
}
.button.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-purple {
  position: relative;
}
.button.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-blue {
  position: relative;
}
.button.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-green {
  position: relative;
}
.button.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-teal {
  position: relative;
}
.button.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-pink {
  position: relative;
}
.button.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-black {
  position: relative;
}
.button.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button.block--background-color-yellow.block, .button.block--background-color-orange-light.block, .button.block--background-color-orange-dark.block, .button.block--background-color-red.block, .button.block--background-color-purple.block, .button.block--background-color-blue.block, .button.block--background-color-green.block, .button.block--background-color-teal.block, .button.block--background-color-pink.block, .button.block--background-color-black.block, .button.block--background-color-gradient.block {
  color: #FFFFFF;
}
.button.block--background-color-yellow.block p a, .button.block--background-color-orange-light.block p a, .button.block--background-color-orange-dark.block p a, .button.block--background-color-red.block p a, .button.block--background-color-purple.block p a, .button.block--background-color-blue.block p a, .button.block--background-color-green.block p a, .button.block--background-color-teal.block p a, .button.block--background-color-pink.block p a, .button.block--background-color-black.block p a, .button.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.button.block--background-color-yellow.block li:before, .button.block--background-color-orange-light.block li:before, .button.block--background-color-orange-dark.block li:before, .button.block--background-color-red.block li:before, .button.block--background-color-purple.block li:before, .button.block--background-color-blue.block li:before, .button.block--background-color-green.block li:before, .button.block--background-color-teal.block li:before, .button.block--background-color-pink.block li:before, .button.block--background-color-black.block li:before, .button.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.button.block--background-color-gradient {
  position: relative;
}
.button.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.button.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.button.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.button.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.button.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.button.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.button.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.button.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.button.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.button.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.button.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.button.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.button {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .button {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .button {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .button {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .button {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .button {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .button {
    padding-right: 36px;
  }
}
.button {
  display: flex;
}
.button--align-left {
  justify-content: flex-start;
}
.button--align-center {
  justify-content: center;
}
.button--align-right {
  justify-content: flex-end;
}

.iframe {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.iframe.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.iframe.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.iframe.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.iframe.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.iframe.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.iframe.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.iframe.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.iframe.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.iframe.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.iframe.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.iframe.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.iframe {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .iframe {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .iframe {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .iframe {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .iframe {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .iframe {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .iframe {
    padding-right: 36px;
  }
}
.iframe__frame {
  border: 0;
}
.iframe__preview {
  min-height: 400px;
  width: 100%;
  border: 1px solid #919191;
  padding: 30px;
  font-weight: bold;
}
.iframe__preview-content {
  margin-top: 10px;
}

.hero-popup {
  display: grid;
  justify-items: center;
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.hero-popup.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.hero-popup.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.hero-popup.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.hero-popup.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.hero-popup.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.hero-popup.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.hero-popup.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.hero-popup.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.hero-popup.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.hero-popup.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.hero-popup.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.hero-popup.block--background-color-default, .hero-popup.block--background-color-white {
  position: relative;
}
.hero-popup.block--background-color-default:before, .hero-popup.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-grey {
  position: relative;
}
.hero-popup.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-yellow {
  position: relative;
}
.hero-popup.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-orange-light {
  position: relative;
}
.hero-popup.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-orange-dark {
  position: relative;
}
.hero-popup.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-red {
  position: relative;
}
.hero-popup.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-purple {
  position: relative;
}
.hero-popup.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-blue {
  position: relative;
}
.hero-popup.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-green {
  position: relative;
}
.hero-popup.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-teal {
  position: relative;
}
.hero-popup.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-pink {
  position: relative;
}
.hero-popup.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-black {
  position: relative;
}
.hero-popup.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup.block--background-color-yellow.block, .hero-popup.block--background-color-orange-light.block, .hero-popup.block--background-color-orange-dark.block, .hero-popup.block--background-color-red.block, .hero-popup.block--background-color-purple.block, .hero-popup.block--background-color-blue.block, .hero-popup.block--background-color-green.block, .hero-popup.block--background-color-teal.block, .hero-popup.block--background-color-pink.block, .hero-popup.block--background-color-black.block, .hero-popup.block--background-color-gradient.block {
  color: #FFFFFF;
}
.hero-popup.block--background-color-yellow.block p a, .hero-popup.block--background-color-orange-light.block p a, .hero-popup.block--background-color-orange-dark.block p a, .hero-popup.block--background-color-red.block p a, .hero-popup.block--background-color-purple.block p a, .hero-popup.block--background-color-blue.block p a, .hero-popup.block--background-color-green.block p a, .hero-popup.block--background-color-teal.block p a, .hero-popup.block--background-color-pink.block p a, .hero-popup.block--background-color-black.block p a, .hero-popup.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.hero-popup.block--background-color-yellow.block li:before, .hero-popup.block--background-color-orange-light.block li:before, .hero-popup.block--background-color-orange-dark.block li:before, .hero-popup.block--background-color-red.block li:before, .hero-popup.block--background-color-purple.block li:before, .hero-popup.block--background-color-blue.block li:before, .hero-popup.block--background-color-green.block li:before, .hero-popup.block--background-color-teal.block li:before, .hero-popup.block--background-color-pink.block li:before, .hero-popup.block--background-color-black.block li:before, .hero-popup.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.hero-popup.block--background-color-gradient {
  position: relative;
}
.hero-popup.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-popup--contained-width {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .hero-popup--contained-width {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-popup--contained-width {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-popup--contained-width {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .hero-popup--contained-width {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-popup--contained-width {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-popup--contained-width {
    padding-right: 36px;
  }
}
.hero-popup--contained-width .hero-popup__image {
  position: relative;
}
.hero-popup--contained-width .hero-popup__image:before {
  display: block;
  content: "";
}
.hero-popup--contained-width .hero-popup__image:before {
  padding-top: 35%;
}
.hero-popup--contained-width .hero-popup__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-popup--contained-width .hero-popup__content > * {
  max-width: 900px;
}
.hero-popup--full-bleed .hero-popup__image {
  position: relative;
}
.hero-popup--full-bleed .hero-popup__image:before {
  display: block;
  content: "";
}
.hero-popup--full-bleed .hero-popup__image:before {
  padding-top: 34.7222222222%;
}
.hero-popup--full-bleed .hero-popup__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-popup--full-bleed .hero-popup__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .hero-popup--full-bleed .hero-popup__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-popup--full-bleed .hero-popup__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-popup--full-bleed .hero-popup__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .hero-popup--full-bleed .hero-popup__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-popup--full-bleed .hero-popup__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-popup--full-bleed .hero-popup__content {
    padding-right: 36px;
  }
}
.hero-popup--full-bleed .hero-popup__content > * {
  max-width: 1200px;
}
.hero-popup__image {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero-popup__image--has-video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-popup__image--has-video iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.7777777778vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 28.74em) {
  .hero-popup__image.hero-popup__image--has-mobile-image .hero-popup__image-desktop {
    display: none;
  }
}
@media (min-width: 28.75em) {
  .hero-popup__image.hero-popup__image--has-mobile-image .hero-popup__image-mobile {
    display: none;
  }
  .hero-popup__image.hero-popup__image--has-mobile-image .hero-popup__image-desktop {
    display: block;
  }
}
.hero-popup__content {
  grid-column: 1/-1;
  grid-row: 1/-1;
  padding: 65px 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 61.25em) {
  .hero-popup__content {
    padding: 95px 2rem;
  }
}
.hero-popup__content.has-description .hero-popup__content-title {
  margin-bottom: 20px;
}
.hero-popup__content-title {
  padding-bottom: 5px;
  margin-bottom: 32px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 61.24em) {
  .hero-popup__content-title {
    font-size: 1.875rem;
    line-height: 1.5;
  }
}
@media (min-width: 61.25em) {
  .hero-popup__content-title {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
.hero-popup__content-description {
  padding-bottom: 5px;
  margin-bottom: 32px;
}
@media (max-width: 61.24em) {
  .hero-popup__content-description {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media (min-width: 61.25em) {
  .hero-popup__content-description {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}
.hero-popup__content-button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.hero-popup__content-button:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.hero-popup__content-button {
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
}
.hero-popup__cards {
  display: flex;
  row-gap: 30px;
  flex-direction: column;
  max-width: 1200px;
  padding: 0 30px;
}
@media (min-width: 61.25em) {
  .hero-popup__cards {
    flex-direction: row;
    column-gap: 40px;
    width: 100%;
  }
}
.hero-popup__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #FFFFFF;
  cursor: pointer;
}
@media (min-width: 61.25em) {
  .hero-popup__card {
    width: 33.3333333333%;
  }
}
.hero-popup__card-image {
  width: 120px;
  margin-bottom: 30px;
}
.hero-popup__card-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #000000;
  text-align: center;
}
@media (min-width: 61.25em) {
  .hero-popup__card-title {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}
.hero-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}
.hero-popup--overlay-dark .hero-popup__overlay {
  background-color: var(--dp-black);
}
.hero-popup--overlay-dark .hero-popup__content {
  color: #FFFFFF;
}
.hero-popup--overlay-dark .swiper-button svg path {
  fill: #FFFFFF;
}
.hero-popup--overlay-light .hero-popup__overlay {
  background-color: #FFFFFF;
}
.hero-popup--overlay-light .hero-popup__content {
  color: #362D2D;
}
.hero-popup--overlay-brand-color-red .hero-popup__overlay {
  background-color: var(--dp-red);
}
.hero-popup--overlay-brand-color-purple .hero-popup__overlay {
  background-color: var(--dp-purple);
}
.hero-popup--overlay-brand-color-orange-dark .hero-popup__overlay {
  background-color: var(--dp-orange-dark);
}
.hero-popup--overlay-brand-color-orange-light .hero-popup__overlay {
  background-color: var(--dp-orange-light);
}
.hero-popup--overlay-brand-color-yellow .hero-popup__overlay {
  background-color: var(--dp-yellow);
}
.hero-popup--overlay-brand-color-green .hero-popup__overlay {
  background-color: var(--dp-green);
}
.hero-popup--overlay-brand-color-blue .hero-popup__overlay {
  background-color: var(--dp-blue);
}
.hero-popup--overlay-brand-color-teal .hero-popup__overlay {
  background-color: var(--dp-teal);
}
.hero-popup--overlay-brand-color-pink .hero-popup__overlay {
  background-color: var(--dp-pink);
}
.hero-popup--overlay-brand-color-red .hero-popup__content, .hero-popup--overlay-brand-color-purple .hero-popup__content, .hero-popup--overlay-brand-color-orange-dark .hero-popup__content, .hero-popup--overlay-brand-color-orange-light .hero-popup__content, .hero-popup--overlay-brand-color-yellow .hero-popup__content, .hero-popup--overlay-brand-color-blue .hero-popup__content, .hero-popup--overlay-brand-color-green .hero-popup__content, .hero-popup--overlay-brand-color-teal .hero-popup__content, .hero-popup--overlay-brand-color-pink .hero-popup__content {
  color: #FFFFFF;
}
.hero-popup.block--background-color-default .hero-popup__content, .hero-popup.block--background-color-white .hero-popup__content, .hero-popup.block--background-color-grey .hero-popup__content {
  color: #000000;
}

.hero-popup-dialog {
  padding: 50px 30px;
  border: none !important;
  width: 1100px;
}
@media (min-width: 45em) {
  .hero-popup-dialog {
    padding: 30px 30px;
  }
}
.hero-popup-dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
}
.hero-popup-dialog__header {
  margin-bottom: 40px;
}
@media (min-width: 61.25em) {
  .hero-popup-dialog__header {
    margin-bottom: 80px;
  }
}
.hero-popup-dialog__container {
  box-sizing: border-box;
  max-height: 80vh;
  text-align: left;
  overflow-y: auto;
  width: 100%;
}
.hero-popup-dialog__close {
  width: 27px;
  height: 27px;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  padding: 0;
  border: 0;
  outline: 0;
  background: none;
}
@media (min-width: 45em) {
  .hero-popup-dialog__close {
    width: 37px;
    height: 37px;
    right: 20px;
    top: 20px;
  }
}
.hero-popup-dialog__close svg {
  width: 100%;
  height: 100%;
}
.hero-popup-dialog__close svg path {
  fill: #000000;
}
.hero-popup-dialog__footer {
  margin: 30px auto 20px;
  max-width: 650px;
}
@media (min-width: 61.25em) {
  .hero-popup-dialog__footer {
    margin: 60px auto 50px;
  }
}
.hero-popup-dialog__title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5625rem;
  line-height: 1.2;
}
@media (min-width: 61.25em) {
  .hero-popup-dialog__title {
    font-size: 2.5rem;
    line-height: 1.375;
  }
}
.hero-popup-dialog__content {
  padding: 20px;
  margin: auto;
  max-width: 650px;
}
.hero-popup-dialog__content:nth-child(odd) {
  background-color: #F2F2F2;
}
.hero-popup-dialog__content-link {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.5625;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
}
@media (min-width: 61.25em) {
  .hero-popup-dialog__content-link {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}
.hero-popup-dialog__content-link[target=_blank]:before {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  position: relative;
  background-position: center;
  background-size: contain;
  margin-right: 15px;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='1200pt'%20height='1200pt'%20version='1.1'%20viewBox='0%200%201200%201200'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='m960%20960c-0.035156%2033.125-26.875%2059.98-60%2060.035l-658.81%200.37891c-33.117-0.027343-59.988-26.848-60.078-59.965l-0.89453-660.34c-0.046875-33.137%2026.781-60.035%2059.918-60.082h389.71c16.57%200%2030%2013.434%2030%2030%200%2016.57-13.43%2030-30%2030h-389.67l-0.12891%20660.12%20659.96-0.15234v-390c0-16.57%2013.43-30%2030-30s30%2013.43%2030%2030zm65.98-750-0.29688%203.3594-0.1875%20237.8c0%2014.727-10.613%2026.977-24.605%2029.516l-5.3945%200.48438c-16.566%200-30-13.43-30-30l0.125-164.54-361.98%20361.99c-11.715%2011.715-30.711%2011.715-42.426%200-11.719-11.719-11.719-30.711%200-42.43l366.19-366.18-172.57%200.15625c-16.57%200-30-13.43-30-30s13.43-30%2030-30l241.15-0.15625c16.57%200%2030%2013.43%2030%2030z'%20fill-rule='evenodd'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
}
.hero-popup-dialog__content-title {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 20px;
}
@media (min-width: 61.25em) {
  .hero-popup-dialog__content-title {
    font-size: 1.4375rem;
    line-height: 1.4347826087;
  }
}

.hero-slider {
  display: grid;
  justify-items: center;
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.hero-slider.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.hero-slider.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.hero-slider.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.hero-slider.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.hero-slider.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.hero-slider.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.hero-slider.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.hero-slider.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.hero-slider.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.hero-slider.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.hero-slider.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.hero-slider.block--background-color-default, .hero-slider.block--background-color-white {
  position: relative;
}
.hero-slider.block--background-color-default:before, .hero-slider.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-grey {
  position: relative;
}
.hero-slider.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-yellow {
  position: relative;
}
.hero-slider.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-orange-light {
  position: relative;
}
.hero-slider.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-orange-dark {
  position: relative;
}
.hero-slider.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-red {
  position: relative;
}
.hero-slider.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-purple {
  position: relative;
}
.hero-slider.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-blue {
  position: relative;
}
.hero-slider.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-green {
  position: relative;
}
.hero-slider.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-teal {
  position: relative;
}
.hero-slider.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-pink {
  position: relative;
}
.hero-slider.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-black {
  position: relative;
}
.hero-slider.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider.block--background-color-yellow.block, .hero-slider.block--background-color-orange-light.block, .hero-slider.block--background-color-orange-dark.block, .hero-slider.block--background-color-red.block, .hero-slider.block--background-color-purple.block, .hero-slider.block--background-color-blue.block, .hero-slider.block--background-color-green.block, .hero-slider.block--background-color-teal.block, .hero-slider.block--background-color-pink.block, .hero-slider.block--background-color-black.block, .hero-slider.block--background-color-gradient.block {
  color: #FFFFFF;
}
.hero-slider.block--background-color-yellow.block p a, .hero-slider.block--background-color-orange-light.block p a, .hero-slider.block--background-color-orange-dark.block p a, .hero-slider.block--background-color-red.block p a, .hero-slider.block--background-color-purple.block p a, .hero-slider.block--background-color-blue.block p a, .hero-slider.block--background-color-green.block p a, .hero-slider.block--background-color-teal.block p a, .hero-slider.block--background-color-pink.block p a, .hero-slider.block--background-color-black.block p a, .hero-slider.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.hero-slider.block--background-color-yellow.block li:before, .hero-slider.block--background-color-orange-light.block li:before, .hero-slider.block--background-color-orange-dark.block li:before, .hero-slider.block--background-color-red.block li:before, .hero-slider.block--background-color-purple.block li:before, .hero-slider.block--background-color-blue.block li:before, .hero-slider.block--background-color-green.block li:before, .hero-slider.block--background-color-teal.block li:before, .hero-slider.block--background-color-pink.block li:before, .hero-slider.block--background-color-black.block li:before, .hero-slider.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.hero-slider.block--background-color-gradient {
  position: relative;
}
.hero-slider.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider .swiper,
.hero-slider .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.hero-slider .swiper {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  order: 2;
  margin: 0 20px;
}
.hero-slider .swiper-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  box-sizing: content-box;
  align-items: flex-start;
}
@media (min-width: 45em) {
  .hero-slider .swiper-wrapper {
    margin-left: 12.5px;
  }
}
.hero-slider .swiper-slide {
  flex-shrink: 0;
  position: relative;
  display: block;
}
.hero-slider .swiper-button--prev,
.hero-slider .swiper-button--next {
  width: 50px;
  height: 50px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.hero-slider .swiper-button--prev.swiper-button-disabled,
.hero-slider .swiper-button--next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.hero-slider .swiper-button--prev.swiper-button-hidden,
.hero-slider .swiper-button--next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.hero-slider .swiper-button--prev .swiper-navigation-disabled .swiper-button-prev,
.hero-slider .swiper-button--prev .swiper-navigation-disabled .swiper-button-next,
.hero-slider .swiper-button--next .swiper-navigation-disabled .swiper-button-prev,
.hero-slider .swiper-button--next .swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.hero-slider .swiper-button--prev svg,
.hero-slider .swiper-button--next svg {
  width: 100%;
  height: 100%;
}
.hero-slider .swiper-button--prev {
  order: 1;
  transform: rotate(90deg);
}
.hero-slider .swiper-button--next {
  right: 50px;
  order: 3;
  transform: rotate(-90deg);
}
.hero-slider--contained-width {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .hero-slider--contained-width {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-slider--contained-width {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-slider--contained-width {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .hero-slider--contained-width {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-slider--contained-width {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-slider--contained-width {
    padding-right: 36px;
  }
}
.hero-slider--contained-width .hero-slider__image {
  position: relative;
}
.hero-slider--contained-width .hero-slider__image:before {
  display: block;
  content: "";
}
.hero-slider--contained-width .hero-slider__image:before {
  padding-top: 35%;
}
.hero-slider--contained-width .hero-slider__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider--contained-width .hero-slider__content > * {
  max-width: 900px;
}
.hero-slider--full-bleed .hero-slider__image {
  position: relative;
}
.hero-slider--full-bleed .hero-slider__image:before {
  display: block;
  content: "";
}
.hero-slider--full-bleed .hero-slider__image:before {
  padding-top: 34.7222222222%;
}
.hero-slider--full-bleed .hero-slider__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider--full-bleed .hero-slider__content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .hero-slider--full-bleed .hero-slider__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-slider--full-bleed .hero-slider__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-slider--full-bleed .hero-slider__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .hero-slider--full-bleed .hero-slider__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .hero-slider--full-bleed .hero-slider__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .hero-slider--full-bleed .hero-slider__content {
    padding-right: 36px;
  }
}
.hero-slider--full-bleed .hero-slider__content > *:not(.hero-slider__cards) {
  max-width: 900px;
}
.hero-slider__image {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 28.74em) {
  .hero-slider__image.hero-slider__image--has-mobile-image .hero-slider__image-desktop {
    display: none;
  }
}
@media (min-width: 28.75em) {
  .hero-slider__image.hero-slider__image--has-mobile-image .hero-slider__image-mobile {
    display: none;
  }
  .hero-slider__image.hero-slider__image--has-mobile-image .hero-slider__image-desktop {
    display: block;
  }
}
.hero-slider__content {
  grid-column: 1/-1;
  grid-row: 1/-1;
  padding: 65px 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 61.25em) {
  .hero-slider__content {
    padding: 95px 2rem;
  }
}
.hero-slider__content-title {
  padding-bottom: 5px;
  margin-bottom: 32px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 61.24em) {
  .hero-slider__content-title {
    font-size: 1.875rem;
    line-height: 1.5;
  }
}
@media (min-width: 61.25em) {
  .hero-slider__content-title {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
@media (max-width: 61.24em) {
  .hero-slider__content-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-bottom: 40px;
  }
}
@media (min-width: 61.25em) {
  .hero-slider__content-subtitle {
    font-size: 1.5625rem;
    line-height: 1.4;
    padding-bottom: 60px;
  }
}
.hero-slider__content-button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.hero-slider__content-button:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.hero-slider__content-button {
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
}
.hero-slider__cards {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slider__card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  cursor: pointer;
  color: #000000;
  margin-right: 25px;
  background-color: #FFFFFF;
}
@media (max-width: 44.99em) {
  .hero-slider__card {
    width: 100%;
  }
}
@media (min-width: 45em) and (max-width: 61.24em) {
  .hero-slider__card {
    width: calc(50% - 25px);
  }
}
@media (min-width: 61.25em) and (max-width: 70.24em) {
  .hero-slider__card {
    width: calc(33.3333333333% - 25px);
  }
}
@media (min-width: 70.25em) {
  .hero-slider__card {
    width: calc(25% - 25px);
  }
}
.hero-slider__card-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 61.25em) {
  .hero-slider__card-title {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}
.hero-slider__card-subtitle {
  text-align: center;
}
.hero-slider__card.slider-card--grey {
  background-color: #F2F2F2;
}
.hero-slider__card.slider-card--white {
  background-color: #FFFFFF;
}
.hero-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}
.hero-slider--overlay-dark .hero-slider__overlay {
  background-color: var(--dp-black);
}
.hero-slider--overlay-dark .hero-slider__content {
  color: #FFFFFF;
}
.hero-slider--overlay-dark .swiper-button svg path {
  fill: #FFFFFF;
}
.hero-slider--overlay-light .hero-slider__overlay {
  background-color: #FFFFFF;
}
.hero-slider--overlay-light .hero-slider__content {
  color: #362D2D;
}
.hero-slider--overlay-light .swiper-button svg path {
  fill: #000000;
}
.hero-slider--overlay-brand-color-red .hero-slider__overlay {
  background-color: var(--dp-red);
}
.hero-slider--overlay-brand-color-purple .hero-slider__overlay {
  background-color: var(--dp-purple);
}
.hero-slider--overlay-brand-color-orange-dark .hero-slider__overlay {
  background-color: var(--dp-orange-dark);
}
.hero-slider--overlay-brand-color-orange-light .hero-slider__overlay {
  background-color: var(--dp-orange-light);
}
.hero-slider--overlay-brand-color-yellow .hero-slider__overlay {
  background-color: var(--dp-yellow);
}
.hero-slider--overlay-brand-color-green .hero-slider__overlay {
  background-color: var(--dp-green);
}
.hero-slider--overlay-brand-color-blue .hero-slider__overlay {
  background-color: var(--dp-blue);
}
.hero-slider--overlay-brand-color-teal .hero-slider__overlay {
  background-color: var(--dp-teal);
}
.hero-slider--overlay-brand-color-pink .hero-slider__overlay {
  background-color: var(--dp-pink);
}
.hero-slider--overlay-brand-color-red .hero-slider__content, .hero-slider--overlay-brand-color-purple .hero-slider__content, .hero-slider--overlay-brand-color-orange-dark .hero-slider__content, .hero-slider--overlay-brand-color-orange-light .hero-slider__content, .hero-slider--overlay-brand-color-yellow .hero-slider__content, .hero-slider--overlay-brand-color-blue .hero-slider__content, .hero-slider--overlay-brand-color-green .hero-slider__content, .hero-slider--overlay-brand-color-teal .hero-slider__content, .hero-slider--overlay-brand-color-pink .hero-slider__content {
  color: #FFFFFF;
}
.hero-slider--overlay-brand-color-red .swiper-button svg path, .hero-slider--overlay-brand-color-purple .swiper-button svg path, .hero-slider--overlay-brand-color-orange-dark .swiper-button svg path, .hero-slider--overlay-brand-color-orange-light .swiper-button svg path, .hero-slider--overlay-brand-color-yellow .swiper-button svg path, .hero-slider--overlay-brand-color-blue .swiper-button svg path, .hero-slider--overlay-brand-color-green .swiper-button svg path, .hero-slider--overlay-brand-color-teal .swiper-button svg path, .hero-slider--overlay-brand-color-pink .swiper-button svg path {
  fill: #FFFFFF;
}
.hero-slider.block--background-color-default .hero-slider__content, .hero-slider.block--background-color-white .hero-slider__content {
  color: #000000;
}
.hero-slider.block--background-color-default .swiper-button svg path, .hero-slider.block--background-color-white .swiper-button svg path, .hero-slider.block--background-color-grey .swiper-button svg path {
  fill: #000000;
}
.hero-slider.block--background-color-yellow .swiper-button svg path, .hero-slider.block--background-color-orange-light .swiper-button svg path, .hero-slider.block--background-color-orange-dark .swiper-button svg path, .hero-slider.block--background-color-red .swiper-button svg path, .hero-slider.block--background-color-purple .swiper-button svg path, .hero-slider.block--background-color-blue .swiper-button svg path, .hero-slider.block--background-color-green .swiper-button svg path, .hero-slider.block--background-color-teal .swiper-button svg path, .hero-slider.block--background-color-pink .swiper-button svg path, .hero-slider.block--background-color-black .swiper-button svg path {
  fill: #FFFFFF;
}

.button-grid {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.button-grid.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.button-grid.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.button-grid.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.button-grid.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.button-grid.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.button-grid.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.button-grid.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.button-grid.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.button-grid.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.button-grid.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.button-grid.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.button-grid.block--background-color-default, .button-grid.block--background-color-white {
  position: relative;
}
.button-grid.block--background-color-default:before, .button-grid.block--background-color-white:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-grey {
  position: relative;
}
.button-grid.block--background-color-grey:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-yellow {
  position: relative;
}
.button-grid.block--background-color-yellow:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-yellow);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-orange-light {
  position: relative;
}
.button-grid.block--background-color-orange-light:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-light);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-orange-dark {
  position: relative;
}
.button-grid.block--background-color-orange-dark:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-orange-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-red {
  position: relative;
}
.button-grid.block--background-color-red:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-red);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-purple {
  position: relative;
}
.button-grid.block--background-color-purple:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-purple);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-blue {
  position: relative;
}
.button-grid.block--background-color-blue:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-green {
  position: relative;
}
.button-grid.block--background-color-green:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-green);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-teal {
  position: relative;
}
.button-grid.block--background-color-teal:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-pink {
  position: relative;
}
.button-grid.block--background-color-pink:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-pink);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-black {
  position: relative;
}
.button-grid.block--background-color-black:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--dp-black);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid.block--background-color-yellow.block, .button-grid.block--background-color-orange-light.block, .button-grid.block--background-color-orange-dark.block, .button-grid.block--background-color-red.block, .button-grid.block--background-color-purple.block, .button-grid.block--background-color-blue.block, .button-grid.block--background-color-green.block, .button-grid.block--background-color-teal.block, .button-grid.block--background-color-pink.block, .button-grid.block--background-color-black.block, .button-grid.block--background-color-gradient.block {
  color: #FFFFFF;
}
.button-grid.block--background-color-yellow.block p a, .button-grid.block--background-color-orange-light.block p a, .button-grid.block--background-color-orange-dark.block p a, .button-grid.block--background-color-red.block p a, .button-grid.block--background-color-purple.block p a, .button-grid.block--background-color-blue.block p a, .button-grid.block--background-color-green.block p a, .button-grid.block--background-color-teal.block p a, .button-grid.block--background-color-pink.block p a, .button-grid.block--background-color-black.block p a, .button-grid.block--background-color-gradient.block p a {
  color: #FFFFFF;
  font-weight: 500;
}
.button-grid.block--background-color-yellow.block li:before, .button-grid.block--background-color-orange-light.block li:before, .button-grid.block--background-color-orange-dark.block li:before, .button-grid.block--background-color-red.block li:before, .button-grid.block--background-color-purple.block li:before, .button-grid.block--background-color-blue.block li:before, .button-grid.block--background-color-green.block li:before, .button-grid.block--background-color-teal.block li:before, .button-grid.block--background-color-pink.block li:before, .button-grid.block--background-color-black.block li:before, .button-grid.block--background-color-gradient.block li:before {
  mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20width='9'%20height='12'%20viewBox='0%200%209%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%201.75257L8.04649%206.4L0.5%2011.0474V1.75257Z'%20fill='%23A51A45'%20stroke='%23A51A45'/%3e%3c/svg%3e");
  background-color: var(--bullet-point-color, #FFFFFF);
}
.button-grid.block--background-color-gradient {
  position: relative;
}
.button-grid.block--background-color-gradient:before {
  display: block;
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--dp-gradient-color-1) 0%, var(--dp-gradient-color-2) 50%, var(--dp-gradient-color-3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.button-grid__title {
  width: 100%;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 32px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 61.24em) {
  .button-grid__title {
    font-size: 1.875rem;
    line-height: 1.5;
  }
}
@media (min-width: 61.25em) {
  .button-grid__title {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
@media (max-width: 44.99em) {
  .button-grid__content {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .button-grid__content {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .button-grid__content {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .button-grid__content {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .button-grid__content {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .button-grid__content {
    padding-right: 36px;
  }
}
.button-grid__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.button-grid__buttons {
  display: flex;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 45em) {
  .button-grid__buttons {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.button-grid__buttons > .button {
  padding: 0;
  margin: 0;
  width: 100%;
}
@media (min-width: 45em) {
  .button-grid__buttons > .button {
    flex: 1;
  }
}
.button-grid__buttons > .button .button__button {
  width: 100%;
}

.most-read-articles {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .most-read-articles {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .most-read-articles {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .most-read-articles {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .most-read-articles {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .most-read-articles {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .most-read-articles {
    padding-right: 36px;
  }
}
.most-read-articles {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.most-read-articles.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.most-read-articles.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.most-read-articles.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.most-read-articles.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.most-read-articles.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.most-read-articles.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.most-read-articles.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.most-read-articles.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.most-read-articles.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.most-read-articles.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.most-read-articles.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.most-read-articles__description {
  max-width: 945px;
  margin-bottom: 25px;
}
.most-read-articles__cards {
  display: grid;
  gap: 20px;
}
@media (min-width: 45em) {
  .most-read-articles__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 61.25em) {
  .most-read-articles__cards {
    gap: 40px;
  }
}

.animation-block {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.animation-block.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.animation-block.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.animation-block.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.animation-block.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.animation-block.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.animation-block.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.animation-block.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.animation-block.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.animation-block.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.animation-block.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.animation-block.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.animation-block {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .animation-block {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .animation-block {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .animation-block {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .animation-block {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .animation-block {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .animation-block {
    padding-right: 36px;
  }
}
.animation-block__canvas {
  position: relative;
}
.animation-block__canvas-video--mobile, .animation-block__canvas-video--desktop {
  clip-path: inset(2px);
}
.animation-block__canvas-video--mobile video {
  width: 100%;
  height: calc(90vh - 90px);
}
@media (min-width: 61.25em) {
  .animation-block__canvas-video--mobile {
    display: none;
  }
}
.animation-block__canvas-video--desktop {
  position: relative;
}
.animation-block__canvas-video--desktop:before {
  display: block;
  content: "";
}
.animation-block__canvas-video--desktop:before {
  padding-top: 26.5625%;
}
.animation-block__canvas-video--desktop video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 61.24em) {
  .animation-block__canvas-video--desktop {
    display: none;
  }
}
.animation-block__canvas-textbox {
  text-align: center;
  color: #000000;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s, visibility 0.1s;
}
.animation-block__canvas-textbox--visible {
  opacity: 1;
  visibility: visible;
}
.animation-block__canvas-textbox-inner {
  position: relative;
}
.animation-block__canvas-textbox-close {
  position: absolute;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
@media (max-width: 61.24em) {
  .animation-block__canvas-textbox-close {
    top: 10px;
    right: 10px;
  }
}
@media (min-width: 61.25em) {
  .animation-block__canvas-textbox-close {
    top: -20px;
    right: -5px;
  }
}
.animation-block__canvas-textbox-close svg path {
  fill: #000000;
}
@media (max-width: 41.24em) {
  .animation-block__canvas-textbox {
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }
}
@media (min-width: 41.25em) and (max-width: 61.24em) {
  .animation-block__canvas-textbox {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}
@media (max-width: 61.24em) {
  .animation-block__canvas-textbox {
    width: 100%;
    height: 23px;
    display: flex;
    align-items: center;
  }
  .animation-block__canvas-textbox-inner {
    background-color: #F2F2F2;
    border-radius: 20px;
    padding: 20px 30px 20px 20px;
    width: 52%;
  }
  .animation-block__canvas-textbox--1, .animation-block__canvas-textbox--3, .animation-block__canvas-textbox--5, .animation-block__canvas-textbox--2, .animation-block__canvas-textbox--4, .animation-block__canvas-textbox--6 {
    left: 0;
  }
  .animation-block__canvas-textbox--1, .animation-block__canvas-textbox--3, .animation-block__canvas-textbox--5 {
    justify-content: flex-start;
  }
  .animation-block__canvas-textbox--2, .animation-block__canvas-textbox--4, .animation-block__canvas-textbox--6 {
    justify-content: flex-end;
  }
  .animation-block__canvas-textbox--1 {
    top: 13%;
  }
  .animation-block__canvas-textbox--2 {
    top: 27%;
  }
  .animation-block__canvas-textbox--3 {
    top: 41%;
  }
  .animation-block__canvas-textbox--4 {
    top: 55%;
  }
  .animation-block__canvas-textbox--5 {
    top: 70%;
  }
  .animation-block__canvas-textbox--6 {
    top: 83%;
  }
}
@media (min-width: 61.25em) {
  .animation-block__canvas-textbox {
    font-size: clamp(14px, 1.1vw, 1rem);
    line-height: 1.5;
    background-color: #F2F2F2;
    border-radius: 25px;
    padding: 35px 20px 20px;
    width: 20%;
  }
  .animation-block__canvas-textbox--1, .animation-block__canvas-textbox--3, .animation-block__canvas-textbox--5 {
    top: 32%;
  }
  .animation-block__canvas-textbox--2, .animation-block__canvas-textbox--4, .animation-block__canvas-textbox--6 {
    bottom: 32%;
  }
  .animation-block__canvas-textbox--1 {
    left: 5%;
  }
  .animation-block__canvas-textbox--2 {
    left: 18.6%;
  }
  .animation-block__canvas-textbox--3 {
    left: 33%;
  }
  .animation-block__canvas-textbox--4 {
    left: 47.5%;
  }
  .animation-block__canvas-textbox--5 {
    left: 61%;
  }
  .animation-block__canvas-textbox--6 {
    left: 75%;
  }
}
.animation-block__canvas-link {
  position: absolute;
  cursor: pointer;
}
@media (max-width: 61.24em) {
  .animation-block__canvas-link {
    width: 46%;
    height: 40px;
  }
  .animation-block__canvas-link--1, .animation-block__canvas-link--3, .animation-block__canvas-link--5 {
    right: 0;
  }
  .animation-block__canvas-link--2, .animation-block__canvas-link--4, .animation-block__canvas-link--6 {
    left: 0;
  }
  .animation-block__canvas-link--1 {
    top: 12%;
  }
  .animation-block__canvas-link--2 {
    top: 26%;
  }
  .animation-block__canvas-link--3 {
    top: 40%;
  }
  .animation-block__canvas-link--4 {
    top: 54%;
  }
  .animation-block__canvas-link--5 {
    top: 68.5%;
  }
  .animation-block__canvas-link--6 {
    top: 82%;
  }
}
@media (min-width: 61.25em) {
  .animation-block__canvas-link {
    width: 4.5%;
    height: 15%;
  }
  .animation-block__canvas-link--1, .animation-block__canvas-link--3, .animation-block__canvas-link--5 {
    top: 16%;
  }
  .animation-block__canvas-link--2, .animation-block__canvas-link--4, .animation-block__canvas-link--6 {
    bottom: 16.5%;
  }
  .animation-block__canvas-link--1 {
    left: 13%;
  }
  .animation-block__canvas-link--2 {
    left: 26.6%;
  }
  .animation-block__canvas-link--3 {
    left: 41%;
  }
  .animation-block__canvas-link--4 {
    left: 54.7%;
  }
  .animation-block__canvas-link--5 {
    left: 69%;
  }
  .animation-block__canvas-link--6 {
    left: 83%;
  }
}

.pricing-block {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.pricing-block.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.pricing-block.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.pricing-block.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.pricing-block.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.pricing-block.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.pricing-block.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.pricing-block.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.pricing-block.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.pricing-block.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.pricing-block.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.pricing-block.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.pricing-block {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .pricing-block {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .pricing-block {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .pricing-block {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .pricing-block {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .pricing-block {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .pricing-block {
    padding-right: 36px;
  }
}
.pricing-block__inner {
  display: grid;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 44.99em) {
  .pricing-block__inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (min-width: 37em) {
  .pricing-block__inner {
    grid-template-columns: repeat(2, minmax(auto, 267px));
  }
}
@media (min-width: 45em) {
  .pricing-block__inner--layout-columns {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.pricing-block__inner--layout-columns.pricing-block__inner--item-count-1 {
  grid-template-columns: minmax(auto, 267px);
}
@media (min-width: 57em) {
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-3 {
    grid-template-columns: repeat(3, minmax(auto, 267px));
  }
}
@media (min-width: 75.9375em) {
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-4 {
    grid-template-columns: repeat(4, minmax(auto, 267px));
  }
}
@media (min-width: 57em) and (max-width: 81.875em) {
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-5 {
    max-width: 923px;
    grid-template-columns: repeat(12, 1fr);
  }
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-5 .pricing-card:nth-child(1) {
    grid-column: 1/5;
  }
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-5 .pricing-card:nth-child(2) {
    grid-column: 5/9;
  }
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-5 .pricing-card:nth-child(3) {
    grid-column: 9/13;
  }
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-5 .pricing-card:nth-child(4) {
    grid-column: 3/7;
  }
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-5 .pricing-card:nth-child(5) {
    grid-column: 7/11;
  }
}
@media (min-width: 81.875em) {
  .pricing-block__inner--layout-columns.pricing-block__inner--item-count-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 57em) {
  .pricing-block__inner--layout-rows .pricing-card.row-card {
    display: none;
  }
}
@media (min-width: 57em) {
  .pricing-block__inner--layout-rows {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pricing-block__inner--layout-rows .pricing-card.column-card {
    display: none;
  }
}
.pricing-block__inner--layout-rows.pricing-block__inner--contain-width {
  max-width: 1143px;
  margin: auto;
}

.pricing-card {
  font-size: 0.875rem;
  line-height: 1.1428571429;
  text-align: center;
  display: grid;
  position: relative;
  /*
   * Column card
   */
}
.pricing-card.column-card {
  grid-template-rows: minmax(89px, auto) 1fr;
}
.pricing-card.column-card .pricing-card__header {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.pricing-card.column-card .pricing-card__header:not(.pricing-card.column-card .pricing-card__header--has-image) {
  padding: 22px 25px 10px;
}
.pricing-card.column-card .pricing-card__subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 57em) {
  .pricing-card.column-card .pricing-card__subtitle {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (min-width: 57em) {
  .pricing-card.column-card .pricing-card__subtitle {
    height: 62px;
  }
}
.pricing-card.column-card .pricing-card__subtitle-text {
  max-height: 48px;
  overflow: hidden;
}
.pricing-card.column-card .pricing-card__included {
  border-top: 1px solid #D8D8D8;
  padding-top: 15px;
  padding-bottom: 15px;
}
.pricing-card.column-card .pricing-card__price {
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
  padding-top: 5px;
  padding-bottom: 6px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card.column-card .pricing-card__list {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.pricing-card.column-card .pricing-card__button {
  margin-top: 30px;
}
.pricing-card {
  /*
   * Row card
   */
}
.pricing-card.row-card {
  grid-template-columns: 210px 18fr 48fr 24fr;
  align-items: center;
  gap: 30px;
  border: 1px solid #C0C0C0;
  border-radius: 20px;
}
.pricing-card.row-card .pricing-card__most-popular {
  left: 50px;
  transform: none;
}
.pricing-card.row-card .pricing-card__header {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  justify-content: center;
}
.pricing-card.row-card .pricing-card__header:not(.pricing-card.row-card .pricing-card__header--has-image) {
  padding: 22px 25px;
}
.pricing-card.row-card .pricing-card__col-2, .pricing-card.row-card .pricing-card__col-3, .pricing-card.row-card .pricing-card__col-4 {
  font-weight: 400;
  padding-top: 35px;
  padding-bottom: 35px;
}
.pricing-card.row-card .pricing-card__col-4 {
  padding-right: 20px;
}
.pricing-card.row-card .pricing-card__subtitle {
  text-align: left;
}
.pricing-card.row-card .pricing-card__included {
  display: flex;
  margin-bottom: 8px;
}
.pricing-card.row-card .pricing-card__list-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 3px;
  max-width: none;
  padding-left: 0;
  margin: 0;
}
@media (min-width: 70.25em) {
  .pricing-card.row-card .pricing-card__list-points {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing-card.row-card .pricing-card__list-points li.pricing-card__list-points-separator {
  display: none;
}
.pricing-card.row-card .pricing-card__price {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: max-content;
  margin: auto;
}
.pricing-card.row-card .pricing-card__price-subtitle {
  text-align: right;
}
.pricing-card.row-card .pricing-card__price-savings + .pricing-card__price-subtitle {
  text-align: center;
}
.pricing-card.row-card .pricing-card__button {
  margin-top: 18px;
}
.pricing-card {
  /*
   * Default styles
   */
}
.pricing-card__most-popular {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 600;
  color: #FFFFFF;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dp-black);
  padding: 4px 20px;
}
.pricing-card__header {
  color: #FFFFFF;
  background-color: var(--header-background-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}
.pricing-card__header:not(.pricing-card__header--has-image) .pricing-card__header-title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  .pricing-card__header:not(.pricing-card__header--has-image) .pricing-card__header-title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.pricing-card__header:not(.pricing-card__header--has-image) .pricing-card__header-title {
  line-height: 1 !important;
  font-weight: 700;
  padding-bottom: 0;
}
.pricing-card__header:not(.pricing-card__header--has-image) .pricing-card__header-subtitle {
  font-size: 0.75rem;
  line-height: 1.3333333333;
}
.pricing-card__header:not(.pricing-card__header--image-fill) .pricing-card__header-image {
  padding: 20px;
  width: auto;
  height: 100%;
}
.pricing-card__header:not(.pricing-card__header--image-fill) .pricing-card__header-image img {
  max-height: 49px;
  width: 100%;
}
@media (max-width: 57em) {
  .pricing-card__header--image-fill img {
    max-height: 89px;
  }
}
.pricing-card__header-subtitle {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.0625rem;
  line-height: 1.4117647059;
}
.pricing-card__details-title {
  color: var(--header-background-color);
  margin-bottom: 6px;
}
@media (min-width: 57em) {
  .pricing-card__details-title {
    text-align: left;
  }
}
.pricing-card__body {
  font-weight: 400;
  border-left: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  border-bottom: 1px solid #C0C0C0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 0 25px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card__included {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
.pricing-card__list-points {
  list-style: none;
  text-align: left;
  max-width: 163px;
  padding-left: 0;
  margin-top: 0;
}
.pricing-card__list-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.pricing-card__list-points li.pricing-card__list-points-separator {
  font-weight: 700;
  margin: 15px 0;
}
.pricing-card__list-points li:not(.pricing-card__list-points li.pricing-card__list-points-separator):before {
  display: block;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg%20width='11'%20height='11'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M20%206L9%2017L4%2012'%20stroke='%23009656'%20stroke-width='2'%20stroke-linecap='butt'%20stroke-linejoin='miter'/%3e%3c/svg%3e");
  position: absolute;
  top: 2px;
  left: 0;
  height: 11px;
  width: 11px;
}
.pricing-card__list-points li.pricing-card__list-points-ai-feature:after {
  display: block;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg%20width='30'%20height='30'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12%203L13.6%208.4L19%2010L13.6%2011.6L12%2017L10.4%2011.6L5%2010L10.4%208.4L12%203Z'%20stroke='currentColor'%20stroke-width='1.8'%20stroke-linejoin='miter'/%3e%3cpath%20d='M19%204L19.6%205.6L21%206.2L19.6%206.8L19%208.4L18.4%206.8L17%206.2L18.4%205.6L19%204Z'%20fill='currentColor'/%3e%3cpath%20d='M5%2015L5.6%2016.6L7%2017.2L5.6%2017.8L5%2019.4L4.4%2017.8L3%2017.2L4.4%2016.6L5%2015Z'%20fill='currentColor'/%3e%3c/svg%3e");
  position: absolute;
  left: -33px;
  top: -3px;
  width: 28px;
  height: 28px;
}
.pricing-card__price-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
.pricing-card__price-subtitle {
  font-size: 0.6875rem;
  line-height: 1.2727272727;
  color: #626262;
}
.pricing-card__price-was {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  text-decoration: line-through;
  margin-top: 5px;
}
.pricing-card__price-savings {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: var(--dp-green);
  background-color: rgba(0, 150, 86, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
  margin: 10px auto;
  width: max-content;
}
.pricing-card__secondary-button {
  margin-top: 18px;
}
.pricing-card__secondary-button + .pricing-card__button {
  margin-top: 18px;
}
.pricing-card__button-link {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  font-weight: 600;
  padding: 10px 36px;
}
.pricing-card__button-link--style-primary {
  color: #FFFFFF;
  background-color: var(--button-colour);
  border: 2px solid var(--button-colour);
}
.pricing-card__button-link--style-primary:hover {
  color: var(--button-colour);
  background-color: transparent;
  border-color: var(--button-colour);
}
.pricing-card__button-link--style-secondary {
  color: var(--button-colour);
  background-color: transparent;
  border: 2px solid var(--button-colour);
}
.pricing-card__button-link--style-secondary:hover {
  color: #FFFFFF;
  background-color: var(--button-colour);
  border-color: var(--button-colour);
}

.table-block {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .table-block {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .table-block {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .table-block {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .table-block {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .table-block {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .table-block {
    padding-right: 36px;
  }
}
.table-block {
  --block-padding__top-default: var(--block-padding__medium);
  --block-padding__bottom-default: var(--block-padding__medium);
}
.table-block.block--padding-top-default {
  padding-top: var(--block-padding__top-default);
}
.table-block.block--padding-top-small {
  padding-top: var(--block-padding__small);
}
.table-block.block--padding-top-medium {
  padding-top: var(--block-padding__medium);
}
.table-block.block--padding-top-large {
  padding-top: var(--block-padding__large);
}
.table-block.block--padding-bottom-default {
  padding-bottom: var(--block-padding__bottom-default);
}
.table-block.block--padding-bottom-small {
  padding-bottom: var(--block-padding__small);
}
.table-block.block--padding-bottom-medium {
  padding-bottom: var(--block-padding__medium);
}
.table-block.block--padding-bottom-large {
  padding-bottom: var(--block-padding__large);
}
.table-block.block--previous-title-block {
  --block-padding__top-default: var(--block-padding__small);
}
.table-block.block--next-call-to-action {
  --block-padding__bottom-default: var(--block-padding__large);
}
.table-block.block--next-hero-image {
  --block-padding__bottom-default: var(--block-padding__large);
}
.table-block__inner {
  padding: 30px 15px;
  border: 1px solid #C0C0C0;
  border-radius: 20px;
}
.table-block__title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  .table-block__title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.table-block__title {
  text-align: center;
}
.table-block__description {
  font-size: 0.875rem;
  line-height: 1.2857142857;
  text-align: center;
  margin-bottom: 35px;
}
@media (min-width: 45em) {
  .table-block__description {
    margin-bottom: 45px;
  }
}
.table-block__table {
  display: block;
}
@media (max-width: 44.99em) {
  .table-block__table {
    overflow: auto;
  }
  .table-block__table .tablepress {
    min-width: 150%;
  }
}
@media (min-width: 45em) {
  .table-block__table--scroll {
    overflow: auto;
  }
  .table-block__table--scroll .tablepress {
    min-width: 150%;
  }
}
.table-block__table .tablepress {
  font-size: 0.875rem;
  line-height: 1.2857142857;
  width: 100%;
  border-spacing: 0;
  overflow: hidden;
  table-layout: fixed;
}
.table-block__table .tablepress thead {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #D8D8D8;
}
.table-block__table .tablepress thead th:first-child {
  width: initial;
}
@media (min-width: 45em) {
  .table-block__table .tablepress thead th:first-child {
    padding-left: 100px;
  }
}
.table-block__table .tablepress tbody td {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
.table-block__table .tablepress tbody td[colspan] {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #FFFFFF;
  background-color: #000000;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 45em) {
  .table-block__table .tablepress tbody td[colspan] {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 45em) {
  .table-block__table .tablepress tbody td:not([colspan]):after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #E0E0E0;
    z-index: 0;
  }
  .table-block__table .tablepress tbody td:not([colspan]):first-child {
    padding-left: 100px;
  }
  .table-block__table .tablepress tbody td:not([colspan]):first-child:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: calc(-100% + 80px);
    bottom: 0;
    background-color: #FFFFFF;
    z-index: 1;
  }
}
.table-block__table .tablepress th, .table-block__table .tablepress td {
  padding: 12px 10px;
}
.table-block__table .tablepress th:first-child, .table-block__table .tablepress td:first-child {
  text-align: left;
}
.table-block__table .tablepress th:not(:first-child), .table-block__table .tablepress td:not(:first-child) {
  text-align: center;
}
.table-block__table .tablepress th svg, .table-block__table .tablepress td svg {
  margin: auto;
}
.table-block__table .tablepress th .ndash, .table-block__table .tablepress td .ndash {
  color: #C0C0C0;
}

.btn {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
}
.btn--size-extra-small {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  padding: 8px 16px;
}
.btn--size-small {
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
}
.btn--size-medium {
  font-size: 1.375rem;
  line-height: 0.7272727273;
  padding: 20px 18px;
}
.btn--size-large {
  font-size: 1.375rem;
  line-height: 0.7272727273;
  padding: 23px 63px;
}
.btn--style-primary.btn--color-yellow {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-yellow));
  border: 2px solid var(--button-color, var(--dp-yellow));
}
.btn--style-primary.btn--color-yellow:hover {
  background-color: var(--button-color--hovered, var(--dp-yellow--darkened));
  border-color: var(--button-color--hovered, var(--dp-yellow--darkened));
}
.btn--style-primary.btn--color-orange-light {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-orange-light));
  border: 2px solid var(--button-color, var(--dp-orange-light));
}
.btn--style-primary.btn--color-orange-light:hover {
  background-color: var(--button-color--hovered, var(--dp-orange-dark--darkened));
  border-color: var(--button-color--hovered, var(--dp-orange-dark--darkened));
}
.btn--style-primary.btn--color-orange-dark {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-orange-dark));
  border: 2px solid var(--button-color, var(--dp-orange-dark));
}
.btn--style-primary.btn--color-orange-dark:hover {
  background-color: var(--button-color--hovered, var(--dp-orange-dark--darkened));
  border-color: var(--button-color--hovered, var(--dp-orange-dark--darkened));
}
.btn--style-primary.btn--color-purple {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-purple));
  border: 2px solid var(--button-color, var(--dp-purple));
}
.btn--style-primary.btn--color-purple:hover {
  background-color: var(--button-color--hovered, var(--dp-purple--darkened));
  border-color: var(--button-color--hovered, var(--dp-purple--darkened));
}
.btn--style-primary.btn--color-red {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.btn--style-primary.btn--color-red:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.btn--style-primary.btn--color-blue {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-blue));
  border: 2px solid var(--button-color, var(--dp-blue));
}
.btn--style-primary.btn--color-blue:hover {
  background-color: var(--button-color--hovered, var(--dp-blue--darkened));
  border-color: var(--button-color--hovered, var(--dp-blue--darkened));
}
.btn--style-primary.btn--color-green {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-green));
  border: 2px solid var(--button-color, var(--dp-green));
}
.btn--style-primary.btn--color-green:hover {
  background-color: var(--button-color--hovered, var(--dp-green--darkened));
  border-color: var(--button-color--hovered, var(--dp-green--darkened));
}
.btn--style-primary.btn--color-teal {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-teal));
  border: 2px solid var(--button-color, var(--dp-teal));
}
.btn--style-primary.btn--color-teal:hover {
  background-color: var(--button-color--hovered, var(--dp-teal--darkened));
  border-color: var(--button-color--hovered, var(--dp-teal--darkened));
}
.btn--style-primary.btn--color-pink {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-pink));
  border: 2px solid var(--button-color, var(--dp-pink));
}
.btn--style-primary.btn--color-pink:hover {
  background-color: var(--button-color--hovered, var(--dp-pink--darkened));
  border-color: var(--button-color--hovered, var(--dp-pink--darkened));
}
.btn--style-primary.btn--color-black {
  color: #FFFFFF;
  background-color: var(--dp-black);
  border: 2px solid var(--dp-black);
}
.btn--style-primary.btn--color-black:hover {
  color: var(--dp-black);
  background-color: transparent;
  border-color: var(--dp-black);
}
.btn--style-primary.btn--color-white {
  color: var(--bg-color, var(--dp-black));
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn--style-primary.btn--color-white:hover {
  color: #FFFFFF;
  background-color: transparent;
  border-color: #FFFFFF;
}
.btn--style-secondary.btn--color-yellow {
  color: var(--button-color, var(--dp-yellow));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-yellow));
}
.btn--style-secondary.btn--color-yellow:hover {
  background-color: var(--button-color, var(--dp-yellow));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-orange-light {
  color: var(--button-color, var(--dp-orange-light));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-orange-light));
}
.btn--style-secondary.btn--color-orange-light:hover {
  background-color: var(--button-color, var(--dp-orange-light));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-orange-dark {
  color: var(--button-color, var(--dp-orange-dark));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-orange-dark));
}
.btn--style-secondary.btn--color-orange-dark:hover {
  background-color: var(--button-color, var(--dp-orange-dark));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-red {
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.btn--style-secondary.btn--color-red:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-purple {
  color: var(--button-color, var(--dp-purple));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-purple));
}
.btn--style-secondary.btn--color-purple:hover {
  background-color: var(--button-color, var(--dp-purple));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-blue {
  color: var(--button-color, var(--dp-blue));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-blue));
}
.btn--style-secondary.btn--color-blue:hover {
  background-color: var(--button-color, var(--dp-blue));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-green {
  color: var(--button-color, var(--dp-green));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-green));
}
.btn--style-secondary.btn--color-green:hover {
  background-color: var(--button-color, var(--dp-green));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-teal {
  color: var(--button-color, var(--dp-teal));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-teal));
}
.btn--style-secondary.btn--color-teal:hover {
  background-color: var(--button-color, var(--dp-teal));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-pink {
  color: var(--button-color, var(--dp-pink));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-pink));
}
.btn--style-secondary.btn--color-pink:hover {
  background-color: var(--button-color, var(--dp-pink));
  color: #FFFFFF;
}
.btn--style-secondary.btn--color-black {
  color: var(--dp-black);
  background-color: transparent;
  border: 2px solid var(--dp-black);
}
.btn--style-secondary.btn--color-black:hover {
  color: #FFFFFF;
  background-color: var(--dp-red);
  border-color: var(--dp-red);
}
.btn--style-secondary.btn--color-white {
  color: #FFFFFF;
  background-color: transparent;
  border: 2px solid #FFFFFF;
}
.btn--style-secondary.btn--color-white:hover {
  color: #FFFFFF;
  background-color: var(--dp-red);
  border-color: var(--dp-red);
}
.btn-ghost {
  border: none;
}
.btn-ghost--color-yellow {
  color: var(--dp-yellow);
}
.btn-ghost--color-orange-light {
  color: var(--dp-orange-light);
}
.btn-ghost--color-orange-dark {
  color: var(--dp-orange-dark);
}
.btn-ghost--color-red {
  color: var(--dp-red);
}
.btn-ghost--color-purple {
  color: var(--dp-purple);
}
.btn-ghost--color-blue {
  color: var(--dp-blue);
}
.btn-ghost--color-green {
  color: var(--dp-green);
}
.btn-ghost--color-teal {
  color: var(--dp-teal);
}
.btn-ghost--color-pink {
  color: var(--dp-pink);
}
.btn-ghost--color-black {
  color: var(--dp-black);
}
.btn-ghost--color-white {
  color: #FFFFFF;
}
.btn--border-thick {
  border-width: 4px !important;
}

.support-header-bar {
  background-color: var(--dp-red);
  color: #FFFFFF;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 50px;
  /*
   * Mobile site search
   */
}
@media (min-width: 28.75em) {
  .support-header-bar--site-search {
    display: none;
  }
}
.support-header-bar--site-search .support-header-bar__search {
  width: 100%;
  justify-content: flex-end;
}
.support-header-bar__container {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .support-header-bar__container {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .support-header-bar__container {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .support-header-bar__container {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .support-header-bar__container {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .support-header-bar__container {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .support-header-bar__container {
    padding-right: 36px;
  }
}
.support-header-bar__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
@media (min-width: 45em) {
  .support-header-bar__container {
    column-gap: 50px;
  }
}
@media (max-width: 44.99em) {
  .support-header-bar__breadcrumbs {
    font-size: 0.75rem;
  }
}
.support-header-bar__breadcrumbs-item {
  color: #FFFFFF;
}
.support-header-bar__breadcrumbs-seperator {
  margin-right: 4px;
  margin-left: 4px;
}
.support-header-bar__search {
  display: flex;
  align-items: center;
}
.support-header-bar__search-input {
  font-size: 1.125rem;
  line-height: 1;
  color: #FFFFFF;
  background: transparent;
  width: 12em;
  border: none;
  padding: 0;
}
.support-header-bar__search-input:focus {
  outline: none;
}
.support-header-bar__search-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.support-header-bar__search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.support-header-bar__search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.support-header-bar__search-input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.support-header-bar:not(.support-header-bar--search-active) .support-header-bar__search-input {
  display: none;
}
.support-header-bar__search-toggle {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  margin-left: 10px;
  cursor: pointer;
}

.related-articles-block {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .related-articles-block {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .related-articles-block {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .related-articles-block {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .related-articles-block {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .related-articles-block {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .related-articles-block {
    padding-right: 36px;
  }
}
.related-articles-block {
  padding-top: 50px;
}
.related-articles-block .blog-listings {
  padding-left: 0;
  padding-right: 0;
}
.single-case_studies .related-articles-block {
  padding-bottom: 50px;
}

@media (max-width: 44.99em) {
  .dp-timeline {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .dp-timeline {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .dp-timeline {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .dp-timeline {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .dp-timeline {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .dp-timeline {
    padding-right: 36px;
  }
}
.dp-timeline__wrapper {
  max-width: 487px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.dp-timeline__wrapper:before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #E0E0E0;
  position: absolute;
  left: 30px;
  z-index: -1;
}
.dp-timeline__event {
  display: grid;
  grid-template-columns: 60px auto;
  column-gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 45em) {
  .dp-timeline__event {
    margin-bottom: 80px;
  }
}
.dp-timeline__event-icon {
  position: relative;
  border: 2px solid #E0E0E0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.dp-timeline__event-icon svg, .dp-timeline__event-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 26px;
}
.dp-timeline__event-icon svg path, .dp-timeline__event-icon img path {
  fill: var(--dp-red);
}
.dp-timeline__event-content-title {
  color: var(--dp-red);
}
.dp-timeline__event-content-description {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #626262;
}

@media (max-width: 44.99em) {
  .search-results-list {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .search-results-list {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .search-results-list {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .search-results-list {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .search-results-list {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .search-results-list {
    padding-right: 36px;
  }
}
.search-results-list {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}
.search-results-list__paging {
  display: flex;
}
.search-results-list__paging > * {
  padding: 10px 15px;
  margin-right: 10px;
}
.search-results-list__paging a {
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.search-results-list__paging a:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.search-results-list__paging a.next, .search-results-list__paging a.prev {
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.search-results-list__paging a.next:hover, .search-results-list__paging a.prev:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.search-results-list .search-result:not(:last-child) {
  margin-bottom: 50px;
}
.search-results-list .search-result__title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  .search-results-list .search-result__title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.search-results-list .search-result__meta {
  font-size: 0.875rem;
  line-height: 1.1428571429;
  margin-top: 5px;
  display: flex;
}
.search-results-list .search-result__meta > div:not(:last-child) {
  margin-right: 10px;
}
.search-results-list .search-result__meta > div:not(:last-child):after {
  content: "·";
  margin-left: 5px;
}
.search-results-list .search-result__text {
  margin-top: 10px;
}
.search-results-list .search-result__text p:last-child {
  margin-bottom: 0;
}

.site-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms;
  border: none;
  margin: 0;
  max-width: none;
  max-height: none;
  background: var(--dp-red);
}
.site-search-modal[open] {
  opacity: 1;
  pointer-events: inherit;
}
.site-search-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.site-search-modal input,
.site-search-modal button {
  height: 70px;
  background: transparent;
  border: none;
}
.site-search-modal input {
  font-size: 2.5rem;
  line-height: 1;
  color: #FFFFFF;
  width: fit-content;
  min-width: 10em;
  max-width: min(20em, 100vw - 90px);
}
.site-search-modal input:focus {
  outline: none;
}
.site-search-modal input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.site-search-modal input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.site-search-modal input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.site-search-modal input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.site-search-modal button {
  cursor: pointer;
  width: 70px;
}
.site-search-modal button svg * {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}

.additional-resources {
  position: fixed;
  top: 0;
  left: 0;
  height: calc(100% - 80px);
  border: none;
  padding: 0;
  margin: 40px auto;
  z-index: 999;
  background: transparent;
}
.additional-resources::backdrop {
  background-color: var(--dp-black);
  opacity: 0.3;
}
.additional-resources__container {
  display: flex;
  align-items: center;
  height: 100%;
}
.additional-resources__inner {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  background-color: #FFFFFF;
  position: relative;
  max-height: 100%;
  overflow: auto;
}
.additional-resources__title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media (min-width: 45em) {
  .additional-resources__title {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.additional-resources__title {
  padding-bottom: 10px;
}
.additional-resources__description {
  margin-bottom: 50px;
  max-width: 910px;
}
.additional-resources__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.additional-resources__categories:has(.additional-resources__category:only-child) {
  grid-template-columns: repeat(1, 1fr);
  max-width: 910px;
}
.additional-resources__categories:has(.additional-resources__category:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 910px;
}
.additional-resources__category {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.additional-resources__category-title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dp-black);
  padding-right: 50px;
}
.additional-resources__category-description {
  max-width: 910px;
}
.additional-resources__category-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.additional-resources__category-link {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.125;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  cursor: pointer;
  outline: none;
  color: var(--dp-red);
  transition: opacity 0.2s ease;
}
.additional-resources__category-link svg path {
  fill: var(--dp-red);
}
.additional-resources__category-link:hover {
  opacity: 0.8;
}
.additional-resources__close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 999;
  transition: opacity 0.25s, visibility 0.25s;
  opacity: 0;
  visibility: hidden;
}
.video-modal--is-visible {
  display: none;
}
.video-modal--fade-in {
  opacity: 1;
  visibility: visible;
}
.video-modal__container {
  position: relative;
  max-width: 800px;
  width: 100%;
  z-index: 2;
}
.video-modal__container .video-modal__close {
  font-size: 2.1875rem;
  position: absolute;
  top: -50px;
  right: -10px;
  background: transparent;
  border: none;
  height: 50px;
  cursor: pointer;
  color: #FFFFFF;
  transition: color 0.3s;
}
.video-modal__container .video-modal__close:hover {
  color: #C0C0C0;
}
.video-modal__backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--dp-black);
  opacity: 0.85;
  z-index: 1;
}

.support-article {
  display: grid;
  margin-bottom: 2rem;
}
@media (min-width: 61.25em) {
  .support-article {
    grid-template-columns: 320px 1fr;
  }
}
.support-article__sidebar {
  position: relative;
  background-color: #F2F2F2;
}
@media (min-width: 61.25em) and (max-width: 76.74em) {
  .support-article__sidebar {
    min-height: calc(100vh - 140px);
  }
}
@media (min-width: 76.75em) {
  .support-article__sidebar {
    min-height: calc(100vh - 168px);
  }
}
.support-article__sidebar-left-padding-overlay, .support-article__sidebar-right-padding-overlay {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #F2F2F2;
  position: absolute;
  z-index: -1;
}
.support-article__sidebar-left-padding-overlay {
  left: -100%;
}
@media (max-width: 61.24em) and (max-width: 44.99em) {
  .support-article__sidebar-right-padding-overlay {
    right: -16.2px;
  }
}
@media (max-width: 61.24em) and (min-width: 45em) and (max-width: 70.24em) {
  .support-article__sidebar-right-padding-overlay {
    right: -28.8px;
  }
}
@media (max-width: 61.24em) and (min-width: 70.25em) {
  .support-article__sidebar-right-padding-overlay {
    right: -36px;
  }
}
.support-article__sidebar-nav {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}
@media (min-width: 61.25em) {
  .support-article__sidebar-nav {
    padding-right: 30px;
  }
}
.support-article__sidebar-nav .support-article__menu-toggle {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
  font-size: 0.75rem;
  line-height: 1.3333333333;
  padding: 8px 16px;
  border-width: 1px;
  text-transform: uppercase;
}
@media (min-width: 61.25em) {
  .support-article__sidebar-nav .support-article__menu-toggle {
    display: none;
  }
}
@media (max-width: 61.24em) {
  .support-article__sidebar-nav .support-article__sidebar-page-list {
    display: none;
  }
  .support-article__sidebar-nav .support-article__sidebar-page-list--active {
    display: block;
  }
  .support-article__sidebar-nav .support-article__sidebar-page-list > li > ul.children {
    margin-bottom: 25px;
  }
}
@media (min-width: 61.25em) {
  .support-article__sidebar-nav .support-article__sidebar-page-list {
    display: block;
    margin-bottom: 70px;
  }
}
.support-article__sidebar-nav .support-article__sidebar-page-list, .support-article__sidebar-nav .support-article__sidebar-page-list ul {
  list-style: none;
  padding: 0;
}
.support-article__sidebar-nav .support-article__sidebar-page-list > li:not(:last-child) {
  margin-bottom: 10px;
}
.support-article__sidebar-nav .support-article__sidebar-page-list > li > a {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
}
.support-article__sidebar-nav .support-article__sidebar-page-list > li a:visited {
  color: #919191;
}
.support-article__sidebar-nav .support-article__sidebar-page-list ul.children {
  display: none;
  margin-top: 8px;
  margin-bottom: 30px;
}
.support-article__sidebar-nav .support-article__sidebar-page-list ul.children li {
  font-size: 0.9rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
.support-article__sidebar-nav .support-article__sidebar-page-list ul.children li.current_page_item > a {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.support-article__sidebar-nav .support-article__sidebar-page-list ul.children li ul.children {
  margin-left: 20px;
}
.support-article__sidebar-nav .support-article__sidebar-page-list .current_page_item > a {
  color: var(--dp-red) !important;
}
.support-article__sidebar-nav .support-article__sidebar-page-list .current_page_item ul,
.support-article__sidebar-nav .support-article__sidebar-page-list .current_page_parent ul,
.support-article__sidebar-nav .support-article__sidebar-page-list .current_page_ancestor ul {
  display: block !important;
}
.support-article__sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #F2F2F2;
}
@media (max-width: 61.24em) {
  .support-article__sidebar-buttons {
    padding-bottom: 20px;
    margin-top: 30px;
  }
}
@media (min-width: 61.25em) {
  .support-article__sidebar-buttons {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-bottom: 60px;
  }
  .support-article__sidebar-buttons:before {
    display: block;
    content: "";
    width: 100%;
    height: 70px;
    background: linear-gradient(transparent, #F2F2F2 80%);
    position: absolute;
    bottom: 100%;
  }
}
.support-article__sidebar-video-links {
  display: flex;
  column-gap: 15px;
}
.support-article__sidebar-next, .support-article__sidebar-prev {
  width: 100%;
}
.support-article__sidebar-next, .support-article__sidebar-prev {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  padding: 8px 16px;
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.support-article__sidebar-next:hover, .support-article__sidebar-prev:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.support-article__page-content {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 61.25em) {
  .support-article__page-content {
    padding-bottom: 0;
    padding-left: 40px;
  }
}
.support-article__page-content-header {
  display: grid;
  align-items: start;
}
@media (max-width: 70.24em) {
  .support-article__page-content-header .support-article__page-content-buttons {
    margin-bottom: 40px;
  }
}
@media (min-width: 70.25em) {
  .support-article__page-content-header {
    grid-template-columns: 1fr minmax(min-content, 262px);
    column-gap: 20px;
  }
  .support-article__page-content-header .support-article__page-content-title {
    grid-column: 1;
    grid-row: 1;
  }
  .support-article__page-content-header .support-article__page-content-description {
    grid-column: 1;
    grid-row: 2;
  }
  .support-article__page-content-header .support-article__page-content-buttons {
    grid-column: 2;
    grid-row: 1/3;
  }
}
.support-article__page-content-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
}
.support-article__page-content-video-wistia {
  position: relative;
}
.support-article__page-content-video-wistia:before {
  display: block;
  content: "";
}
.support-article__page-content-video-wistia:before {
  padding-top: 55.6593977155%;
}
.support-article__page-content-video-wistia iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support-article__page-content-video-transcript {
  margin-top: 30px;
  margin-bottom: 0;
  padding: 10px 15px;
  background-color: #F2F2F2;
}
.support-article__page-content .support-article__pagination {
  margin-top: auto;
  padding-top: 40px;
}
@media (min-width: 45em) {
  .support-article__page-content .support-article__pagination {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
  }
}
.support-article__page-content .support-article__pagination span {
  background: url("data:image/svg+xml,%3csvg%20width='24'%20height='8'%20viewBox='0%200%2024%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.600647%203.64645C0.405386%203.84171%200.405386%204.15829%200.600647%204.35355L3.78263%207.53553C3.97789%207.7308%204.29447%207.7308%204.48973%207.53553C4.685%207.34027%204.685%207.02369%204.48973%206.82843L1.66131%204L4.48973%201.17157C4.685%200.976311%204.685%200.659728%204.48973%200.464466C4.29447%200.269204%203.97789%200.269204%203.78263%200.464466L0.600647%203.64645ZM23.0449%203.5L0.954201%203.5V4.5L23.0449%204.5V3.5Z'%20fill='%23A51A45'/%3e%3c/svg%3e");
  width: 24px;
  height: 8px;
  display: inline-block;
}
.support-article__page-content .support-article__pagination-next a, .support-article__page-content .support-article__pagination-prev a {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  color: var(--dp-red);
}
.support-article__page-content .support-article__pagination-next {
  margin-left: auto;
}
.support-article__page-content .support-article__pagination-next span {
  margin-left: 10px;
  transform: rotate(180deg);
}
.support-article__page-content .support-article__pagination-next a {
  text-align: right;
}
.support-article__page-content .support-article__pagination-prev span {
  margin-right: 10px;
}
.support-article__page-content .support-article__pagination-prev a {
  text-align: left;
}
.support-article__page-content .support-article__pagination a:hover {
  color: #000000;
}
.support-article__button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  padding: 8px 16px;
  color: var(--button-color, var(--dp-red));
  background-color: transparent;
  border: 2px solid var(--button-color, var(--dp-red));
}
.support-article__button:hover {
  background-color: var(--button-color, var(--dp-red));
  color: #FFFFFF;
}
.support-article-block-content {
  grid-column: 1/-1;
  padding-top: 50px;
}
.support-article-block-content__divider {
  padding-bottom: 55px;
}
@media (max-width: 44.99em) {
  .support-article-block-content > .block {
    margin-left: -16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .support-article-block-content > .block {
    margin-left: -28.8px;
  }
}
@media (min-width: 70.25em) {
  .support-article-block-content > .block {
    margin-left: -36px;
  }
}
@media (max-width: 44.99em) {
  .support-article-block-content > .block {
    margin-right: -16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .support-article-block-content > .block {
    margin-right: -28.8px;
  }
}
@media (min-width: 70.25em) {
  .support-article-block-content > .block {
    margin-right: -36px;
  }
}
.support-article {
  /*
   * Block overrides
   */
}
.support-article .block {
  width: 100%;
}
.support-article .block,
.support-article .block > * {
  padding-left: 0;
  padding-right: 0;
}
.support-article .block:first-of-type {
  padding-top: 0;
}
.support-article .block p {
  line-height: 30px;
}

.error-404 {
  text-align: center;
  color: #919191;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
.error-404__title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 8.75rem;
  line-height: 0.8571428571;
}
.error-404__subtitle {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 3rem;
}
.error-404__button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.error-404__button:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.error-404__button {
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
}

.blog-header {
  display: grid;
  min-height: 240px;
}
@media (min-width: 45em) {
  .blog-header {
    min-height: 300px;
  }
}
.blog-header--has-featured-image {
  grid-template-rows: 50px auto 50px;
  overflow: hidden;
}
.blog-header--has-featured-image .blog-header__banner {
  grid-column: 1/2;
  grid-row: 2/3;
  padding-top: 25px;
  padding-bottom: 25px;
}
.blog-header--has-featured-image .blog-header__banner:before {
  opacity: 0.8;
}
.blog-header--background-color-black .blog-header__banner:before {
  background-color: var(--dp-black);
}
.blog-header--background-color-white .blog-header__banner:before {
  background-color: #FFFFFF;
}
.blog-header--text-color-black {
  color: var(--dp-black);
}
.blog-header--text-color-white {
  color: #FFFFFF;
}
.blog-header__featured-image {
  position: relative;
}
.blog-header__featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.blog-header__featured-image {
  grid-column: 1/2;
  grid-row: 1/-1;
  z-index: -1;
}
.blog-header__banner {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 45em) {
  .blog-header__banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.blog-header__banner:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.blog-header__banner-container {
  max-width: 911px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .blog-header__banner-container {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .blog-header__banner-container {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .blog-header__banner-container {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .blog-header__banner-container {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .blog-header__banner-container {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .blog-header__banner-container {
    padding-right: 36px;
  }
}
.blog-header__banner-container {
  width: 100%;
}
.blog-header__banner-date, .blog-header__banner-title, .blog-header__banner-author {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.blog-header__banner-date, .blog-header__banner-author {
  font-size: 1.25rem;
  line-height: 1.25;
}
.blog-header__banner-title {
  font-size: 2rem;
  line-height: 1.25;
  margin-top: 15px;
  margin-bottom: 15px;
}

.case-study-header__featured-image {
  position: relative;
}
.case-study-header__featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.case-study-header__featured-image {
  height: 200px;
}
@media (min-width: 45em) {
  .case-study-header__featured-image {
    height: 280px;
  }
}
@media (min-width: 70.25em) {
  .case-study-header__featured-image {
    height: 355px;
  }
}
.case-study-header__banner {
  padding-top: 46px;
  padding-bottom: 46px;
  background-color: var(--dp-red);
  text-align: center;
}
.case-study-header__banner-container {
  max-width: 911px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .case-study-header__banner-container {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .case-study-header__banner-container {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .case-study-header__banner-container {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .case-study-header__banner-container {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .case-study-header__banner-container {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .case-study-header__banner-container {
    padding-right: 36px;
  }
}
.case-study-header__banner-category, .case-study-header__banner-title {
  color: #FFFFFF;
}
.case-study-header__banner-category {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.75rem;
  line-height: 1.4285714286;
}
.case-study-header__banner-title {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.875rem;
  line-height: 1.6;
  padding-bottom: 0px;
}
.case-study-header__banner-button {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, #FFFFFF);
}
.case-study-header__banner-button:hover {
  background-color: var(--button-color--hovered, #FFFFFF);
  border-color: var(--button-color--hovered, #FFFFFF);
}
.case-study-header__banner-button:hover {
  color: var(--button-color, var(--dp-red));
}
.case-study-header__banner-button {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  padding: 8px 16px;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  border-width: 1px;
  padding: 10px 40px;
  text-transform: uppercase;
}
.case-study-header__banner-button span {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.case-study-header__banner-button span svg {
  margin-right: 8px;
}
.case-study-header__banner-button:hover svg path {
  fill: var(--dp-red);
  stroke: var(--dp-red);
}

.case-study-primary-contact {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #F2F2F2;
}

.case-study-content {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.875;
  padding-top: 50px;
  padding-bottom: 50px;
}
.case-study-content p {
  margin-bottom: 30px;
}
.case-study-content p a {
  color: var(--dp-red);
}

.case-study-news__title {
  max-width: 1362px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 44.99em) {
  .case-study-news__title {
    padding-left: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .case-study-news__title {
    padding-left: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .case-study-news__title {
    padding-left: 36px;
  }
}
@media (max-width: 44.99em) {
  .case-study-news__title {
    padding-right: 16.2px;
  }
}
@media (min-width: 45em) and (max-width: 70.24em) {
  .case-study-news__title {
    padding-right: 28.8px;
  }
}
@media (min-width: 70.25em) {
  .case-study-news__title {
    padding-right: 36px;
  }
}

.single-team .single-case-study {
  max-width: 911px;
  margin-left: auto;
  margin-right: auto;
}
.single-team .single-case-study__names {
  margin: 0;
}
.single-team .single-case-study__names h1 {
  font-size: 2.25rem;
}
.single-team .single-team-member {
  padding-top: 50px;
  padding-bottom: 50px;
}
.single-team .single-team-member__social-media {
  margin-top: 30px;
  padding-left: 0;
  list-style: none;
  padding-left: 0 !important;
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}
.single-team .single-team-member__social-media li {
  display: flex;
  align-items: center;
}
.single-team .single-team-member__social-media li:before {
  content: none !important;
}
.single-team .single-team-member__social-media li svg {
  width: 20px;
  fill: #626262;
}
.single-team .single-team-member__social-media li svg path {
  fill: #626262;
}

.login-intro,
.support-hub-login-intro {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: 1fr 1.5fr;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 50px;
  grid-template-areas: "banner banner" "title  title" "cta    promo";
  padding-top: 25px;
}
@media (max-width: 61.24em) {
  .login-intro,
  .support-hub-login-intro {
    column-gap: 0;
    grid-template-rows: 3fr;
    grid-template-columns: 1fr;
    grid-template-areas: "banner" "title" "cta" "promo";
  }
}
.login-intro__top-banner,
.support-hub-login-intro__top-banner {
  width: 100%;
  grid-area: banner;
}
.login-intro__top-banner img,
.support-hub-login-intro__top-banner img {
  margin: auto;
}
.login-intro__title,
.support-hub-login-intro__title {
  grid-area: title;
}
.login-intro__title .title-block,
.support-hub-login-intro__title .title-block {
  --block-padding__top-default: 25px;
}
.login-intro__title .title-block__content,
.support-hub-login-intro__title .title-block__content {
  padding-left: 0;
  padding-right: 0;
}
.login-intro__title .dividing-line,
.support-hub-login-intro__title .dividing-line {
  --block-padding__top-default: 0;
  --block-padding__bottom-default: 0;
}
.login-intro__title .dividing-line__divider,
.support-hub-login-intro__title .dividing-line__divider {
  padding-left: 0;
  padding-right: 0;
}
.login-intro__cta,
.support-hub-login-intro__cta {
  box-shadow: 1px 9px 16px 6px rgba(0, 0, 0, 0.09);
  padding: 20px;
  grid-area: cta;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  justify-content: center;
  text-align: center;
}
.login-intro__login-btn,
.support-hub-login-intro__login-btn {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 14px 24px;
  color: #FFFFFF;
  background-color: var(--button-color, var(--dp-red));
  border: 2px solid var(--button-color, var(--dp-red));
}
.login-intro__login-btn:hover,
.support-hub-login-intro__login-btn:hover {
  background-color: var(--button-color--hovered, var(--dp-red--darkened));
  border-color: var(--button-color--hovered, var(--dp-red--darkened));
}
.login-intro__login-btn,
.support-hub-login-intro__login-btn {
  font-size: 1rem;
  line-height: 1;
  padding: 16px 36px;
  text-transform: uppercase;
}
.login-intro__logo,
.support-hub-login-intro__logo {
  width: 200px;
}
.login-intro__logo svg,
.support-hub-login-intro__logo svg {
  width: 100%;
  height: 100%;
}
.login-intro__content,
.support-hub-login-intro__content {
  padding: 0 50px;
}
.login-intro__promo,
.support-hub-login-intro__promo {
  grid-area: promo;
}
.login-intro__promo-video iframe,
.support-hub-login-intro__promo-video iframe {
  width: 100%;
}

.login-intro--support-hub {
  justify-content: center;
  grid-template-rows: auto;
  grid-template-columns: auto;
  flex-wrap: wrap;
  grid-template-areas: "cta";
  padding-top: 25px;
}
@media (max-width: 61.24em) {
  .login-intro--support-hub {
    column-gap: 0;
  }
}
.login-intro--support-hub .login-intro__cta {
  max-width: 550px;
}

#cookiefirst-policy-page {
  padding-top: var(--block-padding__medium);
}
#cookiefirst-policy-page p, #cookiefirst-policy-page h2 {
  margin-bottom: 20px;
}
#cookiefirst-policy-page h2 {
  font-size: 1.375rem;
}
@media (min-width: 61.25em) {
  #cookiefirst-policy-page h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
#cookiefirst-policy-page h3 {
  font-size: 1.125rem;
  font-weight: 500;
}
@media (min-width: 61.25em) {
  #cookiefirst-policy-page h3 {
    font-size: 1.25rem;
  }
}
#cookiefirst-policy-page + div {
  padding-bottom: var(--block-padding__medium);
}

.archive .blog-listings {
  padding-top: 50px;
  padding-bottom: 50px;
}
.archive .nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.archive .nav-links a.page-numbers {
  font-weight: 500;
  color: var(--dp-red);
}