/* ----------------------------------------------------------------------------------
Artlogic Aspect 2

We use responsive.css so we need less hacky overrides.
---------------------------------------------------------------------------------- */
/**
 * Fluid
 * A responsive function that interpolates between a minimum and maximum value based on the viewport width.
 * The function uses a linear equation to interpolate and clamps the output to stay within the specified range.
 * @function fluid
 * @access public
 * @param {Number} $min-px - The minimum value for the output in pixels.
 * @param {Number} $max-px - The maximum value for the output in pixels.
 * @param {Number} [$breakpoint-min-px: 320] - The minimum viewport width in pixels where the output starts to change.
 * @param {Number} [$breakpoint-max-px: 1660] - The maximum viewport width in pixels where the output stops changing.
 * @return {String} - The interpolated and clamped CSS value.
 * @example
 * // If the viewport width is 320px, the output will be 1.6rem (16px). If the viewport width is 1660px, the output will be 2.4rem (24px).
 * // For viewport widths between 320px and 1660px, the output will linearly interpolate between 1.6rem (16px) and 2.4rem (24px).
 * font-size: fluid(1.6, 2.4);
 * @throws {Error} If $min is not a number, or if $max is not a number, or if $breakpoint-min-px is not a number, or if $breakpoint-max-px is not a number.
*/
/**
 * Fluid
 * A responsive function that interpolates between a minimum and maximum value based on the viewport width.
 * The function uses a linear equation to interpolate and clamps the output to stay within the specified range.
 * @function fluid
 * @access public
 * @param {Number} $min-px - The minimum value for the output in pixels.
 * @param {Number} $max-px - The maximum value for the output in pixels.
 * @param {Number} [$breakpoint-min-px: 320] - The minimum viewport width in pixels where the output starts to change.
 * @param {Number} [$breakpoint-max-px: 1660] - The maximum viewport width in pixels where the output stops changing.
 * @return {String} - The interpolated and clamped CSS value.
 * @example
 * // If the viewport width is 320px, the output will be 1.6rem (16px). If the viewport width is 1660px, the output will be 2.4rem (24px).
 * // For viewport widths between 320px and 1660px, the output will linearly interpolate between 1.6rem (16px) and 2.4rem (24px).
 * font-size: fluid(1.6, 2.4);
 * @throws {Error} If $min is not a number, or if $max is not a number, or if $breakpoint-min-px is not a number, or if $breakpoint-max-px is not a number.
*/
/**
 * @mixin set-typography-vars
 * Sets typography-related CSS custom properties for a given primary prefix and, optionally, a fallback prefix.
 *
 * @param {String} $primary-prefix - The primary prefix used for the custom properties.
 * @param {String} [$fallback-prefix=null] - The optional fallback prefix used for the custom properties.
 * @param {String} [$font-family-default=null] - The default font-family value.
 * @param {String} [$font-size-default=null] - The default font-size value.
 * @param {String} [$line-height-default=null] - The default line-height value.
 * @param {String} [$font-weight-default=null] - The default font-weight value.
 * @param {String} [$text-transform-default=null] - The default text-transform value.
 * @param {String} [$color-default=null] - The default color value.
 * @param {Boolean} [$important=false] - Whether to append !important to the generated CSS declarations.
 */
/**
 * Fluid
 * A responsive function that interpolates between a minimum and maximum value based on the viewport width.
 * The function uses a linear equation to interpolate and clamps the output to stay within the specified range.
 * @function fluid
 * @access public
 * @param {Number} $min-px - The minimum value for the output in pixels.
 * @param {Number} $max-px - The maximum value for the output in pixels.
 * @param {Number} [$breakpoint-min-px: 320] - The minimum viewport width in pixels where the output starts to change.
 * @param {Number} [$breakpoint-max-px: 1660] - The maximum viewport width in pixels where the output stops changing.
 * @return {String} - The interpolated and clamped CSS value.
 * @example
 * // If the viewport width is 320px, the output will be 1.6rem (16px). If the viewport width is 1660px, the output will be 2.4rem (24px).
 * // For viewport widths between 320px and 1660px, the output will linearly interpolate between 1.6rem (16px) and 2.4rem (24px).
 * font-size: fluid(1.6, 2.4);
 * @throws {Error} If $min is not a number, or if $max is not a number, or if $breakpoint-min-px is not a number, or if $breakpoint-max-px is not a number.
*/
/**
 * @mixin set-margin-vars
 * Sets margin-related CSS custom properties for a given prefix and assigns them to the margin property.
 *
 * @param {String} $prefix - The prefix used for the custom properties.
 * @param {*} [$my=null] - The margin value for the top and bottom.
 * @param {*} [$mx=null] - The margin value for the left and right.
 * @param {*} [$mt=null] - The margin value for the top.
 * @param {*} [$mr=null] - The margin value for the right.
 * @param {*} [$mb=null] - The margin value for the bottom.
 * @param {*} [$ml=null] - The margin value for the left.
 * @param {*} [$my-default=0] - The default margin value for the top and bottom.
 * @param {*} [$mx-default=0] - The default margin value for the left and right.
 * @param {*} [$mt-default=0] - The default margin value for the top.
 * @param {*} [$mr-default=0] - The default margin value for the right.
 * @param {*} [$mb-default=0] - The default margin value for the bottom.
 * @param {*} [$ml-default=0] - The default margin value for the left.
 * @param {Boolean} [$important=false] - Whether to append !important to the generated CSS declaration.
 */
/**
* Sets custom padding variables for an element using CSS variables.
* @param {string} $prefix - The prefix to use for the CSS variable names.
* @param {number} [$py=null] - The padding value for top and bottom sides.
* @param {number} [$px=null] - The padding value for left and right sides.
* @param {number} [$pt=null] - The padding value for the top side.
* @param {number} [$pr=null] - The padding value for the right side.
* @param {number} [$pb=null] - The padding value for the bottom side.
* @param {number} [$pl=null] - The padding value for the left side.
* @param {number} [$py-default=0] - The default padding value for top and bottom sides.
* @param {number} [$px-default=0] - The default padding value for left and right sides.
* @param {number} [$pt-default=0] - The default padding value for the top side.
* @param {number} [$pr-default=0] - The default padding value for the right side.
* @param {number} [$pb-default=0] - The default padding value for the bottom side.
* @param {number} [$pl-default=0] - The default padding value for the left side.
* @param {boolean} [$important=false] - Whether to use "!important" modifier for the CSS "padding" property.
*/
/**
 * @mixin set-var
 * Sets a single CSS custom property for a given primary prefix and, optionally, a fallback prefix.
 *
 * @param {String} $property - The CSS property to set.
 * @param {String} $primary-prefix - The primary prefix used for the custom property.
 * @param {String} [$fallback-prefix=null] - The optional fallback prefix used for the custom property.
 * @param {String} [$var-name=null] - The custom property name, if different from the CSS property.
 * @param {*} [$default=null] - The default value for the custom property.
 * @param {Boolean} [$important=false] - Whether to append !important to the generated CSS declaration.
 */
.c-button a,
.c-button span, button > a, .panel_text.panel_content_alignment_center .link a, .description .button,
.prose .button, .feature_panels .link > span:not(.button_loader), .panel_text.panel_content_alignment_center .link a > span:not(.button_loader), .button--is-large.link-to-button > span:not(.button_loader),
.feature_panels .link > a,
.records_list .link span > a,
.button--is-large.link-to-button > a, .full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button, body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span, .button--is-large a, .panel_consultants .category-tag.button > a,
.panel_consultants .category-tag.button > span, .panel_type_4011 .feature-slider-nav .button > span, div.arprompt .arpromptbuttons button, .records_list .link span, .button--is-small a, .button > span {
  padding: var(--button-pt, var(--button-py, var(--space-xs))) var(--button-pr, var(--button-px, var(--space-m))) var(--button-pb, var(--button-py, var(--space-xs))) var(--button-pl, var(--button-px, var(--space-m))) !important;
  font-family: var(--button-font-family , var(--base-font-family)) !important;
  font-size: var(--button-font-size , var(--step-0)) !important;
  line-height: var(--button-line-height , var(--leading-normal)) !important;
  font-weight: var(--button-font-weight , var(--base-font-weight)) !important;
  text-transform: var(--button-text-transform , inherit) !important;
  color: var(--button-color , var(--base-color)) !important;
  border-radius: var(--button-border-radius, 0);
  border: var(--button-border, unset);
  background: var(--button-background-color, transparent);
  transition: var(--button-transition, var(--transition));
}
.c-button a:hover,
.c-button span:hover, button > a:hover, .panel_text.panel_content_alignment_center .link a:hover, .description .button:hover,
.prose .button:hover, .feature_panels .link > span:hover:not(.button_loader), .panel_text.panel_content_alignment_center .link a > span:hover:not(.button_loader), .button--is-large.link-to-button > span:hover:not(.button_loader),
.feature_panels .link > a:hover,
.records_list .link span > a:hover, .full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button:hover, body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span:hover,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span:hover, .button--is-large a:hover, .panel_consultants .category-tag.button > a:hover,
.panel_consultants .category-tag.button > span:hover, .panel_type_4011 .feature-slider-nav .button > span:hover, div.arprompt .arpromptbuttons button:hover, .records_list .link span:hover, .button--is-small a:hover, .button > span:hover, .c-button a:active,
.c-button span:active, button > a:active, .panel_text.panel_content_alignment_center .link a:active, .description .button:active,
.prose .button:active, .feature_panels .link > span:active:not(.button_loader), .panel_text.panel_content_alignment_center .link a > span:active:not(.button_loader), .button--is-large.link-to-button > span:active:not(.button_loader),
.feature_panels .link > a:active,
.records_list .link span > a:active, .full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button:active, body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span:active,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span:active, .button--is-large a:active, .panel_consultants .category-tag.button > a:active,
.panel_consultants .category-tag.button > span:active, .panel_type_4011 .feature-slider-nav .button > span:active, div.arprompt .arpromptbuttons button:active, .records_list .link span:active, .button--is-small a:active, .button > span:active, .c-button a:focus,
.c-button span:focus, button > a:focus, .panel_text.panel_content_alignment_center .link a:focus, .description .button:focus,
.prose .button:focus, .feature_panels .link > span:focus:not(.button_loader), .panel_text.panel_content_alignment_center .link a > span:focus:not(.button_loader), .button--is-large.link-to-button > span:focus:not(.button_loader),
.feature_panels .link > a:focus,
.records_list .link span > a:focus, .full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button:focus, body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span:focus,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span:focus, .button--is-large a:focus, .panel_consultants .category-tag.button > a:focus,
.panel_consultants .category-tag.button > span:focus, .panel_type_4011 .feature-slider-nav .button > span:focus, div.arprompt .arpromptbuttons button:focus, .records_list .link span:focus, .button--is-small a:focus, .button > span:focus {
  color: var(--button-focus-color, var(--button-color)) !important;
  background: var(--button-focus-background-color, var(--button-background-color)) !important;
  border: var(--button-focus-border, var(--button-border)) !important;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  --records-list-display: flex;
  backface-visibility: hidden;
  display: flex !important;
  flex-wrap: nowrap !important;
  height: 100%;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__pagination__page {
  width: var(--space-l);
  height: 0.1rem;
  background: var(--base-100);
}
.splide__pagination__page.is-active {
  background: var(--base-700);
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

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

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.layout-animation-enabled .splide .records_list:not(#slideshow) ul li {
  transform: none !important;
  opacity: 1;
}

.splide__arrows {
  display: flex;
  gap: var(--space-m);
}

.splide__arrow {
  color: var(--text-primary);
  padding: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all var(--easing);
  border-radius: 50rem;
  pointer-events: all;
  opacity: 0.75;
}
@media only screen and (max-width: 1180px) {
  .splide__arrow {
    padding: var(--space-2xs);
  }
}
.splide__arrow:hover {
  cursor: pointer;
  opacity: 1;
}
.splide__arrow svg {
  width: var(--space-s);
  height: var(--space-s);
}
@media only screen and (max-width: 1180px) {
  .splide__arrow svg {
    width: var(--space-m);
    height: var(--space-m);
  }
}

.splide__slide {
  --list-item-width: 100%;
}

.splide:not(.is-overflow) .splide__track {
  padding: var(--splide__track-pt, var(--splide__track-py, 0)) var(--splide__track-pr, var(--splide__track-px, 0)) var(--splide__track-pb, var(--splide__track-py, 0)) var(--splide__track-pl, var(--splide__track-px, 0)) !important;
  --splide-track-max-width: var(--CONTAINER-WIDTH);
  --splide__track-py: 0;
  --splide__track-px: var(--CONTAINER-PADDING);
  max-width: var(--splide-track-max-width);
  margin-left: auto;
  margin-right: auto;
}
.splide:not(.is-overflow) .splide__slide {
  --list-item-width: 33%;
}
@media only screen and (max-width: 767px) {
  .splide:not(.is-overflow) .splide__slide {
    --list-item-width: 50%;
  }
}
@media only screen and (max-width: 459px) {
  .splide:not(.is-overflow) .splide__slide {
    --list-item-width: 100%;
  }
}

@keyframes link-underline {
  0% {
    transform: scaleX(100%);
    transform-origin: center right;
  }
  50% {
    transform: scaleX(0);
    transform-origin: center right;
  }
  51% {
    transform-origin: center left;
  }
  100% {
    transform-origin: center left;
    transform: scaleX(100%);
  }
}
/**
 * Fluid
 * A responsive function that interpolates between a minimum and maximum value based on the viewport width.
 * The function uses a linear equation to interpolate and clamps the output to stay within the specified range.
 * @function fluid
 * @access public
 * @param {Number} $min-px - The minimum value for the output in pixels.
 * @param {Number} $max-px - The maximum value for the output in pixels.
 * @param {Number} [$breakpoint-min-px: 320] - The minimum viewport width in pixels where the output starts to change.
 * @param {Number} [$breakpoint-max-px: 1660] - The maximum viewport width in pixels where the output stops changing.
 * @return {String} - The interpolated and clamped CSS value.
 * @example
 * // If the viewport width is 320px, the output will be 1.6rem (16px). If the viewport width is 1660px, the output will be 2.4rem (24px).
 * // For viewport widths between 320px and 1660px, the output will linearly interpolate between 1.6rem (16px) and 2.4rem (24px).
 * font-size: fluid(1.6, 2.4);
 * @throws {Error} If $min is not a number, or if $max is not a number, or if $breakpoint-min-px is not a number, or if $breakpoint-max-px is not a number.
*/
:root {
  --ani-in-base: 800ms;
  --ani-in-delay-base: 150ms;
  --ani-in-delay-increment: 200ms;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(7.5rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-7.5rem, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(-7.5rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(7.5rem, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 7.5rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 7.5rem, 0);
  }
}
/* Some helpful classes for sequential animation, ported from old site */
.inview_element.inview_no_ani,
.inview_element.ani-group {
  opacity: 1 !important;
  transform: none !important;
}

.ani-group .ani-in,
.content_slideshow .inview_element.visible .item:not(.cycle-slide-active) .ani-group .ani-in {
  opacity: 0;
  transform: translateY(var(--space-3xl));
  transition: transform 300ms ease-in, opacity 300ms ease-in;
}

.animate-from-top .ani-group .ani-in,
.ani-group.animate-from-top .ani-in,
.content_slideshow .inview_element.visible.animate-from-top .item:not(.cycle-slide-active) .ani-group .ani-in {
  transform: translateY(calc(0px - var(--space-3xl)));
}

.inview_element.visible .ani-group .ani-in,
.inview_element.visible.ani-group .ani-in,
.splide__slide.is-visible .ani-group .ani-in {
  opacity: 1;
  transform: translateY(0);
  transition: transform var(--ani-in-base) cubic-bezier(0, 0, 0.2, 1), opacity var(--ani-in-base) cubic-bezier(0, 0, 0.2, 1);
}

.inview_element.visible .ani-group .ani-in:first-child {
  /* basic bitch */
}

.inview_element.visible .ani-group .ani-in:nth-child(2),
.inview_element.visible.ani-group .ani-in:nth-child(2),
.splide__slide.is-visible .ani-group .ani-in:nth-child(2) {
  -webkit-transition-delay: var(--ani-in-delay-base);
  transition-delay: var(--ani-in-delay-base);
}

.inview_element.visible .ani-group .ani-in:nth-child(3),
.inview_element.visible.ani-group .ani-in:nth-child(3),
.splide__slide.is-visible .ani-group .ani-in:nth-child(3) {
  -webkit-transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 1);
  transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 1);
}

.inview_element.visible .ani-group .ani-in:nth-child(4),
.inview_element.visible.ani-group .ani-in:nth-child(4),
.splide__slide.is-visible .ani-group .ani-in:nth-child(4) {
  -webkit-transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 2);
  transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 2);
}

.inview_element.visible .ani-group .ani-in:nth-child(5),
.inview_element.visible.ani-group .ani-in:nth-child(5),
.splide__slide.is-visible .ani-group .ani-in:nth-child(5) {
  -webkit-transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 3);
  transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 3);
}

.inview_element.visible .ani-group .ani-in:nth-child(6),
.inview_element.visible.ani-group .ani-in:nth-child(6),
.splide__slide.is-visible .ani-group .ani-in:nth-child(6) {
  -webkit-transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 4);
  transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 4);
}

.inview_element.visible .ani-group .ani-in:nth-child(7),
.inview_element.visible.ani-group .ani-in:nth-child(7),
.splide__slide.is-visible .ani-group .ani-in:nth-child(7) {
  -webkit-transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 5);
  transition-delay: calc(var(--ani-in-delay-base) + var(--ani-in-delay-increment) * 5);
}

a:visited {
  color: initial;
}

.compare-button-wrapper a, .link {
  display: flex;
  text-decoration: none;
}
.compare-button-wrapper a > span, .link > span,
.compare-button-wrapper a > a,
.link > a {
  position: relative;
  display: inline-block;
}
.compare-button-wrapper a > span::after, .link > span::after,
.compare-button-wrapper a > a::after,
.link > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid currentColor;
  left: 0;
  width: 100%;
  transform: scaleX(100%);
}
.compare-button-wrapper a > span:hover::after, .link > span:hover::after,
.compare-button-wrapper a > a:hover::after,
.link > a:hover::after {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}

.link--has-icon {
  --_icon-transform: translateX(0);
}
.link--has-icon > span,
.link--has-icon > a {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}
.link--has-icon > span::after,
.link--has-icon > a::after {
  border-bottom: unset;
  transform: var(--_icon-transform, none) !important;
  transform-origin: center !important;
  position: relative;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.55em;
  height: 0.55em;
  transition: 0.3s all var(--easing);
  animation: initial !important;
}
.link--has-icon-chevron-right > span::after,
.link--has-icon-chevron-right > a::after {
  background-image: var(--ICON-CHEVRON-RIGHT-DARK);
}
.link--has-icon-chevron-right:hover {
  --_icon-transform: translateX(5px);
}
.link--has-icon-chevron-left {
  --_icon-transform: rotate(180deg);
}
.link--has-icon-chevron-left > span,
.link--has-icon-chevron-left > a {
  flex-direction: row-reverse;
}
.link--has-icon-chevron-left > span::after,
.link--has-icon-chevron-left > a::after {
  background-image: var(--ICON-CHEVRON-RIGHT-DARK);
}
.link--has-icon-chevron-left:hover {
  --_icon-transform: rotate(180deg) translateX(5px);
}

a:hover .link--has-icon-chevron-right {
  --_icon-transform: translateX(5px);
}

a:hover .link--has-icon-chevron-left {
  --_icon-transform: rotate(180deg) translateX(5px);
}

.roomview-button-custom a {
  position: relative;
  display: inline-block;
}
.roomview-button-custom a::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid currentColor;
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.roomview-button-custom a:hover::after {
  transform: scaleX(100%);
}

.prose .link,
.mceContentBody .link,
.content_section .link,
.detail_view_module:not(.secondary_images) .link,
.scroll_section .content_module .link,
#bio .link,
.subsection-news-record #content_module .link,
.subsection-video-record #content_module .link,
.subsection-store-record #content_module .link,
.description .link,
.panel_type_11 .content_columns .link,
.panel_type_11 .content_full .link,
#publications_text .link,
#cookie_notification_message .link {
  display: inline-block;
}

/* Buttons
----------------------------------------------------------- */
:root {
  --button-font-size: var(--step--1_5);
  --button-line-height: var(--leading-tight);
  --button-color: var(--text-primary-invert);
  --button-background-color: var(--text-primary);
  --button-border-radius: 0;
  --button-border: 0;
  --button-font-family: "JetBrainsMono";
  --button-font-weight: 500;
  --button-text-transform: uppercase;
  --button-focus-color: var(--text-primary-invert);
  --button-focus-background-color: var(--blue);
  --button-py: var(--space-l);
  --button-px: var(--space-2xl);
  --button-secondary-color: var(--text-primary);
  --button-secondary-background-color: transparent;
  --button-secondary-focus-color: var(--text-primary);
  --button-secondary-focus-background-color: #d5cecc;
}

.panel_text.panel_content_alignment_center .link a, .description .button,
.prose .button, .c-button a,
.c-button span, .feature_panels .link > span:not(.button_loader), .panel_text.panel_content_alignment_center .link a > span:not(.button_loader), .button--is-large.link-to-button > span:not(.button_loader),
.feature_panels .link > a,
.records_list .link span > a,
.button--is-large.link-to-button > a, .full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button, body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span, .button--is-large a, .panel_consultants .category-tag.button > a,
.panel_consultants .category-tag.button > span, .panel_type_4011 .feature-slider-nav .button > span, div.arprompt .arpromptbuttons button, .records_list .link span, .button--is-small a, .button > span {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  float: none;
  white-space: nowrap;
  gap: var(--space-l);
}
.panel_text.panel_content_alignment_center .link a > a, .description .button > a,
.prose .button > a, .c-button a > a,
.c-button span > a, .feature_panels .link > span:not(.button_loader) > a, .panel_text.panel_content_alignment_center .link a > span:not(.button_loader) > a, .records_list .link span > span:not(.button_loader) > a, .button--is-large.link-to-button > span:not(.button_loader) > a,
.feature_panels .link > a > a,
.panel_text.panel_content_alignment_center .link a > a > a,
.records_list .link span > a > a,
.button--is-large.link-to-button > a > a, .full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button > a, body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span > a,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span > a, .button--is-large a > a, .panel_consultants .category-tag.button > a > a,
.panel_consultants .category-tag.button > span > a, .panel_type_4011 .feature-slider-nav .button > span > a, div.arprompt .arpromptbuttons button > a, .records_list .link span > a, .button--is-small a > a, .button > span > a,
.panel_text.panel_content_alignment_center .link a > span,
.description .button > span,
.prose .button > span,
.c-button a > span,
.c-button span > span,
.feature_panels .link > span:not(.button_loader) > span,
.panel_text.panel_content_alignment_center .link a > span:not(.button_loader) > span,
.records_list .link span > span:not(.button_loader) > span,
.button--is-large.link-to-button > span:not(.button_loader) > span,
.feature_panels .link > a > span,
.panel_text.panel_content_alignment_center .link a > a > span,
.records_list .link span > a > span,
.button--is-large.link-to-button > a > span,
.full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button > span,
body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span > span,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span > span,
.button--is-large a > span,
.panel_consultants .category-tag.button > a > span,
.panel_consultants .category-tag.button > span > span,
.panel_type_4011 .feature-slider-nav .button > span > span,
div.arprompt .arpromptbuttons button > span,
.records_list .link span > span,
.button--is-small a > span,
.button > span > span {
  float: none;
}

.button:hover .button-icon * {
  fill: var(--button-focus-color);
}

.button-icon {
  height: 0.9em;
  width: 0.9em;
  margin-left: 1ch;
}
.button-icon * {
  transition: var(--transition);
  fill: var(--button-color);
}

.panel_consultants .category-tag.button > a,
.panel_consultants .category-tag.button > span, .panel_type_4011 .feature-slider-nav .button > span, div.arprompt .arpromptbuttons button, .records_list .link span, .button--is-small a {
  --button-py: var(--space-s);
  --button-px: var(--space-l);
}
@media only screen and (max-width: 767px) {
  .panel_consultants .category-tag.button > a,
  .panel_consultants .category-tag.button > span, .panel_type_4011 .feature-slider-nav .button > span, div.arprompt .arpromptbuttons button, .records_list .link span, .button--is-small a {
    --button-px: var(--space-m);
  }
}

.full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button, body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span, .button--is-large a {
  --button-py: var(--space-l);
  min-width: 160px;
}
@media only screen and (max-width: 767px) {
  .full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button .submit_button, body.section-news.page-news #container .featured-list-container .records_list ul li .content .button > span,
  body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button > span, .button--is-large a {
    min-width: 130px;
  }
}

.feature_panels .link::after, .panel_text.panel_content_alignment_center .link a::after, .records_list .link span::after, .button--is-large.link-to-button::after {
  content: unset;
}

.c-button--fullWidth {
  width: 100%;
}
.c-button--fullWidth a,
.c-button--fullWidth span {
  width: 100%;
}

.c-button__icon {
  width: var(--space-m);
  height: var(--space-m);
}

.button {
  transition: var(--transition);
}

.button--is-secondary {
  --button-color: var(--button-secondary-color);
  --button-background-color: var(--button-secondary-background-color);
  --button-focus-color: var(--button-secondary-focus-color);
  --button-focus-background-color: var(--button-secondary-focus-background-color);
}

.megamenu__buttons .button, .button--is-fullwidth {
  width: 100%;
}
.megamenu__buttons .button > a, .button--is-fullwidth > a {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.button--is-outline {
  --button-color: var(--text-primary);
  --button-background-color: transparent;
  --button-border: 1px solid var(--border-color);
  --button-focus-color: var(--text-primary-invert);
  --button-focus-background-color: var(--black);
  --button-focus-border: 1px solid var(--button-focus-background-color);
}

.button__blue {
  --button-background-color: var(--blue);
  --button-focus-background-color: var(--black);
}

.description .button,
.prose .button {
  text-decoration: none;
  margin-bottom: 0.75em;
}

.columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5xl) 0;
}
.columns--three-col {
  grid-template-columns: repeat(3, 1fr);
}

.column {
  --_px: var(--column-padding, var(--space-l));
  padding-left: var(--_px);
  padding-right: var(--_px);
}

.columns--narrow {
  --column-padding: var(--space-0-2xl);
}

.prose,
.mceContentBody,
.content_section,
.detail_view_module:not(.secondary_images),
.scroll_section .content_module,
#bio,
.subsection-news-record #content_module,
.subsection-video-record #content_module,
.subsection-store-record #content_module,
.description,
.panel_type_11 .content_columns,
.panel_type_11 .content_full,
#publications_text,
#cookie_notification_message {
  --prose-blockquote-font-size: var(--step-5);
  --prose-blockquote-color: var(--text-primary);
}
.prose :where(blockquote):not(:where([class~=not-prose] *)),
.mceContentBody :where(blockquote):not(:where([class~=not-prose] *)),
.content_section :where(blockquote):not(:where([class~=not-prose] *)),
.detail_view_module:not(.secondary_images) :where(blockquote):not(:where([class~=not-prose] *)),
.scroll_section .content_module :where(blockquote):not(:where([class~=not-prose] *)),
#bio :where(blockquote):not(:where([class~=not-prose] *)),
.subsection-news-record #content_module :where(blockquote):not(:where([class~=not-prose] *)),
.subsection-video-record #content_module :where(blockquote):not(:where([class~=not-prose] *)),
.subsection-store-record #content_module :where(blockquote):not(:where([class~=not-prose] *)),
.description :where(blockquote):not(:where([class~=not-prose] *)),
.panel_type_11 .content_columns :where(blockquote):not(:where([class~=not-prose] *)),
.panel_type_11 .content_full :where(blockquote):not(:where([class~=not-prose] *)),
#publications_text :where(blockquote):not(:where([class~=not-prose] *)),
#cookie_notification_message :where(blockquote):not(:where([class~=not-prose] *)) {
  padding-left: 0;
  border-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 1.3em;
  margin-bottom: 1.3em;
  font-style: normal;
}
.prose :where(blockquote):not(:where([class~=not-prose] *))::before, .prose :where(blockquote):not(:where([class~=not-prose] *))::after,
.mceContentBody :where(blockquote):not(:where([class~=not-prose] *))::before,
.mceContentBody :where(blockquote):not(:where([class~=not-prose] *))::after,
.content_section :where(blockquote):not(:where([class~=not-prose] *))::before,
.content_section :where(blockquote):not(:where([class~=not-prose] *))::after,
.detail_view_module:not(.secondary_images) :where(blockquote):not(:where([class~=not-prose] *))::before,
.detail_view_module:not(.secondary_images) :where(blockquote):not(:where([class~=not-prose] *))::after,
.scroll_section .content_module :where(blockquote):not(:where([class~=not-prose] *))::before,
.scroll_section .content_module :where(blockquote):not(:where([class~=not-prose] *))::after,
#bio :where(blockquote):not(:where([class~=not-prose] *))::before,
#bio :where(blockquote):not(:where([class~=not-prose] *))::after,
.subsection-news-record #content_module :where(blockquote):not(:where([class~=not-prose] *))::before,
.subsection-news-record #content_module :where(blockquote):not(:where([class~=not-prose] *))::after,
.subsection-video-record #content_module :where(blockquote):not(:where([class~=not-prose] *))::before,
.subsection-video-record #content_module :where(blockquote):not(:where([class~=not-prose] *))::after,
.subsection-store-record #content_module :where(blockquote):not(:where([class~=not-prose] *))::before,
.subsection-store-record #content_module :where(blockquote):not(:where([class~=not-prose] *))::after,
.description :where(blockquote):not(:where([class~=not-prose] *))::before,
.description :where(blockquote):not(:where([class~=not-prose] *))::after,
.panel_type_11 .content_columns :where(blockquote):not(:where([class~=not-prose] *))::before,
.panel_type_11 .content_columns :where(blockquote):not(:where([class~=not-prose] *))::after,
.panel_type_11 .content_full :where(blockquote):not(:where([class~=not-prose] *))::before,
.panel_type_11 .content_full :where(blockquote):not(:where([class~=not-prose] *))::after,
#publications_text :where(blockquote):not(:where([class~=not-prose] *))::before,
#publications_text :where(blockquote):not(:where([class~=not-prose] *))::after,
#cookie_notification_message :where(blockquote):not(:where([class~=not-prose] *))::before,
#cookie_notification_message :where(blockquote):not(:where([class~=not-prose] *))::after {
  display: none;
}

body #container {
  padding: 0;
}

h1 {
  margin-bottom: var(--space-3xl);
}

:root {
  --list-heading-font-size: var(--step-1-2);
  --list-heading-line-height: var(--leading-snug);
  --list-heading-color: var(--text-primary);
  --list-subheading-font-size: var(--step-2-3);
  --list-subheading-line-height: var(--leading-snug);
  --list-content-font-size: var(--step-3);
  --list-content-line-height: var(--step-3);
}

.records_list {
  --grid-columns: 3;
  --horizontal-gap: 0;
  --vertical-gap: var(--space-3xl-4xl);
  --list-item-px: var(--space-l);
}
@media only screen and (max-width: 767px) {
  .records_list {
    --grid-columns: 2;
  }
}
@media only screen and (max-width: 459px) {
  .records_list {
    --grid-columns: 1;
  }
}
.records_list * + .subtitle {
  --list-content-mt: var(--space-s);
}
.records_list * + .date {
  --list-content-mt: var(--space-m);
}
.records_list * + .link {
  --list-content-mt: var(--space-xl);
}
.records_list * .description {
  --list-content-mt: var(--space-s);
}
.records_list .content {
  flex-grow: 1;
}
.records_list .content .subtitle {
  --list-subheading-font-family: "JetBrainsMono";
  --list-subheading-font-size: var(--step--1_5);
  --list-subheading-text-transform: uppercase;
}
.records_list .description {
  --prose-line-height: var(--leading-relaxed);
  --list-content-line-height: var(--leading-relaxed);
  flex-grow: 1;
}
@media only screen and (max-width: 897px) {
  .records_list .description {
    --prose-line-height: var(--leading-normal);
    --list-content-line-height: var(--leading-normal);
  }
}
.records_list ul {
  position: relative;
  z-index: 10;
}
.records_list ul li a,
.records_list ul li a:visited {
  display: flex;
  flex-direction: column;
}
.records_list ul li .content .prelude {
  font-size: var(--step-0) !important;
  margin-bottom: var(--space-s) !important;
  display: block;
  color: var(--list-heading-color, var(--list-content-color, var(--base-color))) !important;
}
.records_list .image {
  --list-image-mb: var(--space-xl);
}
@media only screen and (max-width: 1180px) {
  .grid_no_of_columns_4 .records_list {
    --grid-columns: 4;
  }
}
@media only screen and (max-width: 897px) {
  .grid_no_of_columns_4 .records_list {
    --grid-columns: 2;
  }
}
@media only screen and (max-width: 459px) {
  .grid_no_of_columns_4 .records_list {
    --grid-columns: 1;
  }
}

.gd_image_spacing_20 {
  --list-item-px: 0;
}
.gd_image_spacing_20 .records_list {
  --vertical-gap: var(--space-4xl);
}
.gd_image_spacing_20 .content {
  padding-left: var(--list-content-pl, var(--space-l-xl)) !important;
  padding-right: var(--list-content-pr, var(--space-l-xl)) !important;
}

.gd_image_spacing_50 {
  --list-item-px: var(--space-l-xl);
}
@media only screen and (max-width: 639px) {
  .gd_image_spacing_50 {
    --list-item-px: var(--CONTAINER-PADDING);
  }
}

.gd_image_spacing_100 {
  --list-item-px: var(--space-l-2xl);
}
@media only screen and (max-width: 459px) {
  .gd_image_spacing_100 {
    --list-item-px: var(--CONTAINER-PADDING);
  }
}

.records_list.feature_list {
  --list-heading-font-size: var(--step-4);
  --list-subheading-font-size: var(--step-1);
}
.records_list.feature_list .link {
  --list-content-mt: var(--space-xl);
}

.records_list.feature_list ul li > a {
  flex-direction: row;
}

:root {
  --header-height: calc((2 * var(--space-xl)) + (var(--leading-normal) * var(--step-1)) + (2 * var(--space-xs)));
}

#header {
  --_height: var(--header-height);
  --header-py: 0;
  --header-scroll-scale: 0.94;
  height: var(--_height);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #header {
    --header-py: var(--space-m);
  }
}
#header.header_layout_center .inner {
  justify-content: flex-start;
}
#header.header_layout_center .header-ui-wrapper {
  padding-top: 0;
}
@media screen and (min-width: 1161px) {
  #header.header_layout_center .header-ui-wrapper .header-icons-wrapper {
    position: absolute;
    right: 7.2rem;
  }
}
#header .inner {
  --py: var(--space-0);
  padding: var(--py) 0 !important;
  transition: 0.5s all var(--easing);
  width: 100%;
}
@media only screen and (max-width: 1180px) {
  #header .inner {
    padding-top: var(--space-0) !important;
    padding-bottom: var(--space-0) !important;
  }
}
#header .header-ui-wrapper {
  margin: 0 auto auto !important;
}
#header #logo {
  position: absolute;
  left: var(--CONTAINER-PADDING);
  top: 50%;
  transform: translateY(-50%);
  transform-origin: top left;
  transition: 0.5s all var(--easing), 0.4s opacity var(--easing);
  width: 14rem;
  height: 4rem;
}
@media only screen and (max-width: 1180px) {
  #header #logo {
    position: static;
    transform: none;
    height: 3.5rem;
  }
}
@media only screen and (max-width: 639px) {
  #header #logo {
    height: 3.2rem;
  }
}
#header #logo a {
  background-position: left center;
  transition: filter 600ms var(--easing);
  background: url("/images/artlogiclogo.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}
#header #page_header {
  background: var(--section-top-nav-background-color, #FFF);
}
#header #page_header .h1_wrapper h2 {
  font-size: var(--step-0);
}

#header.header_layout_center .inner::before {
  display: none !important;
}

.header-fixed-wrapper {
  position: fixed;
  top: 0;
  left: 0;
}
.header-fixed-wrapper #header {
  background: transparent;
}
.header-fixed-wrapper #header .inner {
  min-height: var(--space-4xl);
}

.scrolling-down #header.subnav-above-viewport .page-scroll-nav,
.force-subnav #header.subnav-above-viewport .page-scroll-nav {
  opacity: 1;
  transform: translateY(0) scale(var(--header-scroll-scale));
  transform: translate(-50%, 0) scale(var(--header-scroll-scale));
  pointer-events: auto;
}

.page-scroll.scrolling-down #header.subnav-above-viewport #top_nav.navigation,
.page-scroll.force-subnav #header.subnav-above-viewport #top_nav.navigation {
  opacity: 0;
  transform: translateY(-100%) scale(var(--header-scroll-scale));
}

.page-scroll-nav {
  --header-scroll-scale: 1;
  --_vertical-gap: var(--space-xl-3xl, 40px);
  --_ul-py: var(--space-xs);
  --_ul-px: var(--space-xs);
  position: absolute;
  left: 50%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 100%) scale(var(--header-scroll-scale));
  transition: 0.4s transform var(--easing), 0.3s opacity var(--easing);
}
.page-scroll-nav.contains-active-item li a {
  color: var(--base-400);
}
.page-scroll-nav > ul {
  padding: var(--_ul-py) var(--_ul-px);
  display: flex;
  width: auto;
  flex-wrap: nowrap;
  position: relative;
  gap: var(--ul-gap, 0);
  list-style: none;
  background: var(--white);
  border-radius: 150px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.page-scroll-nav > ul.size-small li a {
  font-size: var(--step-0);
}
.page-scroll-nav > ul::before {
  --_parent-py: var(--_ul-py);
  --_parent-px: var(--_ul-px);
  content: "";
  position: absolute;
  background: var(--black);
  border-radius: 150px;
  left: var(--_active-highlight-left, var(--_parent-px, 0));
  width: var(--_active-highlight-width, 100px);
  height: calc(100% - var(--_parent-py) * 2);
  top: var(--_parent-py);
  transition: 0.2s all;
}
.page-scroll-nav > ul li {
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  margin: 0;
}
.page-scroll-nav > ul li a {
  display: block;
  padding-top: 0.1em;
  padding: var(--space-xs) var(--space-l);
  color: var(--navigation-color);
  text-decoration: none;
  font-size: var(--step-1_5);
  transition: 0.3s color ease-in-out;
}
.page-scroll-nav > ul li a:hover {
  color: var(--black);
}
.page-scroll-nav > ul li a.active, .page-scroll-nav > ul li a.force-active {
  color: var(--white);
}
.page-scroll-nav > ul li .counter {
  display: none;
}

#top_nav {
  margin-left: 3px;
  --horizontal-gap: var(--space-xl-3xl, 40px);
  --navigation-font-size: var(--step-0);
  --navigation-py: var(--space-l);
  --navigation-px: var(--space-l);
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  position: relative;
  gap: var(--space-xl-3xl, 40px);
  transform-origin: top;
  transition: 0.4s transform var(--easing), 0.3s opacity var(--easing);
}
#top_nav::after {
  display: none;
}
@media only screen and (max-width: 1180px) {
  #top_nav {
    --navigation-color: var(--text-primary);
    --navigation-focus-color: var(--text-secondary);
    --horizontal-gap: var(--space-l);
    --navigation-font-size: var(--step-0);
  }
}
@media only screen and (max-width: 767px) {
  #top_nav {
    --navigation-font-size: var(--step-0);
    --navigation-color: var(--text-primary-invert);
    --navigation-focus-color: var(--text-secondary-invert);
    --horizontal-gap: var(--space-xl-3xl, 40px);
  }
}
#top_nav > ul {
  gap: var(--horizontal-gap);
}
#top_nav > ul li a {
  --navigation-py: var(--space-2xs);
}
#top_nav #top_nav_reveal li.active a {
  position: relative;
  display: inline-block;
}
#top_nav #top_nav_reveal li.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid currentColor;
  left: 0;
  width: 100%;
  transform: scaleX(100%);
}
#top_nav #top_nav_reveal li.active a:hover::after {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}
#top_nav #top_nav_reveal li a {
  position: relative;
  display: inline-block;
}
#top_nav #top_nav_reveal li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid currentColor;
  left: 0;
  width: 100%;
  transform: scaleX(100%);
}
#top_nav #top_nav_reveal li a:hover::after {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}
#top_nav li {
  position: relative;
  display: inline-block;
  position: relative;
  gap: var(--space-xs);
}
#top_nav li::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid currentColor;
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
#top_nav li:hover::after {
  transform: scaleX(100%);
}
#top_nav li.active {
  position: relative;
  display: inline-block;
  display: flex;
}
#top_nav li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid currentColor;
  left: 0;
  width: 100%;
  transform: scaleX(100%);
}
#top_nav li.active:hover::after {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}
#top_nav li.topnav-filepath-solutions, #top_nav li.topnav-filepath-resources, #top_nav li.topnav-filepath-products {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #top_nav li.topnav-filepath-solutions a, #top_nav li.topnav-filepath-resources a, #top_nav li.topnav-filepath-products a {
    pointer-events: none;
  }
}
#top_nav li.topnav-filepath-solutions::before, #top_nav li.topnav-filepath-resources::before, #top_nav li.topnav-filepath-products::before {
  font-family: "artlogic-social-icons" !important;
  content: "\e027";
  margin-left: 0;
  margin: 0 !important;
  font-size: 1.1em;
  vertical-align: top;
  transform: rotate(90deg);
  transform-origin: center;
  line-height: 0.7em;
  width: 0.9em;
  height: auto;
  color: var(--navigation-color);
  order: 2;
}
#top_nav li::after {
  bottom: 0.3em !important;
}
#top_nav li.topnav-filepath-resources::after, #top_nav li.topnav-filepath-products::after {
  width: calc(100% - 1.3em) !important;
}
#top_nav li a {
  order: 1;
}
#top_nav li a::after {
  bottom: var(--navigation-py) !important;
}

body .page-scroll #header.header_fixed:not(.header_fixed_no_follow),
html.fp-enabled body:not(.fp-viewing-0) .page-scroll #header.header_fixed.header_fixed_no_follow {
  box-shadow: none;
}

#slide_nav_reveal {
  color: var(--text-base);
  position: relative;
}
#slide_nav_reveal::after {
  font-size: 22px;
  left: 4px;
  top: 16px;
}
#slide_nav_reveal::before {
  content: "";
  width: var(--space-4xl-5xl);
  height: var(--space-4xl-5xl);
  background: var(--button-secondary-background-color);
  display: block;
  position: absolute;
  border-radius: 50px;
  left: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease-in-out;
}

body:not(.page-popup-active) .page_header_enable #header .inner #translations_nav {
  top: var(--space-2);
}
#header,
#header.header_fixed,
#header .inner {
  transition: background 700ms var(--easing), height 400ms var(--easing), transform 700ms var(--easing), box-shadow 700ms var(--easing) !important;
  overflow: visible;
}

.section-artists #header,
.section-artists #header.header_fixed {
  background-color: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 1180px) {
  .section-artists #container:not(.page-top) #header,
  .section-artists #container:not(.page-top) #header.header_fixed {
    background-color: white;
  }
}

.slide-nav-open #header,
.slide-nav-open #header.header_fixed {
  height: auto !important;
  overflow: visible !important;
}

.page-scroll #header {
  /* Not sure why we change color on scroll - removed - DC */
}
@media only screen and (min-width: 768px) {
  body.page-param-type-artist_id .record-page-content-combined-container, body.page-param-type-exhibition_id .record-page-content-combined-container {
    --section-top-nav-background-color: transparent;
  }
  body.page-param-type-artist_id .record-page-content-combined-container.page-scroll, body.page-param-type-exhibition_id .record-page-content-combined-container.page-scroll {
    --section-top-nav-background-color: #fff;
  }
  body.page-param-type-artist_id .record-page-content-combined-container #header, body.page-param-type-exhibition_id .record-page-content-combined-container #header {
    height: 144px;
    overflow: hidden;
  }
  #header #page_header {
    visibility: visible !important;
    opacity: 0 !important;
    pointer-events: none;
  }
  .page-scroll #header #page_header {
    opacity: 1 !important;
    pointer-events: initial;
  }
  body:not(.page-popup-active) .page_header_enable.scrolling-down #header .inner {
    transform: none !important;
    transition: all 600ms cubic-bezier(0.65, 0.06, 0.19, 0.96);
  }
  #header #page_header {
    transform: translate3d(0, 8rem, 0) !important;
    border-top: 1px solid var(--base-300);
    padding-top: var(--space-0);
    padding-bottom: var(--space-0);
    height: auto !important;
    transition: transform 600ms cubic-bezier(0.65, 0.06, 0.19, 0.96), padding 600ms cubic-bezier(0.65, 0.06, 0.19, 0.96), opacity 400ms ease-in-out, border 800ms ease-in-out, background 800ms ease-in-out, visibility 0ms 800ms !important;
  }
  .page-scroll #header #page_header {
    transform: translate3d(0, var(--space-4), 0) !important;
  }
  .slide-nav-open #header #page_header {
    z-index: -1;
  }
  .page_header_enable #header #page_header {
    transition: 0.5s all var(--easing);
    pointer-events: auto;
    visibility: visible;
  }
}
@media only screen and (max-width: 459px) {
  body.slide-nav-open #responsive_slide_nav_wrapper {
    width: 100vw !important;
    margin-left: calc(-1 * var(--CONTAINER-PADDING)) !important;
  }
}
body.responsive-nav-side-position-fullscreen .page-scroll #responsive_slide_nav_wrapper::before {
  left: calc(var(--CONTAINER-PADDING) * -1);
}

body.page-popup-visible #header,
body.fancybox-lock #header {
  transform: translate3d(0, -210%, 0);
  overflow: hidden;
}

.header_quick_search form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_quick_search #header_quicksearch_btn {
  padding: 0;
}

#header #store_cart_widget.active {
  margin: 0 var(--space-0) 0 0;
}
#header #store_cart_widget::before, #header #store_cart_widget::after {
  font-size: var(--step-2);
}
#header #store_cart_widget #scw_items .scw_total_count {
  font-family: var(--secondary-font-family);
  line-height: 32px;
}

#responsive_slide_nav_wrapper_inner {
  position: relative;
}

#header_quick_search #header_quicksearch_btn.header_quicksearch_btn.link {
  padding-right: 8px;
}

.header__buttons {
  position: absolute;
  right: var(--CONTAINER-PADDING);
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1180px) {
  .header__buttons {
    display: none;
  }
}
@media only screen and (max-width: 1180px) {
  .header__buttons .button--is-large a {
    --button-py: var(--space-m);
    --button-px: var(--space-l);
  }
}
.header__buttons .header__buttons__inner {
  display: flex;
  align-items: center;
  gap: var(--space-m-l);
}
@media only screen and (max-width: 897px) {
  .header__buttons .header__buttons__inner .button--is-primary > a {
    min-width: 0;
  }
}

.rolldown-logo {
  margin-left: var(--space-s);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.rolldown-logo > svg {
  aspect-ratio: 1/1;
  width: var(--space-xl);
}

@media only screen and (min-width: 1181px) {
  body .scrolling-down #header.header_fixed:not(.header_fixed_no_follow),
  html.fp-enabled body:not(.fp-viewing-0) #header.header_fixed.header_fixed_no_follow {
    transform: none;
    pointer-events: auto;
  }
  .header-roll-show {
    opacity: 0;
    transition: 0.2s opacity var(--easing);
  }
  .header-ui-wrapper > .header__buttons {
    transition: 0.5s transform var(--easing), 0.4s opacity var(--easing);
  }
  body #container.page-scroll #header {
    background: var(--primary-body);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
#footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --footer-mt: 0;
  --footer-py: var(--space-3xl-5xl);
  --horizontal-gap: 0;
  --vertical-gap: var(--space-5xl-8xl);
  --_text-color: #D5DFE9;
  color: var(--_text-color);
  font-size: var(--step-1_5);
  line-height: var(--leading-normal);
  background: var(--base-1000);
}
#footer .inner {
  padding: 0;
  display: grid;
  max-width: var(--CONTAINER-WIDTH);
  margin: 0 auto;
  grid-template-areas: "logo logo logo logo" "one two three four" "copyright copyright copyright copyright";
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vertical-gap, var(--gap, var(--space-m))) var(--horizontal-gap, var(--gap, var(--space-m)));
  justify-content: space-between;
}
@media only screen and (max-width: 1180px) {
  #footer .inner {
    grid-template-areas: "logo logo logo logo" "one two three three" "copyright copyright copyright copyright";
  }
}
@media only screen and (max-width: 767px) {
  #footer .inner {
    --vertical-gap: var(--space-4xl);
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "logo logo" "one two " "three three" "copyright copyright ";
  }
}
@media only screen and (max-width: 459px) {
  #footer .inner {
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "one" "two" "three" "copyright ";
  }
}
#footer h2 {
  margin-bottom: var(--space-2xs);
}
#footer a {
  position: relative;
  display: inline-block;
}
#footer a::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid currentColor;
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
#footer a:hover::after {
  transform: scaleX(100%);
}
#footer a,
#footer a:visited {
  color: var(--_text-color);
}
#footer a:focus, #footer a:hover,
#footer a:visited:focus,
#footer a:visited:hover {
  color: var(--_text-color);
}
#footer ul {
  list-style: none;
  padding: 0;
}
#footer li {
  margin-bottom: 0;
}
#footer li + li {
  margin-top: var(--space-xs);
}
#footer #contact_info {
  max-width: none;
  display: flex;
  justify-content: space-between;
}

.footer__logo::after {
  displaY: none;
}
.footer__logo img {
  display: block;
  width: auto;
  height: 4.3rem;
}
@media only screen and (max-width: 767px) {
  .footer__logo img {
    height: 3.5rem;
  }
}
@media only screen and (max-width: 639px) {
  .footer__logo img {
    height: 3.2rem;
  }
}

.advanced_footer_item:nth-of-type(1) {
  grid-area: logo;
}

.advanced_footer_item_1 {
  grid-area: one;
}

.advanced_footer_item_2 {
  grid-area: two;
}

@media only screen and (max-width: 1180px) {
  .advanced_footer_item_3 {
    grid-area: three;
  }
}

#footer.advanced_footer .advanced_footer_item {
  padding: 0 var(--space-3xl-5xl);
}
@media only screen and (min-width: 460px) {
  #footer.advanced_footer .advanced_footer_item {
    flex-basis: calc(50% - var(--horizontal-gap, var(--gap)) / 2);
  }
}
@media only screen and (max-width: 639px) {
  #footer.advanced_footer .advanced_footer_item {
    padding: 0 var(--CONTAINER-PADDING);
  }
}
#footer.advanced_footer .copyright {
  margin: 0;
  font-size: var(--step-0);
  grid-area: copyright;
  padding: 0 var(--space-3xl-5xl);
}
@media only screen and (max-width: 639px) {
  #footer.advanced_footer .copyright {
    padding: 0 var(--CONTAINER-PADDING);
  }
}
#footer.advanced_footer .clear {
  display: none;
}

#copyright,
.small-links-container {
  display: inline;
}

#footer #copyright .copyright-text,
#footer #copyright #artlogic {
  display: none !important;
  margin: 0;
}
#footer .social_links_item a {
  text-decoration: none;
}
#footer .social_links_item a::after {
  display: none;
}
#footer #social_links {
  padding-top: 0;
}

#social_links .social_links_item a .social_media_icon {
  background: transparent;
}

.social_media_icon {
  margin: 0 0 0 var(--space-m);
  color: var(--_text-color);
}

.social_media_icon::after {
  font-size: var(--step-2);
}

.heading_wrapper {
  --page-heading-font-family: "WhyteInktrap";
  --page-heading-font-size: var(--step-6-7);
  --page-heading-font-weight: 400;
  --page-heading-line-height: var(--leading-snug);
  --page-subheading-font-size: var(--step-1);
  margin-top: var(--header-height);
  margin-bottom: 0 !important;
  padding: var(--space-4xl-6xl) var(--CONTAINER-PADDING);
}
.heading_wrapper h1 {
  margin: 0 !important;
}
.heading_wrapper h1.has_subtitle {
  margin-bottom: 0;
}

.subsection-artist-detail-page .artist_years {
  font-size: var(--step--2);
}
.subsection-artist-detail-page .artists_nav {
  display: none !important;
}
.subsection-artist-detail-page .panel {
  --panel-pt: 0;
}
.subsection-artist-detail-page .panel .subheading {
  margin-top: 0 !important;
}
.subsection-artist-detail-page .panel_overview .scroll_section_header {
  display: none;
}
.subsection-artist-detail-page .panel_overview .subsection-overview {
  display: flex;
  --content-module-pr: 0;
}
.subsection-artist-detail-page .panel_overview .subsection-overview .sidebar {
  --sidebar-mt: 15em;
}
.subsection-artist-detail-page .panel_overview .subsection-overview .sidebar .image,
.subsection-artist-detail-page .panel_overview .subsection-overview .sidebar .caption {
  width: 50%;
  display: flex;
  justify-content: center;
  margin: auto !important;
}
.subsection-artist-detail-page .subsection-works {
  --list-content-font-size: var(--step--1);
  --list-content-line-height: var(--step--1);
  --list-content-colour: var(--base-500);
}
.subsection-artist-detail-page .subsection-works .title_and_year {
  display: flex;
  flex-direction: column;
}
.subsection-artist-detail-page .subsection-works .title_and_year .title_and_year_title {
  padding-bottom: var(--space-m);
  font-size: var(--step-2);
  line-height: var(--step-2);
  color: var(--black);
}

#manage_cookie_preferences_popup_box h2 {
  --heading-font-size: var(--step-4);
}

:root {
  --hero-heading-color: var(--text-primary);
  --hero-heading-font-size: var(--step-7);
  --hero-heading-line-height: var(--leading-tight);
  --hero-height: clamp(20rem, 17.6119402985rem + 7.46268657vw, 30rem);
}

#hero_header .inner {
  min-height: 24rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
#hero_header h2 a {
  display: block;
}

#hero_header,
#slideshow,
.parallax-mirror,
#hero_image_responsive {
  background-color: var(--off-white) !important;
}

#hero_header > .inner, body.layout-hero-header:not(.type-fullscreen) #main_content::before {
  min-height: unset;
}

.fullscreen_slideshow ul li.fullscreen-slide-image-dark:not(.remove-both-masks):not(.remove-bottom-mask)::after,
.fullscreen-slide-dark #parallax-hero_header .fullscreen_slideshow ul li:not(.remove-both-masks)::after,
.fullscreen-slide-dark #hero_header .fullscreen_slideshow ul li:not(.remove-both-masks)::after,
.fullscreen_slideshow ul li:not(.remove-both-masks)::before,
.fullscreen_slideshow ul li.fullscreen-slide-image-dark:not(.remove-both-masks)::before,
body.hero_heading_title_position_overlay.fullscreen-slide-dark #hero_image_responsive:before,
body.hero_heading_title_position_overlay.fullscreen-slide-light #hero_image_responsive:before {
  display: none;
}

body.cms-frontend-toolbar-active .megamenu {
  top: calc(28px + var(--header-height) - var(--space-xs));
}
@media only screen and (max-width: 1180px) {
  body.cms-frontend-toolbar-active .megamenu {
    top: calc(28px + var(--space-m));
  }
}

body.body-megamenu__is-open .scrolling-down #header.header_fixed:not(.header_fixed_no_follow),
html.fp-enabled body.body.body-megamenu__is-open:not(.fp-viewing-0) #header.header_fixed.header_fixed_no_follow {
  transform: translateY(0) !important;
}

.megamenu {
  --megamenu-header-height: calc(2 * (var(--space-2xl) + var(--space-l)));
  --megamenu-page-height: calc(90vh - var(--megamenu-header-height));
  --easing: ease;
  --_border-color: #EFEFEF;
  --prose-line-height: var(--leading-normal);
  --prose-font-size: var(--step--1);
  --sand-color: #F9F4F4;
  --sand-hover-color: #f5f0f0;
  display: none;
  opacity: 0;
  position: fixed;
  background: white;
  max-width: 130rem;
  width: calc(100% - 2 * var(--space-m-xl));
  box-sizing: border-box;
  top: calc(var(--header-height) - var(--space-xs));
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-elevation-high);
  border-radius: var(--space-xl);
  overflow: hidden;
  max-height: calc(97vh - var(--header-height));
  overflow-y: auto;
  z-index: 99999;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, max-height 0.3 var(--easing);
}
@media only screen and (min-width: 1181px) {
  .megamenu[data-active-page="4"] {
    width: auto;
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu {
    border-radius: var(--space-2xl);
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu {
    --_right: var(--CONTAINER-PADDING);
    max-width: 42rem;
    width: calc(100% - 2 * var(--_right));
    transform: unset;
    top: var(--space-m);
    left: unset;
    right: var(--_right);
    max-height: 50vh;
    overflow-y: hidden;
    transition: transform 0.5s var(--easing);
  }
  .megamenu[data-active-page="1"], .megamenu[data-active-page="2"] {
    overflow-y: hidden;
  }
}
@media only screen and (max-width: 459px) {
  .megamenu {
    max-width: 100%;
  }
}
.megamenu__is-open {
  opacity: 1;
  display: block;
}
@media only screen and (max-width: 1180px) {
  .megamenu__is-open {
    max-height: 90vh;
  }
}
.megamenu__is-opening {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.megamenu__is-closing {
  display: block;
  animation-name: fadeOut;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

@media only screen and (max-width: 1180px) {
  .megamenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    z-index: 10;
    opacity: 0;
    transform: translateY(-200vh);
  }
  .body-megamenu__is-open .megamenu-overlay {
    display: block;
    opacity: 1;
    transition: opacity 0.5s var(--easing);
    transform: none;
  }
}
.megamenu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
  border-bottom: 1px solid var(--_border-color);
}
@media only screen and (min-width: 1181px) {
  .megamenu__header {
    display: none;
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu__header {
    border-bottom: none;
    padding: var(--space-l);
  }
}

.megamenu__logo {
  height: var(--space-3xl);
  max-height: 32px;
  display: block;
  transition: var(--transition);
  opacity: var(--megamenu-logo-opacity, 1);
  visibility: var(--megamenu-logo-visibility, visible);
  transform: translateX(var(--megamenu-logo-translate, 0));
  margin-left: var(--space-xs);
}
.megamenu__logo svg {
  height: 100%;
  width: auto;
}

.megamenu:not([data-active-page="1"]) {
  --megamenu-logo-translate: -100%;
  --megamenu-logo-opacity: 0;
  --megamenu-logo-visibility: hidden;
  --megamenu-back-translate: 0%;
  --megamenu-back-opacity: 1;
  --megamenu-back-visibility: visible;
}

.megamenu__close {
  background-color: var(--_border-color);
  background-image: var(--ICON-CLOSE-DARK);
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-2xl);
  cursor: pointer;
  border-radius: 100px;
}

.megamenu__back-button {
  opacity: var(--megamenu-back-opacity, 0);
  visibility: var(--megamenu-back-visibility, hidden);
  transform: translateX(var(--megamenu-back-translate, 100%));
  transition: var(--transition);
  justify-self: flex-end;
  position: absolute;
  left: var(--space-xl-2xl);
}

.megamenu__simplelist {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
  background: white;
  display: flex;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 1181px) {
  .megamenu__simplelist {
    background: var(--sand-color);
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu__simplelist {
    padding: 0;
    display: block;
  }
}
.megamenu__simplelist-list {
  list-style: none;
  margin: 0;
  padding: var(--space-xs) 0 var(--space-xs) var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
@media only screen and (max-width: 1180px) {
  .megamenu__simplelist-list {
    padding: 0;
    display: block;
  }
}
.megamenu__simplelist-list-item {
  padding: 0;
  margin: 0;
}
.megamenu__simplelist-button {
  padding: var(--space-lxl) var(--space-xl-2xl);
  width: 100%;
  text-align: left;
  font-size: var(--step-1_5);
  color: var(--text-primary);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border-radius: var(--space-xs) 0 0 var(--space-xs);
}
.megamenu__simplelist-button:not(.megamenu__simplelist-button--is-active):hover {
  background: var(--sand-hover-color);
}
@media only screen and (max-width: 1180px) {
  .megamenu__simplelist-button {
    font-size: var(--step-2);
    padding: var(--space-l) var(--space-xl);
    box-sizing: border-box;
  }
}
.megamenu__simplelist-button--is-active {
  background: white;
}

@media only screen and (max-width: 1180px) {
  button.megamenu__simplelist-button::after {
    content: var(--ICON-CHEVRON-RIGHT-DARK);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: var(--space-l);
    height: var(--space-l);
    opacity: 0.5;
  }
}
.megamenu__pages {
  --megamenu-page-count: 5;
  display: flex;
  width: 100%;
  will-change: transform;
  transform: translateX(var(--megamenu-translate, 0));
}
@media only screen and (max-width: 1180px) {
  .megamenu__pages {
    width: calc(var(--megamenu-page-count) * 100%);
    align-items: flex-start;
  }
}

.megamenu__page {
  background: white;
  width: 100%;
  opacity: 0;
  will-change: transform;
  transform: translateX(var(--megamenu-page-translate, 0));
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (min-width: 1181px) {
  .megamenu__page {
    display: none;
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu__page {
    height: var(--megamenu-page-height);
  }
}

@media only screen and (max-width: 1180px) {
  [data-page="1"] {
    display: block;
  }
}

[data-page="2"] {
  grid-template-columns: 1fr 5fr;
}
@media only screen and (max-width: 1180px) {
  [data-page="2"] {
    grid-template-columns: 1fr 3fr;
  }
}
@media only screen and (max-width: 1180px) {
  [data-page="2"] {
    grid-template-columns: 1fr 1fr;
    width: 200%;
  }
}

[data-active-page="1"] .megamenu__page[data-page="1"] {
  opacity: 1;
}

[data-active-page*="2"] .megamenu__page[data-page*="2"] {
  display: grid;
  opacity: 1;
}
@media only screen and (max-width: 1180px) {
  [data-active-page*="2"] {
    --megamenu-translate: -20%;
  }
}

@media only screen and (max-width: 1180px) {
  [data-active-page*="2."] {
    --megamenu-page-translate: -50%;
  }
}

@media only screen and (max-width: 1180px) {
  [data-active-page="3"] {
    --megamenu-translate: -20%;
  }
}
[data-active-page="3"] [data-page="3"] {
  display: grid;
  grid-template-columns: 3fr 1fr;
  opacity: 1;
}
@media only screen and (max-width: 1180px) {
  [data-active-page="3"] [data-page="3"] {
    grid-template-columns: 1fr;
    transform: translateX(-200%);
    animation: 0.3s cubic-bezier(0.28, 0.1, 0.24, 1) fadeInLeftPage;
    animation-fill-mode: forwards;
  }
}

@keyframes fadeInLeftPage {
  from {
    opacity: 0;
    transform: translate3d(calc(-200% + 7.5rem), 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-200%, 0, 0);
  }
}
@media only screen and (max-width: 1180px) {
  [data-active-page="4"] {
    --megamenu-translate: -40%;
  }
}
[data-active-page="4"] [data-page="4"] {
  display: grid;
  grid-template-columns: 1fr;
  opacity: 1;
}
@media only screen and (max-width: 1180px) {
  [data-active-page="4"] [data-page="4"] {
    transform: translateX(-200%);
    animation: 0.3s cubic-bezier(0.28, 0.1, 0.24, 1) fadeInLeftPage;
    animation-fill-mode: forwards;
  }
}

.megamenu__subpages {
  display: flex;
  width: 300%;
  overflow: hidden;
  transform: translateX(var(--_subpage-translate, 0));
}
@media only screen and (max-width: 1180px) {
  .megamenu__subpages {
    align-items: flex-start;
  }
}

[data-page].is-exiting {
  opacity: 0;
  animation-name: fadeOutLeft !important;
  animation-duration: 0.3s !important;
  animation-timing-function: ease-in !important;
  animation-fill-mode: forwards !important;
}

[data-active-page="2.1"] [data-page="2.1"],
[data-active-page="2.2"] [data-page="2.2"],
[data-active-page="2.3"] [data-page="2.3"] {
  animation-name: fadeInLeft;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

[data-active-page="2.1"] {
  --_subpage-translate: 0;
}

[data-active-page="2.2"] {
  --_subpage-translate: -33.33%;
}

[data-active-page="2.3"] {
  --_subpage-translate: -66.66%;
}

@media only screen and (max-width: 1180px) {
  [data-page="3"] {
    transform: translateX(-100%);
    position: relative;
    z-index: 1;
  }
}
@media only screen and (min-width: 1181px) {
  [data-page="3"] .megamenu__subpage-main {
    padding-top: var(--space-3xl);
  }
}

[data-page="4"] .megamenu__subpage-main {
  grid-template-columns: 1fr;
}
[data-page="4"] .megamenu__subpage-footer-list {
  display: none;
}
[data-page="4"] .icon-link {
  align-items: center;
  margin: calc(var(--space-m) * -1) calc(var(--space-lxl) * -1);
  padding: var(--space-m) var(--space-xl) !important;
  border-radius: 0 !important;
}
[data-page="4"] .icon-link__body {
  display: none;
}

.megamenu__subpage {
  width: 100%;
  background: white;
  opacity: 0;
  display: grid;
  grid-template-columns: 7fr 3fr;
  transform: translateX(-40%);
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (max-width: 1180px) {
  .megamenu__subpage {
    grid-column: 2;
    height: var(--megamenu-page-height);
    display: flex;
    flex-direction: column;
  }
}
.megamenu__subpage.is-active {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.megamenu__subpage-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl-2xl) var(--space-l-xl);
  padding: var(--space-lxl);
}
@media only screen and (max-width: 1180px) {
  .megamenu__subpage-main {
    gap: var(--space-2xl) var(--space-xl);
    padding-top: 3px !important;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
.megamenu__subpage-main.subpage-main--collectors {
  grid-template-rows: min-content min-content 1fr;
}
@media only screen and (max-width: 1180px) {
  .megamenu__subpage-main {
    padding: var(--space-l-xl) var(--space-m-xl) var(--space-l-xl);
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu__subpage-main {
    grid-template-columns: 1fr;
  }
}

.megamenu__card {
  background-color: var(--sand-color);
  border-left: 1px solid var(--sand-hover-color);
  display: grid;
  grid-template-rows: min-content auto;
  grid-template-columns: 1fr;
  transition: background 0.2s var(--easing);
  text-decoration: none;
}
.megamenu__card:hover {
  transition: background 0.5s var(--easing);
  background-color: var(--sand-hover-color);
}
@media only screen and (max-width: 1180px) {
  .megamenu__card {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    border-left: 0;
    border-top: 1px solid var(--sand-hover-color);
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu__card {
    grid-template-columns: 1fr 2fr;
  }
}

@media only screen and (max-width: 1180px) {
  [data-page="3"] .megamenu__card {
    grid-template-columns: 1fr 2fr;
  }
}

.megamenu__card-image-wrapper {
  padding-top: 66.6666666667%;
  position: relative;
  overflow: hidden;
}

.megamenu__card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  transform: scale(1);
  transition: transform 1s var(--easing);
}

.megamenu__card:hover img {
  transform: scale(1.03);
}
.megamenu__card:hover .megamenu__card-body {
  color: var(--base-900);
}

.megamenu__card-inner {
  padding: var(--space-lxl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.megamenu__card-heading {
  --heading-font-size: var(--step-1_5);
  --heading-font-weight: 400;
}
@media only screen and (max-width: 1180px) {
  .megamenu__card-heading {
    --heading-font-size: var(--step-2);
  }
}

.megamenu__card-body {
  margin-top: var(--space-l);
  flex-grow: 1;
  transition: color 0.4s var(--easing);
}

.megamenu__card-link {
  margin-top: var(--space-l);
}

.megamenu__callout {
  padding: var(--space-lxl);
  background: var(--panel-background);
  border-radius: var(--space-s);
  grid-column: span 2;
  display: grid;
  align-items: flex-end;
  grid-template-columns: 1fr auto;
  gap: var(--space-lxl);
  text-decoration: none;
  transition: background 0.5s var(--easing);
}
.megamenu__callout:hover {
  background: #d3e2e7;
}
@media only screen and (max-width: 1180px) {
  .megamenu__callout {
    gap: var(--space-l);
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu__callout {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 1180px) {
  .megamenu__callout {
    grid-column: span 1;
  }
}
.megamenu__callout-inner {
  max-width: 60ch;
  font-size: var(--step--1);
}
.megamenu__callout-heading {
  font-size: var(--step-1-2);
  font-weight: 400;
}
.megamenu__callout-body {
  display: block;
  margin-top: var(--space-s);
  --prose-body: var(--base-900);
  line-height: var(--leading-snug);
}
.icon-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-s-m);
  text-decoration: none;
  border-radius: var(--space-xs);
  transition: var(--transition);
  padding: var(--space-m) var(--space-s) !important;
  margin: calc(var(--space-m) * -1) 0;
}
@media only screen and (max-width: 1180px) {
  .icon-link {
    gap: var(--space-l);
  }
}
.icon-link:hover {
  background: var(--sand-hover-color);
}
.icon-link:hover .icon-link__body {
  color: var(--base-900);
}
.icon-link__icon {
  width: var(--space-xl);
  height: auto;
  margin-top: -0.2em;
}
@media only screen and (max-width: 1180px) {
  .icon-link__icon {
    width: var(--space-2xl);
    max-width: 28px;
  }
}
.icon-link__heading {
  --heading-font-size: var(--step-0-1);
  --heading-font-weight: 400;
}
.icon-link__body {
  margin-top: var(--space-xs-s);
  font-size: var(--step--1);
  display: block;
  line-height: var(--leading-snug);
  transition: color 0.6s var(--easing);
}
@media only screen and (max-width: 1180px) {
  .icon-link__body {
    font-size: var(--step--1-0);
    margin-top: var(--space-s);
  }
}

.megamenu__subpage-footer-list-item {
  margin: 0;
}

.megamenu .link {
  --link-font-size: var(--step-0);
  --link-line-height: 1;
}
@media only screen and (max-width: 1180px) {
  .megamenu .link {
    --link-font-size: var(--step-2);
  }
}
@media only screen and (max-width: 639px) {
  .megamenu .link {
    --link-font-size: var(--step-0);
  }
}

.megamenu__subpage-footer-single {
  margin-top: auto;
}

.megamenu__subpage-footer-list {
  grid-column: 1/-1;
  padding: var(--space-xl) 0 0;
  margin: var(--space-xl) 0 0;
  align-self: flex-end;
  border-top: 1px solid var(--_border-color);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s-m) var(--space-m-xl);
}
@media only screen and (max-width: 1180px) {
  .megamenu__subpage-footer-list {
    margin-top: 0;
    width: 100%;
  }
}

.megamenu__buttons {
  padding: var(--space-l-xl) var(--space-xl-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.panel_type_3012 + .panel_type_505 .global_contact_form .form > .panel_heading {
  display: none;
}

.global_contact_form {
  margin: 0 auto;
  --border-color: var(--base-100);
  padding: 0 var(--CONTAINER-PADDING);
}
.global_contact_form .form {
  max-width: 1000px;
  margin: 0 auto;
}
.global_contact_form .form > .panel_heading {
  margin-bottom: var(--space-3xl);
  text-align: center;
}
.global_contact_form .form > .panel_heading h2 {
  font-size: var(--step-6);
}
.global_contact_form .form.contact--demo form .form_row.privacy_container {
  border-top: 0;
}
.global_contact_form .form form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
@media only screen and (max-width: 767px) {
  .global_contact_form .form form {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.global_contact_form .form form .field-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  width: 48%;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .global_contact_form .form form .field-group {
    width: 100%;
    flex: 1;
  }
}
.global_contact_form .form form .form_row {
  width: 100%;
  display: block;
  clear: both;
  line-height: var(--base-line-height);
  margin: 0;
}
.global_contact_form .form form .form_row.privacy_container {
  padding: var(--space-xl) 0;
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}
.global_contact_form .form form .form_row.privacy_container::after {
  display: none;
}
.global_contact_form .form form .form_row.privacy_container .privacy_policy_form_msg {
  border-top: 0 !important;
  padding: 0 !important;
  font-size: var(--step--1_5) !important;
  color: var(--base-600) !important;
  line-height: var(--leading-normal) !important;
}
.global_contact_form .form form .form_row.privacy_container .privacy_policy_form_msg .asterisk {
  display: none;
}
@media only screen and (max-width: 767px) {
  .global_contact_form .form form .form_row.privacy_container {
    flex-direction: column;
    align-items: center;
  }
}
.global_contact_form .form form .form_row.form_row_message {
  display: flex;
  gap: var(--space-3xl);
}
@media only screen and (max-width: 767px) {
  .global_contact_form .form form .form_row.form_row_message {
    flex-direction: column;
    align-items: center;
  }
}
.global_contact_form .form form .form_row.form_row_message .g-recaptcha {
  background: none;
  padding: 0;
  width: auto;
  border: 0;
}
.global_contact_form .form form .form_row.form_row_message::after {
  display: none;
}
.global_contact_form .form form .form_row .select_container {
  background: none;
  width: 100%;
  position: relative;
}
.global_contact_form .form form .form_row .select_container:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-primary);
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.global_contact_form .form form .form_row .inputField, .global_contact_form .form form .form_row textarea, .global_contact_form .form form .form_row select {
  color: var(--base-600);
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-s) 0;
  line-height: var(--base-line-height);
  background: none;
  float: none;
  width: 100%;
}
.global_contact_form .form form .form_row .inputField.active, .global_contact_form .form form .form_row textarea.active, .global_contact_form .form form .form_row select.active {
  color: var(--text-primary);
}
.global_contact_form .form form .form_row select {
  cursor: pointer;
}
.global_contact_form .form form .form_row label {
  display: none;
}
.global_contact_form .form form .form_row legend {
  float: none;
  width: 100%;
  margin-bottom: var(--space-xl);
  color: var(--black);
}
.global_contact_form .form form .form_row textarea {
  height: 138px;
}
.global_contact_form .form form .form_row .checkbox-wrapper {
  width: 100%;
  gap: var(--space-l) var(--space-2xl);
  display: flex;
  flex-wrap: wrap;
}
.global_contact_form .form form .form_row .checkbox input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  display: block;
}
.global_contact_form .form form .form_row .checkbox label {
  color: var(--base-600);
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  white-space: nowrap;
  height: 27px;
  line-height: 27px;
  padding-left: 30px;
}
.global_contact_form .form form .form_row .checkbox label::after {
  position: absolute;
  height: 7px;
  width: 13px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  left: 4px;
  top: 8px;
  border-color: #111;
}
.global_contact_form .form form .form_row .checkbox label::before {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  height: 21px;
  width: 21px;
  border: 1px solid var(--border-color);
  left: 0px;
  top: 3px;
  top: 3px;
  color: var(--base-600);
}
.global_contact_form .form form .form_row .checkbox input[type=checkbox]:checked + label {
  color: var(--text-primary);
}
.global_contact_form .form form .form_row .checkbox input[type=checkbox]:checked + label::after {
  content: "";
}
.global_contact_form .form form .form_row .inputField.error,
.global_contact_form .form form .form_row select.error,
.global_contact_form .form form .form_row textarea.error {
  background: rgba(255, 133, 139, 0.8);
}
.global_contact_form .form form .form_row .button {
  margin-left: 0;
  white-space: nowrap;
}
.global_contact_form .hs-form {
  padding: 0 var(--space-6xl);
  max-width: 1160px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .global_contact_form .hs-form {
    padding: 0;
  }
}
.global_contact_form .hs-form fieldset {
  max-width: none;
}
.global_contact_form .hs-form fieldset.form-columns-2 .input, .global_contact_form .hs-form fieldset.form-columns-1 .input {
  margin-right: var(--space-2xl);
}
.global_contact_form .hs-form fieldset label > span {
  margin-top: var(--space-xl);
  display: block;
}
.global_contact_form .hs-form fieldset ul {
  list-style: none;
  padding: 0;
}
.global_contact_form .hs-form fieldset .hs-error-msg {
  color: crimson;
}
.global_contact_form .hs-form .hs-input:not([type=checkbox]) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: var(--step-1);
  padding: var(--space-xl) 0;
  width: 100% !important;
}
.global_contact_form .hs-form .hs_submit {
  margin-top: var(--space-2xl);
}
.global_contact_form .hs-form .hs-button.primary {
  padding: var(--button-pt, var(--button-py, var(--space-xs))) var(--button-pr, var(--button-px, var(--space-m))) var(--button-pb, var(--button-py, var(--space-xs))) var(--button-pl, var(--button-px, var(--space-m))) !important;
  font-family: var(--button-font-family, var(--base-font-family)) !important;
  font-size: var(--button-font-size, var(--step-0)) !important;
  line-height: var(--button-line-height, var(--leading-normal)) !important;
  font-weight: var(--button-font-weight, var(--base-font-weight)) !important;
  text-transform: var(--button-text-transform, inherit) !important;
  color: var(--button-color, var(--base-color)) !important;
  border-radius: var(--button-border-radius, 0);
  border: var(--button-border, unset);
  background: var(--button-background-color, transparent);
  transition: var(--button-transition, var(--transition));
  cursor: pointer;
}
.global_contact_form .hs-form .hs-fieldtype-checkbox ul {
  margin-top: var(--space-l);
}
.global_contact_form .hs-form .hs-form-checkbox-display {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}
.global_contact_form .hs-form .hs-form-checkbox-display span {
  margin: 0;
}
.global_contact_form .hs-form .hs-artlogic_solutions label {
  display: flex;
}
.global_contact_form .hs-form .hs-richtext {
  margin-top: 30px;
  font-size: 12px;
}

.panel .description ul.mce-contact-list {
  list-style: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  list-style-type: none;
  padding-top: var(--space-2xl);
}
@media only screen and (max-width: 767px) {
  .panel .description ul.mce-contact-list {
    flex-direction: column;
  }
}
.panel .description ul.mce-contact-list li {
  margin: 0;
  padding: 0;
  font-size: var(--step-1_5);
}
.panel .description ul.mce-contact-list li a {
  text-decoration: none;
  font-weight: 600;
}
.panel .description ul.mce-contact-list li a:hover {
  text-decoration: underline;
}

div.arprompt {
  max-width: 480px;
  width: calc(100% - 20px);
  border: none;
  border-radius: var(--space-l);
  padding: var(--space-l);
}
div.arprompt .arpromptmessage {
  margin: 0 0 var(--space-xl);
  font-size: var(--step-0);
  padding-right: 45px;
  box-sizing: border-box;
  line-height: var(--leading-normal);
}
div.arprompt .arpromptmessage h2 {
  margin: 0 0 var(--space-xl);
  font-size: var(--step-5);
}
div.arprompt .arpromptbuttons {
  padding: var(--space-xl) 0 0 0;
}
div.arprompt .arpromptbuttons button {
  text-align: center;
  min-width: 120px;
}
div.arprompt .arpromptbuttons button .arpromptdefaultbutton {
  background: var(--button-background-color);
}
div.arprompt .arpromptclose {
  position: absolute;
  top: var(--space-l);
  right: var(--space-l);
  width: auto;
  cursor: default;
  text-indent: 0;
  float: right;
  width: 40px;
  height: 40px;
  margin: 0;
  text-indent: -9999px;
}
div.arprompt .arpromptclose::after {
  display: block;
  cursor: pointer;
  content: "\e034";
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  text-align: right;
  font-family: "artlogic-social-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  font-size: var(--step-1_5);
  line-height: var(--step-1_5);
  letter-spacing: 0;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--black);
}

#manage_cookie_preferences_popup_container {
  z-index: 2147483648;
}

#cookie_notification {
  transform: none;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0, 0, 0.2, 1);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  border-radius: 0;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-3xl);
  display: none;
}
#cookie_notification.active {
  display: flex;
}
@media only screen and (max-width: 459px) {
  #cookie_notification {
    padding: var(--space-l);
  }
}
#cookie_notification.active {
  opacity: 1;
}
#cookie_notification.active .inner {
  opacity: 1;
  transform: translateY(0);
}
#cookie_notification .inner {
  background: #fff;
  transform: translateY(var(--space-3xl));
  opacity: 0;
  transition: transform 600ms cubic-bezier(0, 0, 0.2, 1), opacity 400ms cubic-bezier(0, 0, 0.2, 1);
  bottom: var(--space-xl);
  left: auto;
  right: var(--space-xl);
  width: 100%;
  max-width: 480px;
  border-radius: var(--space-l);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: var(--space-xl);
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: var(--leading-snug);
  font-weight: var(--base-font-weight);
  font-size: var(--step-0);
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #cookie_notification .inner {
    padding: var(--space-xl);
    justify-content: flex-start;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    width: auto;
    max-width: 100%;
  }
}
@media only screen and (max-width: 459px) {
  #cookie_notification .inner #cookie_notification_accept.button {
    margin-right: auto !important;
    margin-left: auto !important;
    width: 100%;
  }
  #cookie_notification .inner #cookie_notification_accept.button a {
    display: inline-block;
  }
}
#cookie_notification .inner #cookie_notification_message {
  width: 100%;
  order: 1;
  padding: 0;
  padding-bottom: var(--space-xl);
}
#cookie_notification .inner #cookie_notification_message p {
  line-height: var(--leading-snug);
  font-size: var(--step-0);
}
#cookie_notification .inner #cookie_notification_message strong {
  font-size: var(--step-1_5);
  font-weight: var(--base-font-weight) !important;
  display: block;
}
#cookie_notification .inner #cookie_notification_accept.button {
  order: 3;
  margin-right: var(--space-xl);
}
#cookie_notification .inner #cookie_notification_accept.button > a {
  min-width: 180px;
}
#cookie_notification .inner #cookie_notification_preferences {
  line-height: var(--leading-snug);
  font-weight: var(--base-font-weight);
  margin-left: 0;
  padding: 0;
  order: 5;
}
@media only screen and (max-width: 459px) {
  #cookie_notification .inner #cookie_notification_preferences {
    margin: 0 auto;
  }
}
#cookie_notification .inner #cookie_notification_preferences.link > a {
  font-size: var(--step-1) !important;
  font-weight: var(--base-font-weight);
}

#manage_cookie_preferences_popup_box {
  max-width: 520px;
  width: 100%;
  border: none;
  border-radius: var(--space-l);
  padding: var(--space-xl);
}
#manage_cookie_preferences_popup_box #cookie_preferences_form label {
  padding-top: var(--space-xs);
  display: block;
  font-size: var(--step-1_5);
  cursor: pointer;
}
#manage_cookie_preferences_popup_box #cookie_preferences_form .note {
  font-size: var(--step--1);
  line-height: var(--step--1-lh);
  color: var(--base-color, var(--text-body));
  margin-top: 0.4rem;
  margin-left: 2.2rem;
  margin-top: 0;
  line-height: var(--leading-normal);
}
#manage_cookie_preferences_popup_box #cookie_preferences_form .button {
  margin-top: var(--space-xl);
}
#manage_cookie_preferences_popup_box #manage_cookie_preferences_popup_box h2 {
  --heading-font-size: var(--step-3);
}

#popup_box .close {
  background-color: var(--base-50);
  border-radius: 100px;
  padding: 24px;
  transition: var(--transition);
}
#popup_box .close:hover {
  background-color: var(--base-100);
}
#popup_box .close::after {
  width: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

:root {
  --panel-header-mb: var(--space-2xl);
  --panel-heading-font-size: var(--step-7);
  --panel-heading-line-height: var(--leading-tight);
  --panel-subheading-font-size: var(--step-1);
  --panel-subheading-color: var(--text-primary);
  --panel-subheading-mt: var(--space-s-m);
}

.panel_header {
  position: relative;
  z-index: 1;
  padding-left: var(--space-l-xl);
  padding-right: var(--space-l-xl);
}
.panel_header h2 + .subtitle {
  --panel-content-mt: var(--space-l);
}

body.cms-frontend-toolbar-active .cms-frontend-list-item:hover,
body.website-editor-mode .cms-frontend-list-item:hover {
  background: var(--panel-background, unset);
}

.panel {
  z-index: 1;
}
.panel > * {
  z-index: 1;
  position: relative;
}
.panel * + .description {
  --panel-content-mt: var(--space-l);
  --list-content-mt: var(--space-s);
}
.panel .fp_title + .subtitle {
  --panel-content-mt: var(--space-s-m);
}
.panel h2 {
  max-width: 40ch;
}
.panel .description {
  font-size: var(--prose-font-size, var(--step--1, 1.4rem));
}
.panel .description h2 {
  max-width: unset;
}
.panel .subtitle {
  max-width: 55ch;
}
.panel .subtitle + .date {
  --panel-content-mt: var(--space-3xs);
}
.panel .link,
.panel .enquire_button_container {
  --panel-content-mt: var(--space-xl);
  margin-top: var(--space-xl);
}
.panel .image.image_align_caption .caption {
  --caption-mx: auto;
}
.panel .image.restricted-image-container,
.panel .image .restricted-image-container, .panel.panel_image_text_adjacent .image.restricted-image-container, .panel.panel_image_text_adjacent .image .restricted-image-container {
  width: 100%;
}

.fp-panel {
  --panel-ml: calc(50% - 50vw);
  --panel-mr: calc(50% - 50vw);
  width: 100vw;
}

.fp-panel__inner {
  max-width: var(--CONTAINER-WIDTH);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.fp-panel__header {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  --panel-header-mx: auto;
  padding-left: var(--space-l-xl);
  padding-right: var(--space-l-xl);
  justify-content: space-between;
  width: 100%;
}
.feature_panels .fp-panel__header {
  display: flex;
}

.fp-panel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.has-gridlines {
  position: relative;
}
@media only screen and (min-width: 898px) {
  .has-gridlines::before, .has-gridlines::after {
    content: "";
    border-color: #E4E4E4;
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .has-gridlines::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .has-gridlines::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}

.panel-remove-padding-vertical {
  --panel-py: 0 !important ;
}

.panel-remove-padding-top {
  --panel-pt: 0 !important ;
}

.panel-remove-padding-bottom {
  --panel-pb: 0 !important ;
}

.panel-padding-bottom-small {
  --panel-pb: var(--space-3xl) !important;
}

.panel.has-theme-dark-green {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-mx: calc(50% - 50vw);
  --panel-pb: var(--space-3xl);
  --_text-color: white;
  --panel-heading-color: var(--_text-color);
  --panel-subheading-color: var(--_text-color);
  --list-heading-color: var(--_text-color);
  --text-primary: var(--_text-color);
  --text-secondary: var(--_text-color);
  --text-body: var(--_text-color);
  --base-color: var(--_text-color);
  background: var(--_panel-background) !important;
  padding: 0 !important;
  --_panel-background: #27382C;
}
.panel.has-theme-dark-green .image {
  --list-image-mb: var(--space-3xl);
}
.panel.has-theme-dark-green::before, .panel.has-theme-dark-green::after {
  content: unset;
}
.panel.has-theme-dark-green .fp-panel__inner {
  position: relative;
  padding: var(--panel-pt, var(--panel-py, 0)) var(--panel-pr, var(--panel-px, 0)) var(--panel-pb, var(--panel-py, 0)) var(--panel-pl, var(--panel-px, 0));
}
@media only screen and (min-width: 898px) {
  .panel.has-theme-dark-green .fp-panel__inner::before, .panel.has-theme-dark-green .fp-panel__inner::after {
    content: "";
    border-color: var(--elements-primary, #e4e4e4);
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .panel.has-theme-dark-green .fp-panel__inner::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .panel.has-theme-dark-green .fp-panel__inner::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}

.panel.has-theme-beige {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-mx: calc(50% - 50vw);
  --panel-pb: var(--space-3xl);
  --_text-color: white;
  --panel-heading-color: var(--_text-color);
  --panel-subheading-color: var(--_text-color);
  --list-heading-color: var(--_text-color);
  --text-primary: var(--_text-color);
  --text-secondary: var(--_text-color);
  --text-body: var(--_text-color);
  --base-color: var(--_text-color);
  background: var(--_panel-background) !important;
  padding: 0 !important;
  --_panel-background: #AC9988;
}
.panel.has-theme-beige .image {
  --list-image-mb: var(--space-3xl);
}
.panel.has-theme-beige::before, .panel.has-theme-beige::after {
  content: unset;
}
.panel.has-theme-beige .fp-panel__inner {
  position: relative;
  padding: var(--panel-pt, var(--panel-py, 0)) var(--panel-pr, var(--panel-px, 0)) var(--panel-pb, var(--panel-py, 0)) var(--panel-pl, var(--panel-px, 0));
}
@media only screen and (min-width: 898px) {
  .panel.has-theme-beige .fp-panel__inner::before, .panel.has-theme-beige .fp-panel__inner::after {
    content: "";
    border-color: var(--elements-primary, #e4e4e4);
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .panel.has-theme-beige .fp-panel__inner::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .panel.has-theme-beige .fp-panel__inner::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}

@media only screen and (min-width: 898px) {
  .panel.pull-up-bottom {
    --panel-mb: calc(-1 * var(--space-4xl)) ;
  }
}

.panel-has-giant-record-titles {
  --list-heading-font-size: var(--step-6-7) !important;
}

.panel_text {
  --panel-heading-font-size: var(--step-6_5);
  --panel-heading-line-height: var(--leading-tighter);
  --panel-prose-color: var(--text-primary);
  background: var(--panel-background);
  color: var(--text-primary);
  --panel-heading-color: var(--text-primary);
  --panel-px: var(--CONTAINER-PADDING);
}
.panel_text * + .description {
  --panel-content-mt: var(--space-xl);
}
.panel_text * .link {
  --panel-content-mt: var(--space-3xl);
}
.panel_text .panel_header h2 {
  max-width: 75%;
  color: var(--text-primary);
}
.panel_text .fp_title {
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}
.panel_text .subtitle {
  color: var(--text-primary);
}
.panel_text .description {
  color: var(--panel-prose-color);
}
.panel_text .panel_background {
  background-color: var(--panel-background);
}
.panel_text.feature_variant_1.panel_background_enabled, .panel_text.feature_variant_2.panel_background_enabled {
  width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.feature_panels .panel.panel_text.panel_content_alignment_left .content,
.feature_panels .panel.panel_text.panel_content_alignment_center .content,
.feature_panels .panel.panel_text.panel_content_alignment_right .content {
  max-width: 105ch;
}

.panel_text.panel_content_alignment_center {
  --panel-content-mx: auto;
}
.panel_text.panel_content_alignment_center .link a {
  margin: 0 auto;
}

.panel_text.feature_variant_1 {
  margin: 0 auto !important;
  display: block;
}
.panel_text.feature_variant_1 .content {
  max-width: 100ch;
}

.panel_text.feature_variant_2 {
  position: relative;
  --panel-py: var(--space-4xl-7xl);
  --panel-subheading-font-size: var(--step-5);
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 898px) {
  .panel_text.feature_variant_2::before, .panel_text.feature_variant_2::after {
    content: "";
    border-color: var(--elements-primary);
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .panel_text.feature_variant_2::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .panel_text.feature_variant_2::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}
@media only screen and (min-width: 768px) {
  .panel_text.feature_variant_2 {
    min-height: min(70vh, 750px) !important;
  }
}
.panel_text.feature_variant_2 .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.panel_text.feature_variant_2 .fp_title,
.panel_text.feature_variant_2 .subtitle {
  grid-column: span 3;
  text-wrap: balance;
}
@media only screen and (max-width: 767px) {
  .panel_text.feature_variant_2 .fp_title,
  .panel_text.feature_variant_2 .subtitle {
    grid-column: 1/-1;
  }
}
.panel_text.feature_variant_2 .subtitle {
  color: var(--text-primary);
  --panel-content-mt: var(--space-2xl);
}
.panel_text.feature_variant_2 .description {
  grid-column: 3/span 2;
  --panel-content-mt: var(--space-3xl-5xl);
  --panel-content-pl: var(--space-xl);
  color: var(--panel-prose-color);
}
@media only screen and (max-width: 767px) {
  .panel_text.feature_variant_2 .description {
    grid-column: 1/span 3;
    --panel-content-pl: 0;
  }
}
@media only screen and (max-width: 639px) {
  .panel_text.feature_variant_2 .description {
    grid-column: 1/-1;
  }
}

.feature_panels .panel_text.large {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 80vh;
}
.feature_panels .panel_text.large .fp_title {
  --panel-heading-font-family: var(--uppercase-font-family);
  --panel-heading-font-size: var(--step-1);
  --panel-heading-text-transform: uppercase;
  color: var(--black);
}
.feature_panels .panel_text.large .description {
  --prose-font-size: var(--step-5);
  --prose-line-height: 1.3;
  --base-font-family: "WhyteInktrap";
  --base-font-weight: 300;
  color: var(--black);
  text-wrap: balance;
}

.feature_panels .panel_image_text_adjacent {
  position: relative;
  --panel-py: var(--space-7xl);
  --panel-heading-font-size: var(--step-6-7);
  --panel-heading-line-height: var(--leading-tighter);
  --panel-subheading-font-size: var(--step-2);
  --date-font-size: var(--step-2);
  --_inner-px: var(--space-3xl-5xl);
}
@media only screen and (min-width: 898px) {
  .feature_panels .panel_image_text_adjacent::before, .feature_panels .panel_image_text_adjacent::after {
    content: "";
    border-color: #E4E4E4;
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .feature_panels .panel_image_text_adjacent::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .feature_panels .panel_image_text_adjacent::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}
@media only screen and (max-width: 767px) {
  .feature_panels .panel_image_text_adjacent {
    --panel-py: var(--section-vertical-space);
    --_image-mb: var(--space-2xl);
    --_inner-px: var(--CONTAINER-PADDING);
  }
}
.feature_panels .panel_image_text_adjacent .image,
.feature_panels .panel_image_text_adjacent .content {
  padding-left: var(--_inner-px) !important;
  padding-right: var(--_inner-px) !important;
}
.feature_panels .panel_image_text_adjacent .image {
  margin-bottom: var(--_image-mb, 0) !important;
}
.feature_panels .panel_image_text_adjacent .content .subtitle,
.feature_panels .panel_image_text_adjacent .content .date {
  margin-bottom: 0;
}
.feature_panels .panel_image_text_adjacent .content .fp_title {
  text-wrap: balance;
}
.feature_panels .panel_image_text_adjacent .content .fp_title.title--reduce--min {
  --panel-heading-font-size: var(--step-6_5) !important;
}
.feature_panels .panel_image_text_adjacent .content .fp_title.title--reduce--medium {
  --panel-heading-font-size: var(--step-6) !important;
}
.feature_panels .panel_image_text_adjacent .content .fp_title.title--reduce--max {
  --panel-heading-font-size: var(--step-5) !important;
}
.feature_panels .panel_image_text_adjacent .content * + .subtitle {
  margin-top: var(--space-xl);
}
.feature_panels .panel_image_text_adjacent .content * + .date {
  margin-top: var(--space-xl);
}
.feature_panels .panel_image_text_adjacent .content * + .description {
  margin-top: var(--space-5xl);
  margin-bottom: 0;
}
.feature_panels .link {
  margin-top: var(--space-3xl);
}
.feature_panels .panel_image_text_adjacent.panel_variant_2 .content {
  padding-right: var(--space-5xl);
  padding-left: var(--space-5xl);
}

@media only screen and (min-width: 768px) {
  .panel .image.restricted-image-container,
  .panel .image .restricted-image-container,
  .panel.panel_image_text_adjacent .image.restricted-image-container,
  .panel.panel_image_text_adjacent .image .restricted-image-container {
    width: 50%;
  }
}

.panel_image_text_adjacent.feature_variant_1::after {
  content: unset;
}
.panel_image_text_adjacent.feature_variant_2::before {
  border-left: unset;
}

.panel_type_7 {
  --panel-py: 0;
  --panel-mx: calc(50% - 50vw);
  --panel-subheading-font-size: var(--step-4);
  --list-subheading-color: var(--text-primary);
  --list-subheading-font-size: var(--step-1);
  width: 100vw !important;
  background: var(--panel-background);
  --panel-heading-color: var(--text-primary);
}
.panel_type_7::before, .panel_type_7::after {
  content: unset;
}
.panel_type_7 .fp-panel__inner {
  padding: var(--space-4xl-7xl) var(--space-xl-5xl);
  position: relative;
}
@media only screen and (min-width: 898px) {
  .panel_type_7 .fp-panel__inner::before, .panel_type_7 .fp-panel__inner::after {
    content: "";
    border-color: var(--elements-primary);
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .panel_type_7 .fp-panel__inner::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .panel_type_7 .fp-panel__inner::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}
.panel_type_7 .panel_header {
  padding-left: 0;
  padding-right: 0;
}
.panel_type_7 .panel_header h2 + .subtitle {
  margin-top: var(--space-l-xl);
}
.panel_type_7 .panel_header .subtitle {
  max-width: 40ch;
  text-wrap: balance;
}
.panel_type_7 .records_list li {
  height: 100%;
}
.panel_type_7 .records_list li > a {
  height: 100%;
}
@media only screen and (max-width: 459px) {
  .panel_type_7 .records_list li.has_icon {
    text-align: center;
    --list-content-mx: auto;
  }
}
.panel_type_7 .records_list li .content {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.panel_type_7 .records_list li .content .icon {
  text-align: left;
  padding-bottom: var(--space-m-xl);
}
.panel_type_7 .records_list li .content .icon img {
  object-fit: contain;
}
@media only screen and (max-width: 459px) {
  .panel_type_7 .records_list li .content .icon {
    text-align: center;
  }
}
.panel_type_7 .records_list li .content img.records_list_icon_img {
  width: 100%;
  max-height: 47px;
  display: inline-block;
}

.panel_type_7.feature_variant_1 .fp-panel__inner::before, .panel_type_7.feature_variant_1 .fp-panel__inner::after {
  display: none;
}
.panel_type_7.feature_variant_1 .records_list {
  --list-item-px: 0;
}
.panel_type_7.feature_variant_1 .records_list ul {
  gap: var(--space-l);
}
.panel_type_7.feature_variant_1 .gd_image_spacing_20 .content {
  --list-content-pl: 0;
}

.panel_type_7.feature_variant_2 .records_list ul,
.panel--with-counter .records_list ul {
  counter-reset: counter;
}
.panel_type_7.feature_variant_2 .records_list li::before,
.panel--with-counter .records_list li::before {
  content: counter(counter, decimal-leading-zero);
  counter-increment: counter;
}

.panel_type_7.feature_variant_3,
.panel--header-as-column {
  --panel-heading-font-size: var(--step-4);
}
.panel_type_7.feature_variant_3 .records_list ul li,
.panel--header-as-column .records_list ul li {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.panel_type_7.feature_variant_3 .records_list .content,
.panel--header-as-column .records_list .content {
  padding-left: var(--list-item-pl, var(--list-item-px, 0));
  padding-right: var(--list-item-pr, var(--list-item-px, 0));
}
.panel_type_7.feature_variant_3 .panel_header,
.panel--header-as-column .panel_header {
  padding-left: var(--space-l-xl);
  padding-right: var(--space-l-xl);
}
@media only screen and (max-width: 639px) {
  .panel_type_7.feature_variant_3 .panel_header h2,
  .panel--header-as-column .panel_header h2 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--space-m);
  }
}
.panel_type_7.feature_variant_3 .fp-panel__inner,
.panel--header-as-column .fp-panel__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: var(--space-4xl-7xl) 0;
  position: relative;
}
@media only screen and (min-width: 898px) {
  .panel_type_7.feature_variant_3 .fp-panel__inner::before, .panel_type_7.feature_variant_3 .fp-panel__inner::after,
  .panel--header-as-column .fp-panel__inner::before,
  .panel--header-as-column .fp-panel__inner::after {
    content: "";
    border-color: var(--elements-primary);
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .panel_type_7.feature_variant_3 .fp-panel__inner::before,
  .panel--header-as-column .fp-panel__inner::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .panel_type_7.feature_variant_3 .fp-panel__inner::after,
  .panel--header-as-column .fp-panel__inner::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}
@media only screen and (max-width: 639px) {
  .panel_type_7.feature_variant_3 .fp-panel__inner,
  .panel--header-as-column .fp-panel__inner {
    grid-template-columns: 1fr;
  }
}

.panel_type_7.feature_variant_4 {
  --panel-heading-font-size: var(--step-7-8);
}
@media only screen and (min-width: 768px) {
  .panel_type_7.feature_variant_4 .panel_header h2 {
    max-width: 75%;
    text-wrap: balance;
  }
}
.panel_type_7.feature_variant_4 .fp-panel__inner {
  --panel-py: var(--space-4xl-7xl);
  --panel-header-mb: calc(var(--space-7xl) + var(--space-8xl));
}
@media only screen and (max-width: 897px) {
  .panel_type_7.feature_variant_4 .fp-panel__inner {
    --panel-header-mb: var(--space-8xl);
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_7.feature_variant_4 .fp-panel__inner {
    --panel-py: var(--section-vertical-space);
    --panel-header-mb: var(--section-vertical-space);
  }
}

.heading_wrapper + #content li.panel_type_7.panel_number_1 .fp-panel__inner {
  padding-top: 0;
}

.panel_header_link {
  display: flex;
  justify-content: space-between;
}
.panel_header_link h2 {
  --panel-heading-font-family: var(--uppercase-font-family);
  --panel-heading-font-size: var(--step--2);
  --panel-heading-text-transform: uppercase;
}
.panel_header_link .fp-panel__header-link {
  font-family: var(--uppercase-font-family);
  font-size: var(--step--2);
  line-height: var(--leading-tight);
  text-transform: uppercase;
  text-decoration: none;
}
.panel_header_link .fp-panel__header-link:hover {
  transition: var(--transition);
  color: var(--blue);
}

.panel_type_7.testimonials {
  background: var(--primary-body);
  --list-heading-font-size: var(--step-4);
}
.panel_type_7.testimonials .records_list {
  --list-item-py: var(--space-2xl);
  --list-item-px: var(--space-2xl);
  --list-item-width: auto;
}
@media only screen and (max-width: 767px) {
  .panel_type_7.testimonials .records_list ul {
    --grid-columns: 1;
  }
}
.panel_type_7.testimonials .records_list ul li {
  background: var(--white);
}
.panel_type_7.testimonials .records_list ul li .content {
  --list-content-pl: 0;
  --list-content-pr: 0;
}
.panel_type_7.testimonials .records_list ul li .content .subtitle {
  --list-subheading-font-size: var(--step-1);
  --list-content-mt: var(--space-l);
}
.panel_type_7.testimonials .records_list ul li .content .date {
  --list-content-font-size: var(--step--1);
  --list-content-mt: 0;
}
.panel_type_7.testimonials .image > span {
  justify-content: flex-start;
}

.feature_panels .panel_type_8 {
  --background-colour: var(--primary-body);
  --lazyload-background-color: var(--background-colour);
  background: var(--background-colour);
}
.feature_panels .panel_type_8 .content {
  padding: 0;
  margin-top: var(--space-xl);
}

.feature_panels .panel_type_9 {
  --panel-mx: calc(50% - 50vw);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.panel_type_9 > a,
.panel_type_9 .panel_header,
.panel_type_9 .image {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.panel_type_9 .panel_header::after {
  display: none;
}
.panel_type_9 .image {
  float: unset !important;
  display: block;
}
.panel_type_9 .content {
  max-width: 65ch;
  padding: 0;
  margin: var(--space-l) auto 0;
}
.panel_type_9 .content .subtitle {
  margin: 0;
}
.panel_type_9 .content .date {
  margin: 0;
}
.panel_type_9 .content .fp_title + .subtitle {
  margin-top: var(--space-2xs);
}
.panel_type_9 .content * + .date {
  margin-top: var(--space-2xs);
}

.feature_panels .panel_type_9.panel.panel_content_alignment_center .content {
  margin: var(--space-l) auto 0;
}

.feature_panels .panel_type_9.panel.panel_content_alignment_right .content .subtitle {
  margin: 0 0 0 auto;
}

.panel_type_9.feature_variant_2 {
  --panel-header-font-size: var(--step-8);
  --panel-subheading-font-size: var(--step-0);
}
.panel_type_9.feature_variant_2 .panel_header {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "header header header ." ". . subtitle subtitle";
}
@media only screen and (max-width: 639px) {
  .panel_type_9.feature_variant_2 .panel_header {
    gap: var(--space-xl);
    grid-template-columns: 1fr;
    grid-template-areas: "header" "subtitle";
  }
}
.panel_type_9.feature_variant_2 .panel_header h2 {
  grid-area: header;
  padding: 0 var(--CONTAINER-PADDING);
  max-width: 20ch;
}
.panel_type_9.feature_variant_2 .panel_header .subtitle {
  grid-area: subtitle;
  padding: 0 var(--CONTAINER-PADDING);
  max-width: 65ch;
}
.panel_type_9.feature_variant_2 .image {
  padding: 0 var(--CONTAINER-PADDING);
  max-width: 120rem;
  margin-top: var(--space-4xl-5xl);
}
.panel_type_9.feature_variant_2 .fluid-width-video-wrapper {
  border-radius: var(--space-xl);
  overflow: hidden;
}

.feature_panels .panel_image_text_columns .content {
  padding-left: var(--space-2xl);
}
.feature_panels .panel_image_text_columns .content.feature_variant_2 {
  padding-right: var(--space-2xl);
}
.feature_panels .panel_image_text_columns .content .content_columns.columns_enabled {
  --column-gap: var(--space-xl);
}

.panel_type_11 .pull_quote_content,
.panel_type_11 .pull_quote_content p {
  color: var(--text-primary);
  font-size: var(--step-2);
}
.panel_type_11 .content_full {
  --panel-content-mt: var(--space-m);
}
.panel_type_11 .read_more_link {
  --panel-content-mt: var(--space-xl);
  display: flex;
}
.panel_type_11 .enquire_button_container {
  --panel-content-mt: var(--space-xl);
}

.feature_panels_inner ul li.panel_type_3001 {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-mx: calc(50% - 50vw);
  background: var(--panel-background);
}
@media only screen and (min-width: 898px) {
  .feature_panels_inner ul li.panel_type_3001::before, .feature_panels_inner ul li.panel_type_3001::after {
    content: "";
    border-color: #E4E4E4;
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .feature_panels_inner ul li.panel_type_3001::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .feature_panels_inner ul li.panel_type_3001::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}

.panel_type_3001 {
  --panel-py: 0;
  background: var(--panel-background);
}
@media only screen and (max-width: 767px) {
  .panel_type_3001.panel_variant_standard .panel-background-column-right,
  .panel_type_3001.panel_variant_standard .panel-background-outerspace {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3001.panel_variant_2 .panel-background-column-left,
  .panel_type_3001.panel_variant_2 .panel-background-outerspace {
    display: none;
  }
}
.panel_type_3001 .panel-background {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, calc(var(--CONTAINER-WIDTH) / 4)) minmax(0, calc(var(--CONTAINER-WIDTH) / 4)) minmax(0, calc(var(--CONTAINER-WIDTH) / 4)) minmax(0, calc(var(--CONTAINER-WIDTH) / 4)) minmax(0, 1fr);
  position: absolute;
  height: 100%;
  padding: 0 !important;
  background: var(--panel-background);
}
@media only screen and (max-width: 767px) {
  .panel_type_3001 .panel-background {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 1/1;
    height: auto;
  }
}
.panel_type_3001 .panel-background .panel-background-inner {
  border-left: solid 1px var(--grid-border-color);
}
.panel_type_3001 .panel-background .panel-background-inner:nth-last-child(2) {
  border-right: solid 1px var(--grid-border-color);
}
.panel_type_3001 .panel-background .panel-background-column-left,
.panel_type_3001 .panel-background .panel-background-column-right {
  background-color: var(--background-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.panel_type_3001 .panel-background .full-bleed-left {
  grid-column: 1/4;
}
.panel_type_3001 .panel-background .full-bleed-right {
  grid-column: 4/-1;
}
.panel_type_3001 .panel_column__left .inner {
  padding: var(--space-4xl-7xl) var(--space-l) var(--space-4xl-7xl) var(--space-xl-5xl);
}
.panel_type_3001 .panel_column__right .inner {
  padding: var(--space-4xl-7xl) var(--space-xl-5xl) var(--space-4xl-7xl) var(--space-l);
}
.panel_type_3001 .panel_column__left,
.panel_type_3001 .panel_column__right {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .panel_type_3001 .panel_column__left,
  .panel_type_3001 .panel_column__right {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3001 .panel_column__left.panel_column__image .image-wrapper,
  .panel_type_3001 .panel_column__right.panel_column__image .image-wrapper {
    aspect-ratio: 1/1 !important;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3001 .panel_column__left.panel_column__image .inner,
  .panel_type_3001 .panel_column__right.panel_column__image .inner {
    padding: 0;
  }
}
.panel_type_3001 .panel_column__left .inner,
.panel_type_3001 .panel_column__right .inner {
  width: 100%;
  max-width: calc(var(--CONTAINER-WIDTH) / 2);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .panel_type_3001 .panel_column__left .inner,
  .panel_type_3001 .panel_column__right .inner {
    padding: var(--space-3xl) var(--CONTAINER-PADDING);
  }
}
.panel_type_3001 .panel_column__left {
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .panel_type_3001.feature_variant_2 > a,
  .panel_type_3001.feature_variant_2 .panel_inner {
    flex-direction: column-reverse;
  }
}
.panel_type_3001 > a,
.panel_type_3001 .panel_inner {
  display: flex !important;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .panel_type_3001 > a,
  .panel_type_3001 .panel_inner {
    flex-direction: column;
  }
}
.panel_type_3001 .image {
  width: 100%;
}
.panel_type_3001 .fp_title {
  line-height: var(--leading-tighter);
  color: var(--text-primary);
  text-wrap: balance;
  font-size: var(--step-6);
  font-weight: 200;
}
.panel_type_3001 .subtitle {
  font-size: var(--step-3);
  color: var(--text-primary);
  margin-top: var(--space-xl);
}
.panel_type_3001 .description {
  margin-top: var(--space-2xl);
  margin-bottom: 0;
  color: var(--panel-prose-color, --text-secondary);
}
.panel_type_3001 .image.restricted-image-container:not(.image-is-cropped) .object-fit-container {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .panel_type_3001 .image.restricted-image-container:not(.image-is-cropped) .object-fit-container {
    position: absolute !important;
  }
}
.panel_type_3001 .image-wrapper {
  position: relative;
  display: flex;
}
.panel_type_3001 .button {
  margin-top: var(--space-3xl);
}
.panel_type_3001 .image.restricted-image-container,
.panel_type_3001 .image .restricted-image-container, .panel_type_3001.panel_image_text_adjacent .image.restricted-image-container, .panel_type_3001.panel.panel_image_text_adjacent .image .restricted-image-container {
  width: 100%;
}

.panel_bg__default {
  --background-color: var(--panel-background);
}

.panel_prose__light {
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
}
.panel_prose__light .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}

.panel_bg__alt {
  --background-color: var(--panel-background-alt);
}

.panel_prose__dark {
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-secondary);
}
.panel_prose__dark .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}

.panel_type_3001.fp_title_h1 .fp_title {
  font-size: var(--step-6_5);
  font-weight: 300;
}

.hero_anim_web_container {
  position: relative;
  height: 100%;
  min-height: 58rem;
}
@media only screen and (max-width: 767px) {
  .hero_anim_web_container {
    min-height: 30rem;
  }
}

.anim_navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.anim_nav {
  display: flex;
  gap: 10px;
  font-size: 8px;
}

.anim_nav .active {
  text-decoration: underline;
}

.anim_logo {
  height: 52px;
}

.anim_header_section {
  padding: 56px 0;
  color: black;
}

.anim_header_text {
  font-size: 15px;
  letter-spacing: 0.02em;
  opacity: 0;
}

.anim_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.anim_grid__column_2 {
  margin-top: 40px;
}

.anim_grid__column_3 {
  margin-top: 20px;
}

.anim_grid__item {
  margin-bottom: 40px;
}

.anim_grid__image {
  background: #F2F4F4;
}

.anim_grid__image img {
  display: block;
}

.anim_grid__title {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 3px;
  /* color: black; */
}

#anim_tile_image {
  aspect-ratio: 178/256;
  object-fit: cover;
  object-position: center;
  /* transform: scale(1.25) */
  /* overflow: hidden; */
}

#anim_tile_image img {
  /* opacity: 0; */
  transform: scale(1.25);
}

#anim_tile_image_2 {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.anim_contant_add_image {
  transform: translate(50px, 25px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 16px;
  line-height: 2;
}

#anim_tile_title_2 {
  opacity: 0;
}

#image_path_svg {
  position: absolute;
  top: 32%;
  right: -25%;
  opacity: 0;
}

#anim_add_image {
  position: absolute;
  width: 230px;
  top: 16%;
  right: 0%;
  display: none;
}

.anim_add_heading {
  border: 1px dashed black;
  /* padding: 20px 18px; */
  position: absolute;
  /* width: 220px;  */
  /* height: 25px; */
  width: 0;
  height: 0;
  /* top: 113px;
  left: -90px; */
  /* top: 9.95%; */
  /* left: -30.7%; */
  bottom: 84.2%;
  left: -14.6%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Calibre", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  transform-origin: bottom left;
}

.anim_add_heading svg {
  height: 25px;
  margin-right: 30px;
  overflow: hidden;
}

.anim_add_heding_text {
  white-space: nowrap;
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  /* opacity: 0; */
}

.anim_cursor {
  width: 1px;
  height: 25px;
  background: black;
  margin-left: 8px;
  animation: cursor-blink 0.75s steps(2) 5s;
}

.top_corners::before,
.top_corners::after,
.bottom_corners::before,
.bottom_corners::after {
  content: "";
  background: black;
  position: absolute;
  width: 7px;
  height: 7px;
  top: -3px;
  left: -3px;
}

.top_corners::after {
  left: unset;
  right: -3px;
}

.bottom_corners::before {
  top: unset;
  bottom: -3px;
}

.bottom_corners::after {
  left: unset;
  top: unset;
  bottom: -3px;
  right: -3px;
}

.hero_anim_web {
  width: 600px;
  padding: 16px;
  font-family: arial;
  background: white;
  color: #303030;
  font-weight: 400;
  position: absolute;
  top: 1vh;
  left: 5vw;
  transform: scale(0.9);
  transform-origin: top center;
}

@media screen and (max-width: 1480px) {
  .hero_anim_web {
    left: 2vw;
    transform: scale(0.8);
  }
  /* .anim_add_heading {
      left: -29%
  } */
}
@media screen and (max-width: 1300px) {
  .hero_anim_web {
    left: -3vw;
    /* top: -2vh; */
  }
}
@media screen and (max-width: 1180px) {
  .hero_anim_web {
    left: -3vw;
    transform: scale(0.7);
  }
  /* .anim_add_heading {
      left: -27%
  } */
}
@media screen and (max-width: 1080px) {
  body.page-websites.layout-hero-header #container.hero-layout-video #hero_header .inner {
    height: 500px;
    min-height: 500px;
  }
  .hero_anim_web {
    left: -4vw;
    top: 3vh;
    transform: scale(0.6);
  }
  /* .anim_add_heading {
      left: -24%
  } */
}
@media screen and (max-width: 970px) {
  .hero_anim_web {
    left: -8vw;
    /* top: 14vh; */
    transform: scale(0.55);
  }
}
@media screen and (max-width: 870px) {
  .hero_anim_web {
    left: -13vw;
    transform: scale(0.5);
  }
}
@media screen and (max-width: 767px) {
  .hero_anim_web_container {
    width: 100%;
  }
  body.page-websites.layout-hero-header #container.hero-layout-video #hero_header .inner {
    min-height: 550px;
  }
  .hero_anim_web {
    left: 50%;
    transform: translateX(-50%) scale(0.55);
    top: 0;
  }
}
@media screen and (max-width: 419px) {
  .hero_anim_web {
    transform: translateX(-50%) scale(0.4);
  }
}
@media (prefers-reduced-motion) {
  .anim_add_heading {
    width: auto;
    height: auto;
    padding: 20px 18px;
  }
  #anim_tile_image img {
    transform: scale(1);
  }
  .anim_cursor {
    animation: unset;
  }
}
.feature_panels_inner ul li.panel_type_3001.feature_variant_3 .panel-background {
  display: none;
}

/* Record slider
------------------------------------------------------------ */
.feature_panels_inner > ul > li.panel_record_slider_custom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-mx: calc(50% - 50vw) !important;
}

.panel_record_slider_custom.panel_bg__default {
  --background-color: var(--panel-background);
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
  background-color: var(--background-color) !important;
}
.panel_record_slider_custom.panel_bg__default .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}
.panel_record_slider_custom.panel_bg__alt {
  --background-color: var(--panel-background-alt);
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-secondary);
  background-color: var(--background-color) !important;
}
.panel_record_slider_custom.panel_bg__alt .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}
.panel_record_slider_custom .panel_record_slider_custom_inner {
  padding-top: var(--CONTAINER-PADDING);
  padding-bottom: var(--CONTAINER-PADDING);
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .panel_record_slider_custom .panel_record_slider_custom_inner {
    flex-direction: column;
  }
}
.panel_record_slider_custom .panel_record_slider_custom_inner .content {
  width: 100%;
}
.panel_record_slider_custom .panel_header {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-l);
  width: 100%;
  padding-bottom: var(--CONTAINER-PADDING);
}
.panel_record_slider_custom .panel_header h2 {
  max-width: 25ch;
}
.panel_record_slider_custom .panel_header .subtitle {
  max-width: 50ch;
}
.panel_record_slider_custom .button_wrapper {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-l);
  width: 100%;
  padding-bottom: var(--CONTAINER-PADDING);
}
.panel_record_slider_custom .records_list .link {
  display: none;
}

.panel_type_3002 .button_wrapper {
  margin-top: var(--space-2xl);
  text-align: center;
}

body .is-overflow .record_slider_custom {
  --item-width: clamp(32rem, 25vw, 60rem);
  --vertical-gap: 0;
}
@media only screen and (max-width: 459px) {
  body .is-overflow .record_slider_custom {
    --item-width: 28rem ;
  }
}
body .is-overflow .record_slider_custom ul {
  margin-right: 0;
}
body .is-overflow .record_slider_custom ul li {
  padding-right: 0;
  margin-right: var(--horizontal-gap, var(--gap, 5.4rem));
  width: var(--item-width) !important;
}

/* Record Four Column
------------------------------------------------------------ */
.feature_panels_inner > ul > li.panel_record_four_column_custom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-py: 0;
  --panel-mx: calc(50% - 50vw);
}

.panel_record_four_column_custom {
  --panel-content-mt: var(--space-3xs);
  --panel-heading-font-size: var(--step-7-8);
  --panel-subheading-color: var(--text-primary);
  --panel-subheading-font-size: var(--step-7);
  --panel-subheading-line-height: var(--leading-tight);
  --list-heading-font-size: var(--step-4);
  --list-heading-line-height: var(--leading-tighter);
  --list-heading-color: var(--text-primary);
  --list-subheading-line-height: var(--leading-tight);
  --list-subheading-font-size: var(--step-4);
  --list-subheading-color: var(--text-primary);
  --background-color: var(--panel-background);
  --panel-heading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
  --grid-border-color: var(--elements-primary, #e4e4e4);
  --button-px: var(--space-l);
  --button-py: var(--space-s);
}
@media only screen and (max-width: 1180px) {
  .panel_record_four_column_custom {
    --list-subheading-font-size: var(--step-3);
  }
}
.panel_record_four_column_custom .panel-background {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(4, minmax(0, calc(var(--CONTAINER-WIDTH) / 4))) minmax(0, 1fr);
  position: absolute;
  height: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 !important;
  background: var(--background-color);
}
@media only screen and (max-width: 897px) {
  .panel_record_four_column_custom .panel-background {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 459px) {
  .panel_record_four_column_custom .panel-background {
    grid-template-columns: 1fr;
  }
}
.panel_record_four_column_custom .panel-outerspace {
  padding: 0 !important;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_column_custom .panel-outerspace {
    display: none !important;
  }
}
.panel_record_four_column_custom .panel_header {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-l);
  width: 100%;
  padding-top: max(var(--space-l-2xl), 14%);
  padding-bottom: max(var(--space-l-2xl), 14%);
  text-wrap: balance;
  /* wraps lines slighty more nicely (evenly) - pretty decent support in chrome and edge */
}
@media only screen and (min-width: 898px) {
  .panel_record_four_column_custom .panel_header h2 {
    max-width: 75%;
  }
}
.panel_record_four_column_custom .panel_header .subtitle {
  max-width: 50ch;
}
.panel_record_four_column_custom.has-images .panel_header {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}
.panel_record_four_column_custom.subheading-only .panel_header {
  padding-top: max(var(--space-2xl), 12%);
  padding-bottom: max(var(--space-2xl), 12%);
}
.panel_record_four_column_custom .button_wrapper {
  --list-content-mt: var(--space-m);
  --list-content-mt: auto;
  margin-top: var(--space-m);
}

.panel_record_four_column_custom_inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  position: relative;
  padding: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 898px) {
  .panel_record_four_column_custom_inner::before, .panel_record_four_column_custom_inner::after {
    content: "";
    border-color: var(--grid-border-color);
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .panel_record_four_column_custom_inner::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .panel_record_four_column_custom_inner::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}
@media only screen and (max-width: 897px) {
  .panel_record_four_column_custom_inner {
    flex-direction: column;
  }
}
.panel_record_four_column_custom_inner .text_content {
  --list-item-pt: var(--space-3xl);
  --list-item-px: var(--space-m);
  margin-bottom: var(--space-3xl);
}
.panel_record_four_column_custom_inner .panel_header + .text_content {
  --list-item-pt: 0;
}
.panel_record_four_column_custom_inner .records_list {
  --grid-columns: 4;
  --gap: 0;
  --list-item-px: 0;
  --list-item-width: 100%;
  --list-image-mb: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_column_custom_inner .records_list {
    --grid-columns: 2;
  }
}
@media only screen and (max-width: 459px) {
  .panel_record_four_column_custom_inner .records_list {
    --grid-columns: 1;
  }
}
.panel_record_four_column_custom_inner .records_list .image::after {
  display: none !important;
}
.panel_record_four_column_custom_inner .records_list .image > span {
  position: static !important;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_column_custom_inner .records_list.image_content {
    display: none !important;
  }
}
.panel_record_four_column_custom_inner .records_list.image_content ul {
  align-items: flex-start;
}
.panel_record_four_column_custom_inner .records_list.text_content .image {
  display: none;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_column_custom_inner .records_list.text_content .image {
    display: block;
  }
}
.panel_record_four_column_custom_inner .records_list .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 var(--CONTAINER-PADDING);
}
@media only screen and (max-width: 897px) {
  .panel_record_four_column_custom_inner .records_list .content {
    flex-grow: 0;
  }
}
.panel_record_four_column_custom_inner .records_list .content.has-link .description {
  --list-content-mb: var(--space-2xl-4xl);
}
.panel_record_four_column_custom_inner .records_list ul {
  --vertical-gap: var(--space-xl-2xl) !important;
}
.panel_record_four_column_custom_inner .records_list ul li {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_column_custom_inner .records_list ul li {
    --list-item-pt: var(--space-xl-2xl);
  }
}
@media only screen and (max-width: 459px) {
  .panel_record_four_column_custom_inner .records_list ul li {
    height: auto;
  }
}
.panel_record_four_column_custom_inner .unit-pullout {
  font-size: var(--step-6);
}

.panel_record_four_column_custom.feature_variant_2 .records_list .subtitle {
  --list-content-mb: var(--space-m-l);
  order: 1;
}
.panel_record_four_column_custom.feature_variant_2 .records_list .fp_title {
  order: 2;
}
.panel_record_four_column_custom.feature_variant_2 .records_list .description {
  --list-content-mt: var(--space-m-l);
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  order: 3;
}
.panel_record_four_column_custom.feature_variant_2 .records_list .button_wrapper {
  order: 4;
}
.panel_record_four_column_custom.feature_variant_2 .image_content ul {
  align-items: center;
}
.panel_record_four_column_custom.feature_variant_2 .image_content li {
  justify-content: center;
}
.panel_record_four_column_custom.feature_variant_2 .image_content .image {
  --list-image-mb: 0;
}

.panel_record_four_column_custom.feature_variant_3 {
  --panel-heading-font-size: var(--step-5);
  --panel-heading-font-weight: 200;
}
.panel_record_four_column_custom.feature_variant_3 .panel_header {
  padding: var(--space-4xl-7xl) var(--space-xl-5xl) var(--space-6xl);
}
.panel_record_four_column_custom.feature_variant_3 .text_content {
  padding-bottom: var(--space-4xl-7xl);
}
.panel_record_four_column_custom.feature_variant_3 .records_list {
  --grid-columns: 4;
  padding: var(--space-4xl-7xl) var(--space-xl-5xl);
  padding-top: 0;
  max-width: var(--CONTAINER-WIDTH);
  overflow: hidden;
}
.panel_record_four_column_custom.feature_variant_3 .records_list > ul {
  grid-template-columns: auto repeat(var(--grid-columns), minmax(0, 1fr));
}
@media only screen and (max-width: 1250px) {
  .panel_record_four_column_custom.feature_variant_3 .records_list > ul {
    grid-template-columns: auto repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 580px) {
  .panel_record_four_column_custom.feature_variant_3 .records_list > ul {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media only screen and (max-width: 1180px) {
  .panel_record_four_column_custom.feature_variant_3 .records_list {
    --grid-columns: 3;
    padding-right: var(--space-xl-5xl);
  }
}
@media only screen and (max-width: 767px) {
  .panel_record_four_column_custom.feature_variant_3 .records_list {
    --grid-columns: 2;
  }
}
@media only screen and (max-width: 639px) {
  .panel_record_four_column_custom.feature_variant_3 .records_list {
    --grid-columns: 1;
  }
}
.panel_record_four_column_custom.feature_variant_3 .records_list .content {
  padding: var(--space-xs-s) var(--space-xs-s) 0;
}
@media only screen and (max-width: 1180px) {
  .panel_record_four_column_custom.feature_variant_3 .records_list .content {
    padding: var(--space-l);
  }
}
.panel_record_four_column_custom.feature_variant_3 ul {
  --horizontal-gap: var(--space-lxl);
}
.panel_record_four_column_custom.feature_variant_3 ul::before {
  align-self: end;
  content: "";
  display: block;
  height: min(360px, 20vw);
  width: min(360px, 20vw);
  background-size: min(360px, 20vw) min(360px, 20vw);
  background-image: var(--ARTLOGIC-ICON-A);
  background-repeat: no-repeat;
  max-width: 360px;
}
@media only screen and (max-width: 1180px) {
  .panel_record_four_column_custom.feature_variant_3 ul::before {
    align-self: center;
  }
}
@media only screen and (max-width: 1250px) {
  .panel_record_four_column_custom.feature_variant_3 ul::before {
    grid-row: span 2;
    content: "";
    display: block;
    height: 100%;
    width: 23vw;
    background-size: contain;
    background-image: var(--ARTLOGIC-ICON-A);
    background-repeat: no-repeat;
    background-position: right;
  }
}
@media only screen and (max-width: 580px) {
  .panel_record_four_column_custom.feature_variant_3 ul::before {
    background-position: left;
    height: 100px;
    width: 100%;
  }
}
.panel_record_four_column_custom.feature_variant_3 li {
  --list-item-pt: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-height: 36rem;
}
@media only screen and (max-width: 1180px) {
  .panel_record_four_column_custom.feature_variant_3 li {
    max-height: 100%;
  }
}
.panel_record_four_column_custom.feature_variant_3 h2 {
  --list-heading-font-family: var(--uppercase-font-family);
  --list-heading-font-size: var(--step-6-7);
  --list-heading-text-transform: uppercase;
}
@media only screen and (max-width: 1660px) {
  .panel_record_four_column_custom.feature_variant_3 h2 {
    --list-heading-font-size: var(--step-6-7);
  }
}
@media only screen and (max-width: 1250px) {
  .panel_record_four_column_custom.feature_variant_3 h2 {
    --list-heading-font-size: var(--step-6_5);
  }
}
.panel_record_four_column_custom.feature_variant_3 .description {
  --list-content-font-family: var(--uppercase-font-family);
  --list-content-text-transform: uppercase;
  --list-content-font-size: var(--step--1_5);
  --list-content-line-height: var(--leading-tight);
}

.feature_panels_inner ul li.panel_type_3004 {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  --panel-px: var(--CONTAINER-PADDING);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel_type_3004 {
  min-height: 100vh !important;
}
.panel_type_3004 .panel_header {
  --panel-header-mb: var(--space-2xl-4xl);
  text-align: center;
  width: 100%;
}
.panel_type_3004 .panel_header_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-2xl-4xl);
}
.panel_type_3004 .panel_header_content_body {
  margin-top: var(--space-xl);
  max-width: 75ch;
}
.panel_type_3004 .panel_header_subtitle {
  margin-top: var(--space-xl);
  font-size: var(--step-2);
}
.panel_type_3004 .filters {
  grid-template-columns: 1fr;
  width: min-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 639px) {
  .panel_type_3004 .filters {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.panel_type_3004 .currency-selector {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  z-index: 10;
}
@media only screen and (max-width: 639px) {
  .panel_type_3004 .currency-selector {
    justify-content: center;
  }
}
.panel_type_3004 .filter-button-group {
  --_grid-columns: 5;
}
@media only screen and (max-width: 639px) {
  .panel_type_3004 .filter-button-group {
    --_grid-columns: 1;
    border-radius: 1.25em;
    width: 75%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 639px) {
  .panel_type_3004 .ui-group--category-type {
    order: 2;
  }
}
.panel_type_3004 .ui-group--customer-type {
  width: min-content;
  margin: 0 auto;
}
@media only screen and (max-width: 639px) {
  .panel_type_3004 .ui-group--customer-type {
    width: 75%;
    order: 1;
  }
}
.panel_type_3004 .ui-group--customer-type .filter-button-group {
  width: 100%;
  --_grid-columns: 3;
  border-radius: 100px;
}
@media only screen and (max-width: 639px) {
  .panel_type_3004 .ui-group {
    width: 100%;
  }
}
.panel_type_3004 .tier-price-wrapper {
  display: none;
  opacity: 0;
  flex-direction: column;
  padding: var(--space-s-l) 0 0;
  color: var(--text-secondary);
  padding: 0;
  color: var(--text-primary);
}
.panel_type_3004 .tier-price-wrapper.show {
  display: flex;
  opacity: 1;
  animation-fill-mode: forwards;
}
.panel_type_3004 .tier-price-wrapper.exiting {
  display: flex;
}
.panel_type_3004 .pricing_plans_tables .pricing_table {
  display: none;
  flex-basis: 32%;
  flex-direction: column;
}
.panel_type_3004 .pricing_plans_tables .pricing_table.show {
  display: flex;
  opacity: 1;
}
.panel_type_3004 .pricing_plans_tables .pricing_table .pricing_table {
  opacity: 0;
  animation: 0.4s cubic-bezier(0.28, 0.1, 0.24, 1) fadeInUp;
  animation-fill-mode: forwards;
}
.panel_type_3004 .pricing_plans_tables .pricing_table .pricing_table.exiting {
  animation: 0.4s cubic-bezier(0.28, 0.1, 0.24, 1) fadeOutDown;
}
.panel_type_3004 .pricing_plans_tables .pricing_table.exiting {
  display: flex;
}
.panel_type_3004 .pricing_plans_tables .pricing_table table {
  border-collapse: collapse;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  padding-top: var(--space-l);
  font-size: var(--step-1);
  color: var(--text-primary);
}
@media only screen and (min-width: 768px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_2 td,
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_2 th {
    width: 50%;
  }
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_3 td,
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_3 th {
    width: 33.3%;
  }
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_4 td,
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_4 th {
    width: 25%;
  }
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_5 td,
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_5 th {
    width: 20%;
  }
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_6 td,
  .panel_type_3004 .pricing_plans_tables .pricing_table table.cols_6 th {
    width: 16.6%;
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table tbody {
  display: table;
}
.panel_type_3004 .pricing_plans_tables .pricing_table tr {
  border-top: 1px solid var(--base-100);
  border-bottom: 1px solid var(--base-100);
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table tr {
    display: flex;
    flex-direction: column;
    margin: var(--space-m) 0;
    border: 1px solid var(--base-100);
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table tr th {
  font-weight: normal;
  padding: var(--space-s);
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table tr th {
    font-size: var(--step-2);
    width: 100%;
    border: unset;
    background: var(--base-50);
    padding: var(--space-m);
    border-top: 1px solid var(--base-100);
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table .pricing_table_feature_wrapper {
  display: flex;
  gap: 1em;
  font-size: var(--step-0);
  align-items: center;
}
.panel_type_3004 .pricing_plans_tables .pricing_table .pricing_table_feature_wrapper .pricing_table_feature_label {
  border-radius: 1em;
}
.panel_type_3004 .pricing_plans_tables .pricing_table .pricing_table_feature_wrapper .pricing_table_feature_label.beta {
  background: #66C3F1;
}
.panel_type_3004 .pricing_plans_tables .pricing_table .pricing_table_feature_wrapper .pricing_table_feature_label.coming-soon {
  background: #FFBF73;
}
.panel_type_3004 .pricing_plans_tables .pricing_table .pricing_table_feature_wrapper .pricing_table_feature_label .pricing_table_feature_label-text {
  padding: 0em 0.75em;
  color: var(--white);
  font-size: var(--step--1);
  line-height: 1.4em;
}
.panel_type_3004 .pricing_plans_tables .pricing_table .tier-headings {
  text-align: center;
  border-top: 0;
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table .tier-headings > td {
    display: none;
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table .tier-headings .user-tier-title {
  line-height: var(--leading-tight);
  font-size: var(--step-2);
}
.panel_type_3004 .pricing_plans_tables .pricing_table .tier-headings .tier-price {
  font-size: var(--step-1);
}
.panel_type_3004 .pricing_plans_tables .pricing_table .tier-headings .tier-note {
  font-size: var(--step-0);
  color: var(--text-secondary);
}
.panel_type_3004 .pricing_plans_tables .pricing_table td {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table td {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-s) var(--space-m);
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table td .feature-label {
  display: none;
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table td .feature-label {
    display: block;
    width: 50%;
    text-align: left;
    font-size: var(--step-1);
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table td .pricing-icon {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table td .pricing-icon {
    width: 50%;
    justify-content: flex-end !important;
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table td .pricing-icon > svg {
  --_size: var(--space-l);
  width: var(--_size);
  height: var(--_size);
}
.panel_type_3004 .pricing_plans_tables .pricing_table td .feature-quantity-wrapper {
  display: none;
  font-size: var(--step-0);
}
.panel_type_3004 .pricing_plans_tables .pricing_table td .feature-quantity-wrapper .feature-quantity-label {
  display: none;
}
.panel_type_3004 .pricing_plans_tables .pricing_table td .feature-quantity-wrapper.show {
  display: block;
  opacity: 1;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table td .feature-quantity-wrapper.show {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table td .feature-quantity-wrapper.show .feature-quantity-label {
  display: none;
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table td .feature-quantity-wrapper.show .feature-quantity-label {
    display: block;
    width: 50%;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3004 .pricing_plans_tables .pricing_table td .feature-quantity-wrapper.show .feature-quantity {
    width: 50%;
    text-align: right;
  }
}
.panel_type_3004 .pricing_plans_tables .pricing_table td .feature-quantity-wrapper.exiting {
  display: block;
}

.pricing_table_caption {
  max-width: 75ch;
  margin-top: var(--space-2xl-4xl);
  margin-bottom: var(--space-2xl-4xl);
}

.pricing_plans_container {
  width: 100%;
}

.panel_bg__light {
  --background-color: var(--panel-background);
}

.panel_prose__light {
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
}
.panel_prose__light .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}

.panel_bg__dark {
  --background-color: var(--panel-background-alt);
}

.panel_prose__dark {
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-secondary);
}
.panel_prose__dark .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}

.feature_panels_inner {
  --panel-heading-font-size: var(--step-6-7);
}
.feature_panels_inner ul li.panel_type_3005 {
  overflow: hidden;
  --panel-mx: calc(50% - 50vw);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #eae5e0;
}
.feature_panels_inner ul .panel_type_3012 + li.panel_type_3005 {
  padding-top: 0 !important;
}

.bundle-subtitle {
  padding: var(--space-xs) var(--space-s) var(--space-xs) 0;
}

.panel_type_3005 {
  color: var(--text-primary);
  line-height: var(--leading-snug);
  min-height: 100vh;
}
.panel_type_3005 .bundle_comparison_container,
.panel_type_3005 .bundle_plans_container {
  width: 100%;
  padding: 0 var(--section-vertical-space);
  max-width: 1440px;
}
@media only screen and (max-width: 1279px) {
  .panel_type_3005 .bundle_comparison_container,
  .panel_type_3005 .bundle_plans_container {
    padding: 0 var(--CONTAINER-PADDING);
  }
}
@media only screen and (max-width: 1180px) {
  .panel_type_3005 .bundle_comparison_container,
  .panel_type_3005 .bundle_plans_container {
    padding: 0 var(--section-vertical-space);
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .bundle_comparison_container,
  .panel_type_3005 .bundle_plans_container {
    padding: 0 var(--CONTAINER-PADDING);
  }
}
.panel_type_3005 .bundle_plans_container::before {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  content: "";
  background: #eae5e0;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  right: 0;
  height: var(--space-6xl);
}
.panel_type_3005 .bundle_table_top_label_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--_text-secondary);
  font-size: var(--step--1-0);
  line-height: var(--leading-snug);
  min-height: 2.2em;
}
.panel_type_3005 .button {
  display: initial;
  margin-top: var(--space-l);
}
.panel_type_3005 .panel_header {
  --panel-header-mb: 0;
  padding-bottom: var(--section-vertical-space);
  text-align: center;
  background: #eae5e0;
  position: relative;
  z-index: 10;
}
.panel_type_3005 .panel_header::before {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  content: "";
  background: #eae5e0;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  right: 0;
  height: 100%;
}
.panel_type_3005 .panel_header_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--section-vertical-space);
}
.panel_type_3005 .panel_header_content_body {
  margin-top: var(--space-lxl);
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .panel_header_content_body {
    width: 100%;
  }
}
.panel_type_3005 .panel_header_subtitle {
  margin-top: var(--space-lxl);
  font-size: var(--step-2);
}
.panel_type_3005 .pricing-icon {
  display: flex;
  justify-content: center;
}
.panel_type_3005 .pricing-icon > svg {
  padding: 1px;
  --size: var(--space-l);
  width: var(--size);
  height: var(--size);
}

.ui-group {
  --_input-padding: var(--space-s) var(--space-m);
  --_input-font-size: var(--step-0);
  --_input-line-height: var(--leading-snug);
  --_input-border-radius: 2em;
  display: grid;
  grid-template-columns: inherit;
  grid-column: 1/-1;
  align-items: center;
  column-gap: 1em;
  font-size: var(--step-1);
  text-align: left;
}
@media only screen and (max-width: 639px) {
  .ui-group {
    text-align: center;
    gap: var(--space-s);
  }
}
.ui-group__category_type {
  grid-template-columns: 1fr;
  padding-top: var(--space-l);
}
@media only screen and (max-width: 639px) {
  .ui-group__category_type .filter-button-group {
    --_grid-columns: 1 !important;
    --_input-border-radius: 1.2em;
    border-radius: var(--_input-border-radius);
  }
}
.ui-group__currency {
  display: flex;
  justify-content: center;
}

.filters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-l);
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 639px) {
  .filters {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin: 0 auto;
  }
}

.filter-button-group {
  display: grid;
  grid-template-columns: repeat(var(--_grid-columns, 3), 1fr);
  border: 1px solid var(--base-100);
  padding: 5px;
  border-radius: 10em;
  gap: var(--space-xs);
  background: var(--white);
}
.filter-button-group .button {
  float: unset;
  display: block;
  margin: 0;
  padding: var(--_input-padding);
  font-size: var(--_input-font-size);
  line-height: var(--_input-line-height);
  border-radius: var(--_input-border-radius);
  cursor: pointer;
  white-space: nowrap;
}
.filter-button-group .button:hover {
  background: var(--base-50);
}
.filter-button-group .button.is-checked {
  background: var(--black);
  color: white;
}

.filter-dropdown-select {
  display: inline-flex;
  flex-direction: row;
  border: 1px solid var(--base-100);
  padding: 5px;
  border-radius: 10em;
  position: relative;
  background: var(--white);
}
.filter-dropdown-select:hover .select {
  background: var(--base-50);
}
.filter-dropdown-select::after {
  content: "";
  background-image: var(--ICON-CHEVRON-RIGHT-DARK);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: var(--step--2);
  height: var(--step--2);
  transform: rotate(90deg) translateX(-40%);
  position: absolute;
  right: var(--space-l);
  top: 50%;
  transition: var(--transition);
  pointer-events: none;
}
.filter-dropdown-select .select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  float: unset;
  display: block;
  margin: 0;
  padding: var(--_input-padding);
  font-size: var(--_input-font-size);
  line-height: var(--_input-line-height);
  border-radius: var(--_input-border-radius);
  cursor: pointer;
  text-align: center;
  width: 100%;
  color: var(--text-primary);
}

.inclusively-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.currency-select,
.interval-select {
  --_input-border-radius: 2em;
  padding: var(--space-2xs);
  height: min-content;
  background: white;
  min-width: 7rem;
}
.currency-select::after,
.interval-select::after {
  right: var(--space-s);
  transform: rotate(90deg) translateX(-50%) scale(0.7);
}
.currency-select .select,
.interval-select .select {
  padding: var(--space-2xs) var(--space-lxl) var(--space-2xs) var(--space-m);
  font-size: var(--step--1_5);
}

.interval-select .select {
  padding-left: var(--space-xs);
  padding-right: var(--space-l);
}

.panel_type_3005 .filter-dropdown-select,
.panel_type_3005 .filter-button-group {
  border: none;
}
.panel_type_3005 .user-filter-button-replace,
.panel_type_3005 .user-filter-label-replace {
  display: inline;
}
.panel_type_3005 .tier-price-wrapper {
  display: none;
  opacity: 0;
  flex-direction: column;
  padding-bottom: var(--space-2xs);
}
.panel_type_3005 .tier-price-wrapper.show {
  display: flex;
  opacity: 1;
}
.panel_type_3005 .bundle_comparison_tables .bundle_table {
  display: none;
}
.panel_type_3005 .final_table_container table {
  border-collapse: collapse;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.panel_type_3005 .final_table_container tbody {
  display: table;
}
.panel_type_3005 .final_table_container tr {
  border-top: 1px solid var(--base-100);
  border-bottom: 1px solid var(--base-100);
  font-size: var(--step-1);
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container tr {
    display: flex;
    flex-direction: column;
    margin: var(--space-m) 0;
    border: 1px solid var(--base-100);
  }
}
.panel_type_3005 .final_table_container tr.category-title-row {
  margin-top: var(--space-3xl);
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container tr.category-title-row {
    border: none;
  }
}
.panel_type_3005 .final_table_container tr.bundle-headings {
  text-align: center;
  border-top: 0;
  border-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container tr.bundle-headings {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container tr.bundle-headings + .category-title-row {
    margin-top: 0;
  }
}
.panel_type_3005 .final_table_container tr:nth-of-type(2) .category-title {
  padding-top: var(--space-l);
  border-top: 0;
}
.panel_type_3005 .final_table_container th {
  padding-top: var(--space-s);
  padding-bottom: var(--space-s);
  width: 25%;
  font-weight: normal;
  line-height: var(--leading-snug);
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container th {
    font-size: var(--step-2);
    width: 100%;
    border-bottom: 1px solid var(--base-100);
    background: var(--base-50);
    padding: var(--space-m);
  }
}
.panel_type_3005 .final_table_container th.category-title {
  font-size: var(--step-2);
  padding-top: calc(var(--space-m) + var(--space-4xl));
  padding-bottom: var(--space-l);
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container th.category-title {
    background: var(--black);
    color: var(--text-primary-invert);
    padding: var(--space-m);
    border-bottom: none;
  }
}
.panel_type_3005 .final_table_container th .pricing_table_feature_wrapper {
  display: flex;
  gap: 1em;
  font-size: var(--step-0);
}
.panel_type_3005 .final_table_container th .pricing_table_feature_wrapper .pricing_table_feature_label {
  border-radius: 1em;
  white-space: nowrap;
  align-self: flex-start;
}
.panel_type_3005 .final_table_container th .pricing_table_feature_wrapper .pricing_table_feature_label.beta {
  background: #66C3F1;
}
.panel_type_3005 .final_table_container th .pricing_table_feature_wrapper .pricing_table_feature_label.coming-soon {
  background: #FFBF73;
}
.panel_type_3005 .final_table_container th .pricing_table_feature_wrapper .pricing_table_feature_label .pricing_table_feature_label-text {
  padding: 0em 0.75em;
  color: var(--white);
  font-size: var(--step--2--1);
  line-height: 1.4em;
}
.panel_type_3005 .final_table_container td {
  text-align: center;
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container td {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: var(--space-s) var(--space-m);
  }
}
.panel_type_3005 .final_table_container td .feature-label {
  display: none;
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container td .feature-label {
    display: block;
    width: 50%;
    text-align: left;
    font-size: var(--step-1);
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container td .pricing-icon {
    width: 50%;
    text-align: right;
    justify-content: flex-end;
  }
}
.panel_type_3005 .final_table_container td .feature-quantity-wrapper {
  display: block;
  font-size: var(--step--1-0);
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .final_table_container td .feature-quantity-wrapper {
    display: flex;
    text-align: right;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
  }
  .panel_type_3005 .final_table_container td .feature-quantity-wrapper .feature-quantity-label {
    display: block;
    width: 50%;
    text-align: left;
    font-size: var(--step-4);
  }
  .panel_type_3005 .final_table_container td .feature-quantity-wrapper .feature-quantity {
    width: 50%;
    text-align: right;
    font-size: var(--step-4);
  }
}
.panel_type_3005 .final_table_container td .feature-quantity-wrapper.exiting {
  display: block;
  animation: 0.5s cubic-bezier(0.28, 0.1, 0.24, 1) fadeOutRight;
}
.panel_type_3005 .final_table_container .tier-headings {
  text-align: center;
}
.panel_type_3005 .final_table_container .tier-price {
  font-size: var(--step-2);
}
.panel_type_3005 .final_table_container .tier-note {
  font-size: var(--step-0);
  color: var(--text-secondary);
}
.panel_type_3005 .bundle_table.expert {
  --_text-secondary: #fafafa ;
}
.panel_type_3005 .bundle_plans_tables {
  min-height: 60vh;
}
.panel_type_3005 .bundle_plans_tables > div > .bundle_table:nth-child(1) {
  animation-delay: 200ms;
}
.panel_type_3005 .bundle_plans_tables > div > .bundle_table:nth-child(2) {
  animation-delay: 100ms;
}
.panel_type_3005 .bundle_plans_tables .bundle_table {
  display: none;
  flex-basis: 33.33%;
  flex-direction: column;
  justify-content: center;
}
.panel_type_3005 .bundle_plans_tables .bundle_table.bundle_table_user {
  flex-direction: row;
}
@media only screen and (max-width: 1180px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table.bundle_table_user {
    flex-direction: column;
    gap: var(--space-2xl);
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table.starter.fullplatform {
  padding: calc(var(--space-6xl) + var(--space-3xl)) var(--space-xl-3xl) 0 0;
}
.panel_type_3005 .bundle_plans_tables .bundle_table.starter.fullplatform .bundle_table_top_label_wrapper {
  display: none;
}
.panel_type_3005 .bundle_plans_tables .bundle_table.starter.fullplatform .bundle-title {
  margin-top: 0;
  font-size: var(--step-3);
}
@media only screen and (max-width: 1180px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table.starter.fullplatform {
    padding: var(--space-l-3xl);
    order: 10;
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table.starter.fullplatform .bundle_table_top,
.panel_type_3005 .bundle_plans_tables .bundle_table.starter.fullplatform .bundle_table_bottom {
  background: #fff;
  border: 1px solid var(--base-100);
}
.panel_type_3005 .bundle_plans_tables .bundle_table.starter.fullplatform .bundle_table_bottom {
  border-top: 0;
}
.panel_type_3005 .bundle_plans_tables .bundle_table.starter.fullplatform .filter-dropdown-select {
  border: 1px solid var(--base-100);
}
.panel_type_3005 .bundle_plans_tables .bundle_table.show {
  display: flex;
  opacity: 1;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table {
  opacity: 0;
  animation: 0.4s cubic-bezier(0.28, 0.1, 0.24, 1) fadeInRight;
  animation-fill-mode: forwards;
  justify-content: center;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table.exiting {
  animation: 0.4s cubic-bezier(0.28, 0.1, 0.24, 1) fadeOutRight;
}
.panel_type_3005 .bundle_plans_tables .bundle_table.exiting {
  display: flex;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_top {
  background: var(--_header-background-color);
  padding: var(--space-lxl);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_top_label {
  display: flex;
  align-items: center;
  font-size: var(--step-1);
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-s) var(--space-xs) var(--space-xs);
  width: fit-content;
  border-radius: 3em;
  background: var(--_top-label-background-color);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_top_label .top-label-text {
  color: var(--_top-label-color);
  font-size: var(--step--1);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle-title {
  color: var(--_text-primary);
  font-size: var(--step-4);
  line-height: var(--leading-tighter);
  font-weight: normal;
  margin-top: var(--space-m);
  display: block;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle-short-description {
  color: var(--_text-secondary);
  font-size: var(--step-0);
  line-height: var(--leading-snug);
  display: block;
  margin-top: var(--space-s-m);
  max-width: 55ch;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom_label + span {
  display: block;
  margin-top: var(--space-2xs);
  font-size: var(--step--1_5);
  line-height: var(--leading-snug);
  color: var(--_text-body);
}
@media only screen and (max-width: 1180px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundles-not-free,
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundles-free {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--_item-vertical-space);
    grid-template-rows: min-content;
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom {
  --_item-vertical-space: var(--space-lxl);
  min-height: 25em;
  display: grid;
  flex-grow: 1;
  background: var(--_background-color);
  padding: var(--space-lxl);
}
@media only screen and (max-width: 1180px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom {
    min-height: unset;
  }
}
@media only screen and (max-width: 459px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 1181px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom_label_wrapper + .bundle_table_bottom_label_wrapper {
    margin-top: var(--space-l);
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom_label_wrapper .feature_category_description {
  color: var(--_text-body);
  font-size: var(--step--1_5);
  line-height: var(--leading-snug);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .feature_category_title {
  color: var(--_text-primary);
  font-size: var(--step-1_5);
  font-weight: normal;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle_table_bottom_label_wrapper + .bundles-free {
  margin-top: var(--_item-vertical-space);
  padding-top: var(--_item-vertical-space);
  border-top: 1px solid var(--_border-color);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .description ul {
  list-style-image: url("/images/icons/feature_tick.svg");
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .description ul li {
  font-size: var(--step-0);
  margin-top: var(--space-s);
  margin-bottom: 0;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundles-free {
  grid-column: 1/-1;
  padding-top: var(--space-lxl);
  margin-top: auto;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundles-free::before {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  border-top: 1px solid var(--_border-color);
  margin-bottom: var(--space-m);
}
@media only screen and (max-width: 1180px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundles-free {
    display: grid;
    grid-template-columns: inherit;
    gap: inherit;
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundles-free-note {
  grid-column: 1/-1;
  color: var(--_text-body);
  font-size: var(--step--1);
}
@media only screen and (min-width: 1181px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundles-free-note {
    margin-bottom: var(--space-l);
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundles-free .feature_category_title {
  font-size: var(--step-0);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundles-free .feature_category_description {
  margin-top: var(--space-xs);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle_table_bottom_label {
  display: flex;
  gap: 1em;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .pricing-contact-us {
  display: none;
  font-size: var(--step-1);
  font-weight: normal;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .pricing-contact-us.show {
  display: block;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container {
  align-self: end;
  padding-top: var(--space-l);
}
@media only screen and (max-width: 1180px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container {
    width: 50%;
    min-width: 400px;
  }
}
@media only screen and (max-width: 639px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container {
    min-width: unset;
    width: 100%;
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper {
  display: none;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper.show {
  display: block;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--space-s) var(--space-l);
  line-height: var(--leading-tight);
}
@media only screen and (max-width: 1180px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price {
    justify-content: space-between;
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price .price-symbol {
  color: var(--text-primary);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price .bundle-price {
  display: none;
  color: var(--_text-secondary);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price .bundle-price.show {
  display: block;
  display: flex;
  align-items: baseline;
  gap: var(--space-2xs);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price .bundle-price > span {
  flex-shrink: 0;
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price .bundle-price .price-amount {
  font-size: var(--step-4);
  font-weight: normal;
  color: var(--_text-primary);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price .price-controls {
  display: flex;
  gap: var(--space-s);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price_discount {
  display: flex;
  margin-bottom: var(--space-l);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price_discount .bundle-discount {
  display: none;
  font-size: var(--step--1);
}
.panel_type_3005 .bundle_plans_tables .bundle_table .bundle_table_bottom .bundle-price-container .bundle-price-wrapper .price_discount .bundle-discount.show {
  display: block;
  color: #3D7D43;
  background: #D8F0D7;
  padding: 0 var(--space-xs);
  border-radius: 2px;
}
.panel_type_3005 .bundle_plans_tables .bundle_table table {
  border-collapse: collapse;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  padding-top: var(--space-2xs);
}
.panel_type_3005 .bundle_plans_tables .bundle_table tbody {
  display: table;
}
.panel_type_3005 .bundle_plans_tables .bundle_table tr {
  border-top: 1px solid var(--base-100);
  border-bottom: 1px solid var(--base-100);
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table tr {
    display: flex;
    flex-direction: column;
    margin: 16px 0;
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table tr th {
  padding-top: var(--space-2xs);
  padding-bottom: var(--space-2xs);
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table tr th {
    text-align: center;
    font-size: var(--step-5);
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table td {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table td {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-2xs);
  }
}
.panel_type_3005 .bundle_plans_tables .bundle_table td .feature-label {
  display: none;
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .bundle_plans_tables .bundle_table td .feature-label {
    display: block;
    width: 50%;
    text-align: left;
    font-size: var(--step-4);
  }
}
.panel_type_3005 .tier-headings {
  text-align: center;
}
.panel_type_3005 .user-tier-title {
  line-height: var(--leading-tight);
  font-size: var(--step-2);
}
.panel_type_3005 .tier-price {
  font-size: var(--step-2);
}
.panel_type_3005 .tier-note {
  font-size: var(--step-0);
  color: var(--text-secondary);
}
.panel_type_3005 .feature-quantity-wrapper {
  display: none;
}
.panel_type_3005 .feature-quantity-wrapper.show {
  display: block;
  opacity: 1;
}
.panel_type_3005 .feature-quantity-wrapper.show .feature-quantity-label {
  display: none;
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .feature-quantity-wrapper.show {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .panel_type_3005 .feature-quantity-wrapper.show .feature-quantity-label {
    display: block;
    width: 50%;
    text-align: left;
    font-size: var(--step-4);
  }
  .panel_type_3005 .feature-quantity-wrapper.show .feature-quantity {
    width: 50%;
    text-align: right;
    font-size: var(--step-4);
  }
}
.panel_type_3005 .feature-quantity-wrapper.exiting {
  display: block;
  animation: 0.5s cubic-bezier(0.28, 0.1, 0.24, 1) fadeOutRight;
}
.panel_type_3005 .bundle_table_caption {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .panel_type_3005 .bundle_table_caption {
    width: 100%;
  }
}

.bundle_table_category {
  --_text-primary: var(--black);
  --_text-secondary: #6A6A6A;
  --_text-body: var(--base-400);
  --_background-color: #FAFAFB;
  --_header-background-color: #F4F6F6;
  --_border-color: #DCDCDC;
  --_top-label-background-color: #5EB567;
  --_top-label-border-color: var(--_top-label-background-color);
  --_top-label-color: var(--white);
  --_top-label-icon-color: var(--white);
}
.bundle_table_category.professional {
  --_background-color: #E2F6EC;
  --_header-background-color: #DBEFE5;
  --_border-color: #CADCD3;
  --_text-secondary: #697768;
  --_text-body: #697768;
}
.bundle_table_category.expert {
  --_text-primary: var(--white);
  --_text-secondary: #797A7C;
  --_text-body: #797A7C;
  --_background-color: #FAFAFA;
  --_header-background-color: #202124;
  --_border-color: #DCDCDC;
  --_top-label-background-color: #5EB567;
  --_top-label-border-color: var(--_top-label-background-color);
  --_top-label-color: var(--white);
  --_top-label-icon-color: var(--white);
}
.bundle_table_category.expert .bundle_table_bottom {
  --_text-primary: var(--black);
  --_text-secondary: #6A6A6A;
  --_text-body: var(--base-400);
}

.bundle_comparison_tables .bundle_table_legend {
  display: flex;
  flex-direction: column;
}
.bundle_comparison_tables .feature-quantity-wrapper {
  display: flex;
  justify-content: center;
}

.panel_bg__light {
  --background-color: var(--panel-background);
}

.panel_prose__light {
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
}
.panel_prose__light .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}

.panel_bg__dark {
  --background-color: var(--panel-background-alt);
}

.panel_prose__dark {
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-secondary);
}
.panel_prose__dark .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}

.compare-button-wrapper {
  padding: var(--section-vertical-space) var(--CONTAINER-PADDING);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  font-size: var(--step-1);
}
@media only screen and (max-width: 459px) {
  .compare-button-wrapper {
    flex-direction: column;
  }
}
.compare-button-wrapper .button {
  margin-top: 0;
}
/* Dropdown menu css */
.dropdown-container {
  position: relative;
  width: 100%;
  margin: 0;
  font-size: var(--_input-font-size);
  line-height: var(--_input-line-height);
  border-radius: var(--_input-border-radius);
  cursor: pointer;
  text-align: center;
  width: 100%;
  color: var(--text-primary);
  transition: var(--transition);
}
.dropdown-container:hover {
  background: var(--base-50);
}
.dropdown-container .dropdown-toggle {
  padding: var(--_input-padding);
  cursor: pointer;
  position: relative;
  z-index: 99;
  transition: all ease-in-out 0.3s;
}
.dropdown-container .dropdown-toggle label {
  cursor: pointer;
  width: 100%;
}
.dropdown-container .dropdown-menu {
  width: 100%;
  min-width: 90px;
  margin-top: 10px;
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  background-color: #ffffff;
  z-index: 50;
  border-radius: var(--space-s);
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.15);
}
.dropdown-container .dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--space-l);
  z-index: 10;
  padding: var(--space-s);
  text-align: left;
  display: flex;
  flex-direction: column;
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.dropdown-container .dropdown-menu ul::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  box-shadow: inset 0px -80px 23px -71px rgb(255, 255, 255);
  border-radius: var(--space-l);
  pointer-events: none !important;
}
.dropdown-container .dropdown-menu ul li {
  margin: 0;
  padding: 0;
}
.dropdown-container .dropdown-menu button {
  text-decoration: none;
  display: block;
  transition: all ease-in-out 0.3s;
  padding: var(--space-s);
  width: 100%;
  text-align: left;
  border-radius: var(--space-xs);
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .dropdown-container .dropdown-menu button {
    padding: var(--space-m);
  }
}
.dropdown-container .dropdown-menu button:hover, .dropdown-container .dropdown-menu button:active, .dropdown-container .dropdown-menu button:focus {
  background-color: #f5f0f0;
}

.currency-select .dropdown-container {
  font-size: var(--step--1_5);
}
.currency-select .dropdown-container .dropdown-toggle {
  padding: var(--space-2xs) var(--space-lxl) var(--space-2xs) var(--space-m);
}
.currency-select .dropdown-container .dropdown-menu {
  border-radius: var(--space-xs);
}
.currency-select .dropdown-container .dropdown-menu ul {
  padding: 0;
  border-radius: 0;
}
.currency-select .dropdown-container .dropdown-menu ul::after {
  display: none;
}
.currency-select .dropdown-container .dropdown-menu ul li {
  border-radius: 0;
}
.currency-select .dropdown-container .dropdown-menu ul li button {
  border-radius: 0;
  font-size: var(--step-0);
  padding: var(--space-xs);
  text-align: center;
}

.dropdown-menu,
.dropdown-toggle {
  position: relative;
}

.dropdown-menu {
  z-index: 10;
  position: relative;
}

.dropdown-open .dropdown-menu.dropdown-active {
  display: block;
}

.dropdown-container.dropdown-open .dropdown-toggle:before {
  transform: rotate(-135deg);
}

.dropdown-bordered .dropdown-toggle {
  border: 2px solid var(--black);
  border-radius: 10px;
}
.dropdown-bordered .dropdown-toggle:hover, .dropdown-bordered .dropdown-toggle:active, .dropdown-bordered .dropdown-toggle:focus {
  background-color: #0979ce;
  color: #ffffff;
  border-color: #ffffff;
}
.dropdown-bordered .dropdown-menu {
  border: 2px solid var(--black);
  border-radius: 10px;
}
.dropdown-bordered .dropdown-menu::before {
  border-color: var(--black);
}
.dropdown-bordered .dropdown-menu a {
  box-shadow: none;
  border-bottom: 2px solid var(--black);
}
.dropdown-bordered .dropdown-menu li:last-child a {
  border-bottom: 0;
}

.feature_panels_inner ul .panel_advanced_text {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-mx: calc(50% - 50vw);
  background: var(--panel-background);
}
.feature_panels_inner ul .panel_advanced_text.no_panel_padding {
  padding: 0 !important;
}

.panel_advanced_text * + .subtitle {
  margin-top: var(--space-xl);
}
.panel_advanced_text * + .description {
  margin-top: var(--space-5xl);
  margin-bottom: 0;
}
.panel_advanced_text * + .link {
  margin-top: var(--space-3xl);
}

.panel_advanced_text {
  --blockquote-font-size: var(--step-2);
  --blockquote-line-height: var(--step-2-lh);
  --blockquote-font-weight: bold;
}
.panel_advanced_text.panel_type_3010.panel_id_390 h2 {
  margin-bottom: var(--space-2xl) !important;
}
.panel_advanced_text.feature_variant_2 .content {
  flex-basis: 50%;
}
.panel_advanced_text.panel_bg__light {
  --background-color: var(--panel-background);
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
  background-color: var(--background-color) !important;
}
.panel_advanced_text.panel_bg__light .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}
.panel_advanced_text.panel_bg__dark {
  --background-color: var(--panel-background-alt);
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-secondary);
  background-color: var(--background-color) !important;
}
.panel_advanced_text.panel_bg__dark .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}
.panel_advanced_text .content {
  margin: 0 auto;
}

.panel_advanced_text_inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: flex;
  gap: var(--space-3xl-4xl);
  align-items: center;
  justify-content: center;
  padding-top: var(--CONTAINER-PADDING);
  padding-bottom: var(--CONTAINER-PADDING);
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .panel_advanced_text_inner {
    flex-direction: column;
  }
}
.panel_advanced_text_inner .content {
  width: 100%;
}

.panel_advanced_text__pull-quote {
  flex-basis: 50%;
  width: 100%;
}
.panel_advanced_text__pull-quote .figcaption {
  margin-top: var(--space-m-l);
  font-size: var(--text-l);
  line-height: var(--text-l-lh);
}

.panel_privacy_content__content {
  grid-column: span 3;
}
@media only screen and (max-width: 767px) {
  .panel_privacy_content__content {
    grid-column: span 4;
  }
}
.panel_privacy_content__content h3, .panel_privacy_content__content h4 {
  scroll-margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .column.vertical-link-list {
    grid-column: span 4;
    grid-row: 2;
  }
}

.vertical-link-list {
  list-style: none;
}
.vertical-link-list li {
  margin-bottom: 0;
}

.vertical-link-list__item {
  position: relative;
}
.vertical-link-list__item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: calc(var(--column-padding) * -0.5);
  transform: translateX(-1rem);
  opacity: 0;
  background: var(--base-200);
  transition: var(--transition);
}
.vertical-link-list__item:hover::before {
  opacity: 1;
  transform: translateX(0rem);
}
.vertical-link-list__item + .vertical-link-list__item {
  margin-top: var(--space-m);
}
.vertical-link-list__item.indent {
  padding-left: 12px;
}

.vertical-link-list__item--is-active::before {
  background: var(--text-primary);
  opacity: 1;
  transform: translateX(0rem);
}
.vertical-link-list__item--is-active .vertical-link-list__link {
  color: var(--text-primary);
}

.vertical-link-list__link {
  text-decoration: none;
  color: var(--text-body);
  line-height: var(--leading-snug);
}
.vertical-link-list__link:visited {
  color: var(--text-body);
}

.body--has-fp-as-hero .heading_wrapper {
  display: none;
}

.feature_panels .panel_type_3012 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: 3;
  --heading-color: var(--text-primary);
  --panel-mx: calc(50% - 50vw);
  --panel-py: 0;
  min-height: min(80vh, 960px);
  background: var(--panel-background) !important;
  color: var(--text-primary);
}
.feature_panels .panel_type_3012 .lazyload_wrapper.loading svg.loader .path {
  stroke: var(--panel-background);
}
.feature_panels .panel_type_3012 .panel_al_hero__content {
  width: 100%;
  max-width: 108rem;
}

.panel_al_hero__inner,
.fp-panel__header.panel_al_hero__inner {
  display: grid;
}

.panel_al_hero__eyebrow {
  font-size: var(--button-font-size);
  font-family: var(--button-font-family);
  text-transform: var(--button-text-transform);
  background: var(--blue);
  color: white;
  padding: var(--space-2xs) var(--space-m);
  border-radius: 2rem;
}
.panel_al_hero__eyebrow + .panel_al_hero__heading {
  margin-top: var(--space-2xl);
}

.panel_al_hero__heading {
  --heading-font-size: var(--display-font-size);
  --heading-line-height: var(--leading-tighter);
  margin-bottom: 0 !important;
  text-wrap: balance;
  /* wraps lines slighty more nicely (evenly) - pretty decent support in chrome and edge */
  max-width: 45ch !important;
}

.section-pricing .panel_type_3012.feature_variant_1.panel_number_1 .panel_al_hero__content {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-xl);
}

.panel_al_hero__subtitle {
  margin-top: var(--space-2xl);
  font-size: var(--step-1-2);
  color: var(--base-600);
  line-height: var(--leading-snug);
  display: block;
  max-width: 45ch;
}

.panel_al_hero__buttons {
  display: flex;
  gap: var(--space-xl);
  --button-border: 1px solid var(--black);
}
.panel_al_hero__buttons .button--is-outline {
  --button-focus-background-color: var(--blue);
}
.panel_al_hero__buttons .button--is-primary:hover {
  --button-border: 1px solid var(--blue);
}

.panel_al_hero__button {
  margin-top: var(--space-2xl);
}
.panel_al_hero__button > a {
  min-width: 220px;
}
@media only screen and (max-width: 767px) {
  .panel_al_hero__button > a {
    min-width: 160px;
  }
}

.panel_al_hero__image-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  background: var(--button-secondary-background-color);
}

.panel_al_hero__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.panel_type_3012.feature_variant_1 {
  min-height: min(20vh, 600px);
}
.panel_type_3012.feature_variant_1.panel_number_1 .panel_al_hero__content {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
}
.panel_type_3012.feature_variant_1 .panel_al_hero__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding-bottom: var(--CONTAINER-PADDING);
  text-align: center;
  display: flex;
  justify-content: center;
}
.panel_type_3012.feature_variant_1 .panel_al_hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
}

.total-images--1 .image {
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .total-images--1 .image {
    grid-column: span 4 !important;
  }
}

.panel_type_3012.feature_variant_2 .panel_al_hero__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  min-height: min(80vh, 960px);
}
.panel_type_3012.feature_variant_2 .panel_al_hero__content {
  grid-column: 1/span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-vertical-space) var(--space-3xl) var(--section-vertical-space) var(--CONTAINER-PADDING);
  position: relative;
}
@media only screen and (max-width: 1180px) {
  .panel_type_3012.feature_variant_2 .panel_al_hero__content {
    grid-column: 1/-1;
    padding: calc(var(--section-vertical-space) + var(--header-height)) var(--CONTAINER-PADDING) var(--section-vertical-space) var(--CONTAINER-PADDING);
  }
}
.panel_type_3012.feature_variant_2 .panel_al_hero__image {
  height: auto;
  max-height: calc(100% - 106px);
  width: 100%;
  object-fit: contain;
  display: block;
}
@media only screen and (max-width: 1180px) {
  .panel_type_3012.feature_variant_2 .panel_al_hero__image {
    max-height: 100%;
  }
}
.panel_type_3012.feature_variant_2 .panel_al_hero__image-wrapper {
  align-items: end;
  background: none;
  padding: 0 var(--space-3xl) 0 0;
}
@media only screen and (max-width: 1180px) {
  .panel_type_3012.feature_variant_2 .panel_al_hero__image-wrapper {
    grid-column: span 4 !important;
    padding: 0 var(--CONTAINER-PADDING) 0 var(--CONTAINER-PADDING);
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_2 .panel_al_hero__image-wrapper {
    padding: 0 var(--CONTAINER-PADDING) 0 var(--CONTAINER-PADDING);
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_2 .panel_al_hero__image-wrapper--one {
    grid-column: 1/span 2;
  }
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_2 .panel_al_hero__image-wrapper--two {
    grid-column: 3/span 2;
  }
}
.panel_type_3012.feature_variant_2 .panel_al_hero__heading {
  --heading-font-size: var(--step-7);
  letter-spacing: var(--tracking-tight);
}
.panel_type_3012.feature_variant_2 .panel_al_hero__subtitle,
.panel_type_3012.feature_variant_2 .panel_al_hero__eyebrow + .panel_al_hero__heading {
  margin-top: var(--space-2xl-4xl);
}
.panel_type_3012.feature_variant_2 .panel_al_hero__subtitle {
  font-size: var(--step-4);
}
.panel_type_3012.feature_variant_2 .l-heroForm__footer {
  padding: 0;
}
.panel_type_3012.feature_variant_2 .c-form-privacyText {
  text-align: left;
  margin: 0;
}

.panel_type_3012.feature_variant_3 .panel_al_hero__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding: 0;
  min-height: max(60rem, 100vh);
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.panel_type_3012.feature_variant_3 .panel_al_hero__content {
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl) var(--CONTAINER-PADDING);
  position: relative;
  z-index: 5;
  max-width: 92rem;
  margin: 0 auto;
}
.panel_type_3012.feature_variant_3 .panel_al_hero__heading {
  letter-spacing: var(--tracking-tight);
}
.panel_type_3012.feature_variant_3 .panel_al_hero__subtitle,
.panel_type_3012.feature_variant_3 .panel_al_hero__eyebrow + .panel_al_hero__heading {
  margin-top: var(--space-2xl-4xl);
}
.panel_type_3012.feature_variant_3 .panel_al_hero__subtitle {
  font-size: var(--step-4);
  max-width: 45ch;
}
.panel_type_3012.feature_variant_3 .panel_al_hero__images {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  position: absolute;
  height: 100%;
  z-index: 3;
  height: 100%;
}
@media only screen and (max-width: 897px) {
  .panel_type_3012.feature_variant_3 .panel_al_hero__images {
    grid-template-columns: repeat(6, 1fr);
  }
}
.panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper {
  width: 80%;
  height: min-content;
}
.panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper--one {
  justify-self: end;
  align-self: end;
  transform: translateY(var(--space-2xl));
}
@media only screen and (max-width: 897px) {
  .panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper--one {
    grid-column: 1/span 2;
    transform: none;
    align-self: center;
  }
}
.panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper--two {
  grid-column: 1;
  margin-left: calc(0px - var(--space-2xl));
  margin-top: calc(0px - var(--space-2xl));
}
@media only screen and (max-width: 897px) {
  .panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper--two {
    grid-column: 1/span 2;
    margin-top: 0;
  }
}
.panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper--three {
  margin-top: var(--header-height);
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
}
@media only screen and (max-width: 897px) {
  .panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper--three {
    grid-column: 5/span 2;
  }
}
.panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper--four {
  grid-column: 4;
  align-self: end;
}
@media only screen and (max-width: 897px) {
  .panel_type_3012.feature_variant_3 .panel_al_hero__image-wrapper--four {
    grid-column: 5/span 2;
  }
}

.panel_type_3012.feature_variant_4 {
  --panel-pb: 0;
}
.panel_type_3012.feature_variant_4.panel_number_1 .panel_al_hero__content {
  padding: calc(var(--header-height) + var(--space-4xl)) var(--CONTAINER-PADDING) var(--space-5xl);
}
.panel_type_3012.feature_variant_4 .panel_al_hero__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: min(100vh, 1000px);
}
.panel_type_3012.feature_variant_4 .panel_al_hero__heading {
  --heading-font-size: var(--step-6-8);
  letter-spacing: var(--tracking-tight);
}
.panel_type_3012.feature_variant_4 .panel_al_hero__subtitle,
.panel_type_3012.feature_variant_4 .panel_al_hero__eyebrow + .panel_al_hero__heading {
  margin-top: var(--space-2xl);
}
.panel_type_3012.feature_variant_4 .panel_al_hero__subtitle {
  font-size: var(--step-4) !important;
  max-width: 45ch;
}
.panel_type_3012.feature_variant_4 .panel_al_hero__content {
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl) var(--CONTAINER-PADDING);
  max-width: 108rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.panel_type_3012.feature_variant_4 .panel_al_hero__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  width: 100%;
  align-items: center;
  height: min-content;
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_4 .panel_al_hero__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.panel_type_3012.feature_variant_4 .panel_al_hero__images::before {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 50%;
  background: white;
}
.panel_type_3012.feature_variant_4 .panel_al_hero__image {
  object-fit: contain;
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
}
.panel_type_3012.feature_variant_4 .panel_al_hero__image-wrapper {
  height: auto;
}
.panel_type_3012.feature_variant_4 .panel_al_hero__image-wrapper--one::after, .panel_type_3012.feature_variant_4 .panel_al_hero__image-wrapper--two::after, .panel_type_3012.feature_variant_4 .panel_al_hero__image-wrapper--three::after {
  content: "";
  height: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  border-left: 1px solid #e4e4e4;
  z-index: -2;
  /* behind lazyload (-1)*/
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_4 .panel_al_hero__image-wrapper--three, .panel_type_3012.feature_variant_4 .panel_al_hero__image-wrapper--four {
    display: none;
  }
}

.panel_type_3012.feature_variant_5 {
  --panel-pt: var(--space-6xl-7xl);
  overflow: hidden;
  min-height: unset !important;
}
.panel_type_3012.feature_variant_5 .panel_al_hero__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding: 0;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_5 .panel_al_hero__inner {
    grid-template-columns: 1fr;
    gap: var(--section-vertical-space);
  }
}
.panel_type_3012.feature_variant_5 .panel_al_hero__inner > * {
  z-index: 1;
  position: relative;
}
.panel_type_3012.feature_variant_5 .panel_al_hero__content {
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_5 .panel_al_hero__content {
    padding-top: var(--section-vertical-space);
  }
}
.panel_type_3012.feature_variant_5 .l-heroForm__footer {
  padding: 0;
}
.panel_type_3012.feature_variant_5 .c-form-privacyText {
  text-align: left;
  margin: 0;
}

.panel_type_3012.feature_variant_6 {
  --panel-pb: 0;
}
.panel_type_3012.feature_variant_6.panel_number_1 .panel_al_hero__content {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-5xl);
}
@media only screen and (max-width: 850px) {
  .panel_type_3012.feature_variant_6.panel_number_1 .panel_al_hero__content {
    padding: calc(var(--header-height) + var(--space-4xl)) var(--CONTAINER-PADDING) var(--space-5xl);
  }
}
.panel_type_3012.feature_variant_6 .panel_al_hero__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: min(100vh, 1000px);
}
.panel_type_3012.feature_variant_6 .panel_al_hero__heading {
  font-size: var(--display-font-size);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
}
.panel_type_3012.feature_variant_6 .panel_al_hero__subtitle,
.panel_type_3012.feature_variant_6 .panel_al_hero__eyebrow + .panel_al_hero__heading {
  margin-top: var(--space-2xl);
}
.panel_type_3012.feature_variant_6 .panel_al_hero__subtitle {
  font-size: var(--step-1-2);
  color: var(--base-600);
  max-width: 45ch;
}
.panel_type_3012.feature_variant_6 .hero-pagination_container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel_type_3012.feature_variant_6 .hero-pagination_wrapper {
  position: relative;
}
@media only screen and (max-width: 850px) {
  .panel_type_3012.feature_variant_6 .hero-pagination_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-m-xl);
  }
  .panel_type_3012.feature_variant_6 .hero-pagination_wrapper .splide__pagination li {
    flex-grow: 1;
  }
}
.panel_type_3012.feature_variant_6 .hero-pagination-pause_wrapper {
  position: absolute;
  left: 105%;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  white-space: nowrap;
  display: flex;
}
@media only screen and (max-width: 850px) {
  .panel_type_3012.feature_variant_6 .hero-pagination-pause_wrapper {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}
.panel_type_3012.feature_variant_6 .hero-pagination-pause_wrapper button {
  width: 16px;
}
.panel_type_3012.feature_variant_6 .panel_al_hero__content {
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl) var(--CONTAINER-PADDING);
  max-width: 108rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.panel_type_3012.feature_variant_6 .panel_al_hero__image-content {
  max-width: 166rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.panel_type_3012.feature_variant_6 .panel_al_hero__image-content .panel_al_hero__image-slideshow {
  display: block;
  position: relative;
  background-repeat: no-repeat;
  width: min(80vw, 166rem);
  padding-top: min(40vw, 83.3rem);
  margin: 0 auto;
  z-index: 1;
}
.panel_type_3012.feature_variant_6 .panel_al_hero__image-content::after {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  content: "";
  display: block;
  background-image: url(/images/header_bg.png);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 40px;
  left: 0;
  height: 33vw;
  z-index: -2;
  max-height: 685px;
}
.panel_type_3012.feature_variant_6 .panel_al_hero__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  width: 100%;
  align-items: center;
  height: min-content;
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_6 .panel_al_hero__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.panel_type_3012.feature_variant_6 .panel_al_hero__images::before {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 50%;
  background: white;
}
.panel_type_3012.feature_variant_6 .panel_al_hero__image {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_6 .panel_al_hero__image {
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
  }
}
.panel_type_3012.feature_variant_6 .panel_al_hero__image-wrapper {
  height: auto;
}
.panel_type_3012.feature_variant_6 .panel_al_hero__image-wrapper--one::after, .panel_type_3012.feature_variant_6 .panel_al_hero__image-wrapper--two::after, .panel_type_3012.feature_variant_6 .panel_al_hero__image-wrapper--three::after {
  content: "";
  height: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  border-left: 1px solid #e4e4e4;
  z-index: -2;
  /* behind lazyload (-1)*/
}
@media only screen and (max-width: 767px) {
  .panel_type_3012.feature_variant_6 .panel_al_hero__image-wrapper--three, .panel_type_3012.feature_variant_6 .panel_al_hero__image-wrapper--four {
    display: none;
  }
}

.feature_variant_6 .splide__pagination {
  display: flex !important;
  max-width: fit-content;
  margin: var(--space-5xl) var(--space-5xl) 0;
  border: 1px solid var(--base-100);
  box-shadow: 0px 14px 25px rgba(0, 0, 0, 0.06);
  padding: var(--space-xs);
  gap: var(--space-s);
  background: var(--primary-body);
}
@media only screen and (min-width: 640px) {
  .feature_variant_6 .splide__pagination {
    flex-wrap: nowrap;
    margin: var(--space-3xl) auto;
  }
}
@media only screen and (max-width: 800px) {
  .feature_variant_6 .splide__pagination {
    margin-bottom: var(--space-m);
  }
}
.feature_variant_6 .splide__pagination__page {
  height: 100%;
  width: 100%;
  padding: var(--space-m) var(--space-s);
  font-size: var(--step--1);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.feature_variant_6 .splide__pagination__page.is-active {
  background: var(--black);
  color: var(--white);
}
.feature_variant_6 .splide__track {
  position: absolute;
  overflow: hidden;
  width: 65.5%;
  height: 86.5%;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature_variant_6 .splide__list {
  padding: 0;
}
.feature_variant_6 .splide__slide {
  opacity: 0 !important;
}
.feature_variant_6 .splide__slide.is-active {
  opacity: 1 !important;
}

.c-heroForm {
  margin-top: var(--space-xl);
  width: 54rem;
  max-width: 100%;
}

.l-form__row {
  background: var(--primary-color);
  padding: var(--space-2xs);
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 639px) {
  .l-form__row {
    flex-direction: column;
    background: none;
    border: none;
    padding: 0;
  }
}
.l-form__row + .l-form__row {
  margin-top: var(--space-m);
}

.l-heroForm__footer {
  text-align: center;
  margin-top: var(--space-l);
  padding: 0 var(--space-m);
}

.c-form-privacyText {
  font-size: var(--step--1);
  max-width: 55ch;
  margin: 0 auto;
}

.c-form__button--next {
  --button-focus-background-color: var(--blue);
}

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

.c-form__input {
  font-size: var(--step-1);
  padding: var(--space-s) var(--space-l);
  flex-grow: 1;
  background: var(--primary-color);
}
@media only screen and (max-width: 639px) {
  .c-form__input {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: var(--button-pt, var(--button-py, var(--space-xs))) var(--button-pr, var(--button-px, var(--space-m))) var(--button-pb, var(--button-py, var(--space-xs))) var(--button-pl, var(--button-px, var(--space-m))) !important;
  }
}

.c-form__input--select {
  width: 100%;
}

.c-form__button {
  border-radius: 100px;
}

.c-form__selectWrapper {
  flex-grow: 1;
}

.c-heroModalForm {
  padding: var(--space-xl);
}

.c-heroModalForm__wrapper {
  padding: 0;
}

.c-heroModalForm .c-form__input {
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.l-heroModalForm__header {
  margin-bottom: var(--space-2xl);
}

.c-heroModalForm__heading {
  font-size: var(--step-5-6);
  max-width: 540px;
}

.l-heroModalForm__footer {
  margin-top: var(--space-l);
  display: flex;
  justify-content: space-between;
}

.fancybox-skin {
  border-radius: var(--space-m);
  overflow: hidden;
}

.fancybox-overlay.fancybox-overlay-image {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.is-shaking {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@-webkit-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
.panel_type_3012.feature_variant_7 {
  overflow: hidden;
  min-height: min(20vh, 600px);
}
.panel_type_3012.feature_variant_7 .splide__slide {
  transition: transform 0.8s cubic-bezier(0.49, 0.11, 0.24, 1), opacity 0.8s cubic-bezier(0.49, 0.11, 0.24, 1);
  width: 50vw;
  opacity: 0.6;
}
.panel_type_3012.feature_variant_7 .splide__slide .image {
  transition: transform 0.8s cubic-bezier(0.49, 0.11, 0.24, 1);
  transform: scale(0.85);
}
.panel_type_3012.feature_variant_7 .splide__slide.is-active {
  opacity: 1;
}
.panel_type_3012.feature_variant_7 .splide__slide.is-active .image {
  transform: scale(1.1);
}
.panel_type_3012.feature_variant_7 .splide__slide img {
  border-radius: 0.5rem;
}
.panel_type_3012.feature_variant_7 .panel_al_hero__image-slideshow {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: var(--space-2xl);
}
.panel_type_3012.feature_variant_7 .splide__track,
.panel_type_3012.feature_variant_7 .splide__list {
  overflow: visible !important;
}
.panel_type_3012.feature_variant_7.panel_number_1 .panel_al_hero__content {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-5xl);
}
.panel_type_3012.feature_variant_7 .panel_al_hero__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding-bottom: var(--section-vertical-space);
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.panel_type_3012.feature_variant_7 .panel_al_hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
  max-width: unset;
}
.panel_type_3012.feature_variant_7 .panel_al_hero__images {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.feature_panels_inner ul li.panel_type_3015 {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
}
@media only screen and (max-width: 897px) {
  .feature_panels_inner ul li.panel_type_3015 {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .panel.panel_type_3015.panel_content_autofill_type_artworks .inner {
    --px: calc(var(--CONTAINER-PADDING) * 2);
  }
}
.panel.panel_type_3015.panel_content_alignment_left .a-accordion-selector {
  padding-right: var(--space-5xl);
  padding-left: 0;
}
.panel.panel_type_3015.panel_content_alignment_left .a-accordion-selector .a-accordion-heading {
  flex-direction: row-reverse;
}
.panel.panel_type_3015.panel_content_alignment_left .a-accordion-selector .a-accordion-heading::before {
  transform: translateX(10px) rotate(0);
}
.panel.panel_type_3015.panel_content_alignment_left .a-accordion-selector .a-accordion-row.active .a-accordion-heading::before,
.panel.panel_type_3015.panel_content_alignment_left .a-accordion-selector .a-accordion-row:hover .a-accordion-heading::before {
  transform: translateX(0) rotate(0);
}
.panel.panel_type_3015 .a-accordion-selector {
  padding-left: var(--space-5xl);
}
.panel.panel_type_3015 .a-accordion-row {
  padding-bottom: var(--space-2xl);
  position: relative;
  display: block;
}
.panel.panel_type_3015 .a-accordion-row:last-of-type {
  padding-bottom: 0;
}
@media only screen and (max-width: 1180px) {
  .panel.panel_type_3015 .a-accordion-row {
    padding-bottom: var(--space-xl);
  }
}
.panel.panel_type_3015 .a-accordion-heading {
  opacity: 0.7;
  font-size: var(--step-3-5);
  line-height: 1em;
  display: flex;
  white-space: nowrap;
  align-items: center;
  cursor: pointer;
  transition: opacity 300ms ease-in-out, color 300ms ease-in-out;
}
.panel.panel_type_3015 .a-accordion-heading::before {
  content: "";
  background: url(/images/panel-icons/go-arrow.svg) center center no-repeat;
  background-size: contain;
  width: 0.8em;
  height: 0.8em;
  display: block;
  margin: 0 var(--space-m);
  opacity: 0;
  transform: translateX(-10px) rotate(180deg);
  transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
}
.panel.panel_type_3015 .a-accordion-row.active .a-accordion-heading,
.panel.panel_type_3015 .a-accordion-row:hover .a-accordion-heading {
  color: var(--text-primary);
  opacity: 1;
}
.panel.panel_type_3015 .a-accordion-row.active .a-accordion-heading::before,
.panel.panel_type_3015 .a-accordion-row:hover .a-accordion-heading::before {
  opacity: 1;
  transform: translateX(0) rotate(180deg);
}
.panel.panel_type_3015 .a-accordion-description {
  padding: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: var(--space-l);
  max-width: 500px;
  text-align: left;
  display: none;
  color: var(--panel-prose-color);
}
.panel.panel_type_3015 .a-accordion-row.active .a-accordion-description {
  opacity: 1;
  transition: max-height 0.3s linear, opacity 0.4s ease-in-out 300ms;
}
.panel.panel_type_3015 .panel-background {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, calc(var(--CONTAINER-WIDTH) / 4)) minmax(0, calc(var(--CONTAINER-WIDTH) / 4)) minmax(0, calc(var(--CONTAINER-WIDTH) / 4)) minmax(0, calc(var(--CONTAINER-WIDTH) / 4)) minmax(0, 1fr);
  position: absolute;
  height: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 !important;
  background: var(--background-color);
}
@media only screen and (max-width: 767px) {
  .panel.panel_type_3015 .panel-background {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 459px) {
  .panel.panel_type_3015 .panel-background {
    grid-template-columns: 1fr;
  }
}
.panel.panel_type_3015 .panel-background .panel-background-inner {
  border-left: solid 1px var(--grid-border-color);
}
.panel.panel_type_3015 .panel-background .panel-background-inner:nth-last-child(2) {
  border-right: solid 1px var(--grid-border-color);
}
.panel.panel_type_3015 .panel-background .panel-background-column-left,
.panel.panel_type_3015 .panel-background .panel-background-column-right {
  background-color: var(--background-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.panel.panel_type_3015 .panel_column__left,
.panel.panel_type_3015 .panel_column__right {
  display: flex;
  background-color: var(--background-color);
}
@media only screen and (min-width: 768px) {
  .panel.panel_type_3015 .panel_column__left,
  .panel.panel_type_3015 .panel_column__right {
    width: 50%;
  }
}
.panel.panel_type_3015 .panel_column__left.panel_column__image .inner,
.panel.panel_type_3015 .panel_column__right.panel_column__image .inner {
  --px: var(--space-5xl);
  --py: var(--space-7xl);
}
.panel.panel_type_3015 .panel_column__left .inner,
.panel.panel_type_3015 .panel_column__right .inner {
  padding: var(--space-7xl) var(--space-xl-5xl);
  width: 100%;
  max-width: calc(var(--CONTAINER-WIDTH) / 2);
  display: flex;
  align-items: center;
}
.panel.panel_type_3015 .panel_column__left {
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .panel.panel_type_3015.feature_variant_2 > a,
  .panel.panel_type_3015.feature_variant_2 .panel_inner {
    flex-direction: column-reverse;
  }
}
.panel.panel_type_3015 > a,
.panel.panel_type_3015 .panel_inner {
  display: flex !important;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .panel.panel_type_3015 > a,
  .panel.panel_type_3015 .panel_inner {
    flex-direction: column;
  }
}
.panel.panel_type_3015 .image.restricted-image-container,
.panel.panel_type_3015 .image .restricted-image-container,
.panel.panel_type_3015 .image.restricted-image-container {
  width: 100%;
  aspect-ratio: 1/1;
}
.panel.panel_type_3015 .image,
.panel.panel_type_3015 .image.restricted-image-container {
  width: 100%;
  aspect-ratio: 1/1;
}
.panel.panel_type_3015 .image > span,
.panel.panel_type_3015 .image.restricted-image-container > span {
  width: 100%;
  aspect-ratio: 1/1;
}
.panel.panel_type_3015 .image img,
.panel.panel_type_3015 .image.restricted-image-container img {
  width: 100%;
  aspect-ratio: 1/1;
}
.panel.panel_type_3015 .description {
  margin-top: var(--space-2xs);
}
@media only screen and (max-width: 767px) {
  .panel.panel_type_3015 .image.restricted-image-container:not(.image-is-cropped) .object-fit-container {
    position: absolute !important;
  }
}
.panel.panel_type_3015 .image-wrapper {
  position: relative;
  display: block;
}
.panel.panel_type_3015 .button {
  margin-top: var(--space-xl);
}
.panel.panel_type_3015 .caption {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  margin-top: var(--space-xs);
}
.panel.panel_type_3015 .caption > * {
  order: 3;
}
.panel.panel_type_3015 .caption .artist {
  font-family: var(--list-artist-font-family, var(--list-title-font-family, var(--base-font-family, sans-serif)));
  font-size: var(--list-artist-font-size, var(--list-title-font-size, var(--base-font-size, 1.6rem)));
  font-weight: var(--list-artist-font-weight, var(--list-title-font-weight, var(--base-font-weight, bold)));
  line-height: var(--list-artist-line-height, var(--list-title-line-height, var(--base-line-height, 1.3)));
  color: var(--list-artist-color, var(--list-title-color, var(--base-color, black)));
  order: 2;
}
.panel.panel_type_3015 .caption .title_and_year {
  font-family: var(--list-artwork-title-font-family, var(--list-title-font-family, var(--base-font-family, sans-serif)));
  font-size: var(--list-artwork-title-font-size, var(--list-title-font-size, var(--base-font-size, 1.6rem)));
  font-weight: var(--list-artwork-title-font-weight, var(--list-title-font-weight, var(--base-font-weight, bold)));
  line-height: var(--list-artwork-title-line-height, var(--list-title-line-height, var(--base-line-height, 1.3)));
  color: var(--list-artwork-title-color, var(--list-title-color, var(--base-color, black)));
  order: 1;
}
.panel.panel_type_3015 .caption .edition_details {
  font-family: var(--list-artwork-edition_details-font-family, var(--list-edition_details-font-family, var(--base-font-family, sans-serif)));
  font-size: var(--list-artwork-edition_details-font-size, var(--list-edition_details-font-size, var(--base-font-size, 1.6rem)));
  font-weight: var(--list-artwork-edition_details-font-weight, var(--list-edition_details-font-weight, var(--base-font-weight, bold)));
  line-height: var(--list-artwork-edition_details-line-height, var(--list-edition_details-line-height, var(--base-line-height, 1.3)));
  color: var(--list-artwork-edition_details-color, var(--list-edition_details-color, var(--base-color, black)));
  order: 3;
}
.panel.panel_type_3015 .caption .series {
  font-family: var(--list-artwork-artwork-series-font-family, var(--list-artwork-series-font-family, var(--base-font-family, sans-serif)));
  font-size: var(--list-artwork-artwork-series-font-size, var(--list-artwork-series-font-size, var(--base-font-size, 1.6rem)));
  font-weight: var(--list-artwork-artwork-series-font-weight, var(--list-artwork-series-font-weight, var(--base-font-weight, bold)));
  line-height: var(--list-artwork-artwork-series-line-height, var(--list-artwork-series-line-height, var(--base-line-height, 1.3)));
  color: var(--list-artwork-artwork-series-color, var(--list-artwork-series-color, var(--base-color, black)));
}

@media only screen and (min-width: 768px) {
  .panel_column__content .inner {
    --px: calc(var(--CONTAINER-PADDING) * 2);
  }
}

.panel_bg__light {
  --background-color: var(--panel-background);
}

.panel_prose__light {
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
}
.panel_prose__light .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}

.panel_bg__dark {
  --background-color: var(--panel-background-alt);
}

.panel_prose__dark {
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-secondary);
}
.panel_prose__dark .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}

.feature_panels .panel_logos {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-mx: calc(50% - 50vw);
}

.panel_logos__background-cover {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: calc(50% + var(--panel-py));
  background: var(--white);
  top: calc(var(--panel-py) * -1 - 1px);
  right: 0;
  left: 0;
  position: absolute;
}
.panel_logos__background-cover .inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  position: relative;
  height: 100%;
}
@media only screen and (min-width: 898px) {
  .panel_logos__background-cover .inner::before, .panel_logos__background-cover .inner::after {
    content: "";
    border-color: #E4E4E4;
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .panel_logos__background-cover .inner::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .panel_logos__background-cover .inner::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}

@media only screen and (max-width: 767px) {
  .panel_logos__images .image:nth-child(3), .panel_logos__images .image:nth-child(4) {
    display: none;
  }
}
.panel_logos {
  --panel-py: var(--space-4xl-7xl);
  text-align: center;
  overflow: hidden;
  background-color: var(--panel-background, white) !important;
}
.panel_logos__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: fit-content;
  align-items: center;
  position: relative;
  max-width: var(--CONTAINER-WIDTH);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .panel_logos__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.panel_logos__content {
  margin-top: var(--space-7xl);
}
.panel_logos__heading {
  font-size: var(--step-6-7);
  margin-bottom: var(--space-3xl);
  max-width: 20ch !important;
  margin: 0 auto;
  color: var(--text-primary);
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.panel_logos__subtitle {
  display: block;
  font-size: var(--step-2);
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.panel_logos__button {
  margin-top: var(--space-3xl);
  display: block;
  float: unset;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.panel_logos__button > a {
  float: unset;
  display: inline-flex;
}

.logosRow {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--space-3xl) var(--space-3xl-5xl);
  margin: var(--space-5xl) auto 0;
}
.logosRow__logo {
  max-width: 28rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 639px) {
  .logosRow__logo {
    max-width: 24rem;
  }
}
@media only screen and (max-width: 459px) {
  .logosRow__logo {
    max-width: 20rem;
  }
}

/* Rolling marquee / ticker
-------------------------------------------------------------------- */
.marquee-wrapper {
  position: relative;
  height: 15rem;
}

.marquee {
  --marquee-gap: 6vw;
  pointer-events: none;
  position: absolute;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--marquee-gap);
  margin-top: 0;
  transform: translate3d(0, 0, 0);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--marquee-gap);
  animation: scroll 300s linear infinite;
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--marquee-gap)));
  }
}
/* Pause on hover */
.marquee:hover .marquee__content {
  animation-play-state: paused;
}

.logosRow__logo svg {
  height: 15rem;
  opacity: 0.9;
  max-width: 100%;
}
.logosRow__logo svg * {
  fill: var(--text-primary);
}

.panel_logos.feature_variant_2 {
  text-align: start;
}
.panel_logos.feature_variant_2 .panel_logos__background-cover {
  background: none;
}
.panel_logos.feature_variant_2 .panel_logos__header {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding: 0 var(--space-xl-3xl);
}
.panel_logos.feature_variant_2 .panel_logos__heading {
  font-size: var(--step-5);
  font-weight: 200;
  max-width: 60ch !important;
  margin: 0;
  padding-bottom: var(--space-xl);
}
.panel_logos.feature_variant_2 .panel_logos__subtitle {
  font-size: var(--step-2);
}
.panel_logos.feature_variant_2 .panel_logos__images {
  padding-top: var(--space-6xl);
}
.panel_logos.feature_variant_2 .inner::before, .panel_logos.feature_variant_2 .inner::after {
  display: none;
}

.panel_full-width-navigation-links {
  --panel-mx: calc(50% - 50vw);
  --gap: 0;
  border-color: var(--border-color);
  border-style: solid;
  border-top-width: 1px;
  border-bottom-width: 1px;
  background: var(--base-background-color) !important;
  position: relative !important;
  background: white;
}
@media only screen and (max-width: 767px) {
  .panel_full-width-navigation-links {
    position: static !important;
  }
}
.panel_full-width-navigation-links .content {
  max-width: var(--CONTAINER-WIDTH);
  margin: 0 auto;
  overflow: hidden;
}
.panel_full-width-navigation-links ul {
  --gap: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-left: var(--gap);
  scroll-padding-right: var(--gap);
  scroll-padding-inline: var(--gap);
}
.panel_full-width-navigation-links ul li {
  margin-right: 1px;
  flex: 1;
  min-width: 180px;
}
@media only screen and (max-width: 767px) {
  .panel_full-width-navigation-links ul li {
    margin-bottom: 0;
  }
}
.panel_full-width-navigation-links ul li + li {
  border-left: 1px solid var(--border-color);
}
.panel_full-width-navigation-links ul li a {
  --navigation-px: var(--space-xs);
  --navigation-py: var(--space-xs);
  --navigation-color: var(--text-primary);
  --navigation-secondary-color: var(--text-body);
  --navigation-line-height: var(--leading-snug);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  float: unset;
  height: 100%;
  justify-content: center;
  position: relative;
  transition: 0.5s all var(--easing);
}
@media only screen and (max-width: 459px) {
  .panel_full-width-navigation-links ul li a {
    --navigation-px: var(--CONTAINER-PADDING);
  }
}
.panel_full-width-navigation-links ul li a:hover {
  background: var(--base-50);
}
.panel_full-width-navigation-links ul li a:hover .label {
  transform: translateX(var(--space-xs));
}
.panel_full-width-navigation-links .counter {
  color: var(--navigation-secondary-color);
  font-size: var(--step--1);
}
.panel_full-width-navigation-links .label {
  font-size: var(--step-1);
  transition: var(--transition);
}

.feature_panels_inner ul li.panel_full-width-navigation-links {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-py: 0;
}

@media only screen and (max-width: 767px) {
  .panel_full-width-navigation-links {
    margin-top: 0 !important;
  }
}

/* Record Four Column
------------------------------------------------------------ */
.feature_panels_inner > ul > li.panel_explore_grid {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-py: 0;
  --panel-mx: calc(50% - 50vw);
  background: var(--panel-background);
  overflow: hidden;
}

.panel_explore_grid {
  --text-primary: #fff;
  --panel-background: #372E2E;
  --panel-content-mt: var(--space-3xs);
  --panel-heading-font-size: var(--step-7-8);
  --panel-subheading-color: var(--text-primary);
  --panel-subheading-font-size: var(--step-7);
  --panel-subheading-line-height: var(--leading-normal);
  --list-heading-font-size: var(--step-5);
  --list-heading-line-height: var(--leading-tight);
  --list-heading-color: var(--text-primary);
  --list-subheading-line-height: var(--leading-normal);
  --list-subheading-font-size: var(--step-0-1) !important;
  --list-subheading-color: var(--text-primary);
  --background-color: var(--panel-background);
  --panel-heading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
  --grid-border-color: var(--elements-primary, #e4e4e4);
  --lazyload-background-color: rgb(0, 0, 0, 0.4);
}
.panel_explore_grid .panel_header {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-l);
  width: 100%;
  padding-top: max(var(--space-l-2xl), 14%);
  padding-bottom: max(var(--space-l-2xl), 14%);
  text-wrap: balance;
  /* wraps lines slighty more nicely (evenly) - pretty decent support in chrome and edge */
}
@media only screen and (min-width: 898px) {
  .panel_explore_grid .panel_header h2 {
    max-width: 75%;
  }
}
.panel_explore_grid .panel_header .subtitle {
  max-width: 50ch;
}
.panel_explore_grid .button_wrapper {
  --list-content-mt: var(--space-m);
  --list-content-mt: auto;
  margin-top: var(--space-m);
}

.explore_grid {
  --grid-columns: 2;
  --vertical-gap: 0;
  --list-item-px: 0;
  --gap: 0;
  --list-image-mb: 0;
}
@media only screen and (max-width: 767px) {
  .explore_grid {
    --grid-columns: 1;
  }
}

.explore_grid > ul {
  width: 100%;
}
.explore_grid > ul li {
  padding: 0 !important;
  background: #372E2E;
  display: flex;
  transform: none !important;
  opacity: 1 !important;
  position: relative;
}
.explore_grid > ul li:nth-child(even) {
  --text-primary: var(--black) !important;
  --list-heading-color: var(--black);
  --list-subheading-color: var(--black);
  background: #CED5D9;
}
.explore_grid > ul li:nth-child(even)::before {
  content: "";
  position: absolute;
  background: #CED5D9;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  display: block;
  visibility: visible;
}
.explore_grid > ul li a {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: minmax(400px, 1fr);
  width: 100%;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .explore_grid > ul li a {
    grid-template-columns: 3fr 2fr;
  }
}
@media only screen and (max-width: 459px) {
  .explore_grid > ul li a {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(275px, 1fr);
  }
}
.explore_grid > ul li .content {
  padding: var(--space-2xl-3xl);
  font-size: var(--step-0-1) !important;
  display: grid;
  grid-template-rows: 1fr min-content 1fr;
}
@media only screen and (max-width: 767px) {
  .explore_grid > ul li .content {
    padding: var(--space-2xl) var(--CONTAINER-PADDING);
  }
}
.explore_grid > ul li .content h2,
.explore_grid > ul li .content .subtitle {
  margin: 0;
}
.explore_grid > ul li .content .subtitle {
  padding-top: var(--space-m);
}
.explore_grid > ul li .content .date {
  color: var(--text-primary) !important;
}
.explore_grid > ul .link {
  --list-content-mt: auto;
  display: block;
}
.explore_grid > ul .link span {
  --button-py: var(--space-m);
  --button-px: var(--space-xl);
}
.explore_grid > ul .image {
  --list-image-mb: 0;
  z-index: 2;
}
@media only screen and (max-width: 459px) {
  .explore_grid > ul .image {
    height: 70vw !important;
  }
}

/* Record Four Row
------------------------------------------------------------ */
.feature_panels_inner > ul > li.panel_record_four_row_custom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-py: 0;
  --panel-mx: calc(50% - 50vw);
}

.panel_record_four_row_custom {
  --panel-content-mt: var(--space-3xs);
  --panel-heading-font-family: var(--uppercase-font-family);
  --panel-heading-font-size: var(--step--2);
  --panel-heading-text-transform: uppercase;
  --panel-subheading-color: var(--text-primary);
  --panel-subheading-font-size: var(--step-4);
  --panel-subheading-line-height: var(--leading-tight);
  --list-heading-font-size: var(--step-4);
  --list-heading-line-height: var(--leading-tighter);
  --list-heading-color: var(--text-primary);
  --list-subheading-line-height: var(--leading-tight);
  --list-subheading-font-size: var(--step-4);
  --list-subheading-color: var(--text-primary);
  --list-content-color: var(--text-secondary);
  --background-color: var(--panel-background);
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
  --button-background-color: var(--text-primary);
  --button-color: var(--panel-background);
  --grid-border-color: var(--elements-primary, #e4e4e4);
  --button-px: var(--space-l);
  --button-py: var(--space-s);
}
@media only screen and (max-width: 1180px) {
  .panel_record_four_row_custom {
    --list-subheading-font-size: var(--step-3);
  }
}
.panel_record_four_row_custom .panel-background {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(4, minmax(0, calc(var(--CONTAINER-WIDTH) / 4))) minmax(0, 1fr);
  position: absolute;
  height: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 !important;
  background: var(--background-color);
}
@media only screen and (max-width: 897px) {
  .panel_record_four_row_custom .panel-background {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 459px) {
  .panel_record_four_row_custom .panel-background {
    grid-template-columns: 1fr;
  }
}
.panel_record_four_row_custom .panel-outerspace {
  padding: 0 !important;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_row_custom .panel-outerspace {
    display: none !important;
  }
}
.panel_record_four_row_custom.panel_bg__default {
  --background-color: var(--panel-background);
  --panel-heading-color: var(--text-primary);
  --panel-subheading-color: var(--text-primary);
  --list-date-color: var(--text-primary);
  --list-heading-color: var(--text-primary);
  --list-subheading-color: var(--text-primary);
  --list-content-color: var(--text-secondary);
  --button-background-color: var(--text-primary);
  --button-color: var(--panel-background);
  --grid-border-color: var(--elements-primary);
  background-color: var(--background-color) !important;
}
.panel_record_four_row_custom.panel_bg__default .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}
.panel_record_four_row_custom.panel_bg__alt {
  --background-color: var(--panel-background-alt);
  --panel-heading-color: var(--text-secondary);
  --panel-subheading-color: var(--text-secondary);
  --list-date-color: var(--text-secondary);
  --list-heading-color: var(--text-secondary);
  --list-subheading-color: var(--text-secondary);
  --list-content-color: var(--text-secondary);
  --button-background-color: var(--text-secondary);
  --button-color: var(--panel-background-alt);
  --grid-border-color: var(--elements-secondary);
  background-color: var(--background-color) !important;
}
.panel_record_four_row_custom.panel_bg__alt .description {
  --prose-body: var(--text-secondary);
  --prose-headings: var(--text-secondary);
  --prose-lead: var(--text-secondary);
  --prose-links: var(--text-secondary);
  --prose-bold: var(--text-secondary);
  --prose-counters: var(--text-secondary);
  --prose-bullets: var(--text-secondary);
  --prose-hr: var(--text-secondary);
  --prose-quotes: var(--text-secondary);
  --prose-quote-borders: var(--text-secondary);
  --prose-captions: var(--text-secondary);
  --prose-code: var(--text-secondary);
  --prose-pre-code: var(--text-secondary);
  --prose-pre-bg: var(--text-secondary);
  --prose-th-borders: var(--text-secondary);
  --prose-td-borders: var(--text-secondary);
}
.panel_record_four_row_custom .panel_header {
  padding-left: 0;
}
.panel_record_four_row_custom.has-images .panel_header {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}
.panel_record_four_row_custom.subheading-only .panel_header {
  padding-top: max(var(--space-2xl), 12%);
  padding-bottom: max(var(--space-2xl), 12%);
}
.panel_record_four_row_custom .button_wrapper {
  --list-content-mt: var(--space-m);
  --list-content-mt: auto;
  margin-top: var(--space-m);
}
.panel_record_four_row_custom h2 + .description {
  --list-content-mt: var(--space-l);
  --list-content-font-size: var(--step-1);
  max-width: 65ch;
}

.panel_record_four_row_custom_inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding: var(--space-4xl-7xl) var(--space-xl-5xl);
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_row_custom_inner {
    flex-direction: column;
  }
}
.panel_record_four_row_custom_inner .text_content {
  --list-item-pt: var(--space-3xl);
  --list-item-px: var(--space-m);
  margin-bottom: var(--space-3xl);
}
.panel_record_four_row_custom_inner .panel_header + .text_content {
  --list-item-pt: 0;
}
.panel_record_four_row_custom_inner .records_list {
  --grid-columns: 1;
  --gap: 0;
  --list-item-px: 0;
  --list-item-width: 100%;
  --list-image-mb: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_row_custom_inner .records_list {
    --grid-columns: 2;
  }
}
@media only screen and (max-width: 459px) {
  .panel_record_four_row_custom_inner .records_list {
    --grid-columns: 1;
  }
}
.panel_record_four_row_custom_inner .records_list .image::after {
  display: none !important;
}
.panel_record_four_row_custom_inner .records_list .image > span {
  position: static !important;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_row_custom_inner .records_list.image_content {
    display: none !important;
  }
}
.panel_record_four_row_custom_inner .records_list.image_content ul {
  align-items: flex-start;
}
.panel_record_four_row_custom_inner .records_list.text_content .image {
  display: none;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_row_custom_inner .records_list.text_content .image {
    display: block;
  }
}
.panel_record_four_row_custom_inner .records_list .row-count {
  grid-area: 1/3/1/4;
  color: var(--elements-primary);
}
@media only screen and (max-width: 897px) {
  .panel_record_four_row_custom_inner .records_list .row-count {
    grid-area: 1/1/1/2;
  }
}
.panel_record_four_row_custom_inner .records_list .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  grid-area: 1/4/1/9;
}
@media only screen and (max-width: 897px) {
  .panel_record_four_row_custom_inner .records_list .content {
    grid-area: 1/2/1/9;
    flex-grow: 0;
  }
}
.panel_record_four_row_custom_inner .records_list .content.has-link .description {
  --list-content-mb: var(--space-2xl-4xl);
}
.panel_record_four_row_custom_inner .records_list .content .fp_title {
  --list-heading-font-size: var(--step-9);
  --list-heading-font-family: "WhyteInktrap";
  --list-heading-font-weight: 300;
}
.panel_record_four_row_custom_inner .records_list ul {
  --vertical-gap: var(--space-xl-2xl) !important;
}
@media only screen and (max-width: 1180px) {
  .panel_record_four_row_custom_inner .records_list ul {
    --grid-columns: 1;
  }
}
.panel_record_four_row_custom_inner .records_list ul li {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.panel_record_four_row_custom_inner .unit-pullout {
  font-size: var(--step-6);
}

.feature_panels_inner > ul .panel_type_4011 {
  max-width: 100vw !important;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --panel-mx: calc(50% - 50vw);
  padding-bottom: 0 !important;
}

.panel_type_4011 {
  --panel-heading-color: var(--white);
  --panel-heading-font-size: var(--step-6);
  --panel-subheading-color: var(--white);
  --panel-subheading-font-size: var(--step-1);
  background: #372E2E !important;
}
.panel_type_4011 .panel_embed_slider_custom_inner {
  width: 100%;
}
.panel_type_4011 .panel_header {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  text-align: center;
}
.panel_type_4011 .panel_header .subtitle {
  display: block;
  margin-top: var(--space-l);
}
.panel_type_4011 .feature-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) 0;
}
.panel_type_4011 .feature-slider-nav ul {
  --gap: var(--space-l);
  list-style: none;
  padding: 0 var(--CONTAINER-PADDING) var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-left: var(--gap);
  scroll-padding-right: var(--gap);
  scroll-padding-inline: var(--gap);
}
.panel_type_4011 .feature-slider-nav li {
  scroll-snap-align: start;
}
.panel_type_4011 .feature-slider-nav .button > span {
  --button-font-size: var(--step--1);
  background: #5C4C4C;
}
.panel_type_4011 .feature-slider-nav .button:hover span {
  background: #EADDDD !important;
  color: #372E2E;
}
.panel_type_4011 .feature-slider-nav li.active .button > span {
  background: #EADDDD !important;
  color: #372E2E !important;
}
.panel_type_4011 .slider-wrapper {
  --splide-track-max-width: 100vw;
}
.panel_type_4011 .splide:not(.is-overflow) .splide__track {
  --px: 0;
  --pt: 0;
}
.panel_type_4011 .splide__slide {
  --item-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel_type_4011 .splide__track {
  width: 100%;
  z-index: 3;
}
.panel_type_4011 .slide-heading {
  font-size: var(--step-5);
  color: var(--white) !important;
}
.panel_type_4011 .embed-slider--controls {
  position: absolute;
  z-index: 99;
  pointer-events: none;
  left: 0;
  width: 100%;
  padding: var(--space-xl-5xl);
}
.panel_type_4011 .embed-slider--controls .splide__arrows {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.panel_type_4011 .embed-slider--controls .splide__arrow {
  pointer-events: auto;
  width: var(--space-3xl-5xl);
  height: var(--space-3xl-5xl);
  position: relative;
}
.panel_type_4011 .embed-slider--controls .splide__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #5C4C4C;
  height: 100%;
  width: 100%;
  border-radius: 200px;
}
.panel_type_4011 .embed-slider--controls .splide__arrow svg {
  width: var(--space-l-xl);
  height: auto;
  position: relative;
  z-index: 10;
}
.panel_type_4011 .embed-slider--controls .splide__arrow svg * {
  fill: var(--white);
}
.panel_type_4011 .embed-slider--controls .splide__arrow.splide__arrow--prev svg {
  transform: rotate(180deg);
}
.panel_type_4011 .full_width {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.panel_type_4011 .full_width .panel_column__left,
.panel_type_4011 .full_width .panel_column__right {
  width: 100%;
}
.panel_type_4011 .full_width .panel_column__left .inner,
.panel_type_4011 .full_width .panel_column__right .inner {
  width: 100%;
  --px: 0;
  --py: 0;
  max-width: unset;
  box-sizing: border-box;
}
.panel_type_4011 .full_width .embed-slider--footer {
  display: none;
}
.panel_type_4011 .full_width .panel_column__content {
  --pt: var(--space-2xl);
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-2xl);
}
.panel_type_4011 .full_width .panel_column__content::before {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  content: "";
  background: #5C4C4C;
  position: absolute;
  top: -100px;
  height: calc(100% + 100px);
}
.panel_type_4011 .full_width .panel_column__content .inner {
  padding: var(--space-xl);
}
.panel_type_4011 .full_width .panel_column__content .splide__slide {
  display: block;
}
.panel_type_4011 .full_width .panel_column__content .splide__slide .prose-wrapper {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: var(--space-l);
  margin: 0 auto;
}
.panel_type_4011 .full_width .panel_column__content .splide__slide .prose-wrapper .prose {
  color: var(--base-200);
  font-size: var(--step--1);
}

.panel_type_4012.panel_record_slider_custom .panel_header {
  text-align: center;
  justify-content: center;
}

.panel_type_4012.panel_record_slider_custom .panel_header .subtitle {
  margin: 0 auto;
}

.panel_type_4012 .records_list.grid_dynamic_layout_feature_panels ul li img {
  object-fit: contain;
}

.panel_type_4012 .panel_record_slider_custom_inner + .panel_record_slider_custom_inner {
  padding-top: 0;
  transform: translateX(-320px);
  width: calc(100% + 320px);
}

.panel_type_4015 {
  --panel-py: 0;
  --panel-header-mb: 0;
}
@media only screen and (max-width: 767px) {
  .panel_type_4015 {
    --panel-header-mt: var(--space-2xl);
  }
}
.panel_type_4015 .panel_header h2 {
  --panel-heading-font-family: var(--base-font-family);
  --panel-heading-font-size: var(--step-1);
  margin: 0 auto;
}
.panel_type_4015 .panel_header .subtitle {
  margin: 0 auto;
}
.panel_type_4015 .logosRow {
  margin: 0 auto;
}
.panel_type_4015 .panel_logos__content {
  margin-top: 0;
}
.panel_type_4015.white {
  background: white !important;
}

.panel_type_4016 {
  --section-vertical-space: var(--space-4xl);
  width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: var(--primary-body);
}
.panel_type_4016 .panel_header {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
  padding-bottom: var(--space-4xl);
}
.panel_type_4016 .panel_header h2 {
  padding-bottom: var(--space-xl);
}
.panel_type_4016 h2 {
  --panel-heading-font-size: var(--step-6);
}
.panel_type_4016 .subtitle {
  --panel-subheading-font-family: var(--uppercase-font-family);
  --panel-subheading-font-size: var(--step--1_5);
  --panel-subheading-text-transform: uppercase;
  margin: 0 auto;
  padding-top: var(--space-2xl);
}
.panel_type_4016 .fp-panel__header-link {
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--uppercase-font-family);
  font-size: var(--step--1_5);
}
.panel_type_4016 .fp-panel__header-link:hover {
  transition: var(--transition);
  color: var(--blue);
}
.panel_type_4016 .records_list {
  --vertical-gap: 0;
  --list-item-px: 0;
  padding: 0 var(--space-xl-5xl);
}
.panel_type_4016 .records_list .image {
  --list-image-mb: 0;
}
.panel_type_4016 .records_list ul {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
@media only screen and (max-width: 767px) {
  .panel_type_4016 .records_list ul {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 768px) {
  .panel_type_4016 .records_list li:nth-child(3n+1) {
    grid-column: span 2;
  }
  .panel_type_4016 .records_list li:nth-child(3n+1) .image::after {
    padding-top: 60%;
  }
}
.panel_type_4016 .masonry-item {
  position: relative;
}
.panel_type_4016 .masonry-item .content {
  position: absolute;
  bottom: 0;
  padding: var(--space-xl) var(--space-3xl);
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: rgba(75, 75, 75, 0.15);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  width: 100%;
}
.panel_type_4016 .masonry-item .content:hover h2::before {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}
.panel_type_4016 .masonry-item .content h2 {
  --list-heading-font-size: var(--step-2);
  --list-heading-color: var(--white);
  position: relative;
  display: inline-block;
}
.panel_type_4016 .masonry-item .content .subtitle {
  --list-content-mt: 0;
  --list-subheading-color: var(--base-300);
  font-family: "Whyte" !important;
  font-size: var(--step-2) !important;
  text-transform: none !important;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.8) !important;
}
.panel_type_4016 .masonry-item .content .link {
  --list-content-mt: var(--space-m);
}

.panel_vacancies {
  --panel-heading-font-size: var(--step-9);
  --panel-heading-line-height: var(--leading-tighter);
  --panel-prose-color: var(--text-body);
}
.panel_vacancies .panel_inner {
  padding: var(--space-7xl) var(--space-xl-5xl);
  width: 100%;
  max-width: calc(var(--CONTAINER-WIDTH) * 0.66);
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.panel_vacancies .panel_header h2 {
  max-width: 75%;
}
.panel_vacancies .fp_title {
  letter-spacing: var(--tracking-tight);
}
.panel_vacancies .vacancy-preview {
  padding-top: var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-top: 1px solid #ddd;
}
.panel_vacancies .vacancy-category {
  font-size: var(--step-5);
  color: var(--text-primary);
  padding-top: var(--space-3xl);
  margin-bottom: var(--space-xl);
}
.panel_vacancies .vacancy-title {
  font-size: var(--step-4);
  color: var(--text-primary);
}
.panel_vacancies .vacancy-info {
  color: var(--text-primary);
  font-size: var(--step-1);
  line-height: var(--leading-snug);
  margin-top: var(--space-xs);
}
.panel_vacancies .vacancy-description-preview {
  --panel-content-mt: var(--space-4xl);
  padding-top: var(--space-l);
  color: var(--panel-prose-color);
}
.panel_vacancies .link {
  --panel-content-mt: var(--space-3xl);
}
.panel_vacancies .button {
  float: none;
  display: inline-block;
  margin-top: var(--space-xl);
}
.panel_vacancies .button a {
  text-transform: none !important;
}

.vacancy-info__type + .vacancy-info__salary::before {
  content: "|";
  padding-left: var(--space-xs);
  padding-right: var(--space-s);
  color: var(--border-color);
}

.layout-animation-enabled .panel_consultants .records_list:not(#add_to_calendar_links):not(#slideshow) ul li,
.layout-animation-enabled .panel_consultants .records_list:not(#add_to_calendar_links):not(#slideshow) ul li.visible {
  opacity: 1;
  transform: initial;
  transition: initial;
}

.panel_consultants {
  --records-list-display: block;
  --list-item-width: 33.33%;
  --list-item-pb: var(--space-4xl);
}
@media only screen and (max-width: 1180px) {
  .panel_consultants {
    --list-item-width: 50%;
  }
}
@media only screen and (max-width: 459px) {
  .panel_consultants {
    --list-item-width: 100%;
  }
}
@media only screen and (max-width: 1180px) {
  .panel_consultants .fp-panel__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.panel_consultants .records_list {
  --list-heading-font-size: var(--step-3);
  z-index: 10;
  position: relative;
}
.panel_consultants .records_list li .category-tag.button > a,
.panel_consultants .records_list li .category-tag.button > span {
  --button-py: var(--space-xs);
  --button-px: var(--space-m);
  --button-font-size: var(--step--1_5);
}
.panel_consultants .records_list .location {
  --list-content-color: var(--text-primary);
  --list-content-font-size: var(--step-0);
  --list-content-mt: var(--space-xs);
}
.panel_consultants .records_list .social_links {
  margin-top: var(--space-l) !important;
  display: flex;
  gap: var(--space-xs);
  margin-left: calc(0px - var(--space-l) / 2) !important;
}
.panel_consultants .records_list .social_links .social_links_item {
  float: none;
}
.panel_consultants .records_list .social_links .social_links_item a {
  color: var(--text-primary);
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  padding: var(--space-l);
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.panel_consultants .records_list .social_links .social_links_item a .social_media_icon {
  margin: 0;
  color: var(--text-primary);
}
.panel_consultants .records_list .social_links .social_links_item a .social_media_icon::after {
  font-size: var(--step-0);
}
.panel_consultants img {
  object-fit: cover;
  aspect-ratio: 1;
}
.panel_consultants .category-tag-wrapper {
  display: flex;
  gap: var(--space-xs);
  flex-direction: row;
  flex-wrap: wrap;
  padding: var(--space-xl) 0;
  list-style: none;
}
.panel_consultants .category-tag-wrapper li {
  margin: 0;
}
.panel_consultants .category-tag.button > a,
.panel_consultants .category-tag.button > span {
  --button-font-size: var(--step--1);
  --button-color: var(--text-primary);
  --button-background-color: #EFF0F8;
  --button-focus-background-color: var(--text-primary);
  --button-focus-color: var(--white);
}

.consultant-details h2 {
  --heading-font-size: var(--step-6);
  --heading-font-weight: 400;
  display: block;
}
.consultant-details .location {
  font-size: var(--step-1);
  line-height: var(--leading-snug);
  color: var(--text-primary);
  margin-top: var(--space-s);
  display: block;
}
.consultant-details .subtitle {
  font-size: var(--step-0);
  line-height: var(--leading-snug);
  color: var(--text-body);
  display: block;
  margin-top: var(--space-s);
}

.section-home #content:not(.no_homepage_slideshow) .feature_panels:not(.first_panel_full_bleed) {
  padding: 0;
}

#image_gallery {
  --content-module-py: var(--space-xl);
  --content-module-pl: var(--space-xl);
  --detail-view-module-mb: var(--space-xl);
}
#image_gallery .artist {
  --artwork-artist-font-size: var(--step-2);
  --artwork-artist-font-weight: 600;
  --artwork-artist-color: var(--text-primary);
}
#image_gallery .subtitle {
  --artwork-title-font-size: var(--step-2);
  --artwork-title-font-weight: 600;
  --artwork-title-color: var(--text-primary);
}
#image_gallery .enquire {
  --detail-view-module-mt: var(--detail-view-module-mb);
}
#image_gallery #content_module .subtitle {
  margin-bottom: var(--space-s);
}
#image_gallery #content_module .detail_view_module {
  margin-bottom: var(--detail-view-module-mb);
}

.detail_view_module_artwork_caption {
  --prose-font-size: var(--step--1);
}

.page-param-type-artist_id {
  --hero-heading-color: var(--text-primary);
}
.page-param-type-artist_id #hero_header {
  background: white !important;
  margin-bottom: var(--space-xl);
}
.page-param-type-artist_id #hero_header > .inner {
  min-height: unset !important;
  height: auto !important;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: var(--space-xl);
  margin-top: var(--space-2xl);
}
.page-param-type-artist_id #hero_image_responsive {
  position: relative;
  height: 65vh;
}
.page-param-type-artist_id .artist-header {
  display: none;
}

.artists-header {
  display: none;
}

.subsection-artists-list {
  --list-heading-font-size: var(--step-3);
  --list-heading-line-height: var(--leading-relaxed);
  --artist-list-item-mb: 0;
  margin-top: var(--space-l);
}

.subsection-video-record #full {
  margin-bottom: var(--space-4xl);
}

.records_list.grid_dynamic_layout_video_featured ul li .image::after,
.records_list.grid_dynamic_layout_video ul li .image::after {
  padding-top: 56.25%;
}

/* Sales Pipeline
------------------------------------------ */
.page-sales-pipeline {
  padding-top: 0 !important;
  overflow: initial;
  font-weight: var(--base-font-weight);
}
.page-sales-pipeline #content_sections {
  font-weight: var(--base-font-weight);
}

.page-sales-pipeline {
  --main-content-mt: 125px;
  overflow: initial;
}

.page-sales-pipeline .feature_panels .records_list.image_list ul li.panel_hero.panel_contact_form .hero_section:after {
  display: none;
}

.page-sales-pipeline .global_contact_form {
  padding-top: 20px;
}

.page-sales-pipeline .global_contact_form h2 {
  display: none;
}

.page-sales-pipeline .global_contact_form .form_row.form_row_interests {
  display: none;
}

.hero_header_horizontal {
  width: 100%;
  clear: both;
}

.hero_header_horizontal .hero_header_horizontal_content {
  width: 100%;
  clear: both;
  padding: 0 100px var(--space-3xl-4xl);
  box-sizing: border-box;
}

.hero_header_horizontal .hero_header_horizontal_content .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#main_content .hero_header_horizontal .hero_header_horizontal_content .main_heading {
  flex-grow: 1;
}
#main_content .hero_header_horizontal .hero_header_horizontal_content .main_heading h1 {
  margin: 0;
}

.page-sales-pipeline .hero_header_horizontal .hero_header_horizontal_content .main_heading h1 {
  font-size: var(--step-5-7);
  line-height: var(--leading-tight);
  font-weight: var(--base-font-weight);
  max-width: 850px;
  margin: 0 0 var(--space-l);
  letter-spacing: 0;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 2.5s cubic-bezier(0.18, 1, 0.21, 1);
}

.page-sales-pipeline .hero_header_horizontal.page-load-1 .hero_header_horizontal_content .main_heading h1 {
  opacity: 1;
  transform: none;
}

.hero_header_horizontal .hero_header_horizontal_content .main_heading .subtitle {
  display: block;
  font-size: var(--step-3-5);
  line-height: var(--leading-tight);
  letter-spacing: none;
  font-weight: var(--base-font-weight);
  font-family: CalibreWeb, Sans-Serif;
  letter-spacing: 0;
  color: var(--text-primary);
  text-transform: none;
  margin: 0;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 2.5s cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 400ms;
}

.page-sales-pipeline .hero_header_horizontal.page-load-1 .hero_header_horizontal_content .main_heading .subtitle {
  opacity: 1;
  transform: none;
}

.hero_header_horizontal .hero_header_horizontal_content .main_aside {
  padding: var(--space-2xl-3xl) 0 0 0;
}

.hero_header_horizontal .hero_header_horizontal_content .main_aside > div {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 2.5s cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 800ms;
}

.hero_header_horizontal.page-load-1 .hero_header_horizontal_content .main_aside > div {
  opacity: 1;
  transform: none;
}

.hero_header_horizontal .hero_header_horizontal_content .main_aside .button {
  margin: 0;
  float: none;
  clear: both;
  padding: 0;
}

.hero_header_horizontal .hero_header_horizontal_content .main_aside .button a {
  padding: 0;
  white-space: nowrap;
}

.sales_pipeline_v4 .hero_header_horizontal .hero_header_horizontal_content .main_aside .button a {
  font-size: var(--step-2);
  padding: 11px 42px;
}

.hero_header_horizontal .hero_header_horizontal_content .main_aside .subtitle {
  float: right;
  clear: both;
  font-size: var(--step-3);
  line-height: var(--leading-loose);
  letter-spacing: none;
  font-weight: bold;
  font-family: CalibreWeb, Sans-Serif;
  letter-spacing: 0;
  color: var(--text-primary);
  text-transform: none;
  margin: 0;
  transition-delay: 1200ms;
}

.hero_header_horizontal .hero_header_horizontal_image {
  width: 100%;
  clear: both;
  padding: 0;
  position: relative;
}

.hero_header_horizontal .hero_header_horizontal_background {
  position: absolute;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: var(--base-100);
  overflow: hidden;
}

.hero_header_horizontal .hero_header_horizontal_background:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: url(/images/sp2/sp_pattern_full.jpg) center center repeat var(--base-100);
  background-size: 1720px auto;
  background-attachment: fixed;
  opacity: 0;
  transform: scale(1.05);
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 4s cubic-bezier(0.18, 1, 0.21, 1);
}

.hero_header_horizontal.page-load-1 .hero_header_horizontal_background:before {
  opacity: 1;
  transform: scale(1);
}

.hero_header_horizontal .hero_header_horizontal_device {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  background: url(/images/sp2/laptop-clay-white.png) center center no-repeat;
  background-size: contain;
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 2.5s cubic-bezier(0.18, 1, 0.21, 1);
  transform: translateY(120px);
  opacity: 0;
}

.hero_header_horizontal.page-load-2 .hero_header_horizontal_device {
  transform: none;
  opacity: 1;
}

.hero_header_horizontal .hero_header_horizontal_device:before {
  content: "";
  padding-top: 63.511%;
  width: 100%;
  z-index: 0;
  display: block;
  position: relative;
}

.hero_header_horizontal .hero_header_horizontal_device .video_container {
  position: absolute;
  z-index: 1;
  top: 14.52%;
  left: 16%;
  right: 15.7%;
  bottom: 18.44%;
  border: 1px solid var(--base-300);
}

.hero_header_horizontal .hero_header_horizontal_device .video_container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp_content_style {
  font-weight: 200;
}

.sp_content_style section.sp_text_basic {
  width: 100%;
  clear: both;
}

.sp_content_style section.sp_text_basic .inner {
  padding: var(--space-3xl-4xl);
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  transition: transform 500ms cubic-bezier(0.18, 1, 0.21, 1), opacity 500ms cubic-bezier(0.18, 1, 0.21, 1);
}

.sp_content_style section.sp_text_basic .inner > * {
  transition: transform 500ms cubic-bezier(0.18, 1, 0.21, 1), opacity 500ms cubic-bezier(0.18, 1, 0.21, 1);
  transform: translateY(120px);
  opacity: 0;
}

.sp_content_style section.sp_text_basic.visible .inner > * {
  transform: none;
  opacity: 1;
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 3.5s cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 400ms;
}

.sp_content_style section.sp_text_basic.visible .inner > *:nth-child(2) {
  transition-delay: 800ms;
}

.sp_content_style section.sp_text_basic.visible .inner > *:nth-child(3) {
  transition-delay: 1200ms;
}

.sp_content_style section.sp_text_basic:first-child {
  margin-top: var(--space-3xl-4xl);
}

.sp_content_style section.sp_text_basic:first-child .inner {
  padding-top: 0;
}

.sp_content_style section.sp_text_basic .inner h2 {
  text-align: center;
  font-size: var(--step-5-7);
  line-height: var(--leading-tight);
  margin: 0 auto var(--space-xl);
  text-wrap: balance;
  max-width: 800px;
}

.sales_pipeline_v4.sp_content_style section.sp_text_basic .inner h2 {
  max-width: 985px;
}

.sp_content_style section.sp_text_basic .inner .description {
  text-align: center;
  margin: 0 0 var(--space-xl);
  font-size: var(--step-3);
}

.sales_pipeline_v4.sp_content_style section.sp_text_basic .inner .description {
  font-size: var(--step-0-1);
  font-weight: var(--base-font-weight);
  line-height: var(--leading-loose);
  color: var(--text-primary);
  letter-spacing: 0;
  text-align: center;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.sp_content_style section.sp_text_basic .inner .description p {
  margin: 0 0 var(--space-l);
}

.sp_content_style section.sp_text_basic .inner .description p:last-child {
  margin: 0;
}

.sp_content_style section.sp_text_basic .inner .button {
  display: inline-block;
  float: none;
  margin: 0;
}

.sales_pipeline_v4.sp_content_style section.sp_text_basic .inner .button a {
  padding: var(--space-xs) var(--space-4xl);
}

.sp_content_style section.sp_full_bleed {
  clear: both;
  overflow: hidden;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.sp_content_style section.sp_full_bleed .uniquely_personal_section_wrapper {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding: var(--space-4xl) 0;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.sp_content_style section.sp_full_bleed .uniquely_personal_section_wrapper .sp_x_heading_wrapper {
  padding-left: 0;
}
.sp_content_style section.sp_full_bleed .uniquely_personal_section_wrapper .dui_text_cols_3 {
  margin-top: var(--space-5xl);
}

uniquely_personal_section_wrapper .sp_content_style section.sp_full_bleed .style_banner,
.sp_content_style section.sp_full_bleed .style_banner {
  width: 100%;
  clear: both;
  height: 140px;
  background: url(/images/sp2/sp_pattern_full.jpg) center center repeat var(--base-100);
  background-size: 1720px auto;
  background-attachment: scroll;
}

.sales_pipeline_v4.sp_content_style section.sp_full_bleed .style_banner {
  height: 205px;
}

.sales_pipeline_v4.sp_content_style section.sp_pricing_panel .style_banner {
  height: 137px;
}

.sp_content_style section.sp_full_bleed .full_bleed_container,
li.panel.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: var(--section-vertical-space) 0;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  font-weight: var(--base-font-weight);
}

.dui_text_col_content {
  padding-top: var(--space-xl);
}

.sp_content_style section.sp_full_bleed .full_bleed_container_inner {
  width: 100%;
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
}

.sp_content_style section.sp_full_bleed.sp_pricing_panel .full_bleed_container_inner {
  position: relative;
}

.sp_content_style section.sp_full_bleed .full_bleed_container .inner.sp_lead_diagram_heading_wrapper,
.sp_content_style section.sp_full_bleed .full_bleed_container .inner.sales_lead_caption {
  width: 100%;
  height: auto;
  clear: both;
  box-sizing: border-box;
  color: var(--white);
  text-align: left;
  margin: 0 auto;
  padding: 0;
}

@media only screen and (min-width: 768px) {
  .sp_content_style section.sp_full_bleed .full_bleed_container .inner.sales_lead_caption {
    margin-top: -170px;
  }
}

.sp_content_style section.sp_full_bleed .full_bleed_container .inner,
li.panel.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container .inner {
  width: 100%;
  clear: both;
  box-sizing: border-box;
  color: var(--text-body-invert);
  text-align: left;
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
}

.sp_content_style section.sp_full_bleed.sp_full_bleed_center .full_bleed_container .inner {
  text-align: center;
  padding: var(--space-6xl) var(--space-6xl) var(--space-7xl);
}

section.sp_full_bleed .subtitle {
  color: var(--base-300);
}

section.sp_full_bleed.uniquely_personal_section .subtitle {
  color: var(--text-primary);
}

.page-sales-pipeline li.panel.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container .inner {
  padding-top: var(--space-6xl);
}

.page-sales-pipeline .sp_content_style section.sp_full_bleed .full_bleed_container h2 {
  font-size: var(--step-6);
  line-height: var(--leading-tight);
  margin: 0;
  color: var(--white);
}

.page-sales-pipeline .sp_content_style section.sp_full_bleed .full_bleed_container .subtitle,
.page-sales-pipeline li.panel.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container .subtitle {
  font-size: var(--step-4);
  line-height: var(--leading-snug);
  letter-spacing: none;
  font-family: CalibreWeb, Sans-Serif;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  display: block;
}

#sp_register_interest_header .subtitle {
  font-size: var(--step-1-2);
}

.sp_content_style section.sp_full_bleed .full_bleed_container .inner:not(.dui_text_cols) > *,
.sp_content_style section.sp_full_bleed .full_bleed_container .sales_funnel_caption,
.page-sales-pipeline li.panel.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container .inner:not(.dui_text_cols) > * {
  transition: transform 500ms cubic-bezier(0.18, 1, 0.21, 1), opacity 500ms cubic-bezier(0.18, 1, 0.21, 1);
  transform: translateY(120px);
  opacity: 0;
}

.sp_content_style section.sp_full_bleed .full_bleed_container.visible .inner:not(.dui_text_cols) > *,
.page-sales-pipeline li.panel.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container.visible .inner:not(.dui_text_cols) > *,
.sp_content_style section.sp_full_bleed .full_bleed_container.visible .sales_funnel_caption {
  transform: none;
  opacity: 1;
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 3.5s cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 200ms;
}

.sp_content_style section.sp_full_bleed .full_bleed_container.visible .inner:not(.dui_text_cols):not(.sales_lead_caption) > *:nth-child(2),
.page-sales-pipeline li.panel.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container .inner:not(.dui_text_cols) > *:nth-child(2) {
  transition-delay: 600ms;
}

.sp_content_style section.sp_full_bleed .full_bleed_container.visible .inner:not(.dui_text_cols):not(.sales_lead_caption) > *:nth-child(3),
.page-sales-pipeline li.panel.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container .inner:not(.dui_text_cols) > *:nth-child(3) {
  transition-delay: 1000ms;
}

/* Changing heading text
--------------------------------------------*/
.sp_changing_heading {
  position: relative;
}

.sp_changing_heading .sp_slash {
  display: none;
}

.sp_changing_heading .sp_changing_text_option {
  display: none;
  opacity: 0;
  transition: opacity 400ms ease-in-out, transform 400ms cubic-bezier(0, 0, 0.2, 1) !important;
}

.sp_changing_heading .sp_changing_text_option.active {
  display: block;
  transform: translateY(20px);
  transition: none !important;
}

.sp_changing_heading .sp_changing_text_option.active.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 400ms ease-in-out, transform 400ms cubic-bezier(0, 0, 0.2, 1) !important;
}

.sp_changing_heading .sp_changing_text_option.active.animate-out {
  opacity: 0;
  transform: translateY(-20px);
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 400ms ease-in-out, transform 400ms cubic-bezier(0, 0, 0.2, 1) !important;
}

/* Sticky sp nav
--------------------------------------------*/
body.dui_sticky_lock #header {
  transform: translateY(-110%);
}

.sp_sticky_nav_wrapper_marker {
  display: block;
}

body.dui_sticky_lock section.sp_sticky_nav_wrapper {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

body.cms-frontend-toolbar-active section.sp_sticky_nav_wrapper {
  top: 28px;
}

#dui_sticky_section_1 {
  position: relative;
  z-index: 1;
  border-top: 1px solid vaR(--base-200);
}

.sp_sticky_nav.dui_sticky {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --_border-color: var(--base-200);
  background: var(--white);
  border-top: 1px solid var(--_border-color);
  margin-bottom: -1px;
}
.sp_sticky_nav.dui_sticky ul {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}

.sp_sticky_nav ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}

.sp_sticky_nav_item {
  width: 14.2857142857%;
  box-sizing: border-box;
  border-bottom: 1px solid var(--_border-color);
  margin: 0;
  font-family: CalibreWeb, Sans-Serif;
  line-height: 1.1em;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transition: transform 1200ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1000ms cubic-bezier(0.18, 1, 0.21, 1);
}
.sp_sticky_nav_item + .sp_sticky_nav_item {
  border-left: 1px solid var(--_border-color);
}

.sp_sticky_nav_item a {
  display: block;
  padding: var(--space-l);
  box-sizing: border-box;
  line-height: 17px;
}

.sp_sticky_nav_wrapper.visible .sp_sticky_nav_item {
  opacity: 1;
  transform: none;
}

.sp_sticky_nav_wrapper.visible .sp_sticky_nav_item:nth-child(2n) {
  transition-delay: 100ms;
}

.sp_sticky_nav_wrapper.visible .sp_sticky_nav_item:nth-child(3n) {
  transition-delay: 200ms;
}

.sp_sticky_nav_wrapper.visible .sp_sticky_nav_item:nth-child(4n) {
  transition-delay: 300ms;
}

.sp_sticky_nav_wrapper.visible .sp_sticky_nav_item:nth-child(5n) {
  transition-delay: 400ms;
}

.sp_sticky_nav_wrapper.visible .sp_sticky_nav_item:nth-child(6n) {
  transition-delay: 500ms;
}

.sp_sticky_nav_wrapper.visible .sp_sticky_nav_item:nth-child(7n) {
  transition-delay: 500ms;
}

.sp_sticky_nav_item a::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: calc(100% + 1px);
  height: 3px;
  background: transparent;
  opacity: 0;
  transition: opacity 200ms ease-in-out, height 300ms ease-in-out, background 200ms ease-in-out;
}

body:not(.dui_sticky_lock) .sp_sticky_nav_item:nth-child(1) a::before {
  background: var(--text-primary);
}

.sp_sticky_nav_item a {
  text-decoration: none;
}

.sp_sticky_nav_item a.active::before {
  background: var(--text-primary);
  height: 100%;
  border-bottom: 1px solid var(--base-700);
  opacity: 1;
  transition-delay: 350ms;
}

.sp_sticky_nav_item .sp_sticky_num {
  display: block;
  font-size: var(--step--1);
  line-height: var(--leading-tight);
  color: var(--base-600);
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 99;
}

.sp_sticky_nav_item a.active .sp_sticky_num {
  color: var(--base-300);
}

.sp_sticky_nav_item .sp_sticky_label {
  font-size: var(--step-0-1);
  color: var(--text-primary);
  position: relative;
  z-index: 99;
  transition: color 200ms ease-in-out;
  font-weight: var(--base-font-weight);
}

.sp_sticky_nav_item a.active .sp_sticky_label {
  color: var(--white);
  transition-delay: 350ms;
}

.sp_sticky_splash_heading {
  position: absolute;
  top: 100px;
  left: 50px;
  font-size: var(--step-7-8);
  line-height: var(--leading-tight);
  letter-spacing: -6px;
  color: var(--text-primary);
  pointer-events: none;
  transition: opacity 400ms ease-in-out, transform 600ms cubic-bezier(0.65, 0.06, 0.19, 0.96);
  transform: scale(0.8) skew(4deg, 2deg);
  opacity: 0;
  display: none !important;
}

body:not(.sp_dark_section) .sp_sticky_splash_heading.active {
  opacity: 1;
  transform: none;
}

/* Image text adjacent
------------------------------------------------------------ */
.sp_image_text_adjacent {
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.sp_image_text_adjacent .inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  min-height: 700px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: var(--space-4xl) var(--CONTAINER-PADDING);
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sp_image_text_adjacent .inner {
    min-height: 600px;
  }
}

.page-sales-pipeline .sp_image_text_adjacent .content_block {
  width: 50%;
  padding-left: var(--space-7xl-8xl);
  padding-right: 0;
  box-sizing: border-box;
}
@media only screen and (max-width: 639px) {
  .page-sales-pipeline .sp_image_text_adjacent .content_block {
    padding-left: var(--space-5xl);
  }
}

.sp_image_text_adjacent .image_wrapper {
  width: 50%;
  position: relative !important;
  z-index: 99;
  box-sizing: border-box;
  text-align: right;
}

.sp_image_text_adjacent .image_wrapper img {
  max-height: 40vw;
  max-width: 80%;
  line-height: 0;
}

.sp_image_text_adjacent.sp_insights_actions .image_wrapper img {
  max-height: 40vw;
}

.sp_image_text_adjacent.sp_insights_actions .image_wrapper img.sp_insights_icons {
  width: 80%;
  max-width: 420px;
}

.sp_image_text_adjacent.sp_overview_text_image .image_wrapper img {
  max-width: 100%;
}

.dui_sticky_section_5 .sp_image_text_adjacent .image_wrapper img {
  max-width: 100%;
}

.dui_sticky_section_1 .sp_full_bleed .full_bleed_container .dui_text_cols {
  padding-top: 0;
}

.sp_image_text_adjacent .style_bg {
  width: 40vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: absolute;
  left: 0;
  top: 0;
  background: url(/images/sp2/sp_pattern_full.jpg) center center repeat var(--base-100);
  background-size: 1720px auto;
}

@media screen and (max-width: 767px) {
  body .sp_image_text_adjacent .style_bg {
    height: var(--space-7xl-8xl);
    width: 100vw;
  }
  .sp_image_text_adjacent .inner,
  body .sp_image_text_adjacent.sp_invert_x .inner {
    flex-direction: column;
    gap: var(--space-xl);
    min-height: 0;
  }
  body .sp_image_text_adjacent .image_wrapper {
    width: 100%;
  }
  body.page-sales-pipeline .sp_image_text_adjacent .content_block,
  body.page-sales-pipeline .sp_image_text_adjacent.sp_invert_x .content_block {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .sp_image_text_adjacent .image_wrapper img {
    max-height: 70vh;
  }
  body .sp_image_text_adjacent.sp_invert_x .image_wrapper .device-bg-ipad {
    left: -10%;
  }
  .sp_image_text_adjacent.sp_insights_actions .image_wrapper img {
    max-height: 65.6vw;
  }
}
.sp_content_style h2,
.page-sales-pipeline .sp_image_text_adjacent h2 {
  font-size: var(--step-4-6);
  line-height: var(--leading-tight);
  text-transform: none;
}

.sp_content_style .subtitle,
.page-sales-pipeline .sp_image_text_adjacent .subtitle {
  font-size: var(--step-1-2);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  letter-spacing: unset;
  text-transform: none;
  display: inline-block;
  padding: var(--space-l-xl) 0 0 0;
}

.sp_content_style .description {
  padding: var(--space-l-xl) 0 0 0;
  margin: 0;
}

/* Switch alignment ---------------- */
.sp_image_text_adjacent.sp_invert_x .inner {
  flex-direction: row-reverse;
}

.sp_image_text_adjacent.sp_invert_x .style_bg {
  left: auto;
  right: 0;
}

.sp_image_text_adjacent.sp_invert_x .image_wrapper {
  text-align: left;
}

.page-sales-pipeline .sp_image_text_adjacent.sp_invert_x .content_block {
  padding-left: 0;
  padding-right: var(--space-7xl-8xl);
}
@media only screen and (max-width: 639px) {
  .page-sales-pipeline .sp_image_text_adjacent.sp_invert_x .content_block {
    padding-left: var(--space-5xl);
  }
}

/* Animation ---------------- */
.sp_content_style section.sp_image_text_adjacent .inner > *:not(.style_bg) {
  transition: transform 500ms cubic-bezier(0.18, 1, 0.21, 1), opacity 500ms cubic-bezier(0.18, 1, 0.21, 1);
  transform: translateY(120px);
  opacity: 0;
}

.sp_content_style section.sp_image_text_adjacent .inner.visible > *:not(.style_bg) {
  transform: none;
  opacity: 1;
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 3.5s cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 400ms;
}

.sp_content_style section.sp_image_text_adjacent .inner.visible > *:not(.style_bg):nth-child(2) {
  transition-delay: 800ms;
}

.sp_content_style section.sp_image_text_adjacent .inner.visible > *:not(.style_bg):nth-child(3) {
  transition-delay: 1200ms;
}

/* Devices
------------------------------------------------------------- */
.sp_image_text_adjacent .image_wrapper .device-bg-ipad {
  background: url(/images/device_base_ipad.png) no-repeat center;
  display: block;
  background-size: contain;
  position: relative;
  z-index: 99;
}

.sp_image_text_adjacent.sp_invert_x .image_wrapper .device-bg-ipad {
  left: -22%;
}

.sp_image_text_adjacent .image_wrapper .device-bg-ipad img {
  position: absolute;
  top: 9%;
  right: 8.1%;
  height: 70%;
}

.sp_image_text_adjacent .image_wrapper .device-bg-ipad::before {
  content: "";
  width: 100%;
  padding-top: 122.23%;
  display: block;
}

.sp_image_text_adjacent .image_wrapper .device-bg-ipad video {
  position: absolute;
  left: auto;
  top: 9%;
  right: 8.1%;
  left: 27.8%;
  height: 70%;
  width: auto;
}

.device-slideshow img.device-slide:nth-of-type(1) {
  z-index: 88;
}

.device-slideshow img.device-slide:nth-of-type(2) {
  z-index: 99;
  animation-name: sp_fade;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-direction: alternate;
}

@keyframes sp_fade {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* UI
------------------------------------------------------------- */
.sp_image_text_adjacent .image_wrapper .workflow-ui-wrapper {
  line-height: 0;
  display: block;
}

.sp_image_text_adjacent .image_wrapper .workflow-ui-wrapper img {
  max-width: 530px;
  width: 80%;
  margin-bottom: -5px;
  transform: translateY(60px) skew(1deg, 0deg) rotate(3deg);
}

.sp_image_text_adjacent .image_wrapper .workflow-ui-wrapper img {
  margin-bottom: -5px;
  transform: translateY(60px) skew(1deg, 0deg) rotate(3deg);
  transition: transform 1000ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1200ms cubic-bezier(0.18, 1, 0.21, 1);
}

.inner.inview_element.visible .workflow-ui-wrapper img {
  transform: none;
}

.inner.inview_element.visible .workflow-ui-wrapper img:nth-child(2) {
  transition: transform 1200ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1300ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 250ms;
}

.inner.inview_element.visible .workflow-ui-wrapper img:nth-child(3) {
  transition: transform 1400ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1500ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 500ms;
}

.inner.inview_element.visible .workflow-ui-wrapper img:nth-child(4) {
  transition: transform 1600ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1700ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 750ms;
}

.inner.sp_x_heading_wrapper {
  box-sizing: border-box;
}

.sp_typeof_clients .inner.dui_text_cols {
  padding-top: var(--space-xl);
}

.inner.sp_x_heading_wrapper.narrow_left,
.inner.sp_x_heading_wrapper.narrow_center {
  max-width: 900px;
}

.inner.sp_x_heading_wrapper.narrow_center {
  text-align: center;
  margin: 0 auto;
}

.sales_lead_caption {
  width: 50%;
  margin-top: -245px;
  padding: 0 0 60px 100px;
}

.page-sales-pipeline .sp_content_style section.sp_full_bleed .full_bleed_container .sales_lead_caption h2 {
  margin-bottom: 0;
}

/* Sales leads
------------------------------------------------------------- */
.leadCollectionDiagram .sp_lead_diagram_wrapper {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  padding: 40px 40px 100px 0;
  box-sizing: border-box;
}

.leadCollectionDiagram .sp_lead_diagram {
  box-sizing: border-box;
  line-height: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: auto;
}

@media only screen and (min-width: 1600px) {
  .leadCollectionDiagram .sp_lead_diagram {
    margin-left: calc(50% - 50vw);
    margin-right: auto;
  }
}
body:not(.browser-msie) .sp_content_style section.leadCollectionDiagram .full_bleed_container .sp_lead_diagram {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

body:not(.browser-msie) .sp_content_style section.leadCollectionDiagram .full_bleed_container.visible .sp_lead_diagram {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 2200ms cubic-bezier(0.18, 1, 0.21, 1), opacity 2000ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 1200ms;
}

.leadCollectionDiagram .sp_lead_diagram_heading_wrapper {
  width: 60%;
  padding: 0;
  box-sizing: border-box;
  height: 0;
  overflow: visible;
}

.page-sales-pipeline .sp_content_style .leadCollectionDiagram .sp_lead_diagram_heading_wrapper h2,
.page-sales-pipeline .sp_content_style .leadCollectionDiagram .sp_lead_diagram_heading_wrapper .subtitle {
  font-size: var(--step-5-7);
  margin-bottom: 0;
}

.page-sales-pipeline .sp_content_style section.leadCollectionDiagram .full_bleed_container .caption-module h2 {
  font-size: var(--step-4-6);
}

.page-sales-pipeline .sp_content_style section.leadCollectionDiagram .full_bleed_container .caption-module .subtitle {
  font-size: var(--step-2);
  line-height: var(--leading-normal);
  letter-spacing: unset;
  line-height: var(--subheading-line-height);
  margin-top: var(--space-xl-2xl);
  color: var(--base-300);
  padding: 0;
}

.sp_lead_diagram_list {
  margin-top: -2.7%;
  font-size: var(--step-2);
  margin-bottom: -2.7%;
  color: var(--white);
  padding-left: 20px;
  width: 360px;
  margin-left: -60px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1660px) {
  .sp_lead_diagram_list {
    margin-top: calc((100vw - 1660px) / -20);
    margin-bottom: calc((100vw - 1660px) / -20);
    font-size: var(--step-2);
    color: var(--white);
    padding-left: 20px;
    width: 360px;
    margin-left: -60px;
    position: relative;
    z-index: 1;
  }
}
.sp_lead_diagram_list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
}

.sp_lead_diagram_list ul li {
  flex-basis: 20%;
  line-height: 1em;
  margin-bottom: 0;
  opacity: 0;
  transform: translateX(40px);
  display: flex;
  align-items: center;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li {
  padding-left: 60px;
  cursor: pointer;
  opacity: 1;
  transform: none;
  transition: transform 2200ms cubic-bezier(0.18, 1, 0.21, 1), opacity 2000ms cubic-bezier(0.18, 1, 0.21, 1);
}

.full_bleed_container.visible .sp_lead_diagram_list ul li span {
  transition: transform 400ms cubic-bezier(0.18, 1, 0.21, 1), opacity 400ms cubic-bezier(0.18, 1, 0.21, 1);
  display: block;
  transform: scale(1);
  transform-origin: 0 center;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li:nth-child(2n) {
  transition-delay: 100ms;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li:nth-child(3n) {
  transition-delay: 200ms;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li:nth-child(4n) {
  transition-delay: 300ms;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li:nth-child(5n) {
  transition-delay: 400ms;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li:nth-child(6n) {
  transition-delay: 500ms;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li:nth-child(7n) {
  transition-delay: 500ms;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li.active span {
  transform: scale(1.12);
  transform-origin: 0 center;
}

.full_bleed_container.visible .sp_lead_diagram .sp_lead {
  transition: all 400ms ease-in-out;
}

.full_bleed_container.visible .sp_lead_diagram .sp_lead.active {
  stroke: var(--white);
  stroke-width: 2px;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li.not-active {
  transition-delay: 0ms !important;
  opacity: 0.5;
  transition: opacity 400ms linear;
}

.full_bleed_container.visible .sp_lead_diagram_list ul li.active {
  transition-delay: 0ms !important;
  opacity: 1;
  transition: opacity 400ms linear;
}

/* Sales funnel scroller
------------------------------------------------------------- */
.page-sales-pipeline .sp_content_style section.spSalesFunnel .full_bleed_container h2 {
  font-size: var(--step-7);
  margin-bottom: 2px;
}

.sales_funnel_scroller {
  padding: var(--space-5xl) var(--CONTAINER-PADDING);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.sales_funnel_scroller_rail_wrapper {
  position: relative;
}

.sales_funnel_scroller_rail {
  width: 100%;
  color: var(--white);
}

.sp_sf_points {
  position: relative;
  display: flex;
  width: calc(100% + 24px);
  min-width: 800px;
  align-items: center;
  justify-content: space-between;
  left: -12px;
  right: -12px;
}

.sales_funnel_scroller .sp_sf_line {
  position: absolute;
  left: 10px;
  width: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.4);
  display: block;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  transform: scaleX(0);
  opacity: 0;
  transform-origin: left;
}

.spSalesFunnel.sold_mode .sp_sf_line,
.spSalesFunnel.sold_mode .sp_sf_arrow_shape {
  opacity: 0 !important;
  transition: opacity 100ms ease-in-out;
}

.sp_sf_arrow_dot {
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 100ms ease-in-out;
}

.spSalesFunnel.sold_mode .sp_sf_arrow_dot {
  opacity: 1;
}

.sp_content_style .spSalesFunnel .subtitle {
  color: var(--white);
}

.spSalesFunnel {
  transition: background 600ms linear;
  background-color: var(--text-primary);
}

.spSalesFunnel .full_bleed_container {
  background: transparent !important;
}

.sp_content_style section.spSalesFunnel.sp_full_bleed.sticky-funnel {
  overflow: initial;
}

.sp_content_style section.spSalesFunnel.sp_full_bleed.sticky-funnel .full_bleed_container {
  position: sticky;
  top: 84px;
  height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}

.sp_content_style section.spSalesFunnel.sp_full_bleed.sticky-funnel .full_bleed_container_inner {
  align-self: center;
  width: 100%;
  padding: 40px 0;
}

.full_bleed_container.visible .sp_sf_line {
  transform: scaleX(1);
  opacity: 1;
  transition: opacity 1300ms cubic-bezier(0.18, 1, 0.21, 1), transform 2500ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 1200ms;
}

.sales_funnel_scroller_rail {
  font-size: var(--step-0);
  color: var(--white);
  text-align: center;
  position: relative;
}

.sales_funnel_scroller_rail .sp_sf_point {
  position: relative;
}

.sales_funnel_scroller_rail .sp_sf_point .marker {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid var(--white);
  display: block;
  border-radius: 50px;
  transform: scale(1.2) translate(-15px, -10px);
  opacity: 0;
}

.sales_funnel_scroller_rail .sp_sf_point .marker:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 20px;
}

.sales_funnel_scroller_rail .sp_sf_point .label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  margin-top: 10px;
}

.sp_sf_arrow {
  position: absolute;
  z-index: 200;
  left: 0;
  top: 12px;
  width: 2px;
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sp_sf_arrow_inner {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 600ms linear;
}

.sp_sf_point.active .marker,
.sp_sf_point.active .label,
.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point.active .marker,
.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point.active .label {
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 0ms !important;
}

.sp_sf_point.not-active .marker,
.sp_sf_point.not-active .label,
.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point.not-active .marker,
.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point.not-active .label {
  transition: opacity 1000ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 0s !important;
}

.sales_funnel_caption {
  position: relative;
  min-height: 200px;
  box-sizing: border-box;
  width: 100%;
  max-width: 620px;
}

.sales_funnel_caption .caption-module,
.sales_lead_caption .caption-module {
  visibility: hidden;
  position: absolute;
  top: 0;
  max-width: 430px;
}

.sales_funnel_caption .caption-module.active,
.sales_lead_caption .caption-module.active {
  visibility: visible;
  position: relative;
}

.sales_funnel_caption .caption-module .description {
  padding-top: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--base-font-weight);
  font-size: var(--step-0);
  line-height: var(--leading-normal);
  letter-spacing: 0;
  line-height: var(--prose-line-height);
  margin-top: var(--space-2xl);
}

.sales_funnel_scroller_rail .sp_sf_point:before {
  content: "";
  position: absolute;
  width: 500%;
  height: 500%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* marker animation */
.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point .marker {
  opacity: 1;
  transform: none;
  transition: opacity 1300ms cubic-bezier(0.18, 1, 0.21, 1), transform 1600ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 1200ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(2) .marker {
  transition-delay: 1300ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(3) .marker {
  transition-delay: 1400ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(4) .marker {
  transition-delay: 1500ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(5) .marker {
  transition-delay: 1600ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(6) .marker {
  transition-delay: 1700ms;
}

/* label animation */
.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point .label {
  opacity: 1;
  transition: opacity 1300ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 1200ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(2) .label {
  transition-delay: 1300ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(3) .label {
  transition-delay: 1400ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(4) .label {
  transition-delay: 1500ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(5) .label {
  transition-delay: 1600ms;
}

.full_bleed_container.visible .sales_funnel_scroller_rail .sp_sf_point:nth-child(6) .label {
  transition-delay: 1700ms;
}

.sales_funnel_users.workflow-ui-wrapper {
  position: absolute;
  right: 40px;
  top: 50%;
  width: 35vw;
  max-width: 530px;
  transform: translateY(-50%);
}

@media screen and (min-width: 1450px) {
  .sales_funnel_users.workflow-ui-wrapper {
    right: 80px;
  }
}
.sales_funnel_users.workflow-ui-wrapper {
  line-height: 0;
  display: block;
}

.sales_funnel_users.workflow-ui-wrapper .workflow-ui-item {
  margin-bottom: -5px;
  transform: translateY(60px) skew(1deg, 0deg) rotate(3deg);
  opacity: 0;
  display: block;
  position: relative;
}

.status_overlay {
  position: absolute;
  background-repeat: no-repeat;
  top: 9%;
  right: 0%;
  bottom: 19%;
  width: 29%;
  background-size: contain;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 1000ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1200ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 300ms;
}

.spSalesFunnel .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(2) .status_overlay {
  transition-delay: 600ms;
}

.spSalesFunnel .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(3) .status_overlay {
  transition-delay: 900ms;
}

.spSalesFunnel .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(4) .status_overlay {
  transition-delay: 1200ms;
}

.spSalesFunnel:not(.reserve_onwards) .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item .status_overlay.default {
  opacity: 1;
  transform: scale(0.9999);
}

.spSalesFunnel.reserve_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item .reserve_overlay {
  opacity: 1;
  transform: scale(0.9999);
}

.spSalesFunnel.sold_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item .sold_overlay {
  opacity: 1;
  transform: scale(0.9999);
}

.spSalesFunnel.reserve_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item .reserved_overlay {
  opacity: 1;
  transform: scale(0.9999);
}

.spSalesFunnel.accepted_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item .accepted_overlay {
  opacity: 1;
  transform: scale(0.9999);
}

.spSalesFunnel.invoiced_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item .invoiced_overlay {
  opacity: 1;
  transform: scale(0.9999);
}

.sales_funnel_users.workflow-ui-wrapper .workflow-ui-item {
  margin-bottom: -5px;
  transform: translateY(60px) skew(1deg, 0deg) rotate(3deg);
  transition: none;
}

.spSalesFunnel.sold_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item {
  transition: transform 1000ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1200ms cubic-bezier(0.18, 1, 0.21, 1);
  opacity: 1;
  transform: none;
}

.spSalesFunnel.sold_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(2) {
  transition: transform 1200ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1300ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 250ms;
}

.spSalesFunnel.sold_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(3) {
  transition: transform 1400ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1500ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 500ms;
}

.spSalesFunnel.sold_mode .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(4) {
  transition: transform 1600ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1700ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 750ms;
}

@media screen and (min-width: 1024px) {
  .spSalesFunnel.show_ui_panel .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item {
    transition: transform 1000ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1200ms cubic-bezier(0.18, 1, 0.21, 1);
    opacity: 1;
    transform: none;
  }
  .spSalesFunnel.show_ui_panel .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(2) {
    transition: transform 1200ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1300ms cubic-bezier(0.18, 1, 0.21, 1);
    transition-delay: 250ms;
  }
  .spSalesFunnel.show_ui_panel .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(3) {
    transition: transform 1400ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1500ms cubic-bezier(0.18, 1, 0.21, 1);
    transition-delay: 500ms;
  }
  .spSalesFunnel.show_ui_panel .sales_funnel_users.workflow-ui-wrapper .workflow-ui-item:nth-child(4) {
    transition: transform 1600ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1700ms cubic-bezier(0.18, 1, 0.21, 1);
    transition-delay: 750ms;
  }
}
/* Graph panel
-----------------------------------------------------*/
.sp_content_style section .graph_sim_panel,
.sp_content_style section.sp_full_bleed .full_bleed_container .inner.graph_sim_panel {
  height: 304px;
  position: relative;
  width: 100%;
  clear: both;
  display: flex;
  box-sizing: border-box;
}

.sp_content_style section.sp_full_bleed.sp_graph_panel_1 .full_bleed_container .inner.sp_x_heading_wrapper {
  width: 60%;
  max-width: 900px;
  margin-left: 0;
}

.page-sales-pipeline .sp_content_style section.sp_full_bleed.sp_graph_panel_1 .full_bleed_container h2 {
  font-size: var(--step-6);
  letter-spacing: -1px;
}

.page-sales-pipeline .sp_content_style section.sp_full_bleed.sp_graph_panel_1 .full_bleed_container .subtitle {
  font-size: var(--step-3);
  line-height: var(--leading-snug);
}

.sp_content_style section .graph_sim_panel .glines {
  position: absolute;
  width: calc(100% + 200px);
  height: 100%;
  bottom: 0;
  left: -100px;
  clear: both;
  background: url(/images/graphlines.png) repeat bottom right;
  background-size: 80px 304px;
  opacity: 0.35;
}

body:not(.browser-msie) .sp_content_style section .graph_sim_panel .glines {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

body:not(.browser-msie) .sp_content_style section .full_bleed_container.visible .graph_sim_panel .glines {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 2200ms cubic-bezier(0.18, 1, 0.21, 1), opacity 2000ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 1200ms;
}

.sp_content_style section.sp_full_bleed .full_bleed_container.visible .inner > .glines {
  opacity: 0.35;
}

.sp_content_style .gpills {
  width: 50%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.sp_content_style .gpills img {
  width: 100%;
  max-width: 560px;
  transform: translateY(80px);
  opacity: 0;
}

.sp_content_style .full_bleed_container.visible .gpills img {
  transform: none;
  opacity: 1;
  transition: opacity 1300ms cubic-bezier(0.18, 1, 0.21, 1), transform 1600ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 2300ms;
}

.sp_content_style .gbars_wrapper {
  width: 50%;
  position: relative;
  height: 100%;
  display: flex;
}

.sp_content_style .gbars {
  width: 20%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: flex-end;
  transform: scaleY(0);
  transform-origin: bottom;
}

.sp_content_style .full_bleed_container.visible .gbars {
  transform: scaleY(1);
  transition: transform 2200ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 1600ms;
}

.sp_content_style .full_bleed_container.visible .gbars:nth-child(odd) {
  transition-delay: 1800ms;
}

.sp_content_style .gbars > div {
  width: 9px;
  height: 200%;
  position: relative;
  background: var(--white);
  margin: 0 8px;
}

.sp_content_style .gbars > div:nth-child(2n) {
  background: var(--base-600);
}

.sp_content_style .full_bleed_container .gbars .gbars_bubble {
  width: 50px;
  height: 71px;
  background: center center no-repeat;
  background-size: auto 71px;
  top: -71px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -40px);
  opacity: 0;
  transition: opacity 400ms ease-in-out, transform 1000ms cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 2600ms;
}

.sp_content_style .full_bleed_container .gbars .gbars_bubble.mobile-only {
  display: none;
}

.sp_content_style .full_bleed_container .gbars .gbars_bubble.gbars_bubble_1 {
  background-image: url(/images/sales_pipeline_launch/graph_bubble_1.png);
  width: 120px;
}

.sp_content_style .full_bleed_container .gbars .gbars_bubble.gbars_bubble_2 {
  background-image: url(/images/sales_pipeline_launch/graph_bubble_2.png);
  width: 146px;
  transition-delay: 3000ms;
}

.sp_content_style .full_bleed_container.visible .gbars .gbars_bubble {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* Sets of bars - varied heights
---------------------------------*/
.sp_content_style .gbars:nth-child(1n) > div:nth-child(1n) {
  height: 50%;
}

.sp_content_style .gbars:nth-child(1n) > div:nth-child(2n) {
  height: 60%;
}

/* ---- */
.sp_content_style .gbars:nth-child(2n) > div:nth-child(1n) {
  height: 66.5%;
}

.sp_content_style .gbars:nth-child(2n) > div:nth-child(2n) {
  height: 85%;
}

/* ---- */
.sp_content_style .gbars:nth-child(3n) > div:nth-child(1n) {
  height: 60%;
}

.sp_content_style .gbars:nth-child(3n) > div:nth-child(2n) {
  height: 25%;
}

/* ---- */
.sp_content_style .gbars:nth-child(4n) > div:nth-child(1n) {
  height: 114%;
}

.sp_content_style .gbars:nth-child(4n) > div:nth-child(2n) {
  height: 100%;
}

/* ---- */
.sp_content_style .gbars:nth-child(5n) > div:nth-child(1n) {
  height: 138%;
}

.sp_content_style .gbars:nth-child(5n) > div:nth-child(2n) {
  height: 89%;
}

/* ---- */
.sp_content_style .gbars:nth-child(6n) > div:nth-child(1n) {
  height: 176%;
}

.sp_content_style .gbars:nth-child(6n) > div:nth-child(2n) {
  height: 146%;
}

@media screen and (max-width: 1223px) {
  .sp_content_style section.sp_full_bleed .full_bleed_container .sales_lead_caption {
    margin-top: -170px;
  }
}
@media screen and (max-width: 1023px) {
  .sales_funnel_scroller {
    padding: 55px 50px;
  }
  .sales_funnel_users.workflow-ui-wrapper {
    display: none;
  }
  body .sp_content_style section.sp_full_bleed .full_bleed_container .inner.sales_lead_caption {
    margin-top: -60px;
  }
  .sp_content_style section.sp_full_bleed .full_bleed_container .sales_lead_caption {
    margin-top: -180px;
  }
  .leadCollectionDiagram .sp_lead_diagram_wrapper {
    padding: 20px 20px 20px 0;
  }
  .leadCollectionDiagram .sp_lead_diagram_heading_wrapper {
    height: auto;
    margin: 0 0 20px;
  }
  .sp_content_style section.sp_full_bleed .full_bleed_container .sales_lead_caption {
    margin-top: 0;
    padding-top: 0;
  }
  .sp_content_style section.sp_full_bleed .full_bleed_container .inner,
  .sp_content_style section.sp_full_bleed .full_bleed_container .inner.sp_lead_diagram_heading_wrapper {
    margin-bottom: var(--space-3xl-4xl);
  }
  .sp_content_style section.sp_full_bleed .full_bleed_container.visible .sales_funnel_caption {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sp_content_style .description {
    padding-top: 20px;
  }
  .sp_content_style h2 + .description {
    padding-top: 10px;
  }
  .sp_content_style section.spSalesFunnel.sp_full_bleed.sticky-funnel .full_bleed_container {
    top: 0;
    height: 100vh;
  }
  .sales_funnel_scroller {
    padding: 40px 50px;
  }
  .page-sales-pipeline .sp_content_style section.spSalesFunnel .full_bleed_container h2,
  .page-sales-pipeline .sp_content_style .leadCollectionDiagram .sp_lead_diagram_heading_wrapper h2,
  .page-sales-pipeline .sp_content_style section.sp_full_bleed.sp_graph_panel_1 .full_bleed_container h2 {
    font-size: var(--step-6);
    line-height: var(--leading-tight);
    margin: 0 0 8px;
    letter-spacing: 0;
    transform: none;
    opacity: 1;
  }
  .page-sales-pipeline .sp_content_style section.spSalesFunnel .full_bleed_container .subtitle,
  .page-sales-pipeline .sp_content_style .leadCollectionDiagram .sp_lead_diagram_heading_wrapper .subtitle,
  .page-sales-pipeline .sp_content_style section.sp_full_bleed.sp_graph_panel_1 .full_bleed_container .subtitle {
    font-size: var(--step-3);
    line-height: var(--leading-normal);
    margin: 0;
    letter-spacing: 0;
    transform: none;
    opacity: 1;
  }
  .page-sales-pipeline .sp_content_style section.spSalesFunnel .full_bleed_container .sales_funnel_caption .caption-module h2 {
    margin-bottom: 10px;
  }
  .sales_funnel_caption .caption-module .description {
    font-size: var(--step-0-1);
    line-height: var(--leading-normal);
  }
  .sp_content_style section.sp_full_bleed.leadCollectionDiagram .full_bleed_container_inner {
    padding: 0;
  }
  .leadCollectionDiagram .sp_lead_diagram_wrapper {
    display: none;
  }
  body.sp_content_style section.sp_full_bleed.leadCollectionDiagram .full_bleed_container .sales_lead_caption {
    padding-top: 30px;
    max-width: 100%;
    margin-top: 0;
  }
  body .sp_content_style section.sp_full_bleed .full_bleed_container .inner.sales_lead_caption {
    margin-top: 0;
  }
  .leadCollectionDiagram .sales_lead_caption .caption-module {
    position: static;
    opacity: 1;
    visibility: visible;
    min-height: 0 !important;
    margin: 0 0 var(--space-2xl-3xl);
    max-width: 50ch;
  }
  .page-sales-pipeline .sp_content_style section.leadCollectionDiagram .full_bleed_container .caption-module h2 {
    font-size: var(--step-2);
    line-height: var(--leading-snug);
  }
  .page-sales-pipeline .sp_content_style section.leadCollectionDiagram .full_bleed_container .caption-module .subtitle {
    font-size: var(--step-0-1);
    line-height: var(--leading-normal);
    margin-top: var(--space-xs-s);
  }
  .sp_content_style section.sp_full_bleed.sp_graph_panel_1 .full_bleed_container .inner.sp_x_heading_wrapper {
    width: 100%;
  }
  .sp_content_style .gpills {
    display: none;
  }
  .sp_content_style .gbars_wrapper {
    width: 100%;
  }
  .sp_content_style section .graph_sim_panel {
    height: 200px;
    margin-top: var(--space-5xl);
  }
  .sp_content_style .full_bleed_container .gbars .gbars_bubble.mobile-hidden {
    display: none;
  }
  .sp_content_style .full_bleed_container .gbars .gbars_bubble.mobile-only {
    display: block;
  }
  /* Sets of bars - varied heights
  ---------------------------------*/
  /* ---- */
  .sp_content_style .gbars:nth-child(4n) > div:nth-child(1n) {
    height: 94%;
  }
  .sp_content_style .gbars:nth-child(4n) > div:nth-child(2n) {
    height: 100%;
  }
  /* ---- */
  .sp_content_style .gbars:nth-child(5n) > div:nth-child(1n) {
    height: 118%;
  }
  .sp_content_style .gbars:nth-child(5n) > div:nth-child(2n) {
    height: 89%;
  }
  /* ---- */
  .sp_content_style .gbars:nth-child(6n) > div:nth-child(1n) {
    height: 106%;
  }
  .sp_content_style .gbars:nth-child(6n) > div:nth-child(2n) {
    height: 116%;
  }
}
/* Uniquely personal section
------------------------------------------------------------- */
.uniquely_personal_section .inner.sp_x_heading_wrapper.narrow_left {
  max-width: 980px;
}

.uniquely_personal_section .inner.sp_x_heading_wrapper.narrow_left .subtitle {
  max-width: 645px;
}

/* Client logos
------------------------------------------------------------- */
.sp_client_logos .full_bleed_container {
  max-width: 1240px;
  margin: 0 auto;
}

.sp_client_logos .dui_text_col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp_client_logos .logo {
  max-width: 160px;
  max-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp_client_logos .inner.dui_text_cols {
  padding-top: 50px;
}

/* Pricing panel
------------------------------------------------------------- */
.sp_content_style section.sp_full_bleed.sp_pricing_panel .full_bleed_container .inner.sp_x_heading_wrapper {
  text-align: left;
  float: left;
  width: 50%;
}

.sp_pricing_panel .sp_x_heading_wrapper h2,
.page-sales-pipeline .sp_content_style section.sp_full_bleed.sp_pricing_panel .sp_x_heading_wrapper h2,
.dui_text_col.sp_pricing_header_col h2 {
  font-size: var(--step-8);
  line-height: var(--leading-snug);
  color: var(--white);
  letter-spacing: -1.09px;
}

.page-sales-pipeline .dui_text_col.sp_launch_panel_header_col h2 {
  font-size: var(--step-7);
  line-height: var(--leading-snug);
  color: var(--white);
  letter-spacing: -1.09px;
}

.page-sales-pipeline .sp_content_style section.sp_full_bleed.sp_pricing_panel .full_bleed_container .subtitle,
.dui_text_col.sp_pricing_header_col .subtitle,
.page-sales-pipeline .dui_text_col.sp_launch_panel_header_col .subtitle {
  font-size: var(--step-3-4);
  line-height: var(--leading-snug);
}

.sp_pricing_panel .sp_x_heading_wrapper {
  text-align: left;
}

.sp_content_style section.sp_full_bleed.sp_pricing_panel .full_bleed_container .sp_x_heading_wrapper a.sp_cta_link,
.dui_text_col.sp_pricing_header_col a.sp_cta_link {
  margin-top: 30px;
}

.dui_text_col.sp_launch_panel_header_col a.sp_cta_link {
  margin-top: 50px;
}

.sp_content_style section.sp_full_bleed.sp_pricing_panel .full_bleed_container .inner.dui_text_cols {
  padding: var(--space-5xl) var(--CONTAINER-PADDING);
}

.sp_content_style section.sp_full_bleed.sp_pricing_panel .full_bleed_container .inner.dui_text_cols.sp_pricing_feature_list {
  justify-content: flex-start;
}

.dui_text_cols.dui_text_cols_3.dui_text_cols_narrow.sp_pricing_feature_list .dui_text_col {
  width: 100%;
  padding-right: 20px;
  box-sizing: border-box;
}

.sp_pricing_panel .dui_text_col,
.panel_sales_pipeline_launch .dui_text_col .dui_text_col_row {
  text-align: left;
  display: flex;
}

.panel_sales_pipeline_launch .dui_text_col .dui_text_col_row {
  margin-bottom: 25px;
}

.sp_pricing_panel .dui_text_col .h2,
.panel_sales_pipeline_launch .dui_text_col .dui_text_col_row h2 {
  color: var(--white);
}

.page-sales-pipeline .panel_sales_pipeline_launch .dui_text_col .dui_text_col_row .description {
  margin-bottom: 0;
}

.sp_pricing_panel .dui_text_col_icon_left,
.panel_sales_pipeline_launch .dui_text_col_icon_left {
  display: flex;
  padding-top: var(--space-xs);
  padding-right: var(--space-m);
}

.sp_pricing_panel .dui_text_cols .dui_text_col_title_tiny .fa,
.page-sales-pipeline .sp_content_style section.sp_pricing_panel .full_bleed_container h2.dui_text_col_title_tiny .fa,
.panel_sales_pipeline_launch .dui_text_cols .dui_text_col_title_tiny .fa {
  font-size: var(--step-0-1);
  margin-right: 15px;
}

.sp_pricing_panel .dui_text_col .description,
.panel_sales_pipeline_launch .dui_text_col .description {
  line-height: 1.3em;
  padding-top: 0;
  color: var(--base-300);
  font-weight: normal;
}

.sp_pricing_divider {
  padding: 0 var(--CONTAINER-PADDING);
  box-sizing: border-box;
  clear: both;
}

.sp_pricing_divider span {
  display: block;
  width: 100%;
  border-top: 1px solid var(--base-600);
}

.dui_text_col.sp_launch_panel_header_col {
  text-align: left;
}

.sp_content_style section.sp_full_bleed .full_bleed_container .inner.sp_pricing_modules_wrapper {
  width: 50%;
  clear: none;
  padding: 60px 100px 60px 0;
  box-sizing: border-box;
  color: var(--white);
  float: right;
  display: flex;
  justify-content: space-between;
}

.dui_text_col.sp_pricing_header_col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sp_pricing_title,
.sp_pricing_plus_text {
  font-size: var(--step-0-1);
}

.sp_pricing_plus {
  font-size: var(--step-5);
}

.sp_pricing_plus_text {
  line-height: 1em;
  max-width: 160px;
}

.sp_pricing_price_wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-m-l);
}

.sp_pricing_module {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1em;
  gap: var(--space-l-xl);
}

.sp_pricing_price {
  font-size: var(--step-7-8);
  line-height: var(--leading-snug);
}

.sp_pricing_curr {
  font-size: var(--step-6);
  line-height: var(--leading-tight);
  margin-right: 5px;
}

.sp_pricing_user {
  font-size: var(--step-0-1);
  line-height: var(--leading-tight);
}

.sp_pricing_currency_switch {
  position: absolute;
  top: 35px;
  right: 27px;
}

.sp_pricing_currency_switch ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sp_pricing_currency_switch button {
  color: var(--base-400);
  font-size: var(--step-0);
  line-height: var(--leading-tight);
  padding: 0 8px;
}

.sp_pricing_currency_switch button.active {
  color: var(--white);
}

.sp_pricing_currency_switch button.active:after {
  content: "";
  display: block;
  width: 100%;
  background-color: var(--white);
  height: 2px;
  position: relative;
  top: 0;
}

.dui_text_cols.dui_text_cols_3.dui_text_cols_narrow.sp_pricing_feature_list .dui_text_col,
.dui_text_cols.dui_text_cols_3.dui_text_cols_narrow.sp_pricing_prices_wrapper .dui_text_col {
  margin-bottom: 0;
}

/* Coming soon
------------------------------------------------------------- */
.sp_client_coming_soon_features {
  background: var(--base-100);
  padding-bottom: 90px;
}

.sp_client_coming_soon_features .dui_text_col {
  line-height: 1.3em;
}

.sp_client_coming_soon_features .inner.dui_text_cols {
  padding-top: 30px;
}

.sp_client_coming_soon_features .inner.dui_text_cols h2 {
  font-size: var(--step-2);
  margin-bottom: 10px;
}

.sp_client_coming_soon_features .inner.dui_text_cols .description {
  padding-top: 0;
}

/* Getting started
------------------------------------------------------------- */
.sp_getting_started h3 {
  font-size: var(--step-4);
  line-height: var(--leading-snug);
}

/* Columns
-------------------------------*/
.dui_text_cols {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3xl);
}
@media only screen and (max-width: 1180px) {
  .dui_text_cols {
    gap: 2em;
  }
}
@media only screen and (max-width: 459px) {
  .dui_text_cols {
    flex-direction: column;
  }
}

@media only screen and (max-width: 1180px) {
  .dui_sticky_section_7 .dui_text_cols {
    gap: var(--space-2xl);
  }
}

.sp_typeof_clients.sp_getting_started {
  padding: var(--space-4xl) var(--CONTAINER-PADDING);
}
.sp_typeof_clients.sp_getting_started .sp_x_heading_wrapper {
  padding: var(--space-l-2xl) 0;
}

.dui_text_cols.dui_text_cols_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: var(--space-2xl-3xl);
}
@media only screen and (max-width: 767px) {
  .dui_text_cols.dui_text_cols_3 {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 459px) {
  .dui_text_cols.dui_text_cols_3 {
    grid-template-columns: 1fr;
  }
}

.dui_text_cols.dui_text_col_wrap {
  flex-wrap: wrap;
}

.dui_text_cols .dui_text_col_title_large {
  font-size: var(--step-6);
}

.dui_text_cols .dui_text_col_title_small {
  font-size: var(--step-3);
  margin-bottom: 0;
}

.dui_text_cols .dui_text_col_title_tiny,
.page-sales-pipeline .sp_content_style section.sp_full_bleed .full_bleed_container h2.dui_text_col_title_tiny,
.page-sales-pipeline .sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container h2.dui_text_col_title_tiny {
  font-size: var(--step-2);
  line-height: var(--leading-snug);
  margin-bottom: 0;
}

.page-sales-pipeline .sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container h2.dui_text_col_title_tiny {
  color: var(--white);
}

.dui_text_cols.dui_text_cols_2.dui_text_cols_narrow .dui_text_col.sp_pricing_header_col {
  width: auto;
  padding-right: 40px;
}

.dui_text_cols.dui_text_cols_2.dui_text_cols_narrow .dui_text_col.sp_pricing_price_col {
  flex-grow: 1;
  justify-content: flex-end;
}

/* Columns animation
-------------------------------*/
section .inner.dui_text_cols > * {
  transition: transform 500ms cubic-bezier(0.18, 1, 0.21, 1), opacity 500ms cubic-bezier(0.18, 1, 0.21, 1);
  transform: translateY(var(--space-2xl));
  opacity: 0;
}

section .inner.dui_text_cols.visible > * {
  transform: none;
  opacity: 1;
  transition: transform 4s cubic-bezier(0.18, 1, 0.21, 1), opacity 3.5s cubic-bezier(0.18, 1, 0.21, 1);
  transition-delay: 300ms;
}

section .inner.dui_text_cols.visible > *:nth-child(2) {
  transition-delay: 500ms;
}

section .inner.dui_text_cols.visible > *:nth-child(3) {
  transition-delay: 700ms;
}

section .inner.dui_text_cols.visible > *:nth-child(4) {
  transition-delay: 900ms;
}

section .inner.dui_text_cols.visible > *:nth-child(5) {
  transition-delay: 1100ms;
}

section .inner.dui_text_cols.visible > *:nth-child(6) {
  transition-delay: 1300ms;
}

section .inner.dui_text_cols.visible > *:nth-child(7) {
  transition-delay: 1500ms;
}

section .inner.dui_text_cols.visible > *:nth-child(8) {
  transition-delay: 1700ms;
}

section .inner.dui_text_cols.visible > *:nth-child(9) {
  transition-delay: 1900ms;
}

section .inner.dui_text_cols.visible > *:nth-child(10) {
  transition-delay: 2100ms;
}

section .inner.dui_text_cols.visible > *:nth-child(11) {
  transition-delay: 2300ms;
}

section .inner.dui_text_cols.visible > *:nth-child(12) {
  transition-delay: 2500ms;
}

section .inner.dui_text_cols.visible > *:nth-child(13) {
  transition-delay: 2700ms;
}

section .inner.dui_text_cols.visible > *:nth-child(14) {
  transition-delay: 2900ms;
}

section .inner.dui_text_cols.visible > *:nth-child(15) {
  transition-delay: 3100ms;
}

section .inner.dui_text_cols.visible > *:nth-child(16) {
  transition-delay: 3300ms;
}

section .inner.dui_text_cols.visible > *:nth-child(17) {
  transition-delay: 3500ms;
}

/* 2 Columns
----------------*/
.dui_text_cols.dui_text_cols_2 .dui_text_col {
  width: 50%;
}
@media only screen and (max-width: 459px) {
  .dui_text_cols.dui_text_cols_2 .dui_text_col {
    width: 100%;
  }
}

.dui_text_cols.dui_text_cols_2.dui_text_cols_narrow .dui_text_col {
  width: 50%;
}
@media only screen and (max-width: 459px) {
  .dui_text_cols.dui_text_cols_2.dui_text_cols_narrow .dui_text_col {
    width: 100%;
  }
}

/* 3 Columns
----------------*/
.dui_text_cols.dui_text_cols_3 .dui_text_col {
  width: 100%;
}

.dui_text_cols.dui_text_cols_3.dui_text_cols_narrow .dui_text_col {
  width: 100%;
}

/* 4 Columns
----------------*/
.dui_text_cols.dui_text_cols_4 .dui_text_col {
  width: calc(25% - 90px);
}

.dui_text_cols.dui_text_cols_4.dui_text_cols_narrow .dui_text_col {
  width: calc(25% - 50px);
}

section .inner.dui_text_cols .description {
  padding-top: var(--space-l);
}

/* Icon column items
------------------------*/
.dui_text_col.dui_icon_col {
  text-align: center;
}

.dui_text_col.dui_icon_col {
  text-align: center;
}

.dui_icon {
  width: 60px;
  height: 60px;
  background: transparent;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 12px;
}

.dui_icon_col.create_stunning_offers .dui_icon {
  width: 48px;
  background-image: url("/images/sales_pipeline_launch/create_stunning_offers_icon.png");
}

.dui_icon_col.lead_collection .dui_icon {
  width: 46px;
  background-image: url("/images/sales_pipeline_launch/lead_collection_icon.png");
}

.dui_icon_col.organise_and_manage .dui_icon {
  width: 47px;
  background-image: url("/images/sales_pipeline_launch/organise_and_manage_icon.png");
}

.dui_icon_col.sales_funnel .dui_icon {
  width: 65px;
  background-image: url("/images/sales_pipeline_launch/sales_funnel_icon.png");
}

.dui_icon_col.data_and_insights .dui_icon {
  width: 60px;
  background-image: url("/images/sales_pipeline_launch/data_and_insights_icon.png");
}

.dui_icon_col.unified_experience .dui_icon {
  width: 62px;
  background-image: url("/images/sales_pipeline_launch/unified_experience_icon.png");
}

.sp_feature_icons {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.sp_feature_icons .inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.sp_feature_icons .dui_text_cols {
  padding: var(--section-vertical-space) var(--space-2xl);
}

.sp_feature_icons .dui_text_col_content {
  font-size: var(--step-0-1);
  line-height: var(--leading-normal);
  color: var(--text-body);
  letter-spacing: 0;
  text-align: center;
}

a.sp_cta_link {
  background: var(--text-primary);
  color: var(--white);
  padding: 18px 30px;
  line-height: 1em;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  text-align: center;
  border-radius: 90px;
  text-decoration: none;
  overflow: hidden;
}

a.sp_cta_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background: url(/images/sp2/sp_pattern_full.jpg) center center repeat var(--base-100);
  background-size: 700px 700px;
  opacity: 0;
  transform-origin: bottom;
}

a.sp_cta_link:hover::before {
  opacity: 0.2;
  transition: opacity 1000ms cubic-bezier(0.18, 1, 0.21, 1), transform 2000ms cubic-bezier(0.18, 1, 0.21, 1);
}

.sp_content_style section.sp_full_bleed .full_bleed_container a.sp_cta_link,
.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container a.sp_cta_link {
  background: var(--white);
  color: var(--text-primary);
}

.sp_content_style section.sp_full_bleed .full_bleed_container a.sp_cta_link:hover::before,
.sp_content_style.sp_content_panel_standalone section.sp_full_bleed .full_bleed_container a.sp_cta_link:hover::before {
  opacity: 0.4;
}

body:not(.browser-msie) .sp_content_style a.sp_cta_link::before {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

body:not(.browser-msie) .sp_content_style section a.sp_cta_link:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 900ms cubic-bezier(0.18, 1, 0.21, 1), opacity 1000ms cubic-bezier(0.18, 1, 0.21, 1), transform 2000ms cubic-bezier(0.18, 1, 0.21, 1);
}

a.sp_cta_link span {
  position: relative;
  z-index: 20;
}

.content_block a.sp_cta_link {
  margin-top: 30px;
}

@media screen and (max-width: 1280px) {
  .hero_header_horizontal .hero_header_horizontal_content {
    padding-left: 50px;
    padding-right: 50px;
  }
  .hero_header_horizontal .hero_header_horizontal_content .main_aside .button {
    margin: 0 0 21px;
  }
}
@media screen and (max-width: 1100px) {
  .sp_content_style section.sp_text_basic .inner .description {
    font-size: inherit;
  }
  .sp_content_style section.sp_text_basic:first-child .inner {
    padding-top: 0;
  }
  .sp_content_style section.sp_full_bleed.sp_full_bleed_center .full_bleed_container .inner {
    padding: 50px 50px 60px;
  }
  .sp_image_text_adjacent .style_bg {
    width: 25vw;
  }
}
@media screen and (max-width: 840px) {
  .sales_pipeline_v4.sp_content_style section.sp_text_basic .inner .description {
    line-height: var(--leading-normal);
    font-size: var(--step-0);
  }
  .sp_sticky_nav_wrapper {
    display: none;
  }
  .page-sales-pipeline {
    --main-content-mt: 95px;
  }
}
@media screen and (max-width: 767px) {
  .hero_header_horizontal .hero_header_horizontal_content .main_aside .button {
    display: none;
  }
  .hero_header_horizontal .hero_header_horizontal_content .main_aside .subtitle {
    font-size: var(--step-2);
    line-height: var(--leading-relaxed);
    padding: 0;
    width: 100%;
  }
  .dui_sticky_section_7 .dui_text_cols {
    gap: var(--space-2xl);
    flex-direction: column;
  }
  .dui_text_cols.dui_text_cols_2.dui_text_cols_narrow .dui_text_col {
    width: 100%;
  }
  .sp_content_style section.sp_text_basic .inner h2 {
    line-height: var(--leading-tight);
  }
  .page-sales-pipeline .sp_content_style section.sp_full_bleed .full_bleed_container h2 {
    font-size: var(--step-5-7);
    line-height: var(--leading-tight);
  }
  .page-sales-pipeline main_content .sp_content_style section.sp_full_bleed .full_bleed_container .subtitle {
    font-size: var(--step-2);
    line-height: var(--leading-normal);
  }
  .sp_content_style section.sp_full_bleed .style_banner,
  .sales_pipeline_v4.sp_content_style section.sp_full_bleed .style_banner,
  .sp_content_style section.sp_full_bleed .style_banner {
    height: 80px;
  }
  .page-sales-pipeline .global_contact_form {
    padding-top: 0;
    margin-top: -20px;
  }
  .page-sales-pipeline .feature_panels {
    margin-top: -20px;
  }
  .sp_getting_started h3 {
    font-size: var(--step-3);
    line-height: var(--leading-snug);
  }
}
.page-sales-pipeline .feature_panels .records_list.image_list > ul > li.sp_content_panel_standalone {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  display: block;
  padding: 0 !important;
  transform: translateX(-15px);
}

@media screen and (max-width: 1320px) {
  .page-sales-pipeline .sp_image_text_adjacent .content_block {
    padding-left: 90px;
  }
}
@media screen and (max-width: 1100px) {
  .page-sales-pipeline .sp_image_text_adjacent .content_block {
    padding-left: 70px;
  }
}
@media screen and (max-width: 1023px) {
  .sp_image_text_adjacent .image_wrapper {
    width: 40%;
  }
  .page-sales-pipeline .sp_image_text_adjacent .content_block {
    width: 60%;
    padding-left: 50px;
  }
}
/* Feature list acts as hero header - Landing page */
/* Largely ported from old site */
body.section-home.page-news.invert-nav #container:not(.page-scroll) #top_nav li a,
body.section-home.page-blog.invert-nav #container:not(.page-scroll) #top_nav li a {
  color: var(--white) !important;
}
body.section-home.page-news.invert-nav #container:not(.page-scroll) #top_nav li a:visited,
body.section-home.page-blog.invert-nav #container:not(.page-scroll) #top_nav li a:visited {
  color: var(--white) !important;
}
body.section-home.page-news.invert-nav #container:not(.page-scroll) #logo svg *,
body.section-home.page-blog.invert-nav #container:not(.page-scroll) #logo svg * {
  fill: var(--white) !important;
}

.blog-header-links a {
  color: var(--white);
}
.blog-header-links a:visited {
  color: var(--white);
}
.blog-header-links a:hover {
  opacity: 0.9;
}

body.section-news.page-news #container .featured-list-container,
body.section-blog.page-blog #container .featured-list-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /*background: #fcd5b4;*/
  padding-top: 0;
}
body.section-news.page-news #container .featured-list-container .records_list,
body.section-blog.page-blog #container .featured-list-container .records_list {
  --list-item-px: 0;
  --list-subheading-font-size: var(--step-2);
  width: 100%;
  margin: 0 auto;
}
body.section-news.page-news #container .featured-list-container .records_list ul li,
body.section-blog.page-blog #container .featured-list-container .records_list ul li {
  padding-top: 100px;
  position: relative;
  height: calc(90vh - 90px);
  min-height: 600px;
}
@media only screen and (max-width: 639px) {
  body.section-news.page-news #container .featured-list-container .records_list ul li,
  body.section-blog.page-blog #container .featured-list-container .records_list ul li {
    height: auto;
    min-height: unset;
  }
}
body.section-news.page-news #container .featured-list-container .records_list ul li a,
body.section-blog.page-blog #container .featured-list-container .records_list ul li a {
  display: flex !important;
}
@media only screen and (max-width: 639px) {
  body.section-news.page-news #container .featured-list-container .records_list ul li a,
  body.section-blog.page-blog #container .featured-list-container .records_list ul li a {
    flex-direction: column;
  }
}
body.section-news.page-news #container .featured-list-container .records_list ul li .color-mask,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .color-mask {
  background: #fcd5b4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 70px;
}
@media only screen and (max-width: 639px) {
  body.section-news.page-news #container .featured-list-container .records_list ul li .color-mask,
  body.section-blog.page-blog #container .featured-list-container .records_list ul li .color-mask {
    bottom: 0;
  }
}
body.section-news.page-news #container .featured-list-container .records_list ul li .image, body.section-news.page-news #container .featured-list-container .records_list ul li .image > span,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .image,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .image > span {
  --list-image-mb: 0 !important;
  height: calc(90vh - 90px);
  min-height: 600px;
  width: 50vw;
  margin: 0;
}
@media only screen and (max-width: 639px) {
  body.section-news.page-news #container .featured-list-container .records_list ul li .image, body.section-news.page-news #container .featured-list-container .records_list ul li .image > span,
  body.section-blog.page-blog #container .featured-list-container .records_list ul li .image,
  body.section-blog.page-blog #container .featured-list-container .records_list ul li .image > span {
    width: 100vw;
    height: 100%;
    min-height: unset;
  }
}
body.section-news.page-news #container .featured-list-container .records_list ul li .image.lazybg, body.section-news.page-news #container .featured-list-container .records_list ul li .image > span.lazybg,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .image.lazybg,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .image > span.lazybg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1px;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .image.lazybg::before, body.section-news.page-news #container .featured-list-container .records_list ul li .image > span.lazybg::before,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .image.lazybg::before,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .image > span.lazybg::before {
  content: "";
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .image img, body.section-news.page-news #container .featured-list-container .records_list ul li .image > span img,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .image img,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .image > span img {
  max-width: 620px;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content {
  position: relative;
  align-self: center;
  padding: var(--space-5xl);
  box-sizing: border-box;
  width: 50%;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (max-width: 1180px) {
  body.section-news.page-news #container .featured-list-container .records_list ul li .content,
  body.section-blog.page-blog #container .featured-list-container .records_list ul li .content {
    padding-left: var(--CONTAINER-PADDING);
    padding-right: var(--CONTAINER-PADDING);
  }
}
@media only screen and (max-width: 639px) {
  body.section-news.page-news #container .featured-list-container .records_list ul li .content,
  body.section-blog.page-blog #container .featured-list-container .records_list ul li .content {
    width: 100%;
  }
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content * + .subtitle,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content * + .subtitle {
  --list-content-mt: var(--space-3xl);
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content * + .link,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content * + .link {
  --list-content-mt: var(--space-2xl);
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content::before,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content::before {
  content: "";
  margin-top: auto;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content .prelude,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .prelude {
  color: inherit;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content h2,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content h2 {
  font-size: var(--step-6_5) !important;
  color: inherit !important;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content .subtitle,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .subtitle {
  border: none;
  font-size: var(--step-3);
  color: inherit !important;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content .description, body.section-news.page-news #container .featured-list-container .records_list ul li .content .date,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .description,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .date {
  display: none;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content > a,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content > a {
  display: flex;
  position: relative;
  height: 100%;
}
body.section-news.page-news #container .featured-list-container .records_list ul li .content .button,
body.section-blog.page-blog #container .featured-list-container .records_list ul li .content .button {
  display: inline-flex;
}
.section-blog.page-blog #main_content .subsection-news-record,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record {
  --page-heading-line-height: var(--leading-tight);
}
.section-blog.page-blog #main_content .subsection-news-record .blog-header-links,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .blog-header-links {
  width: 100%;
  position: absolute;
  bottom: var(--space-l);
  left: var(--space-2xl);
  z-index: 1;
  will-change: opacity;
  -webkit-transform-origin: 0%;
  -moz-transform-origin: 0%;
  -ms-transform-origin: 0%;
  -o-transform-origin: 0%;
  transform-origin: 0%;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #fff;
  width: 50vw;
  text-align: left;
  font-weight: bold;
  color: #fff;
  margin: 0;
  font-weight: bold;
  padding-top: 0;
  transition: opacity 400ms ease-in-out;
}
@media only screen and (max-width: 1180px) {
  .section-blog.page-blog #main_content .subsection-news-record .blog-header-links,
  .section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .blog-header-links {
    bottom: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .section-blog.page-blog #main_content .subsection-news-record .blog-header-links,
  .section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .blog-header-links {
    display: none;
  }
}
.section-blog.page-blog #main_content .subsection-news-record .heading_wrapper,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .heading_wrapper {
  box-sizing: border-box;
  min-height: 55vh;
  max-height: 700px;
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin: 0 -50vw 0 -50vw !important;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  --page-heading-line-height: var(--leading-tight);
  padding: var(--space-5xl) var(--CONTAINER-PADDING);
  float: none;
}
.section-blog.page-blog #main_content .subsection-news-record .heading_wrapper > div,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .heading_wrapper > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) 0;
}
.section-blog.page-blog #main_content .subsection-news-record .heading_wrapper h1,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .heading_wrapper h1 {
  max-width: 27ch;
  text-align: center;
  margin-bottom: 0;
  color: inherit;
  font-size: var(--step-6);
}
.section-blog.page-blog #main_content .subsection-news-record .heading_wrapper h1 + .subtitle,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .heading_wrapper h1 + .subtitle {
  padding-top: var(--space-2xl);
}
.section-blog.page-blog #main_content .subsection-news-record .heading_wrapper .subtitle,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .heading_wrapper .subtitle {
  color: inherit;
  font-size: var(--step-2);
  max-width: 55ch;
}
.section-blog.page-blog #main_content .subsection-news-record .heading_wrapper .title-wrapper,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .heading_wrapper .title-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
  text-align: center;
}
.section-blog.page-blog #main_content .subsection-news-record #content,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #content {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto !important;
}
.section-blog.page-blog #main_content .subsection-news-record #content .subtitle,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #content .subtitle {
  color: inherit;
  text-transform: none;
  margin: 0;
  margin-top: 30px;
  text-align: center;
}
.section-blog.page-blog #main_content .subsection-news-record #sidebar,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #sidebar {
  --sidebar-mt: -65px;
  --sidebar-mx: auto;
  --sidebar-px: var(--CONTAINER-PADDING);
  width: 100%;
  float: none;
  max-width: 850px;
  position: relative;
}
.section-blog.page-blog #main_content .subsection-news-record #sidebar .image.restricted-image-container::after,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #sidebar .image.restricted-image-container::after {
  display: none;
}
.section-blog.page-blog #main_content .subsection-news-record #sidebar .caption,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #sidebar .caption {
  font-style: italic;
  font-size: var(--step--1);
}
.section-blog.page-blog #main_content .subsection-news-record #sidebar .image,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #sidebar .image {
  position: relative;
}
.section-blog.page-blog #main_content .subsection-news-record #sidebar .image::before,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #sidebar .image::before {
  content: "";
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.section-blog.page-blog #main_content .subsection-news-record #sidebar .image span,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #sidebar .image span {
  width: 100%;
  height: fit-content;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.section-blog.page-blog #main_content .subsection-news-record #sidebar .image span::before,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #sidebar .image span::before {
  content: "";
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.2);
}
.section-blog.page-blog #main_content .subsection-news-record #sidebar .image span img,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #sidebar .image span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 40;
}
.section-blog.page-blog #main_content .subsection-news-record .video,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .video {
  width: 100%;
  display: block;
  position: relative;
}
.section-blog.page-blog #main_content .subsection-news-record .video span,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .video span {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section-blog.page-blog #main_content .subsection-news-record .video::before,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .video::before {
  content: "";
  padding-top: 56.235%;
  width: 100%;
  display: block;
}
.section-blog.page-blog #main_content .subsection-news-record .video iframe,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .video iframe {
  opacity: 0;
  width: 100%;
  display: block;
  transition: opacity 400ms ease-in-out;
}
.section-blog.page-blog #main_content .subsection-news-record .video.fluid-width-video-wrapper iframe,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .video.fluid-width-video-wrapper iframe {
  opacity: 1;
}
.section-blog.page-blog #main_content .subsection-news-record #content_module,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #content_module {
  float: none;
  width: 100%;
  max-width: 850px;
  margin: 0 auto !important;
  float: none;
  padding: var(--SECTION-VERTICAL-PADDING) var(--CONTAINER-PADDING) !important;
}
.section-blog.page-blog #main_content .subsection-news-record #content_module .content_module_header,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #content_module .content_module_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.section-blog.page-blog #main_content .subsection-news-record #content_module .content_module_header #social_sharing_links.inline .social_links_item,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #content_module .content_module_header #social_sharing_links.inline .social_links_item {
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
  margin-left: 6px;
}
.section-blog.page-blog #main_content .subsection-news-record #content_module .content_module_header #social_sharing_links.inline .social_links_item:first-of-type,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #content_module .content_module_header #social_sharing_links.inline .social_links_item:first-of-type {
  margin-left: 0;
}
.section-blog.page-blog #main_content .subsection-news-record #content_module .content_module_header #social_sharing_links.inline a,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #content_module .content_module_header #social_sharing_links.inline a {
  border: 6px solid #ececec;
  background: #ececec;
  padding: 2px;
  display: block;
  border-radius: 50px;
}
.section-blog.page-blog #main_content .subsection-news-record #content_module .time_to_read,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record #content_module .time_to_read {
  text-align: left;
}
.section-blog.page-blog #main_content .subsection-news-record .related_items_panel,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .related_items_panel {
  margin-bottom: var(--SECTION-VERTICAL-PADDING);
}
.section-blog.page-blog #main_content .subsection-news-record .related_items_panel::before,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .related_items_panel::before {
  content: "";
  display: block;
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  border-top: 1px solid #e8e6e6;
  padding-top: var(--SECTION-VERTICAL-PADDING);
}
.section-blog.page-blog #main_content .subsection-news-record .related_items_panel > h3,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .related_items_panel > h3 {
  --heading-font-size: var(--step-5);
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section-blog.page-blog #main_content .subsection-news-record .related_items_panel img,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .related_items_panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-blog.page-blog #main_content .subsection-news-record .related_items_slider .related_items_slider_inner,
.section-news.page-news.page-param-type-news_id #main_content .subsection-news-record .related_items_slider .related_items_slider_inner {
  display: flex;
  align-items: baseline;
  gap: 30px;
}

.full-width-signup {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  background: #f1f1f1;
  text-align: center;
  padding: var(--SECTION-VERTICAL-PADDING) var(--CONTAINER-PADDING);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  float: none;
  margin-top: var(--SECTION-VERTICAL-PADDING);
}
.full-width-signup h3 {
  font-size: var(--step-5);
  font-weight: var(--heading-font-weight);
  margin-bottom: var(--space-4xl);
}
.full-width-signup #privacy_policy_form_msg {
  max-width: 75ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.full-width-signup #artlogic_mailinglist_signup_form {
  max-width: none;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}
.full-width-signup #artlogic_mailinglist_signup_form .form_row {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.full-width-signup #artlogic_mailinglist_signup_form .form_row label {
  position: absolute;
  left: var(--space-m);
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  font-weight: bold;
  color: #9c9999;
  pointer-events: none;
  width: auto;
}
.full-width-signup #artlogic_mailinglist_signup_form .form_row#firstname_row, .full-width-signup #artlogic_mailinglist_signup_form .form_row#lastname_row {
  width: 48%;
  flex: 1 0 0;
}
.full-width-signup #artlogic_mailinglist_signup_form .form_row .inputField {
  width: 100%;
  border: 0;
  padding: var(--space-m);
  line-height: var(--base-line-height);
}
.full-width-signup #artlogic_mailinglist_signup_form .form_row.user-active label {
  display: none;
}
.full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button {
  text-align: center;
  width: 100%;
  border-top: none;
  float: left;
  padding: 0;
  clear: both;
  max-width: 100%;
  margin: 0 auto;
  float: none;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-width-signup #artlogic_mailinglist_signup_form #mailing_submit_button .button {
  float: none;
  padding-top: 0;
  margin: 0;
}
#artlogic_mailinglist_signup_form .error,
#artlogic_mailinglist_signup_form #email_warning {
  position: absolute;
}

.records_list.grid_dynamic_layout_news ul li .image::after {
  padding-top: 75%;
}

.section-websites.page-themes {
  /* Overlay
  -------------------------------------------------------------- */
  /* Note: these classes are manually added in each fancybox function in galleries.js, in an afterLoad event. */
  /* UI  
  -------------------------------------------------------------- */
  /* Close animation 
  -------------------------------------------------------------- */
  /* Image animation 
  -------------------------------------------------------------- */
}
.section-websites.page-themes .fancybox-overlay {
  background: #fafafa;
  /* Reset all backgrounds to avoid flash of colour */
  transition: background 0.4s ease-in-out;
}
.section-websites.page-themes .fancybox-overlay.fancybox-overlay-image {
  background: #fff;
}
.section-websites.page-themes .fancybox-type-image .fancybox-skin {
  background: transparent;
}
.section-websites.page-themes body .fancybox-close,
.section-websites.page-themes body .fancybox-prev span,
.section-websites.page-themes body .fancybox-next span,
.section-websites.page-themes body.device-highres .fancybox-close,
.section-websites.page-themes body.device-highres .fancybox-prev span,
.section-websites.page-themes body.device-highres .fancybox-next span {
  background-image: none;
}
.section-websites.page-themes .fancybox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: transparent;
  /*transition: transform 0.6s cubic-bezier(.87,.17,.18,.85), opacity 0.8s ease-in-out;*/
}
.section-websites.page-themes .fancybox-type-image .fancybox-close,
.section-websites.page-themes .fancybox-type-website .fancybox-close {
  position: fixed;
}
.section-websites.page-themes .fancybox-type-website .fancybox-skin {
  background: transparent;
}
.section-websites.page-themes .fancybox-close::after {
  display: block;
  content: "\e034";
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  text-align: center;
  font-family: "artlogic-social-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #555;
}
.section-websites.page-themes .fancybox-nav {
  background: none;
  position: fixed;
  opacity: 0.35;
  transition: opacity 400ms ease-in-out;
}
.section-websites.page-themes .fancybox-nav:hover {
  opacity: 1;
}
.section-websites.page-themes .fancybox-prev > span,
.section-websites.page-themes .fancybox-next > span {
  visibility: visible;
  left: auto;
  right: auto;
}
.section-websites.page-themes .fancybox-prev > span {
  left: 20px;
}
.section-websites.page-themes .fancybox-next > span {
  right: 20px;
}
.section-websites.page-themes .fancybox-prev span:after,
.section-websites.page-themes .fancybox-next span:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "\e039";
  font-family: artlogic-social-icons !important;
  text-indent: 0;
  color: #fff;
  font-size: 20px;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(-50%, -50%);
}
.section-websites.page-themes .fancybox-next span::after {
  content: "\e038";
}
.section-websites.page-themes .fancybox-type-website .fancybox-nav {
  /* width: 5%; */
  height: 44px;
  width: 44px;
  top: 50%;
  transform: translatey(-50%);
}
.section-websites.page-themes .fancybox-type-website .fancybox-nav > span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
  margin-top: 0;
}
.section-websites.page-themes .fancybox-wrap.fancybox-type-website {
  width: 100% !important;
  display: flex;
  justify-content: center;
}
.section-websites.page-themes .fancybox-type-website .fancybox-controls,
.section-websites.page-themes .fancybox-type-website .viewport-controls,
.section-websites.page-themes .fancybox-type-website .cta {
  display: flex;
  gap: 1em;
  align-items: center;
}
.section-websites.page-themes .fancybox-type-website .fancybox-controls {
  color: #515151;
  gap: 0.5em;
}
.section-websites.page-themes .fancybox-controls__label {
  font-size: 15px;
  font-weight: 400;
  margin-top: 3px;
}
.section-websites.page-themes .fancybox-type-website .fancybox-controls .website-controls__button {
  font-size: 25px;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
}
.section-websites.page-themes .fancybox-type-website .fancybox-controls .website-controls__button .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-websites.page-themes .fancybox-type-website .viewport-controls {
  justify-content: center;
}
.section-websites.page-themes .fancybox-type-website .cta {
  justify-content: flex-end;
  padding-right: 50px;
  /* Make space for close icon */
}
.section-websites.page-themes .fancybox-type-image .fancybox-close::after,
.section-websites.page-themes .fancybox-type-image .fancybox-prev span:after,
.section-websites.page-themes .fancybox-type-image .fancybox-next span:after {
  color: #151515;
}
.section-websites.page-themes .fancybox-type-website .fancybox-close::after,
.section-websites.page-themes .fancybox-type-website .fancybox-prev span:after,
.section-websites.page-themes .fancybox-type-website .fancybox-next span:after {
  color: #717171;
  transition: color 0.4s ease-in-out;
}
.section-websites.page-themes .fancybox-type-website .fancybox-close:hover::after,
.section-websites.page-themes .fancybox-type-website .fancybox-prev:hover span:after,
.section-websites.page-themes .fancybox-type-website .fancybox-next:hover span:after {
  color: #fff;
}
.section-websites.page-themes body.page-websites.no-page-params .fancybox-overlay {
  /* Only really needed to force on top of the 100 reasons campaign roundal */
  z-index: 9999999999;
}
.section-websites.page-themes .fancybox-type-website .fancybox-inner {
  overflow: visible !important;
}
.section-websites.page-themes .fancybox-type-website .fancybox-iframe {
  transition: 0.5s all ease;
  width: 1920px;
  height: 1080px;
  transform: scale(1);
  transform-origin: center center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}
.section-websites.page-themes .fancybox-close {
  -webkit-animation: close-show 0.5s normal forwards;
  -moz-animation: close-show 0.5s normal forwards;
  -o-animation: close-show 0.5s normal forwards;
  animation: close-show 0.5s normal forwards;
  animation-timing-function: cubic-bezier(0.87, 0.17, 0.18, 0.85);
}
@keyframes close-show {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.section-websites.page-themes .fancybox-image,
.section-websites.page-themes .fancybox-type-website .fancybox-outer {
  opacity: 0;
  display: flex;
  justify-content: center;
}
.section-websites.page-themes .fancybox-wrap.fancybox-opened .fancybox-image,
.section-websites.page-themes .fancybox-type-website.fancybox-opened .fancybox-outer {
  opacity: 0;
  -webkit-animation: image-show 0.5s normal forwards;
  -moz-animation: image-show 0.5s normal forwards;
  -o-animation: image-show 0.5s normal forwards;
  animation: image-show 0.5s normal forwards;
  animation-timing-function: cubic-bezier(0.86, 0.01, 0.14, 0.99);
}
@keyframes image-show {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.section-websites.page-themes .section-websites .fancybox-overlay {
  background: #fafafa;
}
.section-websites.page-themes .fancybox-type-website .fancybox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-websites.page-themes .fancybox-type-website .fancybox-close::after {
  font-size: 26px;
}
.section-websites.page-themes .fancybox-type-website .fancybox-close {
  top: 25px;
  right: 25px;
}
.section-websites.page-themes .fancybox-type-website .fancybox-prev span:after,
.section-websites.page-themes .fancybox-type-website .fancybox-next span:after {
  font-size: 28px;
}
.section-websites.page-themes .fancybox-type-website .website-controls {
  position: fixed;
  padding: 0 var(--CONTAINER-PADDING);
  box-sizing: border-box;
  top: var(--space-l);
  color: #515151;
  left: 0;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.section-websites.page-themes .website-controls__button,
.section-websites.page-themes .website-controls__button:visited {
  color: #515151;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 4px 14px;
  transition: 0.3s all ease;
  border-radius: 2em;
  white-space: nowrap;
  text-decoration: none;
}
.section-websites.page-themes .website-controls__button.outline {
  border: 1px solid #404040;
}
.section-websites.page-themes .website-controls__button.outline:hover {
  background: #fff;
  border-color: #fff;
  color: #1a1a1a;
}
.section-websites.page-themes .website-controls__button.solid {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
}
.section-websites.page-themes .website-controls__button.solid:hover {
  background: transparent;
  color: #1a1a1a;
}
.section-websites.page-themes .website-controls__button.light {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #fff;
}
.section-websites.page-themes .website-controls__button.light:hover {
  background: #1a1a1a;
  color: #fff;
}
.section-websites.page-themes .website-controls__button.active,
.section-websites.page-themes .website-controls__button:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
}
.section-websites.page-themes .website-controls__button svg {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 410px) {
  .section-websites.page-themes .website-controls__button {
    padding: 2px 10px;
  }
  .section-websites.page-themes .website-controls__button .mobile-hidden {
    display: none;
  }
  .section-websites.page-themes .website-controls__button svg {
    width: 14px;
    height: 14px;
  }
}
.section-websites.page-themes .website-link .website-controls__button span {
  /* Fix alignment with icon */
  margin-bottom: -2px;
}
@media screen and (max-width: 1087px) {
  .section-websites.page-themes .fancybox-type-website .website-controls {
    /* grid-template-columns: repeat(2,1fr); */
    display: flex;
    justify-content: space-between;
  }
  .section-websites.page-themes .fancybox-type-website .viewport-controls {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .section-websites.page-themes .fancybox-controls__label {
    display: none;
  }
  .section-websites.page-themes .fancybox-type-website .website-controls {
    padding: 0 10px;
  }
  .section-websites.page-themes .fancybox-type-website .fancybox-close {
    right: 10px;
  }
}
.section-websites.page-themes #fancybox-loading {
  background: transparent;
  z-index: 99999999999999;
}
.section-websites.page-themes #fancybox-loading div {
  background: none;
  height: 40px;
  width: 40px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-top: 2px solid #aaa;
  border-radius: 50%;
  animation: spinnn 1s linear infinite;
}
@keyframes spinnn {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(220deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.themes_grid {
  padding: var(--section-vertical-space) var(--CONTAINER-PADDING);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--space-xl-5xl);
}
@media only screen and (max-width: 1180px) {
  .themes_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.themes_grid__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  text-decoration: none;
}

.themes_grid__image_wrapper {
  position: relative;
  border: 1px solid var(--base-100);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 3px 3px 60px 0px hsla(0, 0%, 0%, 0.08);
}

.themes_grid__image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: 0.3s all ease;
}

.themes_grid__item:hover .themes_grid__image_overlay {
  opacity: 1;
}

.themes_grid__image {
  display: block;
}

.themes_grid__title_wrapper {
  font-size: inherit;
  line-height: 1.5;
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: var(--space-m);
}

.themes_grid__preview_text {
  color: var(--white);
  background-color: var(--black);
  height: min-content;
  padding: var(--space-xs) var(--space-l);
  border-radius: 5em;
  font-size: var(--step-0);
  line-height: 1;
}

.themes_grid__title {
  font-size: var(--step-4);
  line-height: var(--leading-tight);
}

.themes_grid__description {
  font-size: var(--step-0);
  color: var(--text-body);
  margin-top: var(--space-s);
}

.themes_grid__tag {
  font-size: 1.1rem;
  line-height: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  display: inline-block;
  padding: 3px 5px;
  color: #303030;
  margin-left: var(--space-xs);
}

@media only screen and (max-width: 639px) {
  .themes_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-3xl);
    max-width: 550px;
    margin: 0 auto;
  }
  .themes_grid__content {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: var(--space-3xl);
  }
}
.section-websites.page-our-work.layout-animation-enabled .records_list:not(#add_to_calendar_links):not(#slideshow) ul li,
.section-websites.page-our-work.layout-animation-enabled .records_list:not(#add_to_calendar_links):not(#slideshow) ul li.visible {
  opacity: 1;
  transform: initial;
  transition: initial;
}

#websites_list {
  --list-item-width: 33.33%;
  --list-item-px: var(--space-l-2xl);
  --list-item-pb: var(--space-4xl);
}
@media only screen and (max-width: 1180px) {
  #websites_list {
    --list-item-width: 50%;
  }
}
@media only screen and (max-width: 639px) {
  #websites_list {
    --list-item-width: 100%;
  }
}
#websites_list .image {
  --list-image-mb: var(--space-m);
  background: var(--base-50);
  border-radius: 4px;
  overflow: hidden;
  display: block;
  border: 1px solid #E7E7E7;
  box-shadow: 3px 3px 60px 0px hsla(0, 0%, 0%, 0.08);
}
#websites_list .image::after {
  padding-top: 70.1% !important;
}
#websites_list ul {
  display: flex !important;
  flex-wrap: wrap;
}
.filter-wrapper {
  padding-top: var(--space-7xl);
  padding-bottom: var(--space-4xl);
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1180px) {
  .filter-wrapper {
    padding-top: var(--space-5xl);
  }
}

#website_filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--base-100);
  padding: 0.4rem;
  border-radius: 5rem;
  gap: var(--space-m);
}
@media only screen and (max-width: 459px) {
  #website_filters {
    grid-template-columns: 1fr;
    border-radius: 1.25em;
  }
}
#website_filters button {
  padding: var(--space-m) var(--space-l);
  gap: var(--space-m);
  line-height: var(--leading-snug);
  border-radius: 5rem;
  cursor: pointer;
}
@media only screen and (max-width: 639px) {
  #website_filters button {
    padding: var(--space-m) var(--space-s);
  }
}
#website_filters button:hover:not(.is-active) {
  background: var(--base-50);
}
#website_filters .is-active {
  background: var(--black);
  color: var(--white);
}

/* Artlogic login
----------------------------------------------------------- */
.section-login .button.button--is-secondary {
  display: none;
}

.artlogic_login {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: 3;
  --heading-color: var(--text-primary);
  --panel-mx: calc(50% - 50vw);
  --panel-py: 0;
  background: var(--panel-background) !important;
  color: var(--text-secondary);
}
.artlogic_login .artlogic_login__inner {
  width: 100%;
  position: relative;
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: grid;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  min-height: max(65rem, 65vh);
  justify-content: space-between;
}
@media only screen and (min-width: 898px) {
  .artlogic_login .artlogic_login__inner::before, .artlogic_login .artlogic_login__inner::after {
    content: "";
    border-color: var(--elements-primary);
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .artlogic_login .artlogic_login__inner::before {
    width: calc(25% + 1px);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    left: calc(25% - 1px);
  }
  .artlogic_login .artlogic_login__inner::after {
    border-right-style: solid;
    border-right-width: 1px;
    right: calc(25% - 1px);
    visibility: visible;
  }
}
.artlogic_login .artlogic_login__inner::before {
  border-color: --panel-background-alt;
  border-left-width: 0;
}
@media only screen and (max-width: 767px) {
  .artlogic_login .artlogic_login__inner {
    display: block;
  }
}
.artlogic_login .artlogic_login__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
  grid-column: 1/span 2;
  padding: var(--section-vertical-space) var(--space-3xl) var(--section-vertical-space) var(--CONTAINER-PADDING);
}
@media only screen and (max-width: 767px) {
  .artlogic_login .artlogic_login__content {
    grid-column: 1/-1;
    padding-top: calc(var(--section-vertical-space) + var(--header-height));
  }
}
.artlogic_login .artlogic_login__heading {
  display: block;
  width: 100%;
  text-align: left;
  --heading-font-size: var(--step-6);
  --heading-line-height: var(--leading-tighter);
  margin-bottom: 0 !important;
  text-wrap: balance;
  /* wraps lines slighty more nicely (evenly) - pretty decent support in chrome and edge */
}
.artlogic_login .artlogic_login_form_wrapper {
  width: 100%;
  margin-top: var(--space-xl);
  font-size: var(--step-2);
  line-height: var(--leading-snug);
  display: block;
}
.artlogic_login .artlogic_login__button {
  margin: 0;
  margin-top: var(--space-3xl);
}
.artlogic_login .artlogic_login__button > a {
  min-width: 220px;
}
.artlogic_login .artlogic_login__image-wrapper {
  height: 100%;
  width: 100%;
  grid-column: 3/span 2;
  position: relative;
  z-index: 2;
  display: grid;
  background: var(--button-secondary-background-color);
  margin-top: var(--header-height);
}
@media only screen and (max-width: 767px) {
  .artlogic_login .artlogic_login__image-wrapper {
    grid-column: 3/span 2;
  }
}
.artlogic_login .artlogic_login__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.artlogic_login .field_prefix {
  color: var(--text-primary);
  opacity: 0.3;
}
.artlogic_login .form_row__account_name {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  max-width: 50ch;
}
.artlogic_login .field_container {
  width: 100%;
  float: none;
  padding: 0.35em 0;
}
.artlogic_login .field_container input {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  color: var(--text-primary);
  font-size: var(--step-2);
  line-height: 2em;
  -webkit-appearance: none;
  outline: none;
}
.artlogic_login .field_container input::-webkit-input-placeholder {
  color: var(--text-primary);
}
.artlogic_login .field_container input::-moz-placeholder {
  color: var(--text-primary);
}
.artlogic_login .field_container input:-ms-input-placeholder {
  color: var(--text-primary);
}
.artlogic_login .field_container input:-moz-placeholder {
  color: var(--text-primary);
}

body .vacancy-record .heading_wrapper.cascading-page-header {
  display: flex;
  flex-direction: column;
  max-width: calc(var(--CONTAINER-WIDTH) * 0.6);
  margin-left: auto;
  margin-right: auto;
}
body .vacancy-record .heading_wrapper.cascading-page-header h1 {
  float: left;
  float: none;
  display: block;
  line-height: var(--leading-tight);
  font-size: var(--step-6);
  text-wrap: balance;
}
body .vacancy-record .heading_wrapper.cascading-page-header .subtitle {
  font-size: var(--step-2);
  margin-top: var(--space-l);
}
body .vacancy-record #content_module {
  padding: 0 var(--CONTAINER-PADDING) var(--space-6xl) var(--CONTAINER-PADDING) !important;
  float: none;
  width: 100%;
  max-width: calc(var(--CONTAINER-WIDTH) * 0.6);
  margin-left: auto !important;
  margin-right: auto !important;
}
body .vacancy-record #content_module .vacancy-section {
  margin-bottom: var(--space-3xl);
}
body .vacancy-record #content_module .subtitle {
  margin-bottom: var(--space-s);
}
body .vacancy-record #content_module .detail_view_module {
  margin-bottom: var(--detail-view-module-mb);
}
body .vacancy-record #content_module .vacancy-section-title {
  font-size: var(--step-5);
  margin-bottom: var(--space-l);
}

.detail_view_module_artwork_caption {
  --prose-font-size: var(--step--1);
}

.page-specialists .fancybox-overlay.fancybox-overlay-image {
  background: rgba(18, 18, 18, 0.9);
}
.page-specialists .fancybox-wrap {
  --fancybox-padding: var(--space-3xl);
  --fancybox-width: 87rem;
  max-width: var(--fancybox-width);
}
.page-specialists .fancybox-wrap h2 {
  --heading-font-size: var(--step-5);
}
.page-specialists .fancybox-wrap .image {
  aspect-ratio: 1;
  display: block;
}
.page-specialists .fancybox-wrap .consultant-details .subtitle {
  margin-top: var(--space-xl);
}
.page-specialists .fancybox-skin {
  padding: var(--fancybox-padding) !important;
}
.page-specialists .fancybox-inner {
  max-width: calc(var(--fancybox-width) - var(--fancybox-padding) * 2);
}
.page-specialists .consultant-image img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.page-specialists .consultant-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
@media only screen and (max-width: 639px) {
  .page-specialists .consultant-header {
    grid-template-columns: 1fr;
  }
}
.page-specialists #consultant_nav {
  position: sticky;
  top: var(--header-height);
}
.page-specialists .consultant-buttons {
  display: grid;
  grid-template-columns: 1fr;
  width: max-content;
  gap: var(--space-xs);
  margin-top: var(--space-xl);
}
.page-specialists .consultant-buttons a {
  width: 100%;
}
.page-specialists .team-contact-website {
  --button-background-color: transparent;
  --button-color: var(--text-primary);
  --button-border: 1px solid var(--button-color);
}
.page-specialists .team-contact-website:hover .button-icon path {
  stroke: var(--white);
}
.page-specialists .team-contact-website .button-icon {
  width: auto;
  height: auto;
}
.page-specialists .team-contact-website .button-icon path {
  transition: var(--transition);
}

body.section-pagenotfound {
  --heading-font-size: var(--step-5);
  --heading-font-family: CalibreWeb;
  letter-spacing: var(--tracking-tight);
  --base-font-family: CalibreWeb;
  --base-font-size: var(--step-2-3);
  --base-line-height: 1.0;
}
body.section-pagenotfound h1 {
  --heading-font-size: var(--step-3-5);
}
body.section-pagenotfound #container {
  width: fit-content;
}
body.section-pagenotfound #main_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--step-1);
}
body.section-pagenotfound #header {
  transition: none !important;
}
body.section-pagenotfound #header #logo {
  position: initial;
  height: var(--step-5);
}
body.section-pagenotfound #header #logo > a {
  background-position: center center;
}
body.section-pagenotfound .button {
  display: flex;
  margin-top: var(--space-3xl);
}
body.section-pagenotfound .button > a {
  text-decoration: none;
  display: flex;
}
body.section-pagenotfound .link {
  width: fit-content;
}

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