/* 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.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

/**
 * 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__row {
}

.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__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: 143px;
    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__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__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: flex-start;
    gap: 120px;
    padding: 0px;
}

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

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

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

.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__nav {
        top: 95px;
        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(95px + 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%;
}
.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;
}

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



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

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


@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__navSearch {
        color: #fff;
    }

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

    .header__bottom {
        align-items: center;
    }
}
.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;
}
/* 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;
  }
}