/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize v8.0.1 | MIT License | github.com/necolas/normalize */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 60px;
  --column-width-multiplier: 8.333;
  overscroll-behavior: none;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 0px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

.dnd-section .dnd-column {
  padding: 0;
}

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

/* .dnd-section .dnd-column {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dnd-section .dnd-column.animate {
    opacity: 1;
    transform: translateY(0);
} */

/* .span6.widget-span.widget-type-cell:has(.hs_cos_wrapper_type_rich_text) {
    opacity: 0;
    transform: translateY(20vh);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.span6.widget-span.widget-type-cell:has(.hs_cos_wrapper_type_rich_text).animate {
    opacity: 1;
    transform: translateY(0);
} */

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  position: relative;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.button__text {
    display: inline-block;
    transform: translateX( 0 );
    transition: transform 250ms ease-in-out;
    pointer-events: none;
}

.button__icon {
    display: inline-block;
    position: absolute;
    opacity: 0;
    transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
    transform: translateX( -20px);
    pointer-events: none;
}

.button__icon {
    width: 1rem;
    height: 1rem;
    vertical-align: -0.195em;
}

.button:hover .button__text {
    transform: translateX( -15px );
}

.button:hover .button__icon {
    transform: translateX( -5px );
    opacity: 1;
}


.button {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.button-text {
    display: inline-block;
    transform: translateX( 0 );
    transition: transform 250ms ease-in-out;
    pointer-events: none;
}

.button-icon {
    display: inline-block;
    position: absolute;
    opacity: 0;
    transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
    transform: translateX( -20px);
    font-size: 20px;
    line-height: 32px;
    pointer-events: none;
}

.button:hover .button-text {
    transform: translateX( -15px );
}

.button:hover .button-icon {
    transform: translateX( -5px );
    opacity: 1;
}

.button-wrapper {
    position: relative;
}

.button-editor-id-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX( -50% );
    background-color: var(--blue-color);
    color: var(--primary-color);
    padding: 2px 5px;
    font-size: 16px;
    pointer-events: all;
    user-select: all;
    display: none;
}

.button-wrapper:hover .button-editor-id-label {
    display: block;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

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

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
@keyframes webModalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes webModalSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes webModalSlideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.WebModal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.WebModal__overlay {
    background-color: rgba(47, 48, 49, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.WebModal--open {
    display: flex;
}

.WebModal--open .WebModal__overlay {
    animation: webModalFadeIn 0.3s ease-in-out forwards;
}

.WebModal--open .WebModal__container {
    animation: webModalSlideUp 0.3s ease-in-out forwards;
}

.WebModal--close .WebModal__overlay {
    animation: webModalFadeOut 0.3s ease-in-out forwards;
}

.WebModal--close .WebModal__container {
    animation: webModalSlideDown 0.3s ease-in-out forwards;
}

.WebModal__container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 90vw;
    max-width: 1200px;
    max-height: 90vh;
    height: 800px;
    gap: 10px;
    pointer-events: none;
    overflow: hidden;
}

.WebModal--wide .WebModal__container {
    width: 96vw;
    max-width: 1700px;
}

.WebModal--large .WebModal__container {
    width: auto;
    max-width: 96vw;
    height: 100%;
    max-height: 90vh;
}

.WebModal__containerContent {
    padding: 25px;
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--popup-background-color);
    width: 100%;
    max-height: 96%;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
}

.WebModal--large .WebModal__containerContent {
    height: 100%;
}

.WebModal__containerContentTitle {
    text-align: left;
    font-weight: 700;
    font-size: var(--medium-heading-font-size);
}

.WebModal__containerClose {
    font-size: 40px;
    color: var(--popup-background-color);
    cursor: pointer;
    pointer-events: auto;
}

.WebModal__containerClose:hover {
    color: var(--popup-background-color-hover);
}

.WebModal__container iframe {
    width: 100% !important;
}

.WebModal__container .embed_container {
    overflow-y: auto;
    height: 100%;
}

.iframe_wrapper {
    height: 0;
    padding-bottom: 56.25%;
    padding-top: 25px;
    position: relative;
}

.embed_container {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
}

.embed_container iframe {
    left: 0;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.WebModal--large .iframe_wrapper {
    height: 100%;
    padding-bottom: 0;
    padding-top: 0;
}

.WebModal--large .embed_container {
    height: 100%;
    overflow: initial;
}

.WebModal--large .embed_container iframe {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0px;
    aspect-ratio: 16 / 9;
}

@media (max-width: 1024px) {
    .WebModal__container {
        flex-direction: column;
        align-items: flex-end;
        width: 96vw;
    }

    .WebModal__containerContent {
        order: 2;
        width: 100%;
    }

    .WebModal__containerClose {
        order: 1;
    }

    .WebModal__container .embed_container {
        overflow-y: auto;
    }

    .WebModal__container .iframe_wrapper {
        height: auto;
        padding: 0;
    }

    .WebModal__container .embed_container iframe {
        position: relative;
    }

    .WebModal__containerContentTitle {
        margin-bottom: 10px;
    }
}
.MpiricalSlider {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    padding: 30px 0px;
}

.MpiricalSlider__track {
    overflow: hidden;
}

.MpiricalSlider__list {
    display: flex;
    gap: 70px;
    overflow-x: auto;
    padding: 0px var(--edge-spacing);
    list-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}

.MpiricalSlider__list::-webkit-scrollbar {
    display: none;
}

.MpiricalSlider__list {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.MpiricalSlider__cursor {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    font-size: 70px;
    color: var(--primary-color);
    width: 103px;
    z-index: 10;
}

.MpiricalSlider__list:hover .MpiricalSlider__cursor {
    display: block;
}

.MpiricalSlider__list:hover {
    cursor: none!important;
}

.MpiricalSlider__slideButton {
    pointer-events: auto;
}

.MpiricalSlider__pagination {
    align-items: center;
    display: none;
    gap: 20px;
    justify-content: center;
    list-style: none;
    margin: 0;
    pointer-events: none;
    position: relative;
    margin-top: 30px;
}

.MpiricalSlider__pagination--visible {
    display: flex;
}

.MpiricalSlider__paginationPage {
    background-color: transparent;
    border: 3px solid #000;
    border-radius: 25px;
    cursor: pointer;
    height: 25px;
    margin: 0;
    padding: 0;
    pointer-events: all;
    width: 25px;
}

.MpiricalSlider__paginationPage--active,
.MpiricalSlider__paginationPage:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.MpiricalSlider--no-scroll .MpiricalSlider__list {
    justify-content: center;
}

.MpiricalSlider--no-scroll .MpiricalSlider__list:hover {
    cursor: default;
}

.MpiricalSlider--no-scroll .MpiricalSlider__cursor,
.MpiricalSlider--no-scroll:hover .MpiricalSlider__cursor {
    display: none;
}

@media (max-width: 1024px) {
    .MpiricalSlider .MpiricalSlider__cursor,
    .MpiricalSlider:hover .MpiricalSlider__cursor {
        display: none;
    }

    .MpiricalSlider {
        padding: 0px;
    }

    .MpiricalSlider:hover {
        cursor: grab!important;
    }
}
.ComparisonTable {
    max-height: 100%;
    overflow: auto;
}

.ComparisonTable__header,
.ComparisonTable__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: min-content;
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    align-items: center;
    justify-items: center;
}

.ComparisonTable__header {
    padding-bottom: 40px;
    position: sticky;
    top: 0;
    background-color: #fff;
    align-items: stretch;
}

.ComparisonTable__headerBlock {
    background-color: #e4e8e9;
    padding: 15px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 100%;
}

.ComparisonTable__headerBlockTop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}

.ComparisonTable__headerBlockLabel {
    font-size: 25px;
    font-weight: 600;
}

.ComparisonTable__headerBlockPriceFrom {
    font-size: 20px;
    font-weight: 600;
}

.ComparisonTable__headerBlockPriceValue {
    font-size: 35px;
    font-weight: 600;
}

.ComparisonTable__rowLabel {
    justify-self: start;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: left;
}

.ComparisonTable__rowDivider {
    background-color: var(--secondary-color);
    height: 100%;
    width: 100%;
    padding-bottom: 20px;
    padding-top: 20px;
}

@media (max-width: 800px) {
    .ComparisonTable__header {
        padding-bottom: 20px;
    }

    .ComparisonTable__headerBlock {
        padding: 10px;
        border-radius: 25px;
        gap: 10px;
    }

    .ComparisonTable__headerBlockLabel {
        font-size: 20px;
    }

    .ComparisonTable__headerBlockPriceValue {
        font-size: 25px;
    }

    .ComparisonTable__rowLabel {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .ComparisonTable__rowDivider {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .ComparisonTable__row {
        font-size: 16px;
    }
}
.PriceCard {
    background-color: #E0E5E7;
    border-radius: 60px;
    text-align: center;
    width: 460px;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.PriceCard__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    height: 220px;
    flex: 0 0 auto;
}

.PriceCard__headerPrice {
    font-size: 50px;
    font-weight: 700;
}

.PriceCard__headerPost,
.PriceCard__headerPre {
    font-size: 20px;
    font-weight: 700;
}

.PriceCard__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 50px 40px;
    height: 100%;
    box-sizing: border-box;
}

.PriceCard__headerPost > div::before,
.PriceCard__headerPost > div::after,
.PriceCard__headerPre > div::before,
.PriceCard__headerPre > div::after {
    content: '\00a0';
}
.Accordion {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.Accordion__item {
    cursor: pointer;
    border-bottom: 1px solid var(--primary-color);
}

.Accordion__item--static {
  pointer-events: none;
}

.Accordion__item--static .Accordion__itemIcon {
  display: none;
}

.Accordion__itemTitle {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
}

.Accordion__itemIcon {
    transition: transform 0.3s ease-in-out;
}

.Accordion__item:hover .Accordion__itemIcon {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.Accordion__item:hover .Accordion__itemIcon.Accordion__itemIcon--arrow {
    color: var(--secondary-color);
    transform: rotate(-90deg);
}

.Accordion__item--active.Accordion__item .Accordion__itemIcon.Accordion__itemIcon--arrow {
    transform: rotate(-180deg);
}

.Accordion__item--active.Accordion__item:hover .Accordion__itemIcon.Accordion__itemIcon--arrow {
    transform: rotate(-90deg);
}

.Accordion__item--active .Accordion__itemIconOpen,
.Accordion__item .Accordion__itemIconClose {
    display: none;
}

.Accordion__text {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.Accordion__text::after {
    content: '';
    display: block;
    height: 30px;
}

.Accordion__item--active .Accordion__itemIconClose {
    display: block;
}
.LearningPathCard {
    width: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    flex: 0 0 auto;
    max-width: 100%;
}

.LearningPathCard--default {
    display: flex;
}

.LearningPathCard--visible {
    display: flex;
}

.LearningPathCard--hidden {
    display: none;
}

.LearningPathCard__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.LearningPathCard__top {
    border-radius: 60px 60px 0px 0px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    height: 207px;
}

.LearningPathCard__topImage {
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

.LearningPathCard__topImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.LearningPathCard__topCategory {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--secondary-color);
    padding: 4px 7px;
    border-radius: 18px;
    z-index: 3;
}

.LearningPathCard__topWash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: var(--secondary-color);
}

.LearningPathCard__middle {
    padding: 50px 40px;
    background-color: #E0E5E7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.LearningPathCard__path {
    height: 5px;
    width: calc(100% - 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 0px;
    position: absolute;
}

.LearningPathCard__path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    width: calc(100% - 4px);
    height: 5px;
    background-color: var(--primary-color);
    z-index: 0;
}

.LearningPathCard__path::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: calc(100% - 4px);
    height: 3px;
    background-color: var(--secondary-color);
    z-index: 2;
}

.LearningPathCard__pathDot {
    width: 12px;
    height: 12px;
}

.LearningPathCard__pathDot::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.LearningPathCard__pathDot::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: 3;
    transform: translate( 1px,  1px);
}

.LearningPathCard__bottom {
    background-color: #E0E5E7;
    padding: 0px 40px 50px 40px;
    border-radius: 0px 0px 60px 60px;
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.LearningPathCard__priceValue {
    font-size: 30px;
    font-weight: 600;
}

.LearningPathCard__title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0px;
}

.LearningPathCard__intro {
    font-size: 20px;
    font-weight: 400;
}

.LearningPathCard__meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.LearningPathCard__metaItem {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    gap: 10px;
}

.LearningPathCard:hover .LearningPathCard__topImage {
    transform: scale(1.05);
    cursor: pointer;
}

.LearningPathCard:hover .LearningPathCard__topWash {
    opacity: 0.25;
}

.LearningPathCard:hover .button .button-text {
    transform: translateX( -15px );
}

.LearningPathCard:hover .button .button-icon {
    transform: translateX( -5px );
    opacity: 1;
}

.LearningPathCard--smallLink {
    pointer-events: none;
}

.LearningPathCard--smallLink .button {
    pointer-events: all;
}
.Catalogue {
    position: relative;
}

.Catalogue__nav {
    text-align: center;
    gap: 45px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    position: sticky;
    top: var(--header-height);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px var(--edge-spacing);
}

.Catalogue__navItemsListOverlay {
    display: none;
}

.Catalogue__navRight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.Catalogue__navItems {
    display: flex;
    gap: 30px;
    line-height: 38px;
    overflow: hidden;
    position: relative;
}

.Catalogue__navItemsList {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 45px;
    width: 100%;
    overflow-x: hidden;
    padding: 10px 0;
}

.Catalogue__navItemsNav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.Catalogue__navItemsNavButton {
    font-size: 25px;
    cursor: pointer;
}

.Catalogue__navItems--scrollable .Catalogue__navItemsList {
    padding-right: 30px;
}

.Catalogue__navItems--scrollable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, var(--secondary-color) 100%);
    pointer-events: none;
    display: none;
}

.Catalogue__navItems--scrollable.Catalogue__navItems--scrolled::before {
    display: block;
}

.Catalogue__navItems--scrollable::after {
    content: '';
    position: absolute;
    top: 0;
    right: 70px;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, var(--secondary-color) 100%);
    pointer-events: none;
}

.Catalogue__navItems--scrollable .Catalogue__navItemsNav {
    display: flex;
}


.Catalogue__navItem {
    position: relative;
    flex: 0 0 auto;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    user-select: none;
}

.Catalogue__navItem::after {
    content: '';
    display: block;
    width: 100%;
    opacity: 0;
    height: 5px;
    background: var(--primary-color);
    transition: opacity .2s;
    position: absolute;
    bottom: -10px;
}

.Catalogue__navItem:hover::after,
.Catalogue__navItem--active::after {
    opacity: 1;
}

.Catalogue__navSeparator {
    width: 2px;
    height: 40px;
    background-color: var(--primary-color);
    flex: 0 0 auto;
}

.Catalogue__navSearch {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 25px;
    justify-content: center;
    width: 25px;
}

.Catalogue__navSearch::after {
    content: '';
    display: block;
    width: 100%;
    opacity: 0;
    height: 5px;
    background: var(--primary-color);
    transition: opacity .2s;
    position: absolute;
    bottom: -10px;
}

.Catalogue__navSearch:hover::after,
.Catalogue__navSearch--active::after {
    opacity: 1;
}

.Catalogue__search {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    position: relative;
}

.Catalogue__search--active {
    height: 97px;
}

.Catalogue__searchWrapper {
    background-color: var(--primary-color);
    padding: 20px var(--edge-spacing);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: 97px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.Catalogue__searchForm {
    align-items: center;
    background-color: #fff;
    border-radius: 40px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    overflow: hidden;
    padding: 0 30px;
    width: 100%;
    border: 0px;
}

.Catalogue form.Catalogue__searchForm input,
form.Catalogue__searchForm input {
    border: none;
    color: var(--primary-color);
    font-size: 25px;
    width: 100%;
}

form.Catalogue__searchForm input:focus {
    outline: none;
}

.Catalogue__searchSpacer {
    width: 3px;
    height: 40px;
    background-color: var(--primary-color);
    margin: 10px 0px;
}

.Catalogue__searchClose {
    background: #fff;
    color: var(--primary-color);
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    flex: 0 0 auto;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.Catalogue__searchClose:hover {
    background-color: var(--secondary-color);
}

.Catalogue__searchButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    font-size: 30px;
    padding: 0;
}

.Catalogue__content {
  padding: 0px;
}

.Catalogue__main {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding: 50px var(--edge-spacing);
    gap: 50px;
}

.Catalogue__sidebar {
    position: relative;
    width: 254px;
    flex: 0 0 auto;
}

.Catalogue__sidebarFilters {
    position: sticky;
    width: 100%;
    display: flex;
}

.Catalogue__sidebarFiltersOverlay {
    display: none;
}

.Catalogue__sidebarFiltersWrapper {
    position: sticky;
    width: 100%;
    border-radius: 60px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.Catalogue__sidebarFiltersHeading {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.Catalogue__sidebarFiltersHeadingReset {
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: none;
    justify-content: center;
    align-items: center;
}

.Catalogue__sidebarFiltersHeadingReset:hover {
    color: var(--secondary-color);
}

.Catalogue__sidebarFilters--active .Catalogue__sidebarFiltersHeadingReset {
    display: flex;
}

.Catalogue__sidebarFiltersScroll {
    height: 100%;
    overflow-y: auto;
    padding: 0px 20px;
}

.Catalogue__sidebarFilter {
    padding-bottom: 40px;
}

.Catalogue__sidebarFilter:last-child {
    padding-bottom: 0;
}

.Catalogue__sidebarFilterTitle {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.Catalogue__sidebarFilterItems {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.Catalogue__sidebarFilterItem {
    user-select: none;
    -webkit-user-select: none;
}

.Catalogue__sidebarFilterItem input {
    display: none;
}

.Catalogue__sidebarFilterItemLabel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}

.Catalogue__sidebarFilterItemLabelIcon {
    color: #fff;
}

.Catalogue__sidebarFilterItem:hover .Catalogue__sidebarFilterItemLabelIcon {
    color: var(--secondary-color);
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemLabel .Catalogue__sidebarFilterItemLabelIcon {
    color: var(--secondary-color);
}

.Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelIcon {
    border: 1px solid #fff;
    padding: 9px 10px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 25px;
    position: relative;
    overflow: hidden;
}

.Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelIcon i {
    position: relative;
}

.Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelIcon i:first-child {
    color: var(--primary-color);
}

.Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelIcon::before {
    content: '';
    display: block;
    height: 45px;
    width: 45px;
    background-color: #fff;
    position: absolute;
    top: -1px;
    left: -1px;
    border-radius: 45px;
    transition: left 0.2s ease-out;
}

.Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelText > span:last-child {
    display: none;
}

.Catalogue__sidebarFilterItemToggle:hover .Catalogue__sidebarFilterItemLabelText > span:first-child {
    display: none;
}

.Catalogue__sidebarFilterItemToggle:hover .Catalogue__sidebarFilterItemLabelText > span:last-child {
    display: block;
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelIcon::before {
    left: calc(100% - 45px);
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelText > span:first-child {
    display: none;
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelText > span:last-child {
    display: block;
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelIcon i:first-child {
    color: #fff;
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemToggle:hover .Catalogue__sidebarFilterItemLabelIcon i:first-child {
    color: var(--secondary-color);
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemToggle .Catalogue__sidebarFilterItemLabelIcon i:last-child {
    color: var(--primary-color);
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemToggle:hover .Catalogue__sidebarFilterItemLabelText > span:last-child {
    display: none;
}

.Catalogue__sidebarFilterItem input:checked + .Catalogue__sidebarFilterItemToggle:hover .Catalogue__sidebarFilterItemLabelText > span:first-child {
    display: block;
}

.Catalogue__listings {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    width: 100%;
}

.Catalogue__listingsWrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    width: 100%;
}

.Catalogue__listing {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    padding-bottom: 70px;
    border-bottom: 2px solid var(--primary-color);
}

.Catalogue__listingEmpty {
    display: none;
}

.Catalogue__listing--hidden .Catalogue__listingEmpty {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
}

.Catalogue__listing--hidden .Catalogue__listingItems {
    display: none;
}

.Catalogue__listingHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
    gap: 20px;
}

.Catalogue__listingCount {
    white-space: nowrap;
    font-size: 20px;
    font-weight: 600;
}

.Catalogue__listingFilters {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.Catalogue__listingFiltersList {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
    overflow-x: hidden;
}

.Catalogue__listingFiltersItem {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 28px;
    user-select: none;
    -webkit-user-select: none;
    white-space: nowrap;
}

.Catalogue__listingFiltersItem--active,
.Catalogue__listingFiltersItem:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.Catalogue__listingFiltersNav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.Catalogue__listingFiltersNavButton {
    font-size: 25px;
    cursor: pointer;
}

.Catalogue__listingFiltersNavButton:hover {
    color: var(--secondary-color);
}

.Catalogue__listingFilters--scrollable .Catalogue__listingFiltersList {
    padding-right: 30px;
}

.Catalogue__listingFilters--scrollable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    display: none;
}

.Catalogue__listingFilters--scrollable.Catalogue__listingFilters--scrolled::before {
    display: block;
}

.Catalogue__listingFilters--scrollable::after {
    content: '';
    position: absolute;
    top: 0;
    right: 70px;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.Catalogue__listingFilters--scrollable .Catalogue__listingFiltersNav {
    display: flex;
}

.Catalogue__listingItems {
    gap: 40px;
    width: 100%;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(339px, min-content));
}

.Catalogue__listingMore {
    width: 340px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.Catalogue__listingMoreBack {
    width: 339px;
    border-radius: 60px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    height: calc(100% - 2px);
    left: 1px;
    top: 1px;
}

.Catalogue__listingMoreBackIcon {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
}

.Catalogue__listingMoreInner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    font-size: 25px;
    line-height: 31px;
    text-align: center;
    transition: width 0.2s ease-out;
}

.Catalogue__listingMore:hover .Catalogue__listingMoreInner {
    width: calc(100% - 28px);
}

.CatalogueCard {
    width: 340px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    max-width: 100%;
}

.CatalogueCard--wide {
    width: 462px;
}

.CatalogueCard__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.CatalogueCard__top {
    border-radius: 60px 60px 0px 0px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    pointer-events: none;
}

.CatalogueCard__topImage {
    display: block;
    width: 100%;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

.CatalogueCard__topCategory {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--secondary-color);
    padding: 4px 7px;
    border-radius: 18px;
    z-index: 3;
}

.CatalogueCard__topWash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: var(--secondary-color);
}

.CatalogueCard__newBadge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    color: var(--primary-color);
    z-index: 3;
    width: 0;
    height: 0;
    border-top: 70px solid transparent;
    border-right: 90px solid var(--secondary-color);
}

.CatalogueCard__newBadgeText {
    position: absolute;
    bottom: 10px;
    right: -77px;
    color: var(--primary-color);
    z-index: 3;
    font-size: 14px;
    font-weight: 600;
}

.CatalogueCard__eventDate {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 0px 10px 0px 15px;
    border-radius: 15px 0px 0px 0px;
}

.CatalogueCard__eventDateText {
    font-size: 16px;
    font-weight: 600;
}

.CatalogueCard__middle {
    padding: 30px;
    background-color: #E0E5E7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    box-sizing: border-box;
}

.CatalogueCard__bottom {
    background-color: #E0E5E7;
    padding: 0px 30px 40px 30px;
    border-radius: 0px 0px 60px 60px;
    overflow: hidden;
    flex: 0 0 auto;
}

.CatalogueCard__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap; 10px;
}

.CatalogueCard__actionPrice {
    font-weight: 700;
    font-size: 20px;
}

.CatalogueCard__actionPrice .shopify-product-price {
  display: flex;
  flex-direction: column;
}

.CatalogueCard__actionPrice .shopify-compare-at-price {
  position: absolute;
  top: 100%;
}


.CatalogueCard__title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0px;
}

.CatalogueCard__intro {
    font-size: 16px;
    font-weight: 400;
    height: 4.4rem;
    overflow: hidden;
}

.CatalogueCard__meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.CatalogueCard__metaItem {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    gap: 5px;
}

.CatalogueCard__metaItem .fa-earth-americas {
    display: none;
}

.CatalogueCard:hover .CatalogueCard__topImage {
    transform: scale(1.05);
    cursor: pointer;
}

.CatalogueCard:hover .CatalogueCard__topWash {
    opacity: 0.25;
}

.CatalogueCard:hover .button .button-text {
    transform: translateX( -15px );
}

.CatalogueCard:hover .button .button-icon {
    transform: translateX( -5px );
    opacity: 1;
}

.Catalogue--list .Catalogue__listingItems {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    padding-bottom: 70px;
}

.Catalogue--list .CatalogueCard {
    width: 100%;
    flex: 1 0 auto;
    background: transparent;
    border-radius: 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--primary-color);
    gap: 50px;
    padding: 0px 0px 30px;
    display: flex;
}

.Catalogue--list .CatalogueCard__top {
    display: none;
}

.Catalogue--list .CatalogueCard__middle {
    background-color: transparent;
    border-radius: 0px;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 120px;
    padding: 0px;
    width: 70%;
}

.Catalogue--list .CatalogueCard__title {
    flex: 0 0 auto;
    max-width: 100%;
}

.Catalogue--list .CatalogueCard__intro {
    width: 100%;
}

.Catalogue--list .CatalogueCard__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
    text-align: right;
    flex: 1 1 auto;
    width: 100%;
    overflow: visible;
}

.Catalogue--list .CatalogueCard__meta {
  margin-bottom: 0px;
}

.Catalogue--list .CatalogueCard__action {
  flex-direction: row-reverse;
  gap: 30px;
}

.CatalogueCard--smallLink {
    pointer-events: none;
}

.CatalogueCard--smallLink .button {
    pointer-events: all;
}

.Catalogue__listing .CatalogueCard--default,
.Catalogue--list .CatalogueCard--default {
    display: flex;
}

.Catalogue__listing .CatalogueCard--visible,
.Catalogue--list .CatalogueCard--visible {
    display: flex;
}

.Catalogue__listing .CatalogueCard--hidden,
.Catalogue--list .CatalogueCard--hidden {
    display: none;
}

.Catalogue__navFilterToggle {
    display: none;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 17px;
    width: 54px;
    height: 54px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    flex: 0 0 auto;
    border: 0px;
}

.Catalogue__navFilterToggle:hover {
    color: var(--secondary-color);
}

.Catalogue__navFilterToggle:focus {
    outline: none;
}

.Catalogue__navFilterToggle .fa-check {
    display: none;
}

.Catalogue__navFilterToggle--active .fa-check {
    display: block;
}

.Catalogue__navFilterToggle--active .fa-filter-list {
    display: none;
}

.Catalogue__navMobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    user-select: none;
}

@media (max-width: 1024px) {
  .Catalogue__content {
    display: none;
  }
    .Catalogue__nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px var(--edge-spacing);
    }

    .Catalogue__navItemsListOverlay {
        display: block;
        position: absolute;
        background-color: var(--primary-color);
        opacity: 0;
        width: 100%;
        height: 100vh;
        left: 0;
        top: 100%;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
        cursor: pointer;
    }

    .Catalogue__navItemsListOverlay--open {
        opacity: 0.7;
        pointer-events: all;
    }

    .Catalogue__navFilterToggle {
        display: flex;
        flex: 0 0 auto;
    }

    .Catalogue__navMobile {
        display: flex;
    }

    .Catalogue__navItems {
        position: absolute;
        top: 100%;
        left: 0;
        overflow: hidden;
        width: 100%;
        pointer-events: none;
    }

    .Catalogue__navItemsList {
        gap: 20px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        pointer-events: none;
        padding: 20px var(--edge-spacing);
    }

    .Catalogue__navItemsList--open {
        transform: translateY(0);
        pointer-events: all;
    }

    .Catalogue__navItem--active {
        display: none;
    }

    .Catalogue__navSeparator {
        display: none;
    }

    .Catalogue__main {
        flex-direction: column;
        padding: 0px var(--edge-spacing) 20px;
    }

    .Catalogue__sidebar {
        position: sticky;
        top: calc(var(--header-height) + 62px);
        width: 100%;
        height: 0px;
        z-index: 5;
    }

    .Catalogue__sidebarFilters {
        overflow: hidden;
        pointer-events: none;
    }

    .Catalogue__sidebarFiltersWrapper {
        top: 0px !important;
        border-radius: 0px 0px 60px 60px;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        pointer-events: all;
        position: relative;
    }

    .Catalogue__sidebarFilters--visible .Catalogue__sidebarFiltersWrapper {
        transform: translateY(0);
    }

    .Catalogue__sidebarFiltersOverlay {
        display: block;
        position: absolute;
        background-color: var(--primary-color);
        opacity: 0;
        width: calc(100% + var(--edge-spacing) * 2);
        height: 100vh;
        left: calc(0px - var(--edge-spacing));
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
        cursor: pointer;
    }

    .Catalogue__sidebarFiltersOverlay--visible {
        opacity: 0.7;
        pointer-events: all;
    }

    .Catalogue__sidebarFilter--mobile-hidden {
        display: none;
    }
    
    .Catalogue__listingHeader {
        flex-wrap: wrap;
    }

    .Catalogue__listingFilters {
        width: auto;
    }

    .Catalogue__listing {
        border: 0px;
        padding: 0px;
    }

    /* Mobile view, force list view only when in Catalogue */
    .Catalogue .Catalogue__listingItems {
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 40px;
        width: 100%;
        padding-bottom: 70px;
    }

    .Catalogue .CatalogueCard {
        width: 100%;
        flex: 1 0 auto;
        background: transparent;
        border-radius: 0px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: 1px solid var(--primary-color);
        gap: 50px;
        padding: 0px 0px 30px;
        display: flex;
    }

    .Catalogue .CatalogueCard__top {
        display: none;
    }

    .Catalogue .CatalogueCard__middle {
        background-color: transparent;
        border-radius: 0px;
        flex: 1 1 auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        padding: 0px;
    }

    .Catalogue .CatalogueCard__title {
        width: 340px;
        flex: 0 0 auto;
    }

    .Catalogue .CatalogueCard__intro {
        width: 100%;
        height: auto;
    }

    .Catalogue .CatalogueCard__bottom {
        background-color: transparent;
        border-radius: 0px;
        padding: 0px;
        text-align: right;
    }

    .Catalogue__listing .CatalogueCard--default,
    .Catalogue--list .CatalogueCard--default {
        display: flex;
    }

    .Catalogue__listing .CatalogueCard--visible,
    .Catalogue--list .CatalogueCard--visible {
        display: flex;
    }

    .Catalogue__listing .CatalogueCard--hidden,
    .Catalogue--list .CatalogueCard--hidden {
        display: none;
    }
}

@media (max-width: 700px) {
    .Catalogue .CatalogueCard {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        gap: 25px;
    }

    .Catalogue .CatalogueCard__bottom {
        text-align: left;
    }
}

.Catalogue__listingsSearchHeader {
    display: none;
}

.Catalogue__listings--search .Catalogue__listingsSearchHeader {
    display: block;
}

.Catalogue__listings--search .Catalogue__listingsWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(339px, min-content));
}

.Catalogue__listings--search .Catalogue__listing,
.Catalogue__listings--search .Catalogue__listingItems {
    display: contents
}

.Catalogue__listings--search .Catalogue__listingHeader,
.Catalogue__listings--search .Catalogue__listingEmpty,
.Catalogue__listings--search .Catalogue__listingMore {
    display: none;
}

.Catalogue__listings--search .CatalogueCard {
    height: 100%;
}

.shopify-product-price {
    position: relative;
    padding-right: 15px;
    margin-right: 3px;
}

.shopify-compare-at-price {
  font-style: italic;
  text-decoration: line-through;
  font-size: 0.8em;
}

/* Until they have been popuplated, we want to show a placeholder in the .shopify-product-price
    This will also replace the current text until the prices are loaded by Shopify's JS
    So we have to hide the current content of shopify-product-price and replace it with our own
*/
/* @keyframes shopify-price-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

.shopify-product-price::after {
    content: '£$€';
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    color: var(--primary-color);
    opacity: 0.3;
    pointer-events: none;
    animation: shopify-price-pulse 2s infinite;
    white-space: nowrap;
}

.shopify-product-price {
    color: transparent;
    position: relative;
}

.shopify-product-price.loaded {
    color: inherit;
}

.shopify-product-price.loaded::after {
    display: none;
} */
.Course__nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 90px;
    font-size: 20px;
    user-select: none;
    position: relative;
}

.Course__navItem {
    position: relative;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.Course__navItem::after {
    content: '';
    display: block;
    width: 100%;
    opacity: 0;
    height: 5px;
    background: var(--primary-color);
    transition: opacity .2s;
    position: absolute;
    bottom: -10px;
}

.Course__navItem:hover::after,
.Course__navItem--active::after {
    opacity: 1;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.HeaderSticky {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
}

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
    max-width: 1920px;
    box-sizing: border-box;
    padding: 18px 60px;
}

.header__top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
    gap: 20px;
    font-size: 20px;
    margin-bottom: 10px;
}

.header__top a {
    font-weight: 500;
    text-decoration: none;
}

.header__topAction {
    cursor: pointer;
    border: 0px;
    background: 0pc;
    color: #fff;
    padding: 0px;
}

.header__top a:hover {
    color: var(--secondary-color);
}

.header__topAction:hover {
    color: var(--secondary-color);
}

.header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header__bottom--landing {
  align-items: center;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 60px;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header__navMobile {
  display: none;
  cursor: pointer;
  border: 0px;
  background: 0pc;
  color: #fff;
  padding: 0px;
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 240px;
  overflow: hidden;
}

.header__bottom--landing .header__logo img {
  display: block;
}

@media (max-width: 767px) {
  .header__logo {
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

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

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

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

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

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

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

.header__mobileCurrency {
  display: none;
}


@media (max-width: 1330px) {
    .header__nav {
        gap: 30px;
    }
}

@media (max-width: 1160px) {
    .header__container {
        padding: 18px 40px;
    }
}

@media (max-width: 1130px) {
    .header__container {
        padding: 18px 20px;
    }

    .header__logo {
        max-width: 200px;
    }
}

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

    .header__nav {
        align-items: center;
    }
    
    .header__navContact {
        order: -1;
    }

    .header__navMobile {
        display: block;
    }
  
    .header__mobileCurrency {
      display: block;
    }

    .header__navSearch {
        color: #fff;
    }

    .header__navSearch:hover {
        color: var(--secondary-color);
    }

    .header__bottom {
        align-items: center;
    }
}

.Currency__dropDownToggle {
    display: none;
    background: none;
    padding: 0px 0px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    align-items: center;
    gap: 8px;
    color: #fff;
    border: 0px;
    user-select: none;
    white-space: nowrap;
}

.Currency__dropDownToggle:hover,
.Currency__dropDownToggle:focus-visible,
.Currency__dropDownToggle[aria-expanded="true"] {
    color: var(--secondary-color);
}

.Currency__dropDownToggle i {
    transition: transform 0.3s ease;
}

.Currency__dropDownToggle[aria-expanded="true"] i {
    transform: rotate(-180deg);
}

.Currency__list {
    position: fixed;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    left: 50%;
    background: #fff;
    min-width: 100%;
    z-index: 1000;
    border-radius: 20px;
    margin: 0;
    padding: 5px 0px;
    list-style: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: var(--primary-color);
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 60vh; /* fallback for JS, will be overridden inline */
    max-width: 90vw;
}

.Currency__listItem {
    padding: 5px 25px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.Footer__top {
    padding: 50px var(--edge-spacing);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 90px;
}

.Footer__bottom {
    padding: 40px var(--edge-spacing);
    border-top: 2px solid var(--secondary-color);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.Footer__bottom p:last-child {
    margin-bottom: 0;
}

.Footer--landing .Footer__top {
  justify-content: center;
}

.Footer--landing .FooterSocials {
  margin-bottom: 0px;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

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

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Modules */
.Accordion {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.Accordion__item {
    cursor: pointer;
    border-bottom: 1px solid var(--primary-color);
}

.Accordion__itemTitle {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    font-size: 30px;
    font-weight: 700;
}

.Accordion__itemIcon {
    transition: transform 0.3s ease-in-out;
    margin-left: 15px;
}

.Accordion__item:hover .Accordion__itemIcon {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.Accordion__item--active .Accordion__itemIconOpen,
.Accordion__item .Accordion__itemIconClose {
    display: none;
}

.Accordion__text {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.Accordion__text::after {
    content: '';
    display: block;
    height: 30px;
}

.Accordion__item--active .Accordion__itemIconClose {
    display: block;
}

@media (max-width: 1024px) {
    .Accordion {
        gap: 40px;
    }
    
    .Accordion__itemTitle {
        font-size: 25px;
    }
}
.MpiricalAnchor {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}


.dnd-section:has(.MpiricalAnchor) {
    position: relative;
}
.BenefitGrid {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.BenefitGrid__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 120px;
}

.BenefitGrid__item {
    display: contents;
    text-align: center;
}

.BenefitGrid__itemIcon {
    font-size: 100px;
    line-height: 1;
    align-self: center;
    order: 1;
}

.BenefitGrid__itemTitle {
    font-size: var(--medium-heading-font-size);
    font-weight: 700;
    order: 2;
}

.BenefitGrid--left .BenefitGrid__item{
    text-align: left;
    align-items: flex-start;
}

.BenefitGrid__itemContent {
    order: 3;
}

@media (max-width: 1024px) {
    .BenefitGrid {
        gap: 120px;
    }

    .BenefitGrid__row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 120px;
    }

    .BenefitGrid__item,
    .BenefitGrid--left .BenefitGrid__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px 120px;
    }
}
.button {
    position: relative;
}

.button-text {
    display: inline-block;
    transform: translateX( 0 );
    transition: transform 250ms ease-in-out;
}

.button-icon {
    display: inline-block;
    position: absolute;
    opacity: 0;
    transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
    transform: translateX( -20px);
    font-size: 20px;
    line-height: 32px;
}

.button:hover .button-text {
    transform: translateX( -15px );
}

.button:hover .button-icon {
    transform: translateX( -5px );
    opacity: 1;
}
.CardSlider {
    position: relative;
    overflow: hidden;
}

.CardSlider__track {
    overflow: hidden;
}

.CardSlider__list {
    display: flex;
    gap: 70px;
    overflow-x: auto;
    padding: 0px 60px;
    list-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}

.CardSlider__list::-webkit-scrollbar {
    display: none;
}

.CardSlider__list {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.CardSlider__slide {
    width: 450px;
    border-radius: 60px;
    background-color: #E0E5E7;
    padding: 50px;
    box-sizing: border-box;
    flex: 0 0 auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    max-width: 100%;
}

.CardSlider__slideContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 50px;
  height: 100%;
}

.CardSlider__slideTop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 50px;
}

.CardSlider__slideImage {
  width: 217px;
  height: 217px;
  overflow: hidden;
  border-radius: 217px;
}

.CardSlider__slideTopContent p:last-child {
    margin-bottom: 0;
}

.CardSlider__cursor {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    font-size: 70px;
    color: var(--primary-color);
    width: 103px;
}

.CardSlider:hover .CardSlider__cursor {
    display: block;
}

.CardSlider:hover {
    cursor: none;
}

.CardSlider__slideButton {
    pointer-events: auto;
}
.cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.cards__card {
  align-items: center;
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  max-width: 100%;
  width: 300px;
}

.card__image {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  padding: 0.7rem;
}

.card__text {
  padding: 0 0.7rem;
  width: 100%;
}
.CompanyInfo {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.CompanyInfo__left {
    background-color: #E0E5E7;
    border-radius: 60px;
    padding: 70px;
}

.CompanyInfo__logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.CompanyInfo__sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.CompanyInfo__sectionsItem {
    display: flex;
    align-items: center;
    gap: 40px;
}

.CompanyInfo__sectionsItemIcon {
    font-size: 50px;
    line-height: 1;
}


.CompanyInfo__right {
    border-radius: 60px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .CompanyInfo {
        grid-template-columns: 100%;
    }

    .CompanyInfo__right {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 700px) {
    .CompanyInfo__left {
        padding: 70px var(--edge-spacing);
    }
}
.EmbedGrid {
    display: flex;
    gap: 50px 50px;
    justify-content: center;
    align-items: flex-start;
}

.EmbedGrid iframe {
    width: 100% !important;
}

.EmbedGrid__button {
    width: 25%;
    color: var(--primary-color);
    flex: 0 1 auto;
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.EmbedGrid__buttonIcon {
    font-size: 100px;
}

.EmbedGrid__buttonLabel {
    display: inline-block;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 15px;
    position: relative;
}

.EmbedGrid__buttonLabel::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.EmbedGrid__button:hover .EmbedGrid__buttonIcon {
    color: var(--secondary-color);
}

.EmbedGrid__button:hover .EmbedGrid__buttonLabel::after {
    opacity: 1;
}

.EmbedGrid__popup {
    display: none;
}

.EmbedGrid__popup {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.EmbedGrid__popupOverlay {
    background-color: rgba(47, 48, 49, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.EmbedGrid__popup--open {
    display: flex;
}

.EmbedGrid__popupContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 90vw;
    max-width: 1200px;
    max-height: 90vh;
    gap: 10px;
}

.EmbedGrid__popupContainerContent {
    padding: 25px;
    border-radius: 30px;
    background-color: var(--popup-background-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 90vh;
}

.EmbedGrid__popupContainerContentEmbed {
    overflow-y: auto;
    height: 100%;
}

.EmbedGrid__popupContainerContentEmbed iframe {
    max-height: 100%;
    border: none;
}

.EmbedGrid__popupContainerClose {
    font-size: 40px;
    color: var(--popup-background-color);
    cursor: pointer;
}

.EmbedGrid__popupContainerClose:hover {
    color: var(--popup-background-color-hover);
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.EmbedGrid__popup--open .EmbedGrid__popupOverlay {
    animation: fadeIn 0.3s ease-in-out forwards;
}

.EmbedGrid__popup--open .EmbedGrid__popupContainer {
    animation: slideUp 0.3s ease-in-out forwards;
}

@media (max-width: 1570px) {
    .EmbedGrid {
        flex-wrap: wrap;
    }

    .EmbedGrid__button {
        width: 40%;
    }
}

@media (max-width: 1024px) {
    .EmbedGrid__button {
        width: 100%;
    }

    .EmbedGrid__popupContainer {
        flex-direction: column;
        align-items: flex-end;
        width: 96vw;
    }

    .EmbedGrid__popupContainerContent {
        order: 2;
        width: 100%;
    }

    .EmbedGrid__popupContainerClose {
        order: 1;
    }

    .EmbedGrid__popupContainer .embed_container {
        overflow-y: auto;
    }

    .EmbedGrid__popupContainer .iframe_wrapper {
        height: auto;
        padding: 0;
    }

    .EmbedGrid__popupContainer .embed_container iframe {
        position: relative;
    }
}
.FooterMenu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 90px;
    color: #fff;
}

.FooterMenu__section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.FooterMenu__sectionLabel {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #fff;
}

.FooterMenu__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.FooterMenu__link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 4px solid transparent;
    padding-bottom: 4px;
    transition: border-bottom 0.3s ease;
}

.FooterMenu__link:hover {
    border-bottom: 4px solid var(--secondary-color);
}

@media (max-width: 1250px) {
    .FooterMenu {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .Footer__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .FooterMenu__section {
        align-items: center;
        text-align: center;
    }
}
.FooterSocials {
    margin-bottom: 50px;
}

.FooterSocials__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.FooterSocials__links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.FooterSocials__linksItem {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}

.FooterSocials__linksItem:hover {
    color: var(--secondary-color);
}
.HeaderBanner {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.HeaderBanner__wrapper {
  height: 0px;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.HeaderBanner__wrapper--visible {
  height: auto;
}

.HeaderBanner__contentLeft {
  display: flex;
  align-items: center;
  gap: 20px;
}

.HeaderBanner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px var(--edge-spacing);
}

.HeaderBanner__contentText {
  display: flex;
  align-items: center;
  gap: 20px;
}

.HeaderBanner__contentIcon {
  font-size: 35px;
}

.HeaderBanner__contentTextTitle {
  font-weight: bold;
  font-size: 30px;
}

.HeaderBanner__contentTextActions {
  flex: 0 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

.HeaderBanner__dismissClose {
  border: 0px;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
  padding: 0px;
}

@media (max-width: 1300px) {
  .HeaderBanner__contentText {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .HeaderBanner__contentTextTitle {
    font-size: 20px;
  }
  
  .HeaderBanner__contentTextContent {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .HeaderBanner__content {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .HeaderBanner__content {
    padding: 10px var(--edge-spacing);
    align-items: flex-start;
  }
  
  .HeaderBanner__contentLeft {
    align-items: flex-start;
    gap: 10px;
  }
  
  .HeaderBanner__contentIcon {
    font-size: 25px;
  }
  
  .HeaderBanner__contentTextActions .button {
    background: transparent;
    color: inherit;
    border: 0px;
    display: inline;
    padding: 0;
  }
  
  .HeaderBanner__contentTextActions {
    padding-left: 35px;
  }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.SalesPopup {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.SalesPopup iframe {
    width: 100% !important;
}

.SalesPopup__overlay {
    background-color: rgba(47, 48, 49, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.SalesPopup__container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 90vw;
    max-width: 1200px;
    max-height: 90vh;
    gap: 10px;
}

.SalesPopup__containerClose {
    font-size: 40px;
    color: var(--popup-background-color);
    cursor: pointer;
}

.SalesPopup__containerClose:hover {
    color: var(--popup-background-color-hover);
}

.SalesPopup__title {
    text-align: center;
    font-weight: 700;
    font-size: 50px;
}

.SalesPopup__containerContent {
    padding: 25px;
    border-radius: 30px;
    background-color: var(--popup-background-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 90vh;
}

.SalesPopup__containerContent .embed_container {
  overflow-y: auto;
}

.SalesPopup iframe {
  position: relative;
}

.SalesPopup .iframe_wrapper {
  height: auto;
  padding: 0px;
}

.SalesPopup--open {
    display: flex;
}

.SalesPopup--open .SalesPopup__overlay {
    animation: fadeIn 0.3s ease-in-out forwards;
}

.SalesPopup--open .SalesPopup__container {
    animation: slideUp 0.3s ease-in-out forwards;
}

.SalesPopup--reverse .SalesPopup__overlay {
    animation: fadeOut 0.3s ease-in-out forwards;
}

.SalesPopup--reverse .SalesPopup__container {
    animation: slideDown 0.3s ease-in-out forwards;
}

.SalesPopup__buttonsWrapper {
    overflow-y: auto;
    height: 100%;
}

.SalesPopup__buttons {
    display: flex;
    gap: 50px 50px;
    justify-content: center;
    align-items: flex-start;
}


.SalesPopup__button {
    width: 25%;
    color: var(--primary-color);
    flex: 0 1 auto;
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.SalesPopup__buttonIcon {
    font-size: 100px;
}

.SalesPopup__buttonLabel {
    display: inline-block;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 15px;
    position: relative;
}

.SalesPopup__buttonLabel::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.SalesPopup__button:hover .SalesPopup__buttonIcon {
    color: var(--secondary-color);
}

.SalesPopup__button:hover .SalesPopup__buttonLabel::after {
    opacity: 1;
}

.SalesPopup__embed {
    overflow: hidden;
    flex-direction: column;
}

.SalesPopup__embedTitle {
    text-align: left;
    font-weight: 700;
    font-size: var(--medium-heading-font-size);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.SalesPopup__embedClose {
    font-size: 30px;
    cursor: pointer;
    background-color: transparent;
    border: none;

}

.SalesPopup__embedClose:hover {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .SalesPopup__buttonWrapper {
        display: none;
    }

    .SalesPopup__embedClose {
        font-size: 18px;
    }
    
    .SalesPopup__container {
        flex-direction: column;
        align-items: flex-end;
        width: 96vw;
    }

    .SalesPopup__containerContent {
        order: 2;
        width: 100%;
    }

    .SalesPopup__containerClose {
        order: 1;
    }

    .SalesPopup__container .embed_container {
        overflow-y: auto;
    }

    .SalesPopup__container .iframe_wrapper {
        height: auto;
        padding: 0;
    }

    .SalesPopup__container .embed_container iframe {
        position: relative;
    }

    .SalesPopup__containerContentTitle {
        margin-bottom: 10px;
    }

    .SalesPopup__buttons {
        flex-wrap: wrap;
    }

    .SalesPopup__button {
        width: calc(50% - 40px);
    }
}

@media (max-width: 700px) {
    .SalesPopup__buttons {
        gap: 20px;
        flex-direction: column;
    }

    .SalesPopup__button {
        width: 100%;
        gap: 20px;
    }

    .SalesPopup__buttonIcon {
        font-size: 80px;
    }

    .SalesPopup__buttonLabel {
        font-size: 30px;
    }
}
.HistoryTimeline {
    display: flex;
    gap: 110px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: var(--edge-spacing);
}

.HistoryTimeline__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    height: 110px;
    justify-content: center;
    align-items: center;
}

.HistoryTimeline__left h2 {
    margin: 0px;
}

.HistoryTimeline__items {
    overflow-x: auto;
}

.HistoryTimeline__itemsTrack {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fit, 240px);
    grid-template-rows: 30px 110px max-content min-content;
    position: relative;
    gap: 25px 80px;
    text-align: center;
    align-items: baseline;
}

.HistoryTimeline__itemsEvent {
    display: contents;
    position: relative;
}

/* .HistoryTimeline__itemsEvent:last-child .HistoryTimeline__itemsEventIcon::before {
    display: none;
} */

.HistoryTimeline__itemsEventDate {
    font-size: 20px;
    font-weight: 700;
}

.HistoryTimeline__itemsEventIcon {
    font-size: 100px;
    line-height: 1;
    padding-bottom: 5px;
    position: relative;
}

.HistoryTimeline__itemsEventIcon::before {
    content: '';
    width: 240px;
    height: 5px;
    background-color: #2E3031;
    position: absolute;
    left: calc(120px + 40px);
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.HistoryTimeline__itemsEventTitle {
    font-size: 30px;
    font-weight: 700;
    padding: 0px;
    margin: 0px;
}

.HistoryTimeline__itemsEventContent {
    font-size: 20px;
    font-weight: 400;
    padding: 0px;
    margin: 0px;
    line-height: 25px;
}

.HistoryTimeline .MpiricalSlider__pagination {
    display: none;
}

@media (max-width: 1024px) {
    .HistoryTimeline {
        display: block;
        text-align: left;
        padding: 0px;
    }

    .HistoryTimeline .MpiricalSlider__list {
        /* padding: 0px; */
    }

    .HistoryTimeline__left {
        display: block;
        padding: 0px var(--edge-spacing);
    }
}
.InfoHeader {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.InfoHeader--tall {
    min-height: 656px;
}

.InfoHeader--short {
    min-height: 426px;
}

.InfoHeader--full_width {
    min-height: 426px;
}

.InfoHeader__background {
    width: 100%;
    height: 100%;
    position: absolute;
}

.InfoHeader__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.InfoHeader__content {
    position: relative;
    padding: 70px 60px;
    max-width: 1000px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
}

.InfoHeader--full_width .InfoHeader__content {
    max-width: 100%;
    width: 100%;
    padding: 50px var(--edge-spacing);
}

.InfoHeader__contentInner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 50px;
}

.InfoHeader__contentTitle h1 {
    margin-bottom: 0px;
}

.InfoHeader__contentSubtitle {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.InfoHeader__contentDescription p:last-child {
    margin-bottom: 0px;
}

.InfoHeader__contentWash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.InfoHeader__contentCTAs {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.InfoHeader__contentLogo {
    max-width: 152px;
    position: absolute;
    top: 30px;
    right: 60px;
    border-radius: 25px;
}

@media (max-width: 1024px) {
    .InfoHeader--tall {
        min-height: auto;
    }

    .InfoHeader__content {
        padding: 70px var(--edge-spacing)
    }

    .InfoHeader--full_width {
        height: auto;
        min-height: 426px;
    }

    .InfoHeader__contentLogo {
        display: none;
    }
}
.Instructors {
    display: grid;
    gap: 60px;
    grid-template-columns: 1.5fr 3fr;
    align-items: center;
    padding-left: var(--edge-spacing);
}

.Instructors__content {
    width: 550px;
}

.Instructors__slider {
    position: relative;
    overflow: hidden;
}

.Instructors__sliderTrack {
    display: flex;
    gap: 70px;
    overflow-x: auto;
    padding: 0px 40px 0px 0px;
    list-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}

.Instructors__sliderItem {
    width: 450px;
    border-radius: 60px;
    background-color: #E0E5E7;
    padding: 40px;
    box-sizing: border-box;
    flex: 0 0 auto;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.Instructors__sliderItemLink {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.Instructors__sliderItemImage {
    width: 296px;
    height: 296px;
    overflow: hidden;
    border-radius: 296px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    pointer-events: none;
}

.Instructors__sliderItemInfo {
    text-align: left;
    margin-bottom: 25px;
    font-size: 18px;
}

.Instructors__sliderItemInfo h3 {
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 600;
}

.Instructors__sliderItemContent {
    text-align: left;
    font-size: 18px;
    line-height: 23px;
}

.Instructors__sliderItemContentActions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.Instructors .MpiricalSlider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,555,555, 1.0) 0%, rgba(255,555,555, 0) 100%);
    z-index: 5;
}

.Instructors .MpiricalSlider::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to left, rgba(255,555,555, 1.0) 0%, rgba(255,555,555, 0) 100%);
    z-index: 5;
}

@media (max-width: 1280px) {
    .Instructors {
        grid-template-columns: 1fr;
        padding: 0px;
    }

    .Instructors__content {
        width: 100%;
        padding: 0px var(--edge-spacing);
    }

    .Instructors__sliderItem {
        max-width: calc(100vw - var(--edge-spacing) * 2);
    }

    .Instructors__sliderItemImage {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        margin: 0 auto 50px auto;
    }

    .Instructors__sliderItemImage img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
.PathTree {
    display: flex;
    flex-direction: column;
    gap: 70px;
    position: relative;
}

.PathTree__trunk {
    width: 10px;
    height: 100%;
    background-color: #2E3031;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
}

.PathTree_scrollArea {
    position: relative;
    height: 90vh;
}

.PathTree__branch {
    position: sticky;
    top: 45vh;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
}

.PathTree__branchContent {
    width: 50%;
    flex: 1 1 auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    transition-delay: 0.5s;
}

.PathTree__branchSpacer {
    width: 50%;
    flex: 1 1 auto;
}

.PathTree__branchTrunk {
    position: relative;
    width: 300px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.PathTree__branchTrunk--left::before {
    content: '';
    width: 50%;
    height: 10px;
    background-color: #2E3031;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0, 1);
    transform-origin: right;
    transition: transform 0.5s ease-in-out;
    transition-delay: 0.3s;
    z-index: 1;
}

.PathTree__branchTrunk--right::before {
    content: '';
    width: 50%;
    height: 10px;
    background-color: #2E3031;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(0, 1);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
    transition-delay: 0.3s;
    z-index: 1;
}

.PathTree__branchTrunkAnchor {
    position: relative;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
}

.PathTree__branch--active .PathTree__branchContent {
    opacity: 1;
}
.PathTree__branch--active .PathTree__branchTrunkAnchor {
    opacity: 1;
}

.PathTree__branch--active .PathTree__branchTrunk::before {
    transform: translateY(-50%) scale(1, 1);
}
.PathTree__branch--active .PathTree__branchTrunk--left::before {
    transform: translateY(-50%) scale(1, 1);
}
.PathTree__branch--active .PathTree__branchTrunk--right::before {
    transform: translateY(-50%) scale(1, 1);
}

.PathTree__branch--visible .PathTree__branchContent {
    opacity: 1;
    transition-delay: 0s;
    transition: none;
}

.PathTree__branch--visible .PathTree__branchTrunk::before {
    opacity: 0;
    transition: none;
}

.PathTree__branch--visible .PathTree__branchTrunkAnchor {
    opacity: 0;
    transition: none;
}

@media (max-width: 1024px) {
    .PathTree__branchSpacer {
        display: none;
    }

    .PathTree__trunk {
        left: 0;
    }

    .PathTree__branchContent {
        order: 2;
        width: 100%;
    }

    .PathTree__branchTrunk {
        order: 1;
        align-items: flex-start;
        width: 150px;
    }

    .PathTree__branchTrunkAnchor {
        transform: translateX(-50%);
    }

    .PathTree__branchTrunk--left::before,
    .PathTree__branchTrunk--right::before {
        width: 100%;
        left: 0;
        right: 0;
        transform-origin: left;
    }
}

@media (max-width: 700px) {

    .PathTree__branchTrunk {
        width: 100px;
    }

    .PathTree__branchTrunkAnchor {
        width: 55px;
        height: 55px;
    }

    .PathTree__trunk {
        width: 5px;
    }

    .PathTree__branchTrunk--left::before,
    .PathTree__branchTrunk--right::before {
        height: 5px;
    }
}
.LogoSlider {
    background-color: var(--primary-color);
    padding: 20px 0;
}

.LogoSlider__track {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.LogoSlider__track:hover .LogoSlider__list {
    /* animation-play-state: paused; */
}

.LogoSlider__list {
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 70px;
    list-style: none;
    animation: 35s slide infinite linear;
    margin: 0px;
    padding: 0px;
}

.LogoSlider__list li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 35px;
}
.MediaBlock {
    overflow: hidden;
    aspect-ratio: 1.5;
    position: relative;
    display: flex;
    border-radius: 71px;
}

.MediaBlock__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.MediaBlock__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
}

.MediaBlock__videoOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
}

.MediaBlock__videoOverlayIcon {
    font-size: 75px;
}

.MediaBlock__video .hs-video-wrapper {
    padding: 0%!important;
    height: auto!important;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute!important;
    object-fit: cover;
    max-width: 100%;
}
.MeetTheTeam {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.MeetTheTeam__teams {
    width: 40%;
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.MeetTheTeam__images {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    gap: 30px;
}

.MeetTheTeam__team {
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.MeetTheTeam__imagesItem {
    width: 138px;
    height: auto;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.MeetTheTeam__imagesItem:hover {
    opacity: 1;
}

.MeetTheTeam__imagesItem--active {
    opacity: 1;
}

.MeetTheTeam__content {
    width: 50%;
    flex: 0 0 auto;
    display: grid;
    grid-template: 1fr / 1fr;
    place-items: center;
}

.MeetTheTeam__member {
    opacity: 0;
    transition: opacity 0.5s ease;
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.MeetTheTeam__member--active {
    visibility: visible;
    opacity: 1;
}

.MeetTheTeam__memberMain {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}

.MeetTheTeam__memberImage {
    width: 45%;
    flex: 0 0 auto;
    max-width: 375px;
}

.MeetTheTeam__memberImage img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.MeetTheTeam__memberContentName {
    font-size: 50px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 20px;
}

.MeetTheTeam__memberContentTitle {
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 45px;
    display: block;
}

.MeetTheTeam__memberContentBio {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.MeetTheTeam__memberAbout {
    background-color: #E0E5E7;
    border-radius: 60px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 45px;
}

.MeetTheTeam__memberAboutIcon {
    font-size: 100px;
}

.MeetTheTeam__memberAboutText {
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
}

@media (max-width: 1480px) {
    .MeetTheTeam {
        gap: 50px;
    }

    .MeetTheTeam__teams {
        width: 310px;
        flex: 0 0 auto;
    }

    .MeetTheTeam__content {
        width: calc(100% - 310px);
        flex: 1 0 auto;
    }
}

@media (max-width: 1200px) {
    .MeetTheTeam {
        flex-direction: column;
    }

    .MeetTheTeam__teams {
        width: 100%;
    }

    .MeetTheTeam__content {
        width: 100%;
        margin-top: 50px;
        place-items: start;
    }
}

@media (max-width: 700px) {
    .MeetTheTeam__team {
        width: 100%;
        height: auto;
        padding: 20px;
        font-size: 18px;
        border-radius: 30px;
    }

    .MeetTheTeam__memberMain {
        flex-direction: column;
        text-align: center;
    }

    .MeetTheTeam__memberAbout {
        padding: 30px;
    }

    .MeetTheTeam__memberAboutIcon {
        font-size: 60px;
    }

    .MeetTheTeam__memberAboutText {
        font-size: 20px;
        line-height: 28px;
    }
}
.MegaMenu {
    user-select: none;
    -webkit-user-select: none;
}

.MegaMenu a {
    text-decoration: none;
    color: #102532;
    font-weight: 400;
}

.MegaMenu__top {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.MegaMenu__topItem {
    cursor: pointer;
    border-bottom: 4px solid transparent;
    padding-bottom: 13px;
    color: #fff;
    transition: border-bottom-color 0.3s;
}

.MegaMenu__topItem:hover,
.MegaMenu__topItem:focus,
.MegaMenu__topItem--active {
    border-bottom-color: var(--secondary-color);
}

.MegaMenu__pannels {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    pointer-events: none;
    height: 0px;
    overscroll-behavior: contain;
}

.MegaMenu__overlay {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 0;
    z-index: 5;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
    cursor: pointer;
}

.MegaMenu__overlay--active {
    opacity: 0.8;
    pointer-events: auto;
}

.MegaMenu__pannelsItem {
    z-index: 10;
    transition: max-height 0.4s ease-in-out;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    padding: 0 var(--edge-spacing);
}

.MegaMenu__pannelsItem--active {
    pointer-events: auto;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 11;
    max-height: calc(100vh - 150px);
}

.MegaMenu__pannelsItemInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

.MegaMenu__pannelsItem__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 70px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    color: #2E3031;
}

.MegaMenu__pannelsItem__linksItem {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    text-align: start;
    padding-bottom: 20px;
    position: relative;
}

.MegaMenu__pannelsItem__linksItemTitle {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #2E3031;
}

.MegaMenu__pannelsItem__linksItemTitle i {
    font-size: 25px;
}

.MegaMenu__pannelsItem__linksItemIcon {
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    color: var(--secondary-color);
}

.MegaMenu__pannelsItem__linksItem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: height 0.3s ease-in-out;
}

.MegaMenu__pannelsItem__linksItem:hover::after {
    height: 4px;
}

.MegaMenu__pannelsItem__linksItem:hover .MegaMenu__pannelsItem__linksItemTitle i {
    color: var(--secondary-color);
}
.MegaMenu__pannelsItem__linksItem:hover .MegaMenu__pannelsItem__linksItemIcon {
    transform: translateX(0px);
    opacity: 1;
}

.MegaMenu__pannelsItem svg {
    width: 20px;
}

.MegaMenu__pannelsItem__descriptions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 70px;
    align-items: start;
}

.MegaMenu__pannelsItem__descriptionsItem {
    
}

.MegaMenu__pannelsItem__descriptionsItemLink {
    font-size: 20px;
    text-decoration: none;
    color: #2E3031;
}

.MegaMenu__pannelsItem__descriptionsItemLinkTop {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.MegaMenu__pannelsItem__descriptionsItemLinkTop::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: height 0.3s ease-in-out;
}

.MegaMenu__pannelsItem__descriptionsItemLinkTopTitle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-align: start;
}

.MegaMenu__pannelsItem__descriptionsItemLinkTopTitle i {
    font-size: 25px;
}

.MegaMenu__pannelsItem__descriptionsItemLinkTopIcon {
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    color: var(--secondary-color);
}

.MegaMenu__pannelsItem__descriptionsItemLink:hover .MegaMenu__pannelsItem__descriptionsItemLinkTopTitle i {
    color: var(--secondary-color);
}

.MegaMenu__pannelsItem__descriptionsItemLink:hover .MegaMenu__pannelsItem__descriptionsItemLinkTop::after {
    height: 4px;
}

.MegaMenu__pannelsItem__descriptionsItemLink:hover .MegaMenu__pannelsItem__descriptionsItemLinkTopIcon {
    transform: translateX(0px);
    opacity: 1;
}

.MegaMenu__pannelsItem__descriptionsItemLinkBottom {
    font-size: 18px;
}

.MegaMenu__pannelsItem__courses {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 100px;
}

.MegaMenu__pannelsItem__coursesLeft {
    width: 60%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.MegaMenu__pannelsItem__coursesLeftHeader,
.MegaMenu__pannelsItem__coursesRightHeader {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-align: start;
    padding-bottom: 15px;
    position: relative;
    font-weight: 600;
    font-size: 20px;
}

.MegaMenu__pannelsItem__coursesLeftHeader {
    margin-bottom: 20px;
}

.MegaMenu__pannelsItem__coursesLeftHeader::after,
.MegaMenu__pannelsItem__coursesRightHeader::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: height 0.2s linear;
}

.MegaMenu__pannelsItem__coursesLeftFooterLink {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid transparent;
    transition: border-bottom-color 0.3s;
    padding-bottom: 5px;
    gap: 35px;
    font-weight: 500;
}

a.MegaMenu__pannelsItem__coursesLeftFooterLink {
    font-weight: 500;
}

.MegaMenu__pannelsItem__coursesLeftFooterLinkIcon {
    transform: translateX(-20px);
    transition: transform 0.3s;
}

.MegaMenu__pannelsItem__coursesLeftFooterLink:hover {
    border-bottom-color: var(--secondary-color);
}
.MegaMenu__pannelsItem__coursesLeftFooterLink:hover
.MegaMenu__pannelsItem__coursesLeftFooterLinkIcon {
    transform: translateX(0px);
    color: var(--secondary-color);
}

.MegaMenu__pannelsItem__coursesLeftCategories {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 35px 20px 45px;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemHeader {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid transparent;
    transition: border-bottom-color 0.3s;
    font-weight: 500;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemHeaderIcon {
    transform: translateX(-20px);
    transition: transform 0.3s;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemHeader:hover {
    border-bottom-color: var(--secondary-color);
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemHeader:hover
.MegaMenu__pannelsItem__coursesLeftCategoriesItemHeaderIcon {
    transform: translateX(0px);
    color: var(--secondary-color);
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemHeader--nolink {
    pointer-events: none;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemHeader--nolink:hover {
    border-bottom-color: transparent;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinks {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3px;
    border-bottom: 4px solid transparent;
    margin-bottom: 3px;
    transition: border-bottom-color 0.3s;
    gap: 40px;
    margin-left: 10px;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItemIcon {
    transform: translateX(-20px);
    transition: transform 0.3s, opacity 0.3s;
    color: var(--primary-color);
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItem:hover {
    border-bottom-color: var(--secondary-color);
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItem:hover
.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItemIcon {
    transform: translateX(0px);
    opacity: 1;
    color: var(--secondary-color);
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItemAfter {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid transparent;
    transition: border-bottom-color 0.3s;
    padding-bottom: 5px;
    gap: 35px;
    font-weight: 500;
    margin-top: 20px;
    font-size: 20px;
}

a.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItemAfter {
    font-weight: 500;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItemAfterIcon {
    transform: translateX(-20px);
    transition: transform 0.3s;
}

.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItemAfter:hover {
    border-bottom-color: var(--secondary-color);
}
.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItemAfter:hover
.MegaMenu__pannelsItem__coursesLeftCategoriesItemLinksItemAfterIcon {
    transform: translateX(0px);
    color: var(--secondary-color);
}


.MegaMenu__pannelsItem__coursesRight {
    width: 40%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.MegaMenu__pannelsItem__coursesRightLink {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: start;
    padding-bottom: 15px;
    position: relative;
}

.MegaMenu__pannelsItem__coursesRightLinkTitle {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #2E3031;
}

.MegaMenu__pannelsItem__coursesRightLinkTitle i {
    font-size: 25px;
}

.MegaMenu__pannelsItem__coursesRightLink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: height 0.2s linear;
}

.MegaMenu__pannelsItem__coursesRightLinkIcon {
    transform: translateX(-20px);
    opacity: 0;
    color: var(--secondary-color);
    transition: transform 0.3s, opacity 0.3s;
}

.MegaMenu__pannelsItem__coursesRightLink:hover .MegaMenu__pannelsItem__coursesRightLinkIcon {
    transform: translateX(0px);
    opacity: 1;
}

.MegaMenu__pannelsItem__coursesRightLink:hover::after {
    height: 4px;
}

.MegaMenu__pannelsItem__coursesRightLink:hover i {
    color: var(--secondary-color);
}

.MegaMenu__pannelsItem__coursesRightLinks {
    padding-left: 51px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.MegaMenu__pannelsItem__coursesRightLinksItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid transparent;
    transition: border-bottom-color 0.3s;
    padding-bottom: 5px;
}

.MegaMenu__pannelsItem__coursesRightLinksItemIcon {
    transform: translateX(-20px);
    transition: transform 0.3s;
}

.MegaMenu__pannelsItem__coursesRightLinksItem:hover {
    border-bottom-color: var(--secondary-color);
}
.MegaMenu__pannelsItem__coursesRightLinksItem:hover
.MegaMenu__pannelsItem__coursesRightLinksItemIcon {
    transform: translateX(0px);
    color: var(--secondary-color);
}

@media (max-width: 1330px) {
    .MegaMenu__top {
        gap: 40px;
    }
}

@media (max-width: 1160px) {
    .MegaMenu__pannelsItem {
        padding: 0 var(--edge-spacing);
    }
}

@media (max-width: 1130px) {
    .MegaMenu__pannelsItem {
        padding: 0 var(--edge-spacing);
    }
}

@media (max-width: 1060px) {
    .MegaMenu__top {
        gap: 20px;
    }
}


/* Mobile Menu */
.MegaMenu__mobileToggle {
    display: none;
    font-size: 25px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.MegaMenu__mobileToggle .MegaMenu__mobileToggleClose,
.MegaMenu--open .MegaMenu__mobileToggle .MegaMenu__mobileToggleOpen {
    display: none;
}

.MegaMenu--open .MegaMenu__mobileToggle .MegaMenu__mobileToggleClose {
    display: inline-block;
}

.MegaMenu__mobileToggle:hover,
.MegaMenu__mobileToggle:focus {
    color: var(--secondary-color);
}

.MegaMenu__pannelsHeader {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 20px var(--edge-spacing);
    font-size: 20px;
}

.MegaMenu__pannelsFooter {
    display: none;
}


.MegaMenu__pannelsItemHeader {
    display: none;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
    font-size: 20px;
    padding: 20px 0;
    margin-bottom: 5px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .MegaMenu__top {
        display: none;
    }

    .MegaMenu__mobileToggle {
        display: inline-block;
    }

    .MegaMenu__pannels {
        background-color: #fff;
        overflow: hidden;
        padding: 0;
        height: 0;
        transition: height 0.4s ease-in-out;
    }

    .MegaMenu__pannelsInner {
        width: 100%;
        box-sizing: border-box;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: height 0.4s ease-in-out, max-height 0.4s ease-in-out;
    }

    .MegaMenu__pannelsTop {
        position: relative;
        height: 100%;
        flex: 1 1 auto;
        padding: 0 var(--edge-spacing);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .MegaMenu__pannelsFooter {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 auto;
        border-top: 1px solid var(--primary-color);
        background-color: #fff;
        padding: 20px var(--edge-spacing);
    }

    .MegaMenu--open .MegaMenu__pannels {
        height: calc(100vh - 95px);
        pointer-events: auto;
        z-index: 20;
    }

    .MegaMenu__pannelsItemHeader {
        display: flex;
        font-weight: 600;
    }

    .MegaMenu__pannelsHeader {
        display: flex;
    }

    .MegaMenu__pannelsFooter a {
        font-weight: 600;
    }

    .MegaMenu__pannelsItem {
        position: relative;
        box-shadow: none;
        padding: 0px;
    }

    .MegaMenu__pannelsItem--active {
        max-height: fit-content;
    }

    .MegaMenu__pannelsItem__courses {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .MegaMenu__pannelsItem__coursesLeft,
    .MegaMenu__pannelsItem__coursesRight {
        width: 100%;
        max-width: 100%;
    }

    .MegaMenu__pannelsItem__coursesLeftCategories {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .MegaMenu__overlay {
        display: none;
    }

    .MegaMenu__pannelsItem__links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .MegaMenu__pannelsItem__descriptions {
        grid-template-columns: 1fr;
    }
}
/* Menu */

.menu--desktop {
  display: block;
}

.menu--mobile {
  display: none;
}

.menu__wrapper {
    display: flex;
}

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

  .menu--mobile {
    display: block;
  }
}

/* Menu items */

.menu__item {
  
}

.menu__link {
  font-size: 1rem;
  line-height: 1.1rem;
  text-decoration: none;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:active {
  text-decoration: none;
}

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: bold;
}

/* Menu items - top level */

.menu__item--depth-1 {
  display: inline-block;
  padding: 0.7rem 0.875rem;
  text-transform: uppercase;
}

.menu__item--depth-1 > .menu__link--active-link:after {
  bottom: -3px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.menu__drawer {
    position: absolute;
    width: 100vw;
    top: 100%;
    left: 0;
    background-color: #FFF;
    box-shadow: 0px 3px 6px #00000029;
}

/* Menu items - submenus */

.menu__submenu {
  border-radius: 3px;
  left: 0;
  text-align: left;
  text-transform: none;
  z-index: 99;
}

.menu__item--open > .menu__submenu {
  display: block;
}

.menu__submenu .menu__item {
  border-bottom: 1px solid #D1D6DC;
  padding: 0;
  width: 100%;
}

.menu__submenu .menu__link {
  display: block;
  padding: 0.7rem 1.05rem;
  transition: background-color 0.3s;
  width: 100%;
}

.menu__submenu--level-3 {
  top: 0;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */

.menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Accounts for child toggle */

.menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 3rem;
}
.MultiImage {
    aspect-ratio: 1.6;
    display: flex;
    gap: 25px;
}

.MultiImage__column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    width: 50%;
}

.MultiImage__column--left {
    align-items: flex-end;
}

.MultiImage__column--right {
    align-items: flex-start;
}

.MultiImage__image {
    border-radius: 60px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.MultiImage--3 .MultiImage__column--left .MultiImage__image:first-child {
    aspect-ratio: 400 / 320;
}

.MultiImage--3 .MultiImage__column--right .MultiImage__image:first-child {
    aspect-ratio: 351 / 277;
    width: 80%;
}

.MultiImage--3 .MultiImage__column--right .MultiImage__image:nth-child(2) {
    aspect-ratio: 470 / 277;
}

.MultiImage--4 .MultiImage__column--left .MultiImage__image:first-child {
    aspect-ratio: 351 / 258;
    width: 80%;
}

.MultiImage--4 .MultiImage__column--left .MultiImage__image:nth-child(2) {
    aspect-ratio: 404 / 298;
}

.MultiImage--4 .MultiImage__column--right .MultiImage__image:first-child {
    aspect-ratio: 463 / 278;
}

.MultiImage--4 .MultiImage__column--right .MultiImage__image:nth-child(2) {
    aspect-ratio: 353 / 258;
    width: 80%;
}

.MultiImage--4 {
    margin-bottom: 12%;
}

.MultiImage--4 .MultiImage__column--right {
    transform: translateY(20%);
}

@media (max-width: 1400px) {
    .MultiImage__image {
        border-radius: 40px;
    }
}

@media (max-width: 1200px) {
    .MultiImage__image {
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .MultiImage__image {
        border-radius: 40px;
    }
}

@media (max-width: 508px) {
    .MultiImage__image {
        border-radius: 30px;
    }
}
.PageHeader {
    position: relative;
}

.PageHeader__nextIcon {
    font-size: 50px;
    line-height: 1;
    position: absolute;
    top: calc(100% - 12px - 40px);
    left: 50%;
    transform: translateX(-50%) scale(1, 0.8);
    transition: opacity 1s, transform 1s, top 1s;
}

.PageHeader--tall {
    height: 656px;
}

.PageHeader--short {
    height: 426px;
}

.PageHeader__content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.PageHeader__contentTitle {
    position: absolute;
    transform: translateY(30%);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transition: opacity 1s, transform 1s;
    opacity: 0.01;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.PageHeader__contentTitle h1 {
    font-weight: 700;
    font-size: var(--large-heading-font-size);
    margin: 0;
}

.PageHeader__contentImage {
    opacity: 0.05;
    transform: scale(0.5);
    transition: opacity 1s, transform 1s;
    padding: 40px;
}

.PageHeader__contentVideo {
    width: 100%;
}

@media (max-width: 1024px) {
    .PageHeader--tall {
        height: 365px;
    }
}
.PriceCards {
    text-align: center;
}

.PriceCards__toggle {
    margin-bottom: 65px;
    display: inline-block;
}

.PriceCards__toggleInner {
    background-color: var(--primary-color);
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 35px;
    position: relative;
}

.PriceCards__toggleInnerPuck{
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 35px;
    border: 5px solid var(--primary-color);
    left: 0;
    top: 0;
    transition: top 0.2s, left 0.2s;
}

.PriceCards__toggleItem {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 10px 55px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.PriceCards__toggleItem--active {
    color: var(--primary-color);
}

.PriceCards__section {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    margin: 0 auto;
    width: 100%;
}

.PriceCards__section--active {
    display: flex;
}

.PriceCards__section--single .PriceCards__sectionItem {
  max-width: 630px;
}

.PriceCards__sectionItem {
    background-color: #E0E5E7;
    border-radius: 60px;
    text-align: center;
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.PriceCards__sectionItemHeader {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    height: 220px;
    flex: 0 0 auto;
}

.PriceCards__sectionItemHeaderPrice {
    font-size: 50px;
    font-weight: 700;
}

.PriceCards__sectionItemHeaderPrice.shopify-product-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.PriceCards__sectionItemHeaderPrice .shopify-compare-at-price {
  font-size: 20px;
}

.PriceCards__sectionItemHeaderPost,
.PriceCards__sectionItemHeaderPre {
    font-size: 20px;
    font-weight: 700;
}

.PriceCards__sectionItemBody {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 50px 40px;
    height: 100%;
    box-sizing: border-box;
}

.PriceCards__sectionItemBodyTitle {
    margin-bottom: 50px;
}

.PriceCards__sectionItemHeaderPost > div::before,
.PriceCards__sectionItemHeaderPost > div::after,
.PriceCards__sectionItemHeaderPre > div::before,
.PriceCards__sectionItemHeaderPre > div::after {
    content: '\00a0';
}

@media (max-width: 750px) {
    .PriceCards__toggleInner {
        grid-template-columns: 1fr;
    }

    .PriceCards__toggleInnerPuck {
        width: 100%;
        height: 50%;
        left: 0;
        top: 0;
    }
}
.ProductHeader {
    overflow: hidden;
    position: relative;
}

.ProductHeader--tall {
    height: 656px;
}

.ProductHeader--short {
    height: 426px;
}

.ProductHeader__background {
    width: 100%;
    height: 100%;
    position: absolute;
}

.ProductHeader__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ProductHeader__background .hs-video-wrapper {
    padding: 0%!important;
    height: auto!important;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute!important;
}

.ProductHeader__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    height: 100%;
}

.ProductHeader__contentTop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 50px;
}

.ProductHeader__contentTopTitle > :last-child {
    margin: 0px;
}

.ProductHeader__contentBottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
    width: 100%;
}

.ProductHeader__contentVideoIcon {
    font-size: 75px;
}

.ProductHeader__postText {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.ProductHeader__contentCTAs {
    display: flex;
    gap: 70px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 33px;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 70px;
    transition: min-width ease-in-out .3s, border-radius ease-in-out .3s;
    justify-content: center;
    min-width: 100px;
    box-sizing: border-box;
}

.ProductHeader__contentBottom--fixed .ProductHeader__contentCTAs{
    position: fixed;
    min-width: 100%;
    top: 0px;
    z-index: 10;
    border-radius: 0px;
}

.ProductHeader__contentCTAsSpacer {
    display: none;
}

.ProductHeader__contentBottom--fixed .ProductHeader__contentCTAsSpacer {
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100px;
}

.ProductHeader__contentCTAsItem {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-align: center;
}

.ProductHeader__contentCTAsItem::after {
    content: '';
    display: block;
    width: 100%;
    opacity: 0;
    height: 5px;
    background: var(--primary-color);
    transition: opacity .2s;
    position: absolute;
    bottom: -10px;
}

.ProductHeader__contentCTAsItem:hover::after,
.ProductHeader__contentCTAsItem--active::after {
    opacity: 1;
}

.ProductHeader__mobileNavToggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    user-select: none;
    padding: 20px var(--edge-spacing)
}

.ProductHeader__mobileNav {
    display: none;
}

.ProductHeader__mobileNavBar {
    display: flex;
    position: sticky;
    top: 95px;
    background-color: var(--secondary-color);
    z-index: 10;
}

.ProductHeader__mobileNavBarSpacer {
    display: none;
}

.ProductHeader__mobileNavItemsOverlay {
    display: none;
}

@media (max-width: 1024px)  {
    .ProductHeader--tall {
        height: auto;
    }

    .ProductHeader__contentTop {
        padding: 20px var(--edge-spacing);
    }

    .ProductHeader__contentBottom {
        display: none;
    }

    .ProductHeader__contentCTAs {
        gap: 40px;
    }

    .ProductHeader__mobileNav {
        display: block;
    }

    .ProductHeader__mobileNav--fixed .ProductHeader__mobileNavBarSpacer {
        display: block;
        visibility: hidden;
        width: 100%;
        height: 68px;
    }

    .ProductHeader__mobileNav--fixed .ProductHeader__mobileNavBar {
        position: fixed;
        left: 0px;
        width: 100%;
        z-index: 10;
    }

    .ProductHeader__mobileNavWrapper {
        position: absolute;
        top: 100%;
        left: 0;
        overflow: hidden;
        width: 100%;
        pointer-events: none;
    }

    .ProductHeader__mobileNavItems {
        display: flex;
        gap: 20px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        pointer-events: none;
        padding: 20px var(--edge-spacing);
    }

    .ProductHeader__mobileNavItems--open {
        transform: translateY(0);
        pointer-events: all;
    }

    .ProductHeader__mobileNavItemsOverlay {
        display: block;
        position: absolute;
        background-color: var(--primary-color);
        opacity: 0;
        width: 100%;
        height: 100vh;
        left: 0;
        top: 100%;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
        cursor: pointer;
    }

    .ProductHeader__mobileNavItemsOverlay--open {
        opacity: 0.7;
        pointer-events: all;
    }

    .ProductHeader__mobileNavItem--active {
        display: none;
    }

    .ProductHeader__mobileNavSeparator {
        display: none;
    }
}
.QuoteSlider__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.QuoteSlider__slide-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
}

.QuoteSlider__slideContent {
    width: 100%;
    box-sizing: border-box;
    padding-left: 120px;
    position: relative;
    margin-top: 35px;
}

.QuoteSlider__slideContentQuote {
    font-size: 40px;
    position: relative;
}

.QuoteSlider__slideContentQuoteIcon {
    font-size: 100px;
    position: absolute;
    line-height: 0;
    color: var(--secondary-color);
}

.QuoteSlider__slideContentQuoteIcon--left {
    top: 0;
    left: 0;
    transform: translate(0, -50%);
}

.QuoteSlider__slideContentQuoteIcon--right {
    bottom: 0;
    right: 0;
    transform: translate(100%, 50%);
}

.QuoteSlider__slideContentAuthor {
    font-size: 20px;
    margin-top: 50px;
}

.QuoteSlider__slideImage {
    width: 600px;
    overflow: hidden;
    border-radius: 60px;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.QuoteSlider__slideImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.QuoteSlider .QuoteSlider__slide--wide  {
    margin-top: 70px;
    margin-bottom: 70px;
}

.QuoteSlider .QuoteSlider__slide--wide .QuoteSlider__slideImage {
    display: none;
}

.QuoteSlider .QuoteSlider__slide--wide .QuoteSlider__slideContent {
    padding-right: 120px;
}

.QuoteSlider__pagination {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    top: -30px;
    list-style: none;
    margin: 0px;
    padding-left: 120px;
    pointer-events: none;
}

.QuoteSlider__paginationPage {
    width: 25px;
    height: 25px;
    padding: 0px;
    margin: 0px;
    border-radius: 25px;
    background-color: transparent;
    border: 3px solid #000;
    cursor: pointer;
    pointer-events: all;
}

.QuoteSlider__paginationPage:hover {
    background-color: var(--secondary-color);
}

.QuoteSlider__paginationPage.is-active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.QuoteSlider__reviews {
    position: absolute;
    bottom: 0px;
    right: calc(600px + 44px);
    line-height: 1;
}

.QuoteSlider__reviews a {
    line-height: 1;
    bottom: -7px;
    position: relative;
    display: block;
}

.QuoteSlider__reviews #quote-slider-badge-ribbon {
    height: 63px;
    position: relative;
    bottom: -9px;
}

@media (max-width: 1550px) {
    .QuoteSlider__reviews {
        display: none;
    }
}

@media (max-width: 1350px) {
    .QuoteSlider  {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .QuoteSlider__slideImage {
        display: none;
    }

    .QuoteSlider__slideContent {
        padding: 0px;
    }

    .QuoteSlider__pagination {
        margin-top: 50px;
        top: 0;
        padding-left: 0;
        justify-content: center;
    }

    .QuoteSlider__slideContentQuote {
        position: revert;
        font-size: 35px;
    }

    .QuoteSlider__slideContentQuoteIcon {
        transform: translate(0%);
        position: relative;
    }

    .QuoteSlider__slideContentQuoteIcon--right {
        text-align: right;
    }

    .QuoteSlider .QuoteSlider__slide--wide .QuoteSlider__slideContent {
        padding-right: 0px;
    }
}
.ResourceCards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.ResourceCards__card--three.ResourceCards {
  display: grid;
  grid-template-columns: repeat(3, min-content);
  justify-content: center;
}

.ResourceCards__card {
  display: flex;
  flex-direction: row;
  border-radius: 60px;
  overflow: hidden;
  width: calc(50% - 20px);
}

.ResourceCards__cardLeft {
  padding: 44px 33px;
  flex: 1 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  width: 50%;
}

.ResourceCards__cardRight {
  flex: 1 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.ResourceCards__cardTitle {
  font-size: 30px;
  margin-bottom: 0px;
  font-weight: 600;
}

.ResourceCards__cardContent {
  margin: 0;
  font-size: 20px;
}

.ResourceCards__cardContent p:last-child {
  margin-bottom: 0;
}

.ResourceCards__cardRightBackground {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.ResourceCards__arrow {
  display: none;
}

.ResourceCards__pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0px;
  width: 100%;
}

.ResourceCards__paginationPage {
  width: 25px;
  height: 25px;
  padding: 0px;
  margin: 0px;
  border-radius: 25px;
  background-color: transparent;
  border: 3px solid #000;
  cursor: pointer;
  pointer-events: all;
}

.ResourceCards__paginationPage:hover {
  background-color: var(--secondary-color);
}

.ResourceCards__paginationPage.is-active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


.ResourceCards--slider-thin .ResourceCards__card,
.ResourceCards--grid-thin .ResourceCards__card {
  width: calc(416px);
  flex-direction: column;
}

.ResourceCards--slider-thin .ResourceCards__cardLeft,
.ResourceCards--slider-thin .ResourceCards__cardRight,
.ResourceCards--grid-thin .ResourceCards__cardLeft,
.ResourceCards--grid-thin .ResourceCards__cardRight {
  width: 100%;
}

.ResourceCards--slider-thin .ResourceCards__cardRight,
.ResourceCards--grid-thin .ResourceCards__cardRight {
  height: 200px;
  flex: 0 0 auto;
}

.ResourceCards--slider-medium .ResourceCards__card,
.ResourceCards--grid-medium .ResourceCards__card {
  width: calc(559px);
  flex-direction: column;
  max-width: calc(33% - 24px);
}

.ResourceCards--slider-medium .ResourceCards__cardLeft,
.ResourceCards--slider-medium .ResourceCards__cardRight,
.ResourceCards--grid-medium .ResourceCards__cardLeft,
.ResourceCards--grid-medium .ResourceCards__cardRight {
  width: 100%;
}

.ResourceCards--slider-medium .ResourceCards__cardRight,
.ResourceCards--grid-medium .ResourceCards__cardRight {
  height: 200px;
  flex: 0 0 auto;
}

.ResourceCards--slider-small .ResourceCards__card,
.ResourceCards--grid-small .ResourceCards__card {
  width: calc(416px);
  flex-direction: column;
}

.ResourceCards--slider-small .ResourceCards__cardLeft,
.ResourceCards--slider-small .ResourceCards__cardRight,
.ResourceCards--grid-small .ResourceCards__cardLeft,
.ResourceCards--grid-small .ResourceCards__cardRight {
  width: 100%;
}

.ResourceCards--slider-small .ResourceCards__cardRight,
.ResourceCards--grid-small .ResourceCards__cardRight {
  display: none;
}

@media (max-width: 1400px) {
  .ResourceCards__card--three.ResourceCards {
    display: grid;
    grid-template-columns: repeat(1, min-content);
    justify-content: center;
  }
}

@media (max-width: 1300px) {
  .ResourceCards--slider-medium .ResourceCards__card,
  .ResourceCards--grid-medium .ResourceCards__card {
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 1250px) {
  .ResourceCards__card {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .ResourceCards--slider-medium .ResourceCards__card,
  .ResourceCards--grid-medium .ResourceCards__card {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .ResourceCards {
    justify-content: flex-start;
    align-items: center;
  }

  .ResourceCards__card {
    flex-direction: column;
  }

  .ResourceCards__cardRight {
    order: -1;
    width: 100%;
    height: 230px;
    flex: 0 0 auto;
    overflow: hidden;
  }

  .ResourceCards__cardLeft {
    width: 100%;
    flex: 1 1 auto;
    padding: 30px 20px;
  }

  .ResourceCards--grid-thin .ResourceCards__card {
    width: 100%;
  }

  .ResourceCards__card--three.ResourceCards {
    display: flex;
  }
}
.ScrollInfo {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 70px;
    padding: 70px 0px;
    position: relative;
}

.ScrollInfo__content {
    width: 50%;
    /* padding-top: 70px; */
    position: relative;
}

.ScrollInfo__contentBackground {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
}

.ScrollInfo__contentBackgroundInner {
    display: flex;
    position: sticky;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc( 100vh - var(--header-height));
    justify-content: flex-start;
    align-items: center;
}

.ScrollInfo__contentBackgroundInner img {
    max-width: 100%;
    max-height: 100%;
}

.ScrollInfo__contentSection {
    position: relative;
    display: flex;
    margin-bottom: 25vh;
    align-items: center;
}

.ScrollInfo__contentSectionItem p:last-child {
    margin-bottom: 0px;
}

.ScrollInfo__contentSectionMobileMedia {
    display: none;
}

.ScrollInfo__contentSection:last-child {
    margin-bottom: 70px;
}

.ScrollInfo__images {
    position: relative;
    width: 50%;
}

.ScrollInfo__imagesContainer {
    position: sticky;
    top: 25vh;
    margin: 0 auto;
}

.ScrollInfo__imagesContainerItem--active {
    animation: scaleFade 0.5s ease-in-out forwards;
}

@keyframes scaleFade {
    0% {
        opacity: 0;
        scale: 1.1;
    }
    50% {
        opacity: 0;
        scale: 1.1;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}

.ScrollInfo__imagesContainerItem:not(.ScrollInfo__imagesContainerItem--active) {
    animation: reverseScaleFade 0.5s ease-in-out forwards;
}

@keyframes reverseScaleFade {
    0% {
        opacity: 1;
        scale: 1;
    }
    25% {
        opacity: 1;
        scale: 1.1;
    }
    100% {
        opacity: 0;
        scale: 1;
    }
}


.ScrollInfo__imagesContainerItem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    scale: 0.8;
}

.ScrollInfo__imagesContainerItemMedia {
    max-width: 100%;
}

.ScrollInfo__imagesContainerItem--active {
    opacity: 1;
}

.ScrollInfo__imagesContainerItem img,
.ScrollInfo__imagesContainerItem video {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .ScrollInfo {
        padding: 0px;
    }

    .ScrollInfo__content {
        width: 100%;
    }

    .ScrollInfo__contentBackground {
        width: 100%;
    }

    .ScrollInfo__images {
        display: none;
    }

    .ScrollInfo__contentSectionMobileMedia {
        display: block;
        max-width: 100%;
    }

    .ScrollInfo__contentSection {
        margin-bottom: 40px;
        flex-direction: column;
        gap: 40px;
    }

    .ScrollInfo__contentSection:last-child {
        margin-bottom: 0px;
    }
}
.hs-search-results__listing {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 2rem;
  list-style: none;
}

.hs-search-results__listing__item {
  display: flex;
  padding: 0;
  margin: 0;
}

.hs-search-results__link,
.hs-search-results__link:hover {
  text-decoration: none;
}

.hs-search-highlight {
  font-weight: bold;
}

.hs-search-results__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-search-results__pagination__link {
  display: flex;
  margin: 0 0.35rem;
  align-items: center;
}

.hs-search-results__pagination__link,
.hs-search-results__pagination__link:hover,
.hs-search-results__pagination__link:focus,
.hs-search-results__pagination__link:active {
  text-decoration: none;
}

.hs-search-results__pagination__link-icon {
  display: flex;
  height: 16px;
  width: 16px;
  justify-content: center;
}

.hs-search-results__pagination__link-icon svg {
  fill: currentColor;
}

.hs-search-results__pagination__link--first,
.hs-search-results__pagination__link--prev {
  margin-right: 0.7rem;
}

.hs-search-results__pagination__link--first {
  margin-left: 0;
}

.hs-search-results__pagination__link--first
  .hs-search-results__pagination__link-icon,
.hs-search-results__pagination__link--prev
  .hs-search-results__pagination__link-icon {
  margin-right: 0.35rem;
}

.hs-search-results__pagination__link--number {
  padding: 0.35rem 0.7rem;
}

.hs-search-results__pagination__link--last,
.hs-search-results__pagination__link--next {
  margin-left: 0.7rem;
}

.hs-search-results__pagination__link--last {
  margin-right: 0;
}

.hs-search-results__pagination__link--last
  .hs-search-results__pagination__link-icon,
.hs-search-results__pagination__link--next
  .hs-search-results__pagination__link-icon {
  margin-left: 0.35rem;
}

.hs-search-results__pagination__link--active {
  border-style: solid;
  border-width: 1px;
}

.hs-search-results__featured-image-wrapper {
  min-width: 33.3333%;
  margin-right: 1.25rem;
  flex-basis: 33.3333%;
  flex-shrink: 0;
}

.hs-search-results__featured-image {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hs-search-results__featured-image--empty {
  display: flex;
  height: 191px;
  width: 255px;
  min-width: 255px;
  margin-right: 1.25rem;
  align-items: center;
  justify-content: center;
  background-color: #d7d7d7;
}
.hs-search-results__featured-image--empty p {
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .hs-search-results__listing li {
    flex-flow: row wrap;
  }

  .hs-search-results__featured-image-wrapper {
    max-width: 100%;
    margin-right: 0;
    flex-basis: 100%;
  }

  .hs-search-results__featured-image--empty {
    height: auto;
    width: 100%;
    min-width: 100%;
    margin-right: 0;
  }
}

/* stylelint-disable declaration-no-important */
.show-for-sr {
  position: absolute !important;
  overflow: hidden !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    position: absolute !important;
    overflow: hidden !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }
}
/* stylelint-enable declaration-no-important */
.HeaderSearch {
    display: block;
    overscroll-behavior: contain;
    top: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 20;
    padding: 15px var(--edge-spacing);
    height: calc(100vh - 143px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    overflow: hidden;
}

.HeaderSearch--active {
    pointer-events: all;
    opacity: 1;
}

.HeaderSearch__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.8;
}

.HeaderSearch__bar {
    display: flex;
    gap: 20px;
    align-items: center;
}

.HeaderSearch__container {
    transform: translateY(calc(-100% - 15px));
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.HeaderSearch--active .HeaderSearch__container {
    transform: translateY(0);
}

.HeaderSearch__barSpacer {
    width: 3px;
    height: 53px;
    background-color: var(--primary-color);
    margin: 10px 0px;
}

.HeaderSearch__close {
    background: #fff;
    color: var(--primary-color);
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    flex: 0 0 auto;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border: 0px;
}

.HeaderSearch__close:hover {
    background-color: var(--secondary-color);
}

.HeaderSearch__result {
    display: none;
    justify-content: flex-start;
    gap: 55px;
}

.HeaderSearch__results {
  overflow: hidden;
  width: 40%;
}

.HeaderSearch__results--fixed {
  min-width: 300px;
  width: auto;
  flex: 0 1 auto;
  border-right: 5px solid var(--secondary-color);
}

.hs-search-field--open .HeaderSearch__result {
    display: flex;
}

.HeaderSearch__resultsTitle {
    margin-bottom: 20px;
}

.HeaderSearch__results ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.HeaderSearch__results li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.HeaderSearch__results li a {
    text-decoration: none;
    font-weight: 400;
}

.HeaderSearch__results li a:hover {
    outline: none;
}

.HeaderSearch__results li a:hover {
    text-decoration: underline;
}

.hs-search-field__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    font-size: 30px;
    padding: 0;
}

.hs-editor-hide-until-active {
  display: none;
}

.inpage-editor-active-field .hs-editor-hide-until-active {
  display: block;
}

.hs-search-field {
    width: 100%;
}

.hs-search-field__bar {
    position: relative;
    width: 100%;
}

.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
  flex: 1;
}

.hs-search-field__bar button svg {
  height: 10px;
}

.hs-search-field__suggestions {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hs-search-field--open .hs-search-field__suggestions,
.inpage-editor-active-field .hs-search-field__suggestions {
  width: 100%;
}

.hs-search-field__suggestions li {
  display: block;
  padding: 0;
  margin: 0;
}

.results-for {
  display: none;
}

.hs-search-field__suggestions .results-for {
  font-weight: bold;
  display: none;
}

.hs-search-field__suggestions a,
.hs-search-field__suggestions .results-for {
  display: block;
  padding: 0 10px;
  line-height: 1.7rem;
}

.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  outline: none;
}

.hs-search-field__input:focus {
  outline-style: none;
}

.hs-search-field__suggestions-container {
    position: relative;
    flex-basis: 100%;
    background-color: #fff;
    border-radius: 60px;
    padding: 40px 60px;
    width: calc(100% - 80px);
}

.hs-search-field__form {
    display: flex;
    background-color: #fff;
    border-radius: 40px;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    gap: 30px;
}

.hs-search-field__label i {
    font-size: 30px;
}

.HeaderSearch .hs-search-field__label {
    margin: 0px;
}

.HeaderSearch .hs-search-field__input {
    padding: 0px;
    border: 0px;
    font-size: 25px;
    height: 50px;
}

.hs-search-field__bar--button-beneath .hs-search-field__input {
  flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__suggestions-container {
  min-width: 75%;
  flex-basis: auto;
  flex-grow: 1;
}

.hs-search-field__button--labelled .hs_cos_wrapper_type_icon {
  margin-right: 0.5rem;
}

/* stylelint-disable declaration-no-important */
.show-for-sr {
  position: absolute !important;
  overflow: hidden !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}
/* stylelint-enable declaration-no-important */

.hs-search-field__view-more {
    margin-top: 20px;
}

.hs-search-field__view-more-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

@media (max-width: 1300px) {
  .HeaderSearch__result {
    flex-direction: column;
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .HeaderSearch__results {
    width: 100%;
    overflow: visible;
  }
  
  .HeaderSearch__results li {
    white-space: break-spaces;
  }
}
.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links__icon {
  border-radius: 50%;
  display: inline-flex;
  height: 1.75rem;
  margin: 0 0.35rem;
  position: relative;
  width: 1.75rem;
}

.social-links__icon svg {
  fill: #FFF;
  height: 0.625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.social-links__icon:hover svg,
.social-links__icon:focus svg,
.social-links__icon:active svg {
  fill: #FFF;
}
.Divider {
    text-align: center;
    position: relative;
    padding-top: 30px;
}

.Divider__left {
    height: calc(100% - 30px);
    width: 75%;
    border-radius: 0 60px 0 0px;
    position: absolute;
    bottom: 0;
}

.Divider__right {
    height: 100%;
    width: 75%;
    right: 0;
    border-radius: 60px 0 0 0px;
    position: absolute;
    top: 0;
}

.Divider__title {
    position: relative;
    padding: 20px 0px;
    margin: 0px;
    font-size: var(--medium-heading-font-size);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .Divider__left,
    .Divider__right {
        width: 98%;
    }

    .Divider__left {
        border-radius: 0 30px 0 0px;
    }

    .Divider__right {
        border-radius: 30px 0 0 0px;
    }

    .Divider__title {
        padding: 10px var(--edge-spacing)
    }
}
.SiteBanner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    pointer-events: none;
    gap: 30px;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 10;
}

.SiteBanner__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    transform: translateX(calc(-100% - 35px));
    opacity: 0.1;
    pointer-events: none;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.SiteBanner__wrapper--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.SiteBanner__close {
    background: var(--primary-color);
    color: #fff;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0px 0px 6px #0cf5746e;
    pointer-events: none;
    cursor: pointer;
}

.SiteBanner__wrapper--visible .SiteBanner__close {
  pointer-events: all;
}

.SiteBanner__close:hover {
  color: var(--secondary-color);
}

.SiteBanner__content {
    display: flex;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    padding: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    box-shadow: 0px 0px 6px #0cf5746e;
    pointer-events: all;
    max-width: 620px;
}

@keyframes bannerBoxShadowPulse {
    0% {
        box-shadow: 0px -5px 20px #0cf5746e;
    }
    25% {
        box-shadow: 6px 6px 40px #0cf5746e;
    }
    50% {
        box-shadow: 0px 0px 20px #0cf5746e;
    }
    75% {
        box-shadow: -6px 6px 60px #0cf5746e;
    }
    100% {
        box-shadow: 0px -5px 20px #0cf5746e;
    }
}

.SiteBanner__content--animation {
    animation: bannerBoxShadowPulse 10s infinite;
}

.SiteBanner__contentIcon {
    font-size: 50px;
    color: var(--secondary-color);
}

.SiteBanner__contentText {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.SiteBanner__contentTextTitle {
    font-size: 30px;
    margin: 0px;
    color: #fff;
}

.SiteBanner__contentTextContent {
    font-size: 20px;
}

.SiteBanner__toggles {
    position: absolute;
    bottom: 30px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    overflow: hidden;
    padding: 3px 3px 3px 0px;
}

.SiteBanner__toggle {
    background: var(--primary-color);
    color: #fff;
    border-radius: 0px 30px 30px 0px;
    display: flex;
    padding: 5px 15px 5px 5px;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0px 0px 6px #0cf5746e;
}

.SiteBanner__toggleIcon {
    pointer-events: none;
}

.SiteBanner__toggleArrow {
    width: 0px;
    opacity: 0;
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow:hidden;
    pointer-events: none;
}

.SiteBanner__toggleArrow i {
  padding-left: 10px;  
}

.SiteBanner__toggle:hover {
    color: var(--secondary-color);
}

.SiteBanner__toggle:hover .SiteBanner__toggleArrow {
    width: 23px;
    opacity: 1;
}

.SiteBanner__toggle--hidden {
    transform: translateX(-100%);
    opacity: 0;
}

@media (max-width: 1024px) {
  .SiteBanner {
    display: none;
  }
}

/* External  */
.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.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: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}@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__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}