/* Theme base styles */

/* Generic */

:root {
	--ff-text: "Archivo", sans-serif;
	--ff-headings: "Noto Serif", sans-serif;
	--fs-base: 16px;
	--fs-18: 1.125rem;
	--fs-20: 1.25rem;
	--fs-25: 1.5625rem;
	--fs-28: 1.75rem;
	--fs-30: 1.875rem;
	--fs-32: 2rem;
	--clr-black: #000000;

	--container-width: 1350px;
	--container-padding-inline: 1rem;

	--fs-heading4: 25px;
	--fs-heading3: 31px;
	--fs-heading2: 34px;
	--fs-heading1: 38px;
}

@media (min-width: 768px) {
	:root {
		/* changed to min instead of max, which fixed leaders */
		--container-padding-inline: min(calc((100vw - var(--container-width)) / 2), 2rem);
		--fs-heading6: 1.125rem;
		/* 18px */
		--fs-heading5: 1.3125rem;
		/* 20px */
		--fs-heading4: 1.5625rem;
		/* 25px */
		--fs-heading3: 2rem;
		/* 32px */
		--fs-heading2: 2.8125rem;
		/* 45px */
		--fs-heading1: 3.125rem;
		/* 50px */
	}
}

@media (min-width: 767px) and (max-width: 1500px) {
	:root {
		--container-width: 1200px;
		--fs-base: 14px;
		--container-padding-inline: min(calc((100vw - var(--container-width)) / 2), 2rem);
	}
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
html {
    font-weight: 300;
    color: ;
    font-size: var(--fs-base);
    font-family: var(--ff-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100%;
    background-color: ;
  overflow-wrap: break-word;
  word-break: break-word;
}

figure {
    margin: 0;
}

img {
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: underline;
    color: inherit;
}

a:hover {
    transition: all .4s ease;
}

button {
    cursor: pointer;
    font-weight: 700;
}

p,
ul li,
ol li {
}

p, li {
    line-height: 1.9;
}


.content-wrapper {
    max-width: var(--container-width);
    padding-inline: 1.5rem;
    margin-inline: auto;
}

.header__wrapper,
.container,
.dnd-section > .row-fluid {
    max-width: var(--container-width);
    margin-inline: auto;
}

@media( min-width: 1400px ) {
    .container,
    .dnd-section > .row-fluid,
    .content-wrapper,
    .header__wrapper {
        padding-inline: initial;
    }
}

/* Objects */

/* Responsive grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
/* Content wrappers for blog post and system templates */

.content-wrapper {
  padding: 0 20px;
  margin: 0 auto;
}

/* Drag and drop layout styles */

.dnd-section > .row-fluid {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Components */
body {
  line-height: 1.4;
  overflow-wrap: break-word;
  overflow-x: hidden;
  max-width: 100%;
}

html[lang^='ja'] body,
html[lang^='zh'] body,
html[lang^='ko'] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
  font-size: 1rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  padding-left: 1rem;
  margin: 0 0 1.4rem;
}

ul li,
ol li {
  /* margin: 0.7rem; */
}

ul ul,
ol ul,
ul ol,
ol ol {
  /* margin: 1.4rem 0; */
}

.no-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.no-list li {
  margin: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  padding-left: 1rem;
  border-left: 10px solid;
  margin: 0 0 1.4rem;
}

/* Horizontal rules */

hr {
  border: 0 none;
  border-bottom: 1px solid;
}

/* Subscripts and superscripts */

sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Image alt text */

img {
  font-size: 1rem;
  word-break: normal;
}
:root {
    --fs-heading6: 20px;
    --fs-heading5: 21px;
    --fs-heading4: 25px;
    --fs-heading3: 31px;
    --fs-heading2: 34px;
    --fs-heading1: 38px;
}

@media ( min-width: 768px ) {
    :root {
        --fs-heading6: 1.25rem;
        --fs-heading5: 1.3125rem;
        --fs-heading4: 1.5625rem;
        --fs-heading3: 2rem;
        --fs-heading2: 2.8125rem;
        --fs-heading1: 3.125rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-headings);
}

h1 {
    font-size: var(--fs-heading1);
    line-height: 1;
}

h2 {
    font-size: var(--fs-heading2);
    line-height: 1.1;
}

h3 {
    font-size: var(--fs-heading3);
    line-height: 1.09;
}

h4 {
    font-size: var(--fs-heading4);
    line-height: 1.16;
}

.heading-1 {
    line-height: 1;
}

.heading-2 {
    line-height: 1.1;
}

.heading-3 {
    line-height: 1.09;
}

.heading-4 {
    line-height: 1.16;
}

.heading-5 {
    line-height: 1.16;
}
/* Primary button */

button,
.button,
.hs-button,
.cta_button {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  transition: color 0.15s linear;
  white-space: normal;
}

/* Simple button */

.button.button--simple {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.button.button--simple:hover,
.button.button--simple:focus {
  border: none;
  background-color: transparent;
}

/* Disabled button */

button:disabled,
.button:disabled,
.hs-button:disabled,
.cta_button:disabled {
  border-color: #f1f1f1;
  background-color: #f1f1f1;
  pointer-events: none;
}

button:disabled,
.button:disabled,
.button.button--secondary:disabled,
.button.button--simple:disabled {
  color: #d0d0d0;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  background: none;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: none;
  transition: none;
}

/* Button icons */

.button .button__icon svg {
  display: block;
  height: 1.25rem;
  margin-right: 1rem;
  fill: inherit;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .button .button__icon svg {
    width: 1.25rem;
  }
}

.button--icon-right .button__icon {
  order: 1;
}

.button--icon-right .button__icon svg {
  margin-right: 0;
  margin-left: 1rem;
}
/* Form title */

.form-title {
  margin: 0;
}

.form-title ~ div > form {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Labels */

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

/* Form fields */

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


form input[type='text'],
form input[type='email'],
form input[type='password'],
form input[type='tel'],
form input[type='number'],
form input[type='file'],
form input[type='search'],
form select,
form textarea {
  display: inline-block;
  width: 100% !important; /* stylelint-disable-line declaration-no-important */
}

form fieldset {
  max-width: 100% !important; /* stylelint-disable-line declaration-no-important */
}

/* Form fields - checkbox/radio */

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

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

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

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

/* Form fields - date picker */

form .hs-dateinput {
  position: relative;
}

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

form .is-selected .pika-button {
  border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
  box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
}

form .fn-date-picker .pika-button:hover,
form .fn-date-picker .pika-button:focus {
  border-radius: 0 !important; /* stylelint-disable-line declaration-no-important */
}

/* Form fields - file picker */

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

/* Headings and text */

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

form .hs-richtext img {
  height: auto;
  max-width: 100% !important; /* stylelint-disable-line declaration-no-important */
}

/* GDPR */

form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 1rem !important; /* stylelint-disable-line declaration-no-important */
}

/* Validation */

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

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

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

/* Submit button */

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

.grecaptcha-badge {
  margin: 0 auto;
}

form .hs-input.error{
border-color: #ff0031;
}
form .input {
 position: relative; 
}
form .showfeedback .input:before{
    content: "✓";
}
form .showerror .input:before,
form .showfeedback .input:before{
 width: 10px;
  height: 10px;
  color:  #0ABC25;
  position: absolute;
  margin-top: -20px;
  right: 10px;
}
form .hs-phone .input.showerror:before,
form .showerror .input:before{
      content: url("data:image/svg+xml;charset=utf-8, <svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='15' height='15' viewBox='0 0 50 50' fill='#ff0031'><path d='M 9.15625 6.3125 L 6.3125 9.15625 L 22.15625 25 L 6.21875 40.96875 L 9.03125 43.78125 L 25 27.84375 L 40.9375 43.78125 L 43.78125 40.9375 L 27.84375 25 L 43.6875 9.15625 L 40.84375 6.3125 L 25 22.15625 Z'></path></svg>")  !important;
}
form .hs-phone .input.showerror:before {
right: 0;
    position: absolute;
    top: -20px;
}


form input:focus-visible {
outline-color: #ADADAD5D;
}

/* hide requiered star */

.hs-form-required {
  display: none;
}

.hs-input[type=checkbox] {
  width: 1.25rem !important;
}

.legal-consent-container .hs-richtext p,
.legal-consent-container .hs-richtext {
  margin-bottom: 5px;
  line-height: 1rem;
}

.legal-consent-container .hs-form-booleancheckbox-display {
  margin-bottom: 30px;
}

.legal-consent-container .hs-form-booleancheckbox-display span {
  line-height: 1rem;
}

.legal-consent-container .hs-form-booleancheckbox-display p {
  line-height: 1rem;
}

.legal-consent-container .hs-input[type=checkbox] {
  appearance: auto;
  width: 0.8rem !important;
  margin-top: 0;
  margin-right: 0;
}
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook-f:before {
  content: "\e92e";
}

.icon-instagram1:before {
  content: "\e92f";
}

.icon-linkedin-in:before {
  content: "\e930";
}

.icon-twitter:before {
  content: "\e931";
}

.icon-youtube:before {
  content: "\e92d";
}

.icon-minus1:before {
  content: "-";
}

.icon-plus1:before {
  content: "+";
}

.icon-minus:before {
  content: "\e92b";
}

.icon-plus:before {
  content: "\e92c";
}

.icon-quote-right:before {
  content: "\e900";
}

.icon-quote-left:before {
  content: "\e901";
}

.icon-cloud-arrow-down:before {
  content: "\e902";
}

.icon-newspaper:before {
  content: "\e903";
}

.icon-camcorder:before {
  content: "\e904";
}

.icon-file-certificate:before {
  content: 🗎;
}

.icon-users-between-lines:before {
  content: "\e906";
}

.icon-users:before {
  content: "\e907";
}

.icon-circle-heart:before {
  content: "\e908";
}

.icon-gift:before {
  content: "\e909";
}

.icon-circle-info:before {
  content: "\e90a";
}

.icon-money-check-dollar-pen:before {
  content: "\e90b";
}

.icon-location-dot:before {
  content: "\e90c";
}

.icon-circle-play:before {
  content: "\e90d";
}

.icon-play:before {
  content: "\e90e";
}

.icon-hand-holding-heart:before {
  content: "\e90f";
}

.icon-memo:before {
  content: "\e910";
}

.icon-hourglass-clock:before {
  content: "\e911";
}

.icon-hourglass:before {
  content: "\e912";
}

.icon-database:before {
  content: "\e913";
}

.icon-phone:before {
  content: "\e914";
}

.icon-envelope:before {
  content: "\e915";
}

.icon-book:before {
  content: "\e916";
}

.icon-book-heart:before {
  content: "\e917";
}

.icon-calendar-clock:before {
  content: "\e918";
}

.icon-chevron-up:before {
  content: "\e919";
}

.icon-chevron-down:before {
  content: "\e91a";
}

.icon-chevron-right:before {
  content: "\e91b";
}

.icon-chevron-left:before {
  content: "\e91c";
}

.icon-check:before {
  content: "✓";
}

.icon-arrow-left:before {
  content: "🡠";
}

.icon-arrow-left-long:before {
  content: "🡠";
}

.icon-arrow-right:before {
  content: "🡢";
}

.icon-arrow-right-long:before {
  content: "🡢";
}

.icon-apple-pay:before {
  content: "\e922";
}

.icon-cc-amex:before {
  content: "\e923";
}

.icon-cc-apple-pay:before {
  content: "\e924";
}

.icon-cc-mastercard:before {
  content: "\e925";
}

.icon-cc-paypal:before {
  content: "\e926";
}

.icon-cc-visa:before {
  content: "\e927";
}

.icon-amazon-pay:before {
  content: "\e928";
}

.icon-facebook:before {
  content: "\ea90";
}


/* Icon wrapper */
.icon {
  display: inline-flex;
  border-radius: 50%;
}

.icon--square .icon {
  border-radius: 0;
}

.icon svg {
  vertical-align: middle;
}

/* Icon */

/* css for HubSpot icons */
.hs_cos_wrapper_type_icon svg {
  width: 25px;
  display: inline-block;
  height: 28px;
  fill: #734e36;
  position: relative;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

th,
td {
  padding: 0.7rem;
  vertical-align: top;
  padding: 10px;

  border: 1px solid #d7d9e3;

}

/* Table header */

thead th,
thead td {
  vertical-align: bottom;
  color: #231f20;
  background-color: #734e36;
}

/* Table body */

tbody td {
  color: #231f20;
  background-color: #f8f8f8;
}

/* Table footer */

tfoot td {
  color: #231f20;
  background-color: #d7d9e3;
}
/* Card */

.card {
  border: 0;
}

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

.blog-listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1200px){
  .blog-listing{
    padding: 0 1.875rem;
  }
}
.blog-listing--3-col,
.blog-listing--4-col {
  justify-content: flex-start;
}

/* Section heading */

.blog-listing__heading {
  width: 100%;
  margin-bottom: 2.2rem;

}
.bloglisting h3,
.blog__menu a {
}

/* Article */

.blog-listing__post {
  display: flex;
  width: 100%;
  padding: 0;
  margin-bottom: 2.8rem;
  flex-direction: column;
}

.blog-listing__post-inner-wrapper {
  display: flex;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}

/* Featured image */

.blog-listing__post-image-wrapper {
  display: flex;
}

.blog-listing__post-image {
  height: auto;
  width: 100%;
}

/* Content */

.blog-listing__post-content {
  display: flex;
  padding: 0.7rem 0 0;
  flex-direction: column;
  flex-grow: 1;
}

.card--dark .blog-listing__post-content,
.card--light .blog-listing__post-content {
  padding: 1.4rem;
}

/* Heading */

.blog-listing__header {
  margin-bottom: 1.05rem;
}

/* Tags */

.blog-listing__post-tags {
  margin-bottom: 0.7rem;
}

.blog-listing__post-tag,
.blog-listing__post-tag:hover,
.blog-listing__post-tag:focus,
.blog-listing__post-tag:active {
  text-decoration: none;
}

/* Title */

.blog-listing__post-title {
  margin-bottom: 0.7rem;
}

/* Author */

.blog-listing__post-author {
  display: flex;
  margin-bottom: 0.7rem;
  align-items: center;
}

.blog-listing__post-author-image {
  height: auto;
  width: 50px;
  margin-right: 0.7rem;
}

.blog-listing__post-author-name,
.blog-listing__post-author-name:hover,
.blog-listing__post-author-name:focus,
.blog-listing__post-author-name:active {
  text-decoration: none;
}

/* Date */

.blog-listing__post-timestamp {
  display: block;
  margin-bottom: 0.35rem;
}

/* Button */

.blog-listing__post-button-wrapper {
  margin-top: auto;
}

/* Blog listing - basic grid */

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

.blog-listing--2-col .blog-listing__post {
  width: calc(50% - 1rem);
}

.blog-listing--3-col .blog-listing__post {
  width: calc(33.3% - 1rem);
}

.blog-listing--4-col .blog-listing__post {
  width: calc(25% - 1rem);
}

.blog-listing--3-col .blog-listing__post:nth-of-type(3n + 1),
.blog-listing--3-col .blog-listing__post:nth-of-type(3n + 2) {
  margin-right: 1.5rem;
}

.blog-listing--4-col .blog-listing__post:nth-of-type(4n + 1),
.blog-listing--4-col .blog-listing__post:nth-of-type(4n + 2),
.blog-listing--4-col .blog-listing__post:nth-of-type(4n + 3) {
  margin-right: 1.333rem;
}

@media (max-width: 767px) {
  .blog-listing .blog-listing__post {
    width: 100%;
    margin-right: 0 !important; /* stylelint-disable-line declaration-no-important */
  }
}

.blog-listing--card .blog-listing__post-image-wrapper {
  height: 200px;
}

.blog-listing--card .blog-listing__post-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .blog-listing--card .blog-listing__post-image-wrapper,
  .blog-listing--card .blog-listing__post-image {
    height: auto;
  }
}

/* Blog listing - side by side */

/* stylelint-disable no-descending-specificity */
.blog-listing--list .blog-listing__post {
  display: flex;
}
/* stylelint-enable no-descending-specificity */

.blog-listing--list .blog-listing__post-image-wrapper {
  width: 100%;
}

.blog-listing--list .blog-listing__post-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .blog-listing--list .blog-listing__post-image-wrapper,
  .blog-listing--list .blog-listing__post-image {
    height: auto;
  }
}

@media (min-width: 768px) {
  .blog-post-listing__post--list {
    flex-direction: row;
  }

  .blog-listing__post-content--list {
    order: 1;
  }

  .blog-post-listing__post-image-wrapper--list {
    order: 1;
  }

  .blog-post-listing__post-image-wrapper--right {
    order: 2;
  }

  .blog-listing--list .blog-listing__post-image-wrapper {
    width: 25%;
  }

  .blog-listing--list .blog-post-listing__post-image-wrapper--left {
    margin-right: 1.4rem;
  }

  .blog-listing--list .blog-post-listing__post-image-wrapper--right {
    margin-left: 1.4rem;
  }
}


/* pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
}
ul.pagination {
  margin-top: 40px;
}
.pagination li span,
.pagination li a,
.pagination__link {
  display: flex;
  margin: 0 0.35rem;
  align-items: center;
  width: 50px;
  height: 50px;
  justify-content: center;
  border: solid 1px #00000022;
  border-radius: 3px;
  background-color: #fff;
}
.pagination li span,
.pagination li a {
  margin: 0 0.5rem;
}

.pagination li a,
.pagination li a:hover,
.pagination li a:focus,
.pagination li a:active,
.pagination__link,
.pagination__link:hover,
.pagination__link:focus,
.pagination__link:active {
  text-decoration: none;
}
.pagination .disabled,
.pagination .disabled:hover,
.pagination .disabled:focus,
.pagination .disabled:active,
.pagination__link--disabled,
.pagination__link--disabled:hover,
.pagination__link--disabled:focus,
.pagination__link--disabled:active {
  display: none;
  cursor: default;
  pointer-events: none;
}

.pagination li .current {
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 3px;
}
/* nog doen */

.pagination .prev, .pagination .next,
.pagination__link--first,
.pagination__link--prev {
  margin-right: 0.7rem;
}
.pagination .prev,
.pagination__link--first {
  margin-left: 0;
}

.pagination__link--first .pagination__link-icon,
.pagination__link--prev .pagination__link-icon {
  margin-right: 0;
}


.pagination a:hover,
.pagination__link--active, .pagination__link:hover{
  border-style: solid;
  border-width: 1px;
  background: #000;
  color: #FFF !important;
}
.pagination .prev, .pagination .next,
.pagination__link--next, .pagination__link--prev {
  background: transparent;
  border: none;
}
.pagination li .prev:hover, .pagination li .next:hover,
.pagination__link--next:hover, .pagination__link--prev:hover{
  background: transparent;
  border: none;
  color: #00000022 !important;
}

.pagination .prev:after,
.pagination .next:after,
.pagination__link--next span:after,
.pagination__link--prev span:after{
  font-size: 20px;
  font-weight: 300;
}
.pagination .prev:after,
.pagination__link.pagination__link--prev .pagination__link-icon:after{
  content: "🡠";
}

.pagination .next:after,
.pagination__link.pagination__link--next .pagination__link-icon:after{
  content: "🡢";
}
.pagination .prev,
.pagination .next{
  font-size: 0;
}

.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_icon.pagination__link-icon svg{
  display: none;
}


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

.card-blog__wrapper div{
  justify-content: flex-start;
}

.card-blog__image{
  height: 250px;
  border-radius: 5px 5px 0 0;
}

.card-blog__content{
  padding: 0;
  margin-top: 20px;
}

@media (min-width: 768px){
  .card-blog__bottom{
    padding-inline: 2.5rem;
  }
}

.card-blog__bottom:before{
  font-weight:300;
}

.card-blog__content{
  font-weight: 300;
}
/* Logo */

.widget-type-logo img {
  height: auto;
  max-width: 100%;
  margin-bottom: 1.4rem;
}

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  padding-left: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
}

.hs-menu-wrapper li {
  margin: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper li {
    margin-bottom: 1.4rem;
    text-align: center;
  }
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

/* prettier-ignore */
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
.hs-item-has-children:hover
> .hs-menu-children-wrapper {
  top: 100%;
  left: 0;
  opacity: 1;
}

/* prettier-ignore */
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts
.hs-item-has-children:hover
> .hs-menu-children-wrapper {
  top: 0;
  left: 100%;
  opacity: 1;
}

@media (max-width: 767px) {
  /* prettier-ignore */
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
  .hs-item-has-children:hover
  > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts
  .hs-item-has-children:hover
  > .hs-menu-children-wrapper {
    position: relative;
    top: auto;
    left: 0;
    opacity: 1;
  }
}

/* Rich text */

.widget-type-rich_text img {
  height: auto;
  max-width: 100%;
}
/* Legacy .cta_button: colors, padding, and radius come from theme-overrides.css */

.cta_button {
  text-decoration: none;
}

.cta_button:hover {
  transition: color 0.15s linear;
}
.breadcrumbs ul {
    display: flex;
    padding-inline: 0;
  margin-bottom: 0;
}

.breadcrumbs ul li{
    list-style-type: none;
    padding-inline: 0;
    margin-inline: 0;
    cursor: pointer;
}
.breadcrumbs ul li:before{
 content: ""; 
}

.breadcrumbs ul li a {
    text-decoration: none;
}

.breadcrumbs ul li a:hover {
    text-decoration: underline;
}

.breadcrumbs ul li:not(:last-child) a:after { 
    content: '/';
    padding: 0 3px;
}

.breadcrumbs__container .breadcrumbs {
  position: relative;
}
.breadcrumbs__container .breadcrumbs ul {
  position: absolute;
  top: 25px;
  left:0;
}
.breadcrumbs__container.breadcrumbs ul {
 margin-bottom: 0; 
}

.bloglisting {
  position: relative;
  background-color: #f8f8f8;
}

@media (max-width: 1200px) {
  .coach .breadcrumbs__wrapper,
  .bloglisting .breadcrumbs__wrapper,
  .bloglisting .row-number-2 {
    padding-inline: 1.875rem;
  }
}
.card-program {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  margin-bottom: 2.375rem;
      overflow: hidden;
    box-shadow: 0 0 35px #00000024;
    border-radius: 5px;
    background-color: var(--clr-white);
}

@media (min-width: 768px) {
    .card-program {
        flex-wrap: nowrap;
    }
}

.card-program__content {
  padding: 2.25rem 3.375rem 2.5rem 1.5rem;
    width: 100%;
    position: relative;
}
.card-program__content ul {
  list-style-type: none;
  padding-left: 1.4rem;
}
.card-program__content ul li {
  position: relative;
}
.card-program__content ul li:before {
    color: #734e36;
    content: "🗎";
    left: -1.4rem;
    padding-right: 1rem;
    position: absolute;
}
@media (min-width: 768px) {
    .card-program__content {
        padding-left: 2.5rem;
        width: initial;
        flex: 2;
    }
}

@media (min-width: 768px) {
    .card-program__content::after {
        content: '';
        position: absolute;
        right: 0px;
        top: 2.2rem;
        width: 1px;
        background-color: var(--clr-gray);
        height: calc(100% - 4.4rem);
    }
}

.card-program__title {
    line-height: calc(29 / 25);
    margin: 0px;
}

.card-program__summary {
    line-height: calc(30 / 16);
    padding-top: 0.625rem;
    padding-bottom: 1.400rem;
    margin: 0px;

}

.card-program__button {
    display: flex;
    flex-direction: row;
}

.card-program__right {
    padding-bottom: 1.813rem;
    padding-top: 1rem;
    padding-inline: 1.25rem;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .card-program__right {
        padding-top: 3rem;
        width: initial;
        flex: 1;
    }
}

.card-program__quote {
    line-height: calc(30 / 20);
    text-align: center;
    padding-bottom: 1.5rem;
    position: relative;
}

.card-program__quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 5rem;
    height: 1px;
    background-color: #734e36;
    margin-inline: auto;
    inset-inline: 0;
}

.card-program__author {
    padding-top: 1.5rem;
    line-height: calc(30 / 16);
}

.card-program__image {
    position: relative;
    min-width: 14rem;
    min-height: 250px;
    width: 100%;
}

@media (min-width: 768px) {
    .card-program__image {
        width: initial;
    }
}

.card-program__image img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card-program__content .card-program__cta{
  display: flex;
  }

 .card-program__investment{
    display: grid;
   grid-template-columns: auto auto auto auto;
   margin-left: 2.75rem;
   align-items: center;
   column-gap: 12px;
    row-gap: 3px;
  }
.card-program__investment:before{
	background-image: url("data:image/svg+xml,%3Csvg version='1.0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' aria-hidden='true'%3E%3Cg id='Coins1_layer'%3E%3Cpath fill='%23c3b496' d='M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  content: '';
  width: min-content;
    justify-self: end;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}
.card-program__investment h3{
text-decoration: line-through;
  text-decoration-color: #ffcd00;
}
.card-program__investment{
}
.card-program__investment p{
  grid-column-start: 2;
    grid-column-end: 5;
}
.card-program__investment *{
  margin: 0;
}

.card-program__learn-more{
margin-top: 1rem;
  display: block;
}

p.card-program__learn-more{
 margin-bottom: 0; 
}

.card-program__right{
padding-bottom: 1.813rem;
}

.programs__text .center,
.programs__title .center {
 max-width: 890px;
  margin: 0 auto;
   text-align: center;
}
.programs__text {
 margin-bottom: 50px; 
}
@media (min-width: 768px) and (max-width: 1200px){
.programs {
 padding: 0 2rem;
}
}

@media only screen and (max-width: 768px){
  .programs{
  padding: 2.9375rem 1rem 3.125rem 1rem;
  }
  .programs .programs__title{
    padding-block: 0;
    margin: 0 1.875rem 2.1875rem;
    text-align: center;
    line-height: 2.143rem;
    font-size: 1.875rem;
  }
  .programs .card-program{
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 0 35px #00000024;
  }
  .programs .card-program:last-of-type{
  margin-bottom: 0;
  }
}


.card-program__right{
padding-bottom: 1.813rem;
}

.programs__text .center,
.programs__title .center {
 max-width: 890px;
  margin: 0 auto;
   text-align: center;
}
.programs__text {
 margin-bottom: 50px; 
}
@media (min-width: 768px) and (max-width: 1200px){
.programs {
 padding: 0 2rem;
}
}

@media only screen and (max-width: 768px){
  .programs{
  padding: 2.9375rem 1rem 3.125rem 1rem;
  }
  .programs .programs__title{
    padding-block: 0;
    margin: 0 1.875rem 2.1875rem;
    text-align: center;
    line-height: 2.143rem;
    font-size: 1.875rem;
  }
  .programs .card-program{
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 0 35px #00000024;
  }
  .programs .card-program:last-of-type{
  margin-bottom: 0;
  }
}




@media only screen and (max-width: 768px){
  .card-program__image{
   height: 12.5rem;
    min-height: 12.5rem;
  }
  .card-program__image img{
  height: 100%;
  }
  
  .card-program__content{
  padding: 2rem 1.875rem;
  }
  .card-program__content .card-program__title{
  font-size: 1.786rem;
   line-height: 2.07rem;
  }
 
  
  .card-program__content .card-program__summary{
    padding: 0;
    margin: 1.1875rem 0 1.5625rem 0;
    font-size: 1rem;
    line-height: 1.5625rem;
  }
  
    .card-program__content .card-program__cta{
    flex-direction: column;
  }
    .card-program__investment{
  margin-left: 0;
    margin-top: 1rem;
  }
  
  
  .card-program__button a{
  font-size: 1.143rem;
    padding: 0.875rem 1.25rem;
  }
  
  .card-program__right{
  display: none;
  }
}
.contact-block__box {
    display: flex;
    flex-direction: row;
    margin-bottom: 2.5rem;
}

.icon-box {
    width: 35px;
    height: 34px;
    border-radius: 5px;
    margin-right: 0.625rem;
    position: relative;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  text-decoration: none;
}

.icon-box::after {
    padding-right: 0rem;
    position: absolute;
    color: #000000;
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-box--youtube::after {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/0/09/YouTube_full-color_icon_%282017%29.svg");
    width: 20px;
    height: 15px;
}


.icon-box--linkedin::after {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/8/81/LinkedIn_icon.svg");
    width: 20px;
    height: 20px;
}

.icon-box--twitter::after {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/5/53/X_logo_2023_original.svg");
    width: 20px;
    height: 20px;
}

.icon-box--facebook::after {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/b/b8/2021_Facebook_icon.svg");
    width: 20px;
    height: 20px;
}


.icon-box--whatsapp::after{
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/1/19/WhatsApp_logo-color-vertical.svg");
    width: 20px;
    height: 20px;
}

.icon-box--tiktok::after{
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/a/a6/Tiktok_icon.svg");
    width: 20px;
    height: 20px;
}
.contact-block__links {
    padding-block: 2rem;
    position: relative;
}

.contact-block__icon {
    position: relative;
    padding-block: 0.5rem;
}

.contact-block__social {
    padding-top: 1.5rem; 
}
.card-testimonial {
    background-color: #f8f8f8;
    border: 1px solid #d7d9e3;

    border-radius: 0px;
    text-align: center;
    position: relative;
    padding: 1rem 2rem;
    margin-top: 4rem;
    height: unset;
    color: #231f20;
}

.card-testimonial h4 {
    margin: 0;
}

.card-testimonial__title p {
    margin: 0 0 0.7rem;
}

.card-testimonial__avatar {
    margin: -3.6rem auto 1rem;
}

.card-testimonial__avatar img {
    width: 6.25rem;
  height: 6.25rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.card-testimonial__logo img {
    max-width: 150px;
    height: auto;
}

.card-testimonial__hrline {
    border: 1px solid;
    width: 90%;
    border-radius: 5px;
}

.card-testimonial__quote p {
    line-height: 1.4;
}

.testimonial-link {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 30px;
}

.testimonial-link a {
    flex-direction: row-reverse;
}

.swiper-alternative .card-testimonial{
 height: calc(100% - 4rem);
}

.card-testimonial.big {
}
.big h4 {
}

.card-testimonial__link {
    text-align: right;
}
.card-testimonial__link:after {
    content: "🠊";
    color: #734e36;
    text-align: right;
    font-size: 22px;
}





/* Templates */
.blog-post__wide-image img {
 width: 100%; 
}
.blog-post__body h1 {
    margin-top: 50px; 
  text-align: center;
}



.blog-post__body div {
 display: inline-block; 
}
.hs-blog-post .content-wrapper {
 padding: 0; 
}

/* Date */

.blog-post__timestamp {
  display: block;
  margin-bottom: 0.7rem;
}

/* Author */

.blog-post__author {
  display: flex;
  margin-bottom: 1.4rem;
  align-items: center;
}

.blog-post__author-image {
  height: auto;
  width: 50px;
  margin-right: 0.7rem;
}

.blog-post__author-name,
.blog-post__author-name:hover,
.blog-post__author-name:focus,
.blog-post__author-name:active {
  text-decoration: none;
}

/* Content */

.blog-post__body img {
  height: auto;
  max-width: 887px !important;
  margin-right: 30px;
  margin-bottom: 80px;
}
@media (max-width: 768px){
  .blog-post__body img {
  margin-bottom: 20px;
    margin-right: 0;
}
}
.blog-post__body img[style*="float: right"] {
    margin-left: 30px;
    margin-right: 0px;
}

/* Comments */

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus,
.blog-comments .comment-reply-to:active {
  background-color: transparent;
  text-decoration: underline;
}


.blog-post__body ul {
 position: relative; 
  list-style: none;
  margin-left: 15px;
}
.blog-post__body ol {
   margin-left: 15px;
}
.blog-post__body ul li {
  padding-left: 17px
}  
.blog-post__body li:marker {
  display: none;
}

.blog-post__body ul li:before {
  color: #000000;
    content: "✓";
    font-family: icomoon;
    left: 0;
    position: absolute;  
  }

.blog-post-section .card-blog {
padding-bottom: 3.75rem;  
}

@media only screen and (max-width: 1350px){
  .blog-post-section .card-blog,
  .blog-post__meta,
  .blog-post__body {
padding: 0 1.875rem;
  }
}
@media only screen and (max-width: 768px){
.blog-post-section .blog-post .blog-post__body img{
  width: 100% !important;
  }
}

@media screen and (max-width: 1350px) and (min-width: 768px){
  .blog-post-section .blog-post .blog-post__body img{
  width: 50% !important;
  }
}
/* System pages */

.systems-page {
  margin: 0 auto;
  max-width: 700px;
  padding: 5rem 1.4rem;
}

.systems-page--search-results {
  max-width: 100%;
}

/* Input error messages */

.form-input-validation-message ul.hs-error-msgs {
  margin: 0;
  padding-left: 0;
}

.form-input-validation-message ul.hs-error-msgs li {
  margin: 0;
}

/* Membership pages */

.systems-page .form-container {
  margin-bottom: 1.4rem;
}

#hs-membership-password-requirements ul {
  margin-bottom: 1.4rem;
  padding-left: 0;
}

#hs-membership-password-requirements ul li {
  line-height: 1.4;
  margin: 0;
}

.systems-page .hs-login-widget-show-password,
.systems-page .hs-register-widget-show-password,
.systems-page .hs-reset-widget-show-password {
  display: block;
  margin-bottom: 0.7rem;
}

.systems-page #hs-login-widget-remember,
.systems-page #hs-login-widget-remember ~ label {
  display: inline-block;
  margin-bottom: 0;
}

.systems-page #hs_login_reset {
  display: block;
  margin-bottom: 0.7rem;
}

/* Membership logout */

.membership-page--spaced {
  margin: 100px;
}
/* System pages */

.systems-page {
  margin: 0 auto;
  max-width: 700px;
  padding: 2.8rem 1.4rem;
}

/* Password Prompt */

.password-prompt input[type='password'] {
  height: auto !important; /* stylelint-disable-line declaration-no-important */
  margin-bottom: 1.4rem;
}
/* Error pages */

.error-page-section {
  height: 100%;
  max-width: 100%;
  background-color: #f8f8f8;
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
}

.error-page {
  position: relative;
  padding: 9.8rem 0;
  text-align: center;
}

.error-picture h1 {
  display: inline-block;
    font-size: 200px;
    color: ;
}

@media (max-width: 768px) {
  .error-picture h1 {
    font-size: 100px;
  }
}

.error-page:before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #f3f6f9;
  content: attr(data-error);
  font-size: 40vw;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}

/* System pages */

.systems-page {
  max-width: 700px;
  padding: 2.8rem 1.4rem;
  margin: 0 auto;
}

.systems-page--search-results {
  max-width: 100%;
}

.systems-page .success {
  display: inline-block;
  width: 100%;
  padding: 0.35rem 0.7rem;
  border: 1px solid #4f7d24;
  margin: 1.4rem 0;
  background-color: #cde3cc;
  color: #4f7d24;
}

/* Search pages */

.hs-search-results__title {
  margin-bottom: 0.35rem;
  font-size: 1.5rem;
  text-decoration: underline;
}

.hs-search-results__description {
  padding-top: 0.7rem;
}

/* Backup unsubscribe */

.backup-unsubscribe #email-prefs-form div {
  padding-bottom: 0 !important; /* stylelint-disable-line declaration-no-important */
}

.backup-unsubscribe input[type='email'] {
  margin-bottom: 1.4rem;
}

/* Subscription preferences */

form#email-prefs-form .header {
  background-color: transparent;
}

form#email-prefs-form .item.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

form#email-prefs-form .item.disabled input:disabled {
  cursor: not-allowed;
}

/* Input error messages */

.form-input-validation-message ul.hs-error-msgs {
  padding-left: 0;
  margin: 0;
}

.form-input-validation-message ul.hs-error-msgs li {
  margin: 0;
}

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

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

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

@media (max-width: 768px){
  .padding-mobile {
  padding-inline: 1.875rem;
  }
}
/* stylelint-enable declaration-no-important */

/* Layouts */
/* Navigation skipper */

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

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

.header {
	position: relative;
	z-index: 500;
	box-shadow: 0 3px 6px #0000000b;
}

.header__bottom {
}

.header__logo {
	margin-block: 1.1rem 0;
}

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

	.header__menu-toggle--close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2.75rem;
		height: 2.75rem;
		border-radius: 50%;
		background-color: #f3f4f6;
		margin-left: auto;
		margin-right: 1.25rem;
		margin-top: 1.25rem;
		margin-bottom: 0.5rem;
		transition: background-color 200ms ease;
	}

	.header__menu-toggle--close:hover,
	.header__menu-toggle--close:focus {
		background-color: #e5e7eb;
	}

	.header__menu-toggle--close.no-button {
		padding: 0;
	}

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

	.header__menu-toggle--open {
		order: 2;
		overflow: hidden;
	}

	.header__menu-toggle--open pre {
		font-family: inherit;
		white-space: nowrap;
		overflow: hidden;
	}

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

@media (min-width: 900px) {
	.header__logo-col {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}
	.header__menu .hs_cos_wrapper_type_cta {
		display: flex;
		margin-top: 6px;
	}
	.header__wrapper {
		display: flex;
		min-height: 1px;
		justify-content: space-between;
	}
	.header__menu--desktop {
		display: grid;
		grid-template-columns: 4fr 100px auto;
	}
	.header__menu--desktop .btn__login,
	.header__menu--desktop .header__menu-wrapper {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
		gap: 1rem;
	}

	.header__menu-col {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.header__menu-toggle--open {
		display: none;
	}

	.header__menu-toggle--close {
		display: none;
		z-index: 99;
	}

	.header__menu--mobile {
		position: absolute;
		display: none;
	}

	.header__menu--desktop a {
		text-decoration: none;
	}
}

/* Layout */

.header__container {
	position: relative;
}

.header__wrapper {
	display: flex;
	margin: 0 auto;
	align-items: center;
	position: relative;
	justify-content: space-between;
}

.header__top {
	padding: 0.7rem 0;
}

.header__bottom {
	padding: 0;
}

@media (max-width: 900px) {

	.header__bottom {
		padding: 0;
	}

	.header__menu-wrapper {
		flex-grow: 1;
		padding-top: 0.5rem;
		text-align: left;
	}

	.header__wrapper {
		padding-inline: 1.5rem;
	}

	.header__menu--desktop .hs-cta-wrapper,
	.header__menu--desktop .btn__login {
		display: none;
	}
}
@media (min-width: 1200px) {
	.header__container .hs-cta-wrapper {
		padding-left: 34px;
	}
}
/* Layout - left */

.header__container--left .header__language-switcher-col {
	margin-left: auto;
	position: absolute;
	right: 20px;
	top: 50px;
}
.header__container--left .header__wrapper--bottom {
	justify-content: space-between;
}

.header__container--left .header__menu-col {
	/* margin-left: auto; */
	text-align: left;
	justify-content: right;
}

@media (min-width: 900px) {
	.header__container--left .header__menu-col {
		/* flex: 2 0 0; */
	}
}

/* Layout - centered */

.header__container--centered .header__wrapper--bottom {
	flex-wrap: wrap;
	text-align: center;
}

.header__container--centered .header__logo-col {
	width: 100%;
	/* margin-bottom: 1.4rem; */
	justify-content: center;
}

.header__container--centered .header__menu-col {
	width: 100%;
}

@media (max-width: 900px) {
	.header__container--centered .header__wrapper--bottom {
		justify-content: space-around;
		text-align: left;
	}

	.header__container--centered .header__logo-col,
	.header__container--centered .header__menu-col {
		width: auto;
		margin-bottom: 0;
	}
}

/* Language switcher */

.header__language-switcher {
	position: relative;
	cursor: pointer;
}

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

/* Language switcher - top level menu item */

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

.header__language-switcher-current-label {
	display: flex;
	margin-bottom: 5px;
	margin-left: 0.5rem;
	align-items: center;
}

.header__language-switcher-child-toggle svg {
	height: 15px;
	width: 15px;
	margin-left: 0.35rem;
}

/* Language switcher - submenu */

.header__language-switcher .lang_list_class {
	position: absolute;
	z-index: 99;
	top: 100%;
	right: 0;
	left: auto;
	display: block;
	width: 200px;
	padding: 0;
	border-style: solid;
	border-width: 1px;
	opacity: 0;
	text-align: left;
	transform: none;
	visibility: hidden;
}

.header__language-switcher-label--open .lang_list_class,
.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
	opacity: 1;
	visibility: visible;
}

.header__language-switcher .lang_list_class:after,
.header__language-switcher .lang_list_class:before {
	content: none;
}

.header__language-switcher .lang_list_class li {
	padding: 0;
	border: none;
	margin: 0;
}

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

.header__language-switcher .lang_list_class li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.header__language-switcher .lang_list_class .lang_switcher_link {
	display: inline-flex;
	width: 100%;
	padding: 0.7rem 1rem;
}

@media (max-width: 767px) {
	.header__language-switcher .lang_list_class {
		position: static;
		display: none;
		width: 100%;
		border: none;
	}

	.header__language-switcher-label--open .lang_list_class {
		display: block;
	}

	.header__language-switcher-current-label {
		display: block;
		width: 80%;
		padding: 0.7rem 0 0.7rem 1rem;
		margin: 0;
		order: 1;
	}

	.header__language-switcher .globe_class {
		height: auto;
		width: 100%;
	}

	.header__language-switcher-label {
		display: flex;
		flex-wrap: wrap;
	}

	.hs_cos_wrapper_type_language_switcher {
		width: 100%;
	}
}

/* Language switcher - icons */

@media (max-width: 767px) {
	.header__language-switcher-child-toggle,
	.header__language-switcher-child-toggle:hover,
	.header__language-switcher-child-toggle:focus,
	.header__language-switcher-child-toggle:active {
		position: absolute;
		top: 0;
		right: 0;
		width: 20%;
		padding: 10px 30px;
		border: 0;
		cursor: pointer;
	}

	.header__language-switcher-child-toggle svg {
		margin-left: 0;
	}

	.header__language-switcher-child-toggle--open svg {
		transform: rotate(180deg);
		transform-origin: 50% 50%;
		transition: transform 0.4s;
	}
}

/* Logo */

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

/* Menu */

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

.header__menu--mobile {
	display: none;
	position: fixed;
	z-index: 99;
	width: min(85vw, 360px);
	height: 100dvh;
	top: 0;
	right: 0;
	transform: translateX(100%);
	transition: transform 350ms cubic-bezier(0.32, 0.72, 0, 1);
	background-color: #ffffff;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
	overflow-y: auto;
	overscroll-behavior: contain;
	flex-direction: column;
}

.header__menu--mobile.active {
	transform: translateX(0);
}
@media (max-width: 900px) {
	.header__menu--desktop {
		display: none;
	}
	.header__menu--mobile.active,
	.header__menu-container--mobile {
		display: flex;
	}

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

/* Menu items */

.header__menu-item {
	position: relative;
	display: inline-flex;
}

@media (max-width: 900px) {
	.header__menu-item {
		display: block;
		width: 100%;
		text-align: left;
	}

	.header__menu-link {
		display: block;
		width: 100%;
		padding: 0.7rem 1rem;
	}

	.header__menu-item--has-submenu .header__menu-link {
		width: 80%;
	}
}

/* Menu items - top level */

@media (max-width: 900px) {
	.header__menu-item--depth-1 {
		padding: 0;
	}
}

/* Menu items - submenus */

.header__menu-submenu {
	position: absolute;
	z-index: 99;
	top: 100%;
	left: -1px;
	display: none;
	width: 200px;
	border-style: solid;
	border-width: 1px;
	text-align: left;
}

.header__menu-item--open > .header__menu-submenu {
	display: block;
}

.header__menu-item--depth-1:last-child > .header__menu-submenu {
	right: 0;
	left: auto;
}

.header__menu-submenu--level-3 {
	top: 0;
	left: 100%;
}

/* prettier-ignore */
.header__menu-item--depth-1:nth-last-child(-n + 2) .header__menu-submenu--level-3 {
  top: 0;
  right: 100%;
  left: auto;
}

.header__menu-submenu .header__menu-item {
	width: 100%;
	background-color: inherit;
}

.header__menu-submenu .header__menu-link {
	display: inline-flex;
	padding: 0.7rem 1rem;
}

.header__menu-item--depth-3 > .header__menu-link {
	margin-left: 10px;
}

.header__menu-item--depth-4 > .header__menu-link {
	margin-left: 20px;
}

.header__menu-item--depth-5 > .header__menu-link,
.header__menu-item--depth-6 > .header__menu-link,
.header__menu-item--depth-7 > .header__menu-link,
.header__menu-item--depth-8 > .header__menu-link,
.header__menu-item--depth-9 > .header__menu-link,
.header__menu-item--depth-10 > .header__menu-link {
	margin-left: 30px;
}

@media (max-width: 900px) {
	/* prettier-ignore */
	.header__menu-submenu,
  .header__menu-submenu--level-3,
  .header__menu-item--depth-1:nth-last-child(-n + 2) .header__menu-submenu--level-3 {
    position: static;
    width: 100%;
    border: none;
  }
}

/* Menu icons */

@media (min-width: 900px) {
	.header__menu-submenu .header__menu-child-toggle {
		padding: 0.7rem 1rem;
		margin-left: auto;
	}
}

.header__menu-child-toggle svg {
	height: 15px;
	width: 15px;
	margin-left: 0.35rem;
}

.header__menu-toggle svg {
	height: 26px;
	width: 26px;
}
.header__menu-col .btn__login li {
	padding: 0.7rem 1rem;
}

@media (max-width: 900px) {
	.header__menu-child-toggle,
	.header__menu-child-toggle:hover,
	.header__menu-child-toggle:focus,
	.header__menu-child-toggle:active {
		position: absolute;
		top: 0;
		right: 0;
		width: 20%;
		min-width: 75px;
		padding: 10px 30px;
		border: 0;
		cursor: pointer;
	}

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

	.header__menu-child-toggle--open svg {
		transform: rotate(180deg);
		transform-origin: 50% 50%;
		transition: transform 0.4s;
	}

	.header__menu-toggle--show {
		display: block;
	}
}
.header__menu-col .btn__login li,
a.header__menu-link {
	text-decoration: none;
	padding: 1.1rem 0.4rem;
}
.header__menu-col .btn__login:hover li,
a.header__menu-link:hover {
	background-color: rgba(0, 0, 0, 0.04);

	border-radius: 4px;
}
.header__menu-col .btn__login {
	cursor: pointer;
}
.btn__login ul {
	padding-left: 0;
}

@media (min-width: 900px) {
	.header__menu-col .btn__login:hover li,
	a.header__menu-link:hover {
		padding: 0.7rem 0.4rem;
		transition: padding 0.4s ease;
	}
}
@media (max-width: 900px) {
	.header__menu-col .btn__login {
		margin: 0;
	}

	.header__menu-col .btn__login li,
	a.header__menu-link {
		position: relative;
		text-decoration: none;
		padding: 1rem 1.5rem;
		border-radius: 6px;
		margin-inline: 0.75rem;
		transition: background-color 150ms ease;
	}

	.header__menu-col .btn__login li:hover,
	a.header__menu-link:hover {
		background-color: #f9fafb;
	}

	.header__menu-col .btn__login li::after,
	a.header__menu-link::after {
		content: "";
		position: absolute;
		bottom: 0;
		height: 1px;
		left: 0;
		width: 100%;
		background-color: #f3f4f6;
	}

	.header__menu-wrapper .hs-cta-wrapper {
		padding: 1.5rem 1.5rem 0;
	}
}
@media (min-width: 900px) and (max-width: 950px) {
	.header__menu-col .btn__login li,
	a.header__menu-link {
		padding: 1rem 0.5rem;
	}
	.header__menu-col .btn__login:hover li,
	a.header__menu-link:hover {
		padding: 0.7rem 0.5rem;
	}
}

.header__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 4;
	background-color: hsla(0, 0%, 0%, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 350ms ease, visibility 350ms ease;
}

@media (max-width: 900px) {
	.header__overlay.active {
		opacity: 1;
		visibility: visible;
	}

	.header__menu-button {
		padding-top: 3rem;
		display: flex;
		justify-content: flex-start;
	}

	.header__menu-button span {
		margin-left: -0.2rem;
	}

	.header__menu-logo {
		padding-inline: 2rem;
		padding-bottom: 2.375rem;
		margin-top: auto;
	}

	.cta2wrapper {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.header__wrapper {
		margin-inline: 2rem;
	}
}

.rating-score{
	display: flex;
	flex-direction: row;
	padding:0;
	margin:0;
}

.rating-score svg {
	width: 15px;
	height: 15px;
}

.rating-score .star {
	list-style: none;
}
.rating-score .star-bg svg {
	fill: transparent;
}

.rating-score svg path {
	stroke-width: 13px; /* Border width */
}
.grid-testimonials .star {
	position: relative;
	width: 15px; /* Adjust as needed */
	height: 15px; /* Adjust as needed */
}

.grid-testimonials .star .star-bg,
.star .star-fg {
	position: absolute;
	width: 100%;
}

.star .star-fg {
	overflow: hidden;
}
.rating-score_stars {
	align-items: flex-start;
	display: inline-flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header__review-col .rating-score_stars .star {
	list-style: none;
}
.header__review-col .rating-score_stars .star-bg svg {
	fill: transparent;
}

.header__review-col .rating-score_stars svg path {
	stroke-width: 13px; /* Border width */
}

.header__review-col .star {
	position: relative;
	list-style-type: none;
}

.header__review-col .star .star-bg,
.star .star-fg {
	position: absolute;
	width: 100%;
}

.header__review-col .star .star-fg {
	overflow: hidden;
}
.header__container .header__review-col .star,
.header__container .header__review-col .star svg {
	width: 1rem;
	height: 1rem;
}

.header__review-col {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 0rem;
	width: auto;
}
.header__review-col__rating {
	list-style-type: none;
}
.header__review-col p {
	margin: 0;
	text-align: center;
}
.header__wrapper--bottom {
	gap: 2rem;
}

@media (max-width: 992px) {
	.header__menu-toggle pre {
		line-height: 14px;
		margin: 0;
	}
	.header__menu-toggle i {
		margin-top: 2px;
	}
	.header__logo {
		max-width: 80%;
	}
	.header__container .header__review-col .star,
	.header__container .header__review-col .star svg {
		width: 15px;
		height: 15px;
	}
	.header__review-col p,
	.header__review-col__rating {
	}
	.header__review-col__rating {
		padding-top: 3px;
	}
}

@media (max-width: 900px) {
	.header__menu-wrapper .button,
	.header__menu-wrapper .cta_button {
		margin-left: 1.5rem;
	}

	.header__menu-wrapper.no-list {
		margin-bottom: 2rem;
		padding-bottom: 1rem;
	}
}

.star .star-bg,
.star .star-fg,
.header__review-col .star .star-bg,
.star .star-fg {
	position: absolute;
	width: 100%;
}
.star .star-fg,
.header__review-col .star .star-fg {
	overflow: hidden;
}

.header__container .header__review-col .star,
.header__container .header__review-col .star svg {
	width: 1rem;
	height: 1rem;
}
.footer {
    padding-inline: 1.875rem;
}

.footer__top {
    grid-template-columns: 1fr;
    display: grid;
    padding-inline: 0px;
}

@media (min-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (min-width: 1200px) {
    .footer__top {
        grid-template-columns: 1fr 1fr 1fr 1fr;

    }
}

.footer {
    padding-top: 5rem;
    padding-bottom: 1.875rem;
}

.footer__col {
    padding-bottom: 1rem;
}

.footer__links {
    max-width: 280px;
}

.footer .contact-block {
    margin-bottom: 3.5rem;
}

.footer__col h3 {
    margin-bottom: 0.5rem;
}

.footer__links ul {
    padding-left: 0;
}
.footer__links .hs-menu-wrapper ul {
    display: block;
}
.footer__links li {
    list-style-type: none;
  margin-bottom: 2rem;
}

.footer__links {
    padding-block: 2rem .8rem;
    position: relative;
}

.footer__links a {
    text-decoration: none;
    text-align: left;
    max-width: 250px;
    display: block;
}

.footer__links a:hover {
    text-decoration: underline;
}


.footer__bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 1.875rem;
    align-items: center;
}

.footer__bottom a,
.footer__bottom p {
    padding-right: 1.875rem;
    margin-bottom: 0;
}

@media (max-width: 768px){
  .footer {
   padding-top: 3rem; 
    padding-bottom: 8rem;
  }
  .footer__col .heading-4, 
.footer__col .footer__links {
  display: none;
  }
  .footer__bottom p,
  .footer__bottom a {
    display: block;
  }
  .footer__bottom {
   align-items: start; 
    flex-direction: column;
    gap: 1rem;
  }
  .footer .contact-block {
    margin-bottom: 0rem;
  }
  .footer__col {
    padding-bottom: 0; 
}
  .footer .icon-box {
    width: 40px;
    height: 40px;
  }
  .footer__image-right img {
  height: 33px;
    margin-bottom: 25px;
}
}
  .footer-bottom a {
   text-decoration: none; 
  }
.leader {
	display: grid;
	grid-template-columns: 2fr;
}

@media (min-width: 768px) {
	.leader {
		grid-template-columns: 1fr 1fr;
		padding-inline: 0;
	}
}

.leader__content {
	padding: 5rem 1.875rem 4rem;
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.leader--mobile2 {
		background-image: none !important;
	}
	.leader__content {
		padding-left: var(--container-padding-inline);
	}
}

@media (max-width: 767px) {
	.leader--mobile2 .leader__content {
		padding: 2.5rem 1.875rem;
	}

	.leader--mobile2 .leader__content::before {
		background-color: black;
		inset: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		content: "";
		opacity: 0.6;
	}

	.leader--mobile2 .leader__content * {
		position: relative;
	}
	.leader--mobile2 {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: right;
	}
}

.breadcrumbs-wrap .leader__content {
	padding-top: 2rem;
}

@media (min-width: 768px) {
	.leader--home .leader__content {
		padding-top: 4rem;
	}
}

.leader__content h1 {
	margin: 0;
}

.leader__content h2 {
	margin-block: 0.8rem 0;
}

@media (min-width: 768px) {
	.leader__content .breadcrumbs {
		margin-bottom: 3.3rem;
	}
}

.leader__content .breadcrumbs ul li a {
}

.leader__list {
	margin-block: 1.4rem 0.8rem;
}

.leader__list ul {
	list-style-type: none;
	padding-left: 1.4rem;
}

.leader__list ul li {
	list-style-type: none;
	margin-inline: 0;
	padding: 0.5rem 0;
	position: relative;
}

.leader__list ul li::before {
	content: "✓";
	padding-right: 1rem;
	position: absolute;
	left: -1.4rem;
	bottom: 7px;
	top: 6px;
}

.leader__footer {
	display: flex;
	justify-content: flex-start;
	gap: 1.8rem;
	flex-direction: column;
}

@media (min-width: 768px) {
	.leader__footer {
		flex-direction: row;
		row-gap: 2rem;
		column-gap: 5rem;
		flex-wrap: wrap;
	}
}
.leader__button {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 15px;
}
.leader__button-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.leader__button.leader__button-grid a.cta_second {
	max-width: max-content;
}
@media (max-width: 450px) {
	.leader__button.leader__button-grid {
		grid-template-columns: 1fr;
	}
	.leader__button.leader__button-grid a.cta_second {
		margin-top: 20px;
	}
}
.leader__button a {
	display: block;
}
.leader__button p,
.leader__button a:not(.button):not(.cta_button) {
	margin-top: 1rem;
}

.leader__button a:not(.button):not(.cta_button):hover {
}

.leader__price {
	display: flex;
}

@media (min-width: 768px) {
	.leader__price {
		order: 2;
	}
}

.leader__price-icon {
	margin-top: 4px;
}

.leader__price-icon::after {
	content: "\e913";
	font-family: "icomoon";
	padding-top: 1rem;
	font-size: 1.25rem;
}

.leader__price-amount {
	vertical-align: bottom;
}
.leader__price-amount p {
	vertical-align: top;
	display: inline-block;
	padding-left: 10px;
	text-decoration: none;
	margin-bottom: 0;
	line-height: 35px;
	text-decoration-style: unset;
	text-decoration-color: transparent;
}
.leader__price-amount span {
	text-decoration: line-through;
}
.leader__image {
	position: relative;
	min-height: 400px;
}

.leader__image img {
	position: absolute;
	inset: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {
	.leader--mobile2 {
		position: relative;
	}

	.leader--mobile2 .leader__image {
		position: absolute;
		z-index: -1;
		width: 100%;
		inset: 0;
		height: 100%;
	}

	.leader--mobile2 .leader__image img {
		position: absolute;
		object-fit: cover;
		width: 100%;
		height: 100%;
	}

	.leader--mobile2 .leader__content h1 {
	}

	.leader--mobile2 .leader__content h2 {
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.leader__content {
		padding: 5rem 1.875rem 4rem;
	}
}

.leader__footer-icon {
	vertical-align: top;
}

.leader__footer-icon:before {
	content: "";
	height: 1rem;
	width: 1rem;
	background-repeat: no-repeat;
	justify-self: end;
	display: inline-block;
	margin-bottom: -2px;
}
.leader .leader__footer-icon.calendar:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons  Inc. --%3E%3Cpath fill='%23fff' d='M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z'/%3E%3C/svg%3E");
}
.leader .leader__footer-icon.clock:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons  Inc. --%3E%3Cpath fill='%23fff' d='M232 120C232 106.7 242.7 96 256 96C269.3 96 280 106.7 280 120V243.2L365.3 300C376.3 307.4 379.3 322.3 371.1 333.3C364.6 344.3 349.7 347.3 338.7 339.1L242.7 275.1C236 271.5 232 264 232 255.1L232 120zM256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0zM48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256z'/%3E%3C/svg%3E");
}

.leader__content .breadcrumbs {
	margin-bottom: 6.25rem;
}

.leader__content .breadcrumbs ul {
	margin: 0;
}

.leader__list {
	line-height: 1.875rem;
	margin-top: 1.437rem;
	margin-bottom: 0.187rem;
}
.leader__list ul {
	margin-top: 1.375rem;
}
.leader__list ul li {
	padding: 0.375rem 0;
}
.leader__date_time {
	display: flex;
	align-items: center;
	gap: 25px;
}
.leader__date_time > div > p {
	display: inline-block;
	margin-bottom: 0;
}
.leader__date_time > div:first-of-type {
	border-right: 1px solid grey;
	padding-right: 25px;
}
.leader__date_time > div > p:before {
	display: inline-block;
	margin-right: 1rem;
}
@media only screen and (min-width: 768px) {
	.leader.bg-white {
		background: none;
		align-items: baseline;
	}
	.bg-white .leader__button a:not(.button):not(.cta_button) {
	}
	.leader.bg-white .leader__content .breadcrumbs ul li a {
	}
	.leader.bg-white .leader__image img {
		position: absolute;
		inset: 0;
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.leader.bg-white .leader__content {
		padding-right: 0;
	}
	.leader.bg-white .leader__image {
		position: relative;
		min-height: 400px;
		height: 100%;
		width: auto;
	}
	.leader.bg-white .leader__footer-icon.calendar:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons  Inc. --%3E%3Cpath fill='%23000' d='M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z'/%3E%3C/svg%3E");
	}
	.leader.bg-white .leader__footer-icon.clock:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons  Inc. --%3E%3Cpath fill='%23000' d='M232 120C232 106.7 242.7 96 256 96C269.3 96 280 106.7 280 120V243.2L365.3 300C376.3 307.4 379.3 322.3 371.1 333.3C364.6 344.3 349.7 347.3 338.7 339.1L242.7 275.1C236 271.5 232 264 232 255.1L232 120zM256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0zM48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256z'/%3E%3C/svg%3E");
	}
}
.leader--mobile2.bg-white {
	background-color: #ffffff# !important;
}

@media (min-width: 1200px) {
	.leader__content-overflow {
		margin-bottom: -100px;
	}
	.leader__image-overflow img {
		height: 120%;
		margin-bottom: -30px;
	}
}
.leaderdark {
    position: relative;
}
.leaderdark .container {
 display: grid;
 grid-template-columns: 1fr;
  padding-top: 30px;
  padding-bottom: 60px;
}
@media (max-width:1200px){
  .leaderdark .container {
     padding-inline: 1.875rem;
}
}

.leaderdark__content {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.darkmenu__container {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
}
@media (min-width: 768px){
    .breadcrumbs__wrapper {
        grid-area: 1 / 1 / span 1 / span 3;
    }
    .leaderdark .container {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .leaderdark__content {
        grid-area: 2 / 1 / span 1 / span 2;
    }
    .darkmenu__container {
        grid-area: 2 / 3 / span 1;
    }
     .leaderdark__content {
 padding-right: 100px;
  }
}
@media (min-width: 1200px){
    .leaderdark__content {
        padding-right: 220px;
    }
}

.leaderdark__content ul li:before,
.leaderdark__content ul li,
.leaderdark li a,
.leaderdark .heading-1,
.leaderdark p {
}
.leaderdark p {
    line-height: 1.875rem;
}
.leaderdark__tagline {
    position: absolute;
    right: 26px;
    bottom: 30px;
}
@media (max-width: 500px){
  .leaderdark__tagline {
    position: unset;
  }
}

.darkmenu__container {
    padding: 40px 45px 48px;
    border-radius: 5px;
    background-color: #111111;
    height: fit-content;
}

.darkmenu__container h3 {
}
.darkmenu__container ul {
    flex-direction: column;
    border-left: 1px solid var(--clr-accent);
    padding: 0 0 0 40px;
}
.darkmenu__container a,
.darkmenu__container li {
    display: flex;
}
.darkmenu__container li:first-of-type {
    line-height: 16px
}
.darkmenu__container .hs-menu-item.active:last-of-type a,
.darkmenu__container li:last-of-type,
.darkmenu__container li:last-of-type a {
    margin-bottom: 0;
      padding-bottom: 0;

}
.darkmenu__container .hs-menu-item a {
    margin-bottom: 30px;
    line-height: 16px;
}
.darkmenu__container .hs-menu-item.active a {
    width: max-content;
    padding: 8px 17px 8px 23px;
    margin: -10px 0 20px -18px;
    text-decoration: none;
}

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

.card-blog__wrapper div{
    justify-content: flex-start;
}

.card-blog__image{
    height: 250px;
    border-radius: 5px 5px 0 0;
}

.card-blog__content{
    padding: 0;
    margin-top: 20px;
}

@media (min-width: 768px){
    .card-blog__bottom{
        padding-inline: 2.5rem;
    }
}

.card-blog__bottom:before{
    font-weight:300;
}

.card-blog__content{
}



.programs {
    padding-block: 3rem;
    background-color: var(--clr-gray);
}

.programs__title {
    line-height: calc(50 / 45);
    padding-block: 1.5rem;
    margin-bottom: 0px;
}

.programs__text .center,
.programs__title .center {
 max-width: 890px;
  margin: 0 auto;
   text-align: center;
 
}

.programs__text {
 margin-bottom: 50px; 
}

@media (min-width: 768px) and (max-width: 1200px){
  .programs {
   padding: 0 1.875rem;
  }
}

@media only screen and (max-width: 768px){
  .programs{
  padding: 2.9375rem 1rem 3.125rem;
  }
  .programs .programs__title{
    padding-block: 0;
    margin: 0 1.875rem 2.1875rem;
    text-align: center;
    line-height: 2.143rem;
  }
  .programs .card-program{
    overflow: hidden;
    margin-bottom: 2rem;
        box-shadow: 0 0 35px #00000024;
  }
  .programs .card-program:last-of-type{
  margin-bottom: 0;
  }
  
  .card-program__image{
   height: 12.5rem;
    min-height: 12.5rem;
  }
  .card-program__image img{
  height: 100%;
  }
  
  .card-program__content{
  padding: 2rem 1.875rem;
  }
  .card-program__content .card-program__title{
   line-height: 2.07rem;
  }
 
  
  .card-program__content .card-program__summary{
    padding: 0;
    margin: 1.1875rem 0 1.5625rem 0;
    line-height: 1.5625rem;
  }
  
    .card-program__content .card-program__cta{
    flex-direction: column;
  }
    .card-program__investment{
  margin-left: 0;
    margin-top: 1rem;
  }
  
  
  .card-program__button a{
    padding: 0.875rem 1.25rem;
  }
  
  .card-program__right{
  display: none;
  }
}
@media( min-width:768px ) {
    .cta {
        position: relative;
    }
    .cta::before {
        content: '';
        width: 100vw;
        height: 100%;
        background-image: radial-gradient(circle at bottom, #FFCD00, #ffffff 65%);
        bottom: 0;
        position: absolute;
        z-index: -1;

    }
}

@media( min-width: 1200px ) {
    .cta::before {
        left: calc( (100vw - 1200px) / -2 );
    }
}

@media( min-width: 1400px ) {
    .cta::before {
        left: calc( (100vw - 1350px) / -2 );
    }
}

.cta-content {
    display: grid;
    grid-template-columns: 100%;
    padding-block: 2rem;
    gap: 1.5rem;
}

@media( max-width: 767px ) {
    .cta-content {
        padding-bottom: 0;
    }
}

@media(min-width:768px) {
    .cta-content {
        gap: 2%;
        grid-template-columns: 49% 49%;
        padding-block: 5rem;

    }
}

.cta-content__left {
    display: flex;
    flex-direction: column;
    align-content: center;
    padding-inline: 1.5rem;
}

.cta-content__title {
    line-height: calc(37 / 37);
    text-align: center;
    padding-bottom: 1.875rem;

    margin-bottom: 0px;

}

@media (min-width:768px) {
    .cta-content__title {
        text-align: left;
        line-height: calc(50 / 45);

    }

}

.cta-content__summary {
    line-height: calc(25 / 16);
    text-align: center;
    padding-bottom: 2.5rem;
    margin-bottom: 0px;

}

@media (min-width:768px) {
    .cta-content__summary {
        text-align: left;
    }

}

.cta-content__bottom {
    display: flex;
    flex-direction: row;

}

.cta-content__bottom {
    display: flex;
    justify-content: center;

}

@media(min-width:768px) {
    .cta-content__bottom {
        justify-content: flex-start;
    }

}

.cta-content__bottom {
    display: flex;
    justify-content: center;
}

@media(min-width:768px) {

    .cta-content__bottom {
        display: flex;
        justify-content: flex-start;
    }
}

.cta-content__footer {
    padding-block: 1rem;
    display: flex;
    justify-content: center;
}

@media(min-width:768px) {
    .cta-content__footer {
        justify-content: flex-start;
    }
}

.cta-content__right {
    order: -1;
    width: 100%;

}

@media(min-width: 768px) {
    .cta-content__right {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-inline: 3rem;
        order: initial;
    }
}

.cta-content__image {
    position: relative;
    min-height: 300px;
    width: 100%;

}



.cta-content__image img {
    position: absolute;
    text-align: center;
    object-fit: cover;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .cta-content {
        display: grid;
        grid-template-columns: 32% 66%;
        gap: 2%;
        padding-block: 5rem;
    }
}

@media (max-width: 768px){
  .cta-content__image,
  .cta-content__left {
  padding-inline: 1.875rem;  
  }
  .cta-content__image {
   min-height: unset; 
  }
  .cta-content__image img {
    position: relative;
  }
  .cta-content__title{
   padding-bottom: 1.5rem; 
  }
  .cta-content__summary {
      padding-bottom: 1.875rem; 
  }
  .cta-content__footer {
    padding-top: 1.5rem;
    padding-bottom: 3.125rem;
  }
}

@media (min-width: 768px) and  (max-width: 1200px){
.cta-content__left {
 padding-left: 1.875rem; 
}
}

.cta-content__image img {
  object-fit: contain;
}
.cta_normal {
  display: block;
  margin-top: 20px;
}
.rich-text-field sub a,
.cta_second {
      border-radius: 4px;
    box-shadow: 4px 4px #000;
    border: 1px solid #000000; 
    box-sizing: border-box;
    height: 50px;
    padding: 12px 18px;
    text-decoration: none;
    margin-top: 0;
}
.button .cta_second {
   margin-left: 15px;
}
.button-grid .cta_second {
   margin-left: 15px;
      display: grid;
    grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .button-grid .cta_second {
    grid-template-columns: 1fr 1fr;
}
}
.leader__button a.cta_second {
      margin-top: 0;
}
.cta_second__dark {
    background-color: #000000;
    border: 1px solid #ffffff#;
    max-width: max-content;
}
.cta-bottom {
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

@media(max-width:767px) {
    .cta-bottom {
        padding: 3rem 2rem 2rem;
        background-color: #ffffff;
        background-image:
            radial-gradient(circle at bottom,
                var(--clr-accent),
                var(--clr-accent) 50%);
    }

    .cta-bottom__title {
    }
   .cta-bottom__summary p {
        line-height: calc(25 / 16);
    }
}

.cta-bottom__content {
    max-width: 56.25rem;
}

.cta-bottom__title {
    text-align: center;
    padding-bottom: 1.87rem;
    margin-bottom: 0px;

}

.cta-bottom__summary {
    text-align: center;
    padding-bottom: 0rem;
    margin-bottom: 0px;
    line-height: calc(30 / 16);

}

@media (min-width:768px) {
    .cta-bottom__summary {
        max-width: 75rem;
    }
}

.cta-bottom .cta-bottom__content div p {
    padding-inline: 1.5rem;
    text-align: center;
    line-height: calc(30 / 16);
}


.cta-bottom__links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.75rem;
}

@media (max-width:768px) {
  .cta-bottom__links {
      flex-direction: column;
    gap: 1.875rem;
    align-items: center;
}
  .cta-bottom__link {
  }
}
.col-content {
    padding-block: 3.75rem;
}

.col-content__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.col-content__left {
    display: flex;
    flex-direction: column;
  margin-inline: 2rem;
}
@media (min-width:768px) {
    .col-content__wrapper {
        grid-template-columns: 5fr 7fr;
        gap: 3rem;
    }
    .col-content--reverse .col-content__wrapper {
        grid-template-columns: 7fr 5fr;
        gap: 3rem;
    }
}


@media (min-width: 1200px){
    .col-content__left {
  margin-inline: 0;
}
}
.col-content__content {
    text-align: left;
}

.col-content__title {
    padding-bottom: 1.87rem;
    margin-bottom: 0px;
}

.col-content__content p {
    padding-bottom: 1.75rem;
    text-align: left;
    line-height: calc(30 / 16);
    margin-bottom: 0px;
}

@media (min-width:768px) {
    .col-content__content p {
        padding-bottom: 1.75rem;
        text-align: left;
        line-height: calc(30 / 16);
        margin-bottom: 0px;
    }
}

.col-content__content ul li {
    padding-bottom: 1rem;
    position: relative;
    margin-bottom: 0px;
    padding-left: 1.4rem;
    list-style: none;
}

.col-content__content ul {
    padding-left: 0;
}

.col-content__content ul li::before {
    content: '✓';
    font-family: 'icomoon';
    left: 0rem;
    color: var(--clr-black);
    position: absolute;
}


.col-content__bottom {
    display: flex;
}

.col-content__right {
    order: -1;
}

@media (min-width:768px) {
    .col-content__right {
        margin-inline: -2rem;

        width: 100%;
        margin-inline: initial;
    }

    .col-content:not( .col-content--reverse ) .col-content__right {
        order: initial;
    }
}

@media (min-width:1200px) {
    .col-content__right {
        display: flex;
        flex-direction: column;
    }
}

.col-content__image {
    position: relative;
    width: 100%;
    aspect-ratio: 8 / 5;
  max-height: 700px;
}



.col-content__image img {
    width: 100%;
    height: 100%;
}
.col-contentwide__bottom p,
.col-content__botton p {
 margin-top: 1rem; 
}


@media only screen and (max-width: 768px){
.col-content{
  padding-block: 0;
}
.col-content .col-content__wrapper{
  gap: 3.125rem;
  display: grid;
}
.col-content .col-content__left{
  padding: 0 1.875rem;
  width: 100%;
      margin: 0 auto;
  padding-bottom: 5rem;
}

.col-content__title{
  padding-bottom: 1.875rem;
  line-height: 2.643rem;
}

.col-content__content p{
  line-height: 2.143rem;
  padding-bottom: 1.1875rem;
}

 .col-content__content ul{
  margin: 0;
  
  }
 
.col-content__content ul li {
  line-height: 1.786rem;
  padding-bottom: 1.4375rem;
}
  .col-content__content ul li:last-of-type{
  padding-bottom: 1.5rem;
  }

.col-content__content ul li:before{
  color: var(--clr-accent);
  font-size: 1.25rem;
}

  .col-content__right{
  width: 100%;
    margin: 0 auto;
  }
 

.col-content__botton .button,
.col-content__botton .cta_button{
}
}


@media only screen and (max-width: 350px){
 .col-content__title{
  line-height: 2rem;
} 
}

@media (min-width: 768px)and (max-width: 1200px){

  .col-content--reverse .col-content__left{
  padding-right: 2rem;
      padding-left: 0;
}
}
.col-contentwide {
    display: grid;
    grid-template-columns: 2fr;
    background-color: #C3B496;
}

@media(min-width: 768px) {
    .col-contentwide {
        grid-template-columns: 1fr 1fr;
        padding-inline: 0;
        margin-inline: 0;
    }
}

.col-contentwide__left {
    display: flex;
    flex-direction: column;
    background-color: #C3B496;
    background-image:
        radial-gradient(circle at bottom right,
            #FFCD00,
            #C3B496 60%);
    padding: 3rem 2rem;
}

@media(min-width: 1200px) {
    .col-contentwide__left {
        padding-left: 0rem;
    
    }
}
@media (max-width: 768px){
  .col-contentwide__left {
    background-image: radial-gradient(circle at top,#ffcd00,#c3b496 40%);
  }
}
.col-contentwide__title {
    padding-bottom: 1.87rem;
    margin-bottom: 0px;
}

.col-contentwide__content p {
    padding-bottom: 1.75rem;
    text-align: left;
    line-height: calc(30 / 16);
    margin-bottom: 0px;
    max-width: 33rem;
}

.col-contentwide__content ul {
    padding-left: 0;
}

.col-contentwide__content ul li {
    padding-bottom: 1rem;
    position: relative;
    margin-bottom: 0px;
    padding-left: 1.4rem;
    list-style: none;
}

.col-contentwide__content ul li::before {
    content: '✓';
    padding-right: 1rem;
    font-family: 'icomoon';
    left: 0rem;
    color: var(--clr-white);
    position: absolute;
}

.col-contentwide__bottom {
    display: flex;
  flex-direction: column;
}
.col-contentwide__explanation {
 margin-top: 1rem; 
}

.col-contentwide__right {
    order: -1;
}

@media (min-width:768px) {

    .col-contentwide__right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        order: initial;
        margin-inline: initial;
    }
}

.col-contentwide__image {
    position: relative;
    min-height: 300px;
    width: 100%;
}

@media (min-width:768px) {
    .col-contentwide__image {
        height: 100%;
    }
}

.col-contentwide__image img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (min-width:768px) {
    .col-contentwide__image img {
        position: absolute;
        inset: 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}
@media(min-width: 1200px) {
.col-contentwide {
    padding-left: Max(calc((100vw - var(--container-width))/2),1rem);
}
}
@media(min-width: 1350px) {
    .col-contentwide {
        padding-left: Max(calc((100vw - var(--container-width)) / 2), 2rem);

    }
}
.col-list {
   padding-block: 2rem;
 }
.col-list__wrapper {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width:678px) {
    .col-list__wrapper {
        display: grid;
        grid-template-columns: 45% 55%;
    }
}

.col-list__left {
    text-align: left;
}

.col-list__summary {
    padding-bottom: 1rem;
}

.col-list__summary {
    line-height: calc(30 / 16);
    padding-bottom: 1rem;
    max-width: 35rem;
}

.col-list__botton {
    display: flex;
}

.col-list__right {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width:768px) {
    .col-list__right {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.col-list__list {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-inline: 1rem;
}
.col-list__list ul li {
    list-style: none;
    padding-left: 1rem;
  line-height: 1.25rem;
      min-height: 40px;
    margin-bottom: 1rem;
}
.col-list__list ul li::before {
    content: '✓';
    padding-right: 0rem;
    font-family: 'icomoon';
    left: 1rem;
    color: #734e36;
    position: absolute;
}


@media only screen and (min-width: 768px){
.col-list__right {
    display: grid;
  grid-template-columns: 1fr;
}
.col-list__list ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
}
.col-list__list ul li {
     position: relative;
    display: inline-block; 
  padding-right: 1rem;
}
.col-list__list ul li:before {
  left: -0.6rem;
}
.col-list__right .col-list__bottom{
display: none;
}
.viewAll{
display: none;
}
@media only screen and (max-width: 768px){
  .col-list{
  margin: 0 1.875rem;
    padding-bottom: 3.375rem;
  }

  .col-list__title{
    line-height: 2.643rem;
  }
  .col-list__wrapper p{
    line-height: 2.143rem;
  }
  .col-list__list.show_more ul{
  margin-bottom: 0;
  }
  
  .col-list__list ul li{
    padding-left: 1.25rem;
    min-height: 0;
    margin-bottom: 1.9375rem;
    display: none;
    padding-right: 0;
  }
  .col-list__list .show_all li{
  display: block;
  }
  .col-list__list ul li:nth-child(-n+6){
    display: block;
  }
  .viewAll{
display: block;
}
  .col-list__list .viewAll p{
    text-decoration: underline;
  }
  
  .col-list__list .viewAll p span{
    padding-left: 0.5rem;
    text-decoration: none;
    display: inline-block;
  }
  
  .col-list__summary{
  padding-bottom: 0.625rem;
  }
  .col-list__right .col-list__bottom{
  display: block;
    margin-top: 0.6875rem;
  }
  .col-list__bottom .cta-button{
  padding: 1rem 1.25rem;
  }
  .col-list__left .col-list__bottom{
  display: none;
  }
}
@media (min-width: 768px) and (max-width: 1200px){
  .col-list {
    padding: 2rem;
  }
}
.course-items {
    background-color: var(--clr-black);
 
    padding: 1rem 1rem 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .course-items {
        padding: 3rem 5rem;
    }
}

.course-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
      border-bottom: 1px solid var(--clr-gray);
}

@media (min-width: 768px) {
    .course-item {
        gap: 1.5rem;
    }
}
.course-item__content span {
    line-height: 1;
}

.course-item__content p {
      margin: -0.2rem 0 0.2rem;
   text-decoration-color: var(--clr-accent);
    line-height: 1.4;
}

.course-item::before {
    font-family: 'icomoon';
    font-size: var(--fs-25);
    color: #734e36;
}

.course-item--book::before {
    content: "\e916";
}

.course-item--time::before {
    content: "\e911";
}

.course-item--certificates::before {
    content: 🗎;
}

.course-item--years::before {
    content: "\e918";
}

.course-item--fees::before {
    content: "\e913";
}

.course-item--payments::before {
    content: "\e90b";
}

.course-item__payment-gateways {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    grid-row-gap: 10px;
    grid-column-gap: 1rem;
      margin-top: 0.5rem;
  margin-bottom: 0;
}

.course-item__payment-gateways span::after {
    font-family: 'icomoon';
    font-size: var(--fs-30);
    color: var(--clr-white);
}

.course-item__payment-gateways .paypal::after {
    content: "\e926";
}

.course-item__payment-gateways .visa::after {
    content: "\e927";
}

.course-item__payment-gateways .amex::after {
    content: "\e923";
}

.course-item__payment-gateways .mastercard::after {
    content: "\e925";
}
.course-item__payment-gateways .amazon-pay::after {
    content: "\e928";
}

.course-item__payment-gateways .apple-pay::after {
    content: "\e924";
}
/* css for HubSpot icons */
.course-item svg{
    width: 25px;
    display: inline-block;
    height: 28px;
    z-index: 98;
    fill: #734e36;
    position: relative;
}
.course-item__payment-gateways svg {
    fill: white;
}
@media (max-width: 500px){
  .sell-course__two-column .course-items {
   grid-template-columns: 1fr; 
  }
}
/* Image gallery wrapper */

.image-gallery__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 25px;
    margin-bottom: 5.5625rem;
}
@media (min-width: 767px) {
    .image-gallery__wrapper {
        padding: 0 50px;
    }
}

/* Images */

.image-gallery__image-container {
    display: flex;
    width: auto !important;
    align-items: center;
}
@media (min-width: 400px){
    .image-gallery__image-container{
        width: auto !important;
    }
}
@media (min-width: 767px){
    .image-gallery__image-container{
        max-width: 160px;
        width: 100%;
        min-width: 150px;
    }
}
.image-gallery__image {
    height: auto;
    margin: 0 auto 0.7rem;
    padding: 0 5px;
    max-width: 160px;
    width: 100%;
}

.image-gallery h3 {
 display: block; 
  text-align: left;
 margin-bottom: 3.5625rem;
}

@media (max-width: 1350px){
  .image-gallery__wrapper {
 margin-bottom: 3.875rem;
}
.image-gallery {
 padding: 0 1.5625rem; 
}
}
@media (max-width: 768px){
  .image-gallery h3 { 
  text-align: center;
     padding: 0 1.5625rem;
    margin-bottom: 1.375rem;
}
  .image-gallery__wrapper {
       grid-gap: 0.6rem;
  }
  .image-gallery__image {
    max-width: 6.25rem;
    padding: 0;
  }
}
.image-wide-list {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #734e36;
    border-radius: 5px;
}

.image-wide-list__left {
    order: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

@media(min-width: 768px) {
    .image-wide-list__left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: initial;
        padding: 1.5rem 0 1.5rem 1.5rem;
    }
}

.image-wide-list__image {
    width: 100%;
}

/* @media (min-width:768px) {
    .image-wide-list__image {
         height: 270px;
    }
} */
.image-wide-list__title,
.image-wide-list__content {
 z-index: 2; 
}

.image-wide-list__image img {
    max-height: 100%;
    width: auto;
}
.image-wide-list__right ul {
margin-bottom: 0;
}
.image-wide-list__right ul li {
    list-style: none;
    padding-left: 0.6rem;
  padding-bottom: 0.7rem;
}


.image-wide-list__right ul li::before {
    content: '✓';
    padding-right: 1rem;
    font-family: 'icomoon';
    left: 1rem;
    color: var(--clr-white);
    position: absolute;
}

.image-wide-list__right {
    padding-top: 1rem;
    padding-bottom: 3.12rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-block: 1.12rem;
    padding-inline: var(--container-padding-inline);
    background-color: #734e36;
    border-radius: 5px;

}
.image-wide-list-background {
    background-image: radial-gradient(circle at bottom,#ffcd00,var(--clr-accent) 75%);
    border-radius: 5px;
    background-position: right;
    height: 100%;
    position: absolute;
    top: 0;
    width: calc(100% - 200px);
    z-index: 1;
    margin-left: 200px;
}

@media(min-width: 768px) {

    .image-wide-list__right ul li {
        list-style: none;
        padding-left: 1rem;
    }

    .image-wide-list__right ul li::before {
        content: '✓';
        padding-right: 1rem;
        font-family: 'icomoon';
        left: 0rem;
        color: var(--clr-white);
        position: absolute;
      font-size: 1.1rem;
    }

    .image-wide-list {
        display: grid;
        grid-template-columns: 2fr 8fr;
        gap: 1.5rem;
        padding-inline: 0;
        margin-inline: 0;
    }

    .image-wide-list__right {
            padding-bottom: 2.1rem;
    padding-top: 3rem;
        text-align: left;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-inline: 0;
        background-color: #734e36;
    }

}

.image-wide-list-background-mobile{
display: none;
}

@media only screen and (max-width: 768px){
  .image-wide-list{
  border-radius: 0;
    display: block;
  }
  
  .image-wide-list__left{
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 17.375rem;
    justify-content: flex-start;
}
  .image-wide-list-background-mobile{
    display: block;
    background-image: radial-gradient(circle at top, #ffcd00, var(--clr-accent) 260px);
    background-position: 100%;
    position: absolute;
    top: 0;
    width: 130%;
    z-index: 1;
    height: 100%;
  }
  .image-wide-list__image{
  z-index: 2;
    width: 8.875rem;
    height: 8.875rem;
  }
  .image-wide-list__right{
    background-color: transparent;
    z-index: 2;
    margin-top: -8.5625rem;
    padding: 0 1.875rem 2.0625rem 1.875rem;
  }
  .image-wide-list-background{
  display: none;
  }
  .image-wide-list__title{
  text-align: center;
    line-height: 2.3125rem;
    margin-bottom: 2rem;
  }
  .image-wide-list__content ul li{
    line-height: 1.875rem;
    padding-bottom: 1.1875rem;
  }
  .image-wide-list__content ul li:last-of-type{
  padding-bottom: 0;
  }
  
  .image-wide-list__content ul li:before{
    left: 1.875rem;
    font-size: 1.25rem;
    line-height: 1.5625rem;
  }

}

@media (min-width: 768px) and (max-width: 1000px){
  .image-wide-list-background {
 margin-left: 0px;
    width: 100%;
}
}
.card-blog {
    padding-block: 1rem;
}
@media (max-width: 1200px){
  .card-blog {
    padding: 1rem 1.875rem 2rem;
  }
}
.card-blog__bottom {
    padding-inline: 1rem;
    padding-top: 1rem;
    padding-bottom: 3.5rem;
}

.card-blog__content {
    background-color: #ffffff;
    position: relative;
    text-align: left;
    width: 100%;
     padding: 0;
  margin-top: 20px;
}

.card-blog__left {
    border: 1px solid #000000;
    border-radius: 5px;
}

.card-blog__middle {
    border: 1px solid #000000;
    border-radius: 5px;
}

.card-blog__right {
    border: 1px solid #000000;
    border-radius: 5px;
}

.card-blog__left,
.card-blog__middle,
.card-blog__right p {
    position: relative;
}

.card-blog__wrapper a {
    text-decoration: none;
}
.card-blog__card {
    background-color: #ffffff;
    border: 1px solid var(--clr-black);
    position: relative;
    text-align: left;
    border-radius: 5px;
    position: relative;
}

.card-blog__bottom::before {
    content: "🡢";
    padding-right: 1rem;
    padding-top: 1rem;
    font-family: 'icomoon';
    font-size: 1.37rem;
    right: 0rem;
    bottom: 1rem;
    color: #734e36;
    position: absolute;
    font-weight:300;
}

.card-blog__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.card-blog__wrapper div {
    display: flex;
    flex-direction: column;
       justify-content: flex-start;
    height: 100%;
}
@media (max-width: 768px){
  .card-blog__wrapper div {
    height: unset;
  }
}
.card-blog__wrapper p {
    margin-bottom: 0;
    line-height: calc(30 / 16);
}

.card-blog__wrapper h2 {
    padding: 1rem 0rem 0rem 0rem;
    margin-bottom: 0;
    line-height: calc(29 / 25);
}

@media (min-width:768px) {
    .card-blog__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .card-blog__bottom {
        padding-inline: 2rem;
        padding-top: 1rem;
        padding-bottom: 3.5rem;
    }

    .card-blog__content {
        padding-top: 1rem;
        padding-bottom: 2px;
    }
}

.card-blog__image {
    position: relative;
    min-height: 250px;
    width: 100%;
    padding-bottom: 1.87rem;
    height: 250px;
  overflow: hidden;
  min-height: 0;
  border-radius: 5px 5px 0 0;
}

.card-blog__image img {
    position: absolute;
    text-align: center;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.card-blog__image--variation {
    position: relative;
    min-height: 300px;
    width: 100%;
    padding-bottom: 1.87rem;
}

.card-blog__image--variation img {
    position: absolute;
    text-align: center;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.64;
}

.card-blog__card--variation {
    background-color: #ffffff;
    border: 1px solid var(--clr-black);
    position: relative;
    text-align: left;
    border-radius: 5px;

}

.card-blog__card--variation h2 {
    position: absolute;
    top: 15.62rem;
    left: 2.31rem;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.card-blog__content--variation {
    padding-inline: 2.5rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
}


.card-blog__content--variation div{
    line-height: 1.875;
}
@media (min-width:768px) {
    .card-blog__content--variation {
        padding-inline: 2.5rem;
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
}

.card-blog__blogs::before {
    content: "\e903";
    padding-right: 1rem;
    padding-top: 2rem;
    font-family: 'icomoon';
    top: -1rem;
    left: 0rem;
    color: #734e36;
    position: absolute;
}

.card-blog__cases::before {
    content: "\e917";
    padding-right: 1rem;
    padding-top: 2rem;
    font-family: 'icomoon';
    top: -1rem;
    left: 0rem;
    color: #734e36;
    position: absolute;
}

.card-blog__articles::before {
    content: "\e910";
    padding-right: 1rem;
    padding-top: 2rem;
    font-family: 'icomoon';
    top: -1rem;
    left: 0rem;
    color: #734e36;
    position: absolute;
}

.card-blog__videos::before {
    content: "\e904";
    padding-right: 1rem;
    padding-top: 2rem;
    font-family: 'icomoon';
    top: -1rem;
    left: 0rem;
    color: #734e36;
    position: absolute;
}

.card-blog__download::before {
    content: "\e902";
    padding-right: 1rem;
    padding-top: 2rem;
    font-family: 'icomoon';
    top: -1rem;
    left: 0;
    color: #734e36;
    position: absolute;
}

.card-blog__card--variation{
    overflow: hidden;
}

.card-blog__card--variation .card-blog__image--variation{
    height:250px;
    min-height: 0;
    background-color: #000;
}

.card-blog__bottom--variation:before {
    bottom: 1rem;
    color: #734e36;
    content: "🡢";
    font-family: icomoon;
    font-size: 1.37rem;
    padding-right: 1rem;
    padding-top: 1rem;
    position: absolute;
    right: 0;
}

.card-blog__bottom--variation h2{
    top: 7rem;
    padding-bottom: 0;
    padding-top: 0;
    left: 2.5rem;
}

.card-blog__bottom--variation h2:before{
    padding-top: 0;
    top: 0;
}
.client-logos{    
    margin-block: 2rem;
}
.client-logos__wrapper{
    background-color: var(--clr-white);
    border-radius: 5px;
    padding: 2rem 1rem;
    text-align: left;
}
@media (min-width:768px){
    .client-logos__wrapper{
    padding: 0 2rem;
    }
   .client-logos__wrapper.with-padding{
    padding: 2rem;
    }
}
.client-logos__title{
   padding-left: 1.875rem;
    padding-right: 1.875rem;
    margin-bottom: 0;
    padding-bottom: 2rem;
    text-align: center;
}
@media (min-width:768px){
    .client-logos__title{
        text-align: left;
    }
}
.client-logos__logos{
    
    display: flex;
    flex-wrap: wrap;
  justify-content: space-evenly;
   gap: 5.8rem;
}

.client-logos__logo{
     max-width: 117px;
    width: 100%;
}

.client-logos__logo img {
    max-height: 50px;
    max-width: 100%;
}
@media(min-width:768px){ 
    .client-logos__logo img {
    max-height: 71px;
    }
}
.client-logos__logo img {
    -webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
}
.client-logos__logo img:hover{

    -webkit-filter: grayscale(0%); 
    filter: grayscale(0%);
}
.faq {
    text-align: center;
}


.faq__container {
    margin: 0 auto;
    padding: 1rem;
    max-width: 60rem;
    width: 100%;
}
@media (max-width: 768px){
  .faq__container {
    padding: 1rem 2rem;
  }
}
@media (max-width: 350px){
  .faq__container {
    padding: 0rem;
  }
}
.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq__accordion-item {
    border-radius: 5px;
    box-shadow: 0px 0px 10px #000000;
    padding: 0.2rem 1.5rem;
}
@media (max-width: 768px){
  .faq__accordion-item {
      padding: 0.2rem 2rem;
  }
  .faq__title {
   padding: 1.875rem; 
  }
}
@media (max-width: 1200px){
  .faq__intro {
   padding-inline: 1.875rem; 
  }
}


.faq__accordion button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    padding: 1rem 0 0.5rem;
    border: none;
    background: none;
    outline: none;
}

.faq__accordion button p, .faq__accordion button span {
    margin: 0;
}
@media (max-width: 1350px){
  .faq__accordion button span {
    margin-right: -5px;
  }
}
.faq__accordion button p {
    width: calc(100% - 40px);
    text-decoration: underline;
}

.faq__accordion h5 {
    line-height: 2rem;
    margin: 0;
}

.faq__accordion h4 {
    margin: 0;
}

.faq__accordion button span {
    text-decoration: none !important;
}

.faq__accordion-icon::after {
    text-decoration: none ;
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;

    background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%20fill%3D%22black%22%3E%3Cpath%20d%3D%22M12%2016a1%201%200%200%201-.64-.23l-6-5a1%201%200%201%201%201.28-1.54L12%2013.71l5.36-4.32a1%201%200%200%201%201.41.15%201%201%200%200%201-.14%201.46l-6%204.83A1%201%200%200%201%2012%2016z%22/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-size: contain;

    transition: transform 0.2s ease;
}

.faq--subheader .faq__accordion-icon::after {
    color: #734e36;
}

.faq__accordion button[aria-expanded='true'] .faq__accordion-icon::after {
    transform: rotate(180deg);
}

.faq__accordion button[aria-expanded='true'] + .faq__accordion-content {
    opacity: 1;
    max-height: 75rem;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.faq__accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    text-align: left;
        
    display: flex;
    align-items: center;
    flex-direction: column;
}

.faq__accordion-content p {
}

.faq__accordion-content-text_and_image{
    width: 95%;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.faq__accordion-content-text_and_image p{
    width: 90%
}

.faq__accordion-content-text_and_image img{
    max-width: 50%
}


.faq--subheader .faq__accordion-title {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.faq--subheader .faq__accordion-title span{
    text-decoration: none;
    margin: -0.3rem 0 0.5rem;
    line-height: 1.4;
}
.slider-testimonials {
	text-align: center;
}

.slider-testimonials {
	padding-block: 4rem;
}

.slider-testimonials__header {
	margin: 0;
}

.slider-testimonials h1 {
	margin: 0;
}

.slider-testimonials .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.slider-testimonials .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.slider-testimonials .slider-wrapper {
	grid-template-columns: 1fr;
	display: grid;
	grid-gap: 70px;
}

@media (min-width: 768px) {
	.slider-testimonials .slider-wrapper {
		grid-gap: 28px;
	}
	.swiper-slide-prev,
	.swiper-slide-duplicate-prev {
		opacity: 0;
	}
}

.slider-testimonials .swiper-slide {
	height: initial;
}

.slider-testimonials .slide {
	width: 100%;
	display: inline-flex;
	margin-right: 0;
	flex-grow: 1;
}

.slider-testimonials .slide:last-child {
	margin-right: 0;
}

@media (min-width: 768px) {
	.slider-testimonials .slider-wrapper {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.slider-testimonials .swiper-alternative {
	margin-bottom: 40px;
	margin-inline: auto;
	position: relative;
}

@media (min-width: 1200px) {
	.slider-testimonials .swiper-alternative {
		max-width: unset;
		overflow: hidden;
		padding: 0;
		width: 100%;
	}
}

.slider-testimonials .swiper-button-next::after,
.slider-testimonials .swiper-button-prev:after {
	font-weight: 500;
	font-family: "icomoon";
	font-size: var(--fs-25);
	border-radius: 5px;
	padding: 0.7rem 0.7rem;
}

.slider-testimonials .swiper-button-prev::after {
	content: "🡠";
}

.slider-testimonials .swiper-button-next {
	left: auto;
	right: -1.5rem;
}

.slider-testimonials .swiper-button-prev {
	right: auto;
	left: -1.5rem;
}

@media (min-width: 1200px) {
	.slider-testimonials .swiper-button-next {
		left: auto;
		right: -1rem;
	}

	.slider-testimonials .swiper-button-prev {
		right: auto;
		left: -1rem;
	}
}

@media (min-width: 1600px) {
	.slider-testimonials .swiper-button-next {
		left: auto;
		right: -3.5rem;
	}

	.slider-testimonials .swiper-button-prev {
		right: auto;
		left: -3.5rem;
	}
}

.slider-testimonials .swiper-button-next::after {
	content: "🡢";
}

@media (max-width: 1200px) {
	.slider-testimonials .swiper-button-next::after,
	.slider-testimonials .swiper-button-prev:after {
		display: none;
	}
	.slider-testimonials .swiper-button-next {
		right: 30px;
	}

	.slider-testimonials {
		padding-left: 1.875rem;
	}
	.card-testimonial {
		margin-right: 1.875rem;
	}
}

.slider-testimonals .slider-slide {
	height: initial;
}

@media (min-width: 1400px) {
	.slider-testimonials .swiper-button-prev {
		left: -50px;
	}
	.slider-testimonials .swiper-button-next {
		right: -50px;
	}
}

@media (min-width: 1200px) {
	.slider-testimonials .swiper-pagination-horizontal {
		text-align: right;
	}

	.slider-testimonials .swiper-pagination-bullet {
		width: 10px;
		border-radius: 2px;
		height: 3px;
		margin: 0;
	}

	.slider-testimonials .swiper-pagination-bullet-active {
		outline: 0;
		border: 0;
	}

	.slider-testimonials .swiper-pagination-bullets,
	.slider-testimonials .swiper-pagination-bullets.swiper-pagination-horizontal {
		bottom: 0 !important;
	}

	.slider-testimonials .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0;
	}
	.slider-testimonials .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child) {
		margin: 0 4px;
	}
}

@media (max-width: 1200px) {
	.slider-testimonials .swiper-pagination-horizontal {
		display: none;
	}
}

@media (max-width: 1500px) {
	.slider-testimonials .swiper-button-next {
		right: 10px;
	}
	.slider-testimonials .swiper-button-prev {
		left: 11px;
	}
}
.slider-testimonials .swiper-container {
	width: 100%;
}

.slider-testimonials .swiper-container {
	overflow: visible;
	max-width: 1351px;
}
.slider-testimonials .swiper-button-next {
	right: -39px;
}
.slider-testimonials .swiper-button-prev {
	left: -39px;
}


.slider-testimonials .swiper-button-prev {
	color: #734e36;
}

.slider-testimonials .swiper-button-next {
	color: #734e36;
}

.swiper-pagination-bullet-active{
	background-color: #734e36;
}
.sell-course {
    margin: 4rem auto;
}

.sell-course__container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 5px;
    background-color: var(--clr-black);
}

@media( min-width: 768px ) {
    .sell-course__container {
        padding: 1.2rem;
    }
}

.sell-course__info {
    background-color: var(--clr-gray-shadow);
    border: 0;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px){
 .sell-course__info {
   text-align: center;
   padding-top: 2.55rem;
}
}
.sell-course__info h2 {
    margin-bottom: 2.5rem;
}
.sell-course__info-text {
 margin-bottom: 20px; 
}
.sell-course__courses,
.sell-course__info {
    width: 100%;
}

.sell-course__info span {
    margin-top: 1rem;
}

.sell-course__info-link {
    display: flex;
    align-items: baseline;
}
@media (max-width: 768px){
  .sell-course__info-link {
    margin-top: .3rem;
    justify-content: center;
  }
  .sell-course__info-link p {
        margin: 0 0 0.7rem;
    justify-content: space-around;
  }
}
.sell-course__info-link p {
    line-height: 1;
    display: flex;
    column-gap: 5px;
    flex-wrap: wrap;
}

.sell-course__info-link span::before {
    font-family: 'icomoon';
    content: "\e90a";
    color: #734e36;
    padding-right: 0.8rem;
}

.sell-course__info-link p a:not(.button):not(.cta_button) {
    margin-top: 0;
}

.sell-course__info-link p a:hover {
}

@media(min-width: 768px) {
    .sell-course__container {
        gap: 4%;
    }

    .sell-course__info {
        padding: 3rem 2rem 0.5rem;
    }

    .sell-course__courses {
        width: 43%;
    }

    .sell-course__info {
        width: 53%;
    }
}

@media (min-width: 992px) {
    .sell-course__container {
        gap: 2rem;
    }

    .sell-course__courses {
        width: calc( 45% - 1rem );
    }

    .sell-course__info {
        width: calc( 55% - 1rem );
    }
  .sell-course__variant  .sell-course__info {
    width: calc(49% - 1rem);
}
.sell-course__container.sell-course__variant  {
    gap: 1rem;
}
.sell-course__variant .sell-course__courses {
    width: 50%;
}
}

.sell-course__two-column .course-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
   grid-gap: 32px;
}
.course-item {
    border-bottom: 1px solid var(--clr-gray);
}

.dark-yellow .course-item svg {
    fill: var(--clr-accent);
}

.dark-yellow .course-item::before {
    color: var(--clr-accent);
  font-size: var(--fs-25);
}

.sell-course__variant .sell-course__info {
   background-color: transparent;
}
.sell-course__variant .course-item__content p {
    line-height: 42px;
}

@media (min-width: 768px) and (max-width: 900px){
  .sell-course__variant .course-items {
    padding: 3rem 1rem 3rem 0rem;
  }
.sell-course__two-column .course-items {
    grid-gap: 12px;
  }
}
@media (min-width: 900px){
.sell-course__variant .course-items {
    padding: 3rem 3rem 3rem 4rem;
}
}

.course-item__payment-gateways {
      margin-top: 0.5rem;
  margin-bottom: 0;
}
.col-form {
    background-color: var(--clr-gray);
  
}

.col-form__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3.75rem;
    padding-bottom: 2rem;
  row-gap: 0;
}

@media (min-width:768px) {
    .col-form__wrapper {
        grid-template-columns: 5fr 4fr;
        gap: 1rem;
    }
}

.col-form__right-wrapper {
    background-color: var(--clr-white);
    border: 1px solid #0000001C;
    border-radius: 5px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

@media (min-width:768px) {
    .col-form__right-wrapper {
        margin-top: -8rem;
    }

    .col-form__flat .col-form__right-wrapper {
        margin-top: -2rem;
    }
}

.col-form__right {
    position: relative;
    padding-inline: 0rem;
    padding-block: 1.5rem;
  grid-row-start: 1;
  grid-row-end: 4;
  grid-column-start: 2;
}


@media (min-width:768px) {
    .col-form__right {
        padding-inline: 2rem;
    }
}

.col-form__right-wrapper .heading-4 {
    margin-bottom: 0;
    padding-bottom: 2rem;
}

.col-form__left h2 {
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 1.25rem;
}

.col-form__left .col-form__left-text {
    padding-bottom: 2.5rem;
    text-align: left;
    line-height: calc(30 / 16);
}
@media (max-width:768px) {
  .col-form__left .col-form__left-text {
  padding-inline: 1.875rem;
  }
}
.col-form__left .contact-block {
    padding-inline: 1.875rem;
    border-radius: 5px;
    padding-bottom: 0.5rem;
    max-width: 100%;
}

@media (min-width:768px) {
    .col-form__left .contact-block {
        max-width: 32.5rem;
    padding-inline: 1.5rem;
    }
}

.col-form__left .contact-block__box {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

.col-form__left .contact-block__links {
    padding-block: 1.5rem;
}

@media (min-width:768px) {
    .col-form__right {
        padding-inline: 1rem;
    }
}

.hs-button[type=submit] {
    padding-bottom: 2rem;
    text-decoration: none;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    border: 0px;
    box-shadow: 4px 4px 1px var(--clr-black);
}
.hs-submit {
    display: flex;
  
  padding-right: 5px;
}

form input[type=email], form input[type=file], input[type=date] , input[type=number], form input[type=password], form input[type=search], form input[type=tel], form input[type=text], form select, form textarea,
.hs-input[type=email],
.hs-input[type=email] {
    background: var(--clr-gray) 0% 0% no-repeat padding-box;
    border: 1px solid #ADADAD5D;
    border-radius: 3px;
    padding: 0.9rem;
    -webkit-appearance: none;
}


form .hs-dateinput input[type=date] {
      padding: 0.9rem 0.9rem 0.9rem 1.5rem;
}
label:not(.hs-form-checkbox-display):not(.hs-form-radio-display) {
    font-weight: 700;
}

 label {
}

 textarea {
    background: var(--clr-gray) 0% 0% no-repeat padding-box;
    border: 1px solid #ADADAD5D;
    border-radius: 3px;
    padding: 0.9rem;
    min-height: 7rem;
}

 .hs-input[type=checkbox]:checked {
    background-color: rgb(60, 69, 77, 0.9);
}

 .hs-form-radio-display input:checked+span:before {
    box-shadow: inset 0 0 0 0.4375em #734e36;
}

.hs-form-radio-display span {
    display: flex;
    /* align-items: center; */
    padding: 0.375em 0.75em 0.375em 0em;
    border-radius: 99em;
    transition: 0.25s ease;
}

.hs-form-radio-display span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.14em #734e36;
    margin-right: 0.65rem;
    margin-top: 0.3rem;
}

 .hs-form-radio-display {
    display: flex;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.hs-form-radio-display input {
    position: absolute;
    left: -9999px;
}

 .hs-form-checkbox-display {
    display: flex;
    margin-bottom: 0.7rem;
}
.hs-input[type=checkbox] {
    appearance: none;
    height: 1.25rem;
    width: 1.25rem;
    border: 2px solid #734e36;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

 .hs-input[type=checkbox]::after {
    content: "✓";
    font-family: 'icomoon';
    color: var(--clr-white);
    font-size: 0.85rem;
    display: none;
    font-weight: 700;
}

.hs-input[type=checkbox]:checked {
    background-color: #734e36;
}

 .hs-input[type=checkbox]:checked::after {
    display: block;
}

 form .inputs-list > li {
    margin: 0;
}


@media only screen and (max-width: 768px){
  .col-form .col-form__wrapper{
    padding: 0 1.875rem;
    padding-top: 2.937rem;
    padding-bottom: 2.938rem;
    row-gap: 1.625rem;
  }

  .col-form .col-form__wrapper .heading-2{
    line-height: 2.312rem;
    margin-bottom: 0.75rem;
  }
  
.col-form .col-form__right{
grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 1;
  padding-top: 0;
  padding-bottom: 0;
}
  .col-form__left-introduction{
  display: none;
  }
  .col-form .contact-block{
  padding: 0;
    background: transparent;
  }
  .col-form .contact-block .contact-block__links{
  display: flex;
    flex-direction: column-reverse;
    padding-top: 0;
    gap: 0.625rem;
  }
  .col-form .contact-block .contact-block__icon:before{
  color: var(--clr-black);
  
  }
  .col-form .contact-block .contact-block__icon{
  padding: 0;
    padding-left: 2.063rem;
  }
  .col-form .contact-block .contact-block__icon:before{
      font-size: 1rem;
    bottom: 0;
  }
  .col-form .contact-block .contact-block__box .icon-box{
    box-shadow: 2px 2px var(--clr-black);
    width: 2.5rem;
    height: 2.5rem;
  }
  .col-form .contact-block .contact-block__box{
  padding-bottom: 0;
  }
  .col-form .contact-block .contact-block__box .icon-box:after{
  font-size: 1.125rem;
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px){
.col-form .col-form__wrapper{
  padding-left: 1.875rem;
  }
}
ul.tips li {
  position: relative;
}
ul.tips li:before{
    content: '✓';
       left: -21px;
    font-family: 'icomoon';
    position: absolute;
}
ul.tips {
 list-style-type: none;
  margin-top: 10px;
  margin-left: 16px;
}
.col-form__left ul {
position: relative;
}
.col-form__left ul li, 
.col-form__right-wrapper> ul li{
list-style: none;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.col-form__left ul li:before, 
.col-form__right-wrapper> ul li:before{
    content: '✓';
    left: 0;
    font-family: 'icomoon';
    position: absolute;
}


  .col-form__form .showfeedback .input:after{ 
    display: block;
    position: absolute;
    right: 0px;
    text-align: right;
    z-index: 199;
  }
  .hs-fieldtype-intl-phone.hs-input {
    width: 100% !important;
  }
    .col-form__form .showerror .hs-error-msgs:after{
    text-align: right;
    position: absolute;
    right: 10px;
    top: 0;
  }
  .col-form__form  .hs-phone .input.showerror:after{
    left: unset;
    text-align: right;
    position: absolute;
    right: 10px;
  }

  .col-form__form .hs-error-msg, .col-form__form .hs-error-msgs {
    display: block;
    font-size: 0;
    height: 15px;
    position: relative;
    margin-top: 0;
  }

   .col-form__form .hs-error-msgs {
      display: none;
  }
.col-form__form .hs-error-msgs:has(a) {
      display: block;
    text-align: right;
  background: white;
  z-index: 200;
  }
.col-form__form .hs-error-msgs a {
}
.col-form__form .hs-error-msgs:has(a):after {
  display: none;
}
  .col-form__form .showerror .hs-error-msgs {
    height: 40px;
    display: block;
  }
.experts-video {
    padding-block: 2rem;
}

@media (min-width:768px) {
    .experts-video {
        padding-block: 3rem;
    }
}
@media (max-width: 1350px){
.experts-video {
 padding: 2rem; 
}
}
.experts-video__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;

}
.experts-video__cards.experts-video__cards-single {
  grid-template-columns: 1fr;
}

.experts-video__card{
    display: flex;
    flex-direction: column;
    align-items: center;
} 

.experts-video__card .hs_cos_wrapper {
    border-radius: 5px;
    overflow: hidden;
}

.experts-video__content {
    padding-top: 1.25rem;
}

.experts-video__title {
    margin-bottom: 0;
    padding-bottom: 1.87rem;
}

.experts-video__name {
    padding-bottom: 0.62rem;
    margin-bottom: 0;
}

.experts-video__role {
}
@media (max-width: 768px){
  .experts-video__name, .experts-video__title {
    margin: 0;
  }
}
@media (min-width:768px) {

    .experts-video__cards {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }
  .experts-video__cards.experts-video__cards-duo {
    grid-template-columns: 1fr 1fr;
}
}

.experts-video__cards .hs_video_widget {
    border-radius: 5px;
    opacity: 0.61;
}



.experts-video__card .experts-video__image {
    width: 100%; 
    aspect-ratio: 1.8;
    position: relative;
   line-height: 0;
      max-width: 700px;
    margin: 0 auto;
      border-radius: 5px;
    overflow: hidden;
}
.experts-video__card .experts-video__image:hover .experts-video__play {
   animation: mymove infinite;
  animation-duration: .8s;
  animation-iteration-count: 5;
}
@keyframes mymove {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}
.experts-video__card .experts-video__images {
    overflow: hidden;
    z-index: 8;
    border-radius: 5px;
}

.experts-video__card .experts-video__image::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 25, 22, 0.6);
    z-index: 1;
}

.experts-video__card .experts-video__picture {
    z-index: 0;
    position: absolute;
    text-align: center;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;

}

.experts-video__card .experts-video__play {
    z-index: 2;
    position: absolute;
    top: calc(50% - 2.5rem);
    left: calc(50% - 2.5rem);
    width: 5rem;
}

.experts-video__card .experts-video__images:hover .experts-video__picture {
    -moz-transform: scale(1.2) rotate(0deg);
    -webkit-transform: scale(1.2) rotate(0deg);
    -o-transform: scale(1.2) rotate(0deg);
    -ms-transform: scale(1.2) rotate(0deg);
    transform: scale(1.2) rotate(0deg);
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
}

.experts-video__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 140;
    background-color: hsla(0, 0%, 0%, 0.7);
    justify-content: center;
    align-items: center;
}

.experts-video__modal.active {
    display: flex;
}
@media (max-width: 768px){
.experts-video__modal-inner{
 width: 100%; 
}
}
  @media (min-width: 768px){
.experts-video__modal-inner {
    min-height: 90vh;
    width: 90vw;
  align-items: start;
  }
}
.experts-video__cards {
    position: relative;
}

.experts-video__card .hs-video-widget {
    display: none;

}

.experts-video__modal-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media (max-width:768px) and (min-width:480px) {
    .experts-video__modal-inner {
        min-height: 18.5rem;
        width: 26.62rem;
    }
}



.experts-video__modal.active .hs-video-widget {
    width: 100%;
    min-height: 100%;
}

@media (max-width:768px) and (min-width:480px) {
    .experts-video__modal.active .hs-video-widget {
        width: 100%;
    }
}

@media (min-width:768px) {
    .experts-video__modal.active .hs-video-widget {
        width: 100%;
    }
}

.experts-video__close {
    position: absolute;
    top: 0px;
    right: 4px;
    z-index: 2;
}

.experts-video__close:hover {
    cursor: pointer;
}

.show-video .experts-video__image,
.show-video img {
 display: none; 
}
.show-video .hs-video-widget {
    display: block;
    max-width: 700px;
    margin: 0 auto;
}
.show-video .hs-video-widget .experts-video__youtube {
    width: 100%;
    aspect-ratio: 1.8;
    display: block;
}
.filter {
    margin-block: 2rem;
}

@media (min-width:992px){
    .filter {
        margin: 5rem 0 2rem;
    }
}
@media (max-width:1200px){
.filter, .coaches{
padding: 0 1.875rem;
}
}
.filter__wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0rem;
    padding: 2rem 1rem;
    background-color: var(--clr-white);
    border: 1px solid var(--clr-black);
    border-radius: 5px;
}

@media (min-width:768px){
    .filter__wrapper{
        flex-direction: row;
        padding: 1rem 1rem;
        gap: 2.5rem;
    }
}

@media(min-width:1200px){
    .filter__wrapper {
        justify-content: space-between;
    }
}

.filter__wrapper li label span{
}

.filter__wrapper ul {
    margin-bottom: 0;
    gap: 1.5rem;
    padding: 0;
}

@media (min-width:768px){
    .filter__wrapper ul{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.7rem;
        padding-left: 1rem;
    }
}

.filter__wrapper ul li {
    list-style-type: none;
    padding-bottom: 1rem;
}
@media (min-width:768px){
    .filter__wrapper ul li {

        padding-bottom: 0rem;
    }

}
.filter__wrapper ul li h2{
    margin-bottom: 0;
    padding-bottom: 1rem;
}

@media(min-width:768px){
    .filter__wrapper ul li h2{
        padding-bottom: 0rem;
    }
}

.filter__wrapper ul label{
    display: flex;
    align-items: center;
}

.filter__wrapper input[type=checkbox],
.filter__wrapper input[type=radio] {
    appearance: none;
    height: 1.25rem;
    width: 1.25rem;
    border: 2px solid #734e36;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.50rem;
    flex-shrink: 0;
}
.filter__wrapper input[type=checkbox]:after,
.filter__wrapper input[type=radio]::after {
    content: "✓";
    font-family: 'icomoon';
    color: var(--clr-white);
    font-size: 0.85rem;
    display: none;
    font-weight: 700;
}
.filter__wrapper input[type=checkbox]:checked,
.filter__wrapper input[type=radio]:checked {
    background-color: #734e36;
}
.filter__wrapper input[type=checkbox]:checked::after,
.filter__wrapper input[type=radio]:checked::after {
    display: block;
}

.filter__wrapper .filter__dropdown{
    position: relative;
    width: 100%;
    max-width: 25rem;
}

@media(max-width:767px){
    .filter__wrapper .filter__dropdown{
        margin-top: 1.5rem;
    }
}

.filter__wrapper select{
    background-color: var(--clr-gray);
    padding: 0.75rem 0.8rem 0.75rem 1rem;
    border: 1px solid #ADADAD5D;
    width: 100%;
    border-radius: 3px;
    font-weight: 300;
    font-family: var(--ff-text);

    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
}
@media (min-width:768px){
    .filter__wrapper .filter__dropdown{
        width: 20rem;
    }
}
.filter__wrapper select:focus{
    outline: none;
}
.filter__wrapper .filter__dropdown:after{
    position: absolute;
    content: "\e91a";
    color: #ADADAD5D;
    font-family: 'icomoon';
    font-size: 1rem;
    font-weight: 700;
    right: 1rem;
    top: 0.6rem;
}
.filter__wrapper select option{
    font-family: var(--ff-text);
    font-weight: 300;
    padding-right:  1rem;
}




.header-alert__section {
     margin-top: -1px; 
}
.header-alert .leader__footer-icon.calendar:before{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons  Inc. --%3E%3Cpath fill='black' d='M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z'/%3E%3C/svg%3E");
}
.header-alert .leader__footer-icon.clock:before{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons  Inc. --%3E%3Cpath fill='black' d='M232 120C232 106.7 242.7 96 256 96C269.3 96 280 106.7 280 120V243.2L365.3 300C376.3 307.4 379.3 322.3 371.1 333.3C364.6 344.3 349.7 347.3 338.7 339.1L242.7 275.1C236 271.5 232 264 232 255.1L232 120zM256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0zM48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256z'/%3E%3C/svg%3E");
}
.header-alert .leader__date_time>div:first-of-type {
   padding-right: 10px;
 }
.header-alert .leader__date_time>div:last-of-type {
   padding-left: 15px;
 }
.header-alert .leader__date_time>div:first-of-type {
   border-right: 1px solid rgba(255,255,255, 0.7); 
}
.header-alert .leader__date_time {
  gap: 0px;
  justify-content: end;
}
.header-alert__container {
  display: flex;
  align-items: center;
  justify-content: space-between
}
.header-alert__black .leader__footer-icon.calendar:before{
  color: #734e36;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.2.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons  Inc. --%3E%3Cpath fill='#734e36' d='M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z'/%3E%3C/svg%3E");
}
.header-alert__black .leader__footer-icon.clock:before{
  color: #734e36;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons  Inc. --%3E%3Cpath fill='#734e36' d='M232 120C232 106.7 242.7 96 256 96C269.3 96 280 106.7 280 120V243.2L365.3 300C376.3 307.4 379.3 322.3 371.1 333.3C364.6 344.3 349.7 347.3 338.7 339.1L242.7 275.1C236 271.5 232 264 232 255.1L232 120zM256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0zM48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256z'/%3E%3C/svg%3E");
}

.header-alert__link,
.header-alert__container .leader__date-time {
      justify-self: end;
}
.header-alert__container h6 {
  margin: 15px 0;
}
.header-alert__container a {
}
@media (max-width: 1200px){
 .header-alert {
  padding: 0 1.875rem;
}
}
@media (max-width: 993px){
.header-alert .leader__date_time>div:last-of-type {
  display: none;
}
  .header-alert .leader__date_time>div:first-of-type {
   border-right: none; 
}
}
@media (max-width: 768px){
 .header-alert__container  {
}

.header-alert__container h6 { 
  margin: 10px auto; }
.header-alert__link { 
  justify-self: start;
  padding-left: 10px;} 
}

.header-alert__container.container {
    max-width: 1000px;
}

.header-alert__section.active {
    bottom: unset;
    display: block;
    left: 0;
    padding-inline: 0;
    position: fixed;
    right: unset;
    top: 59px;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 992px){
  .header-alert__section.active  {
    top: 0;
  }
}
.text-testimonials{
    position: relative;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.text-testimonials.background-dark {
}
.text-testimonials__image{
      height: 29.5625rem;
  }

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

  .text-testimonials__heading{
        position: relative;
    background: white;
padding-bottom: 2rem;
  }
.text-testimonials__heading h2{
  line-height: 3.125rem;
  
}

.text-testimonials__heading_2{
    padding-top: 5.5625rem;
    padding-left: 4.5625rem;
    padding-right: 4.5rem;
}

.text-testimonials__content p{
line-height: 1.875rem;
}

.text-testimonials__container{
    display: grid;
    background-color: #fff;
  grid-template-columns: 1fr 1fr;
    grid-gap: 1.875rem;
    padding-top: 3rem;
}
.background-dark .text-testimonials__container{
   padding-top: 5.1875rem;
}
.text-testimonials__item-image{
    width: 5.3125rem;
    height: 5.3125rem;
    border-radius: 50%;
    overflow: hidden;
  grid-area: 1 / 1 / 3 / 2;
  }
.text-testimonials__item-heading{
display: grid;
grid-template-columns: 4.625rem auto;
grid-template-rows: auto auto;
grid-column-gap: 1.875rem;
grid-row-gap: 0px;
    margin-bottom: 1.375rem;
  }
  

.text-testimonials__item-content h2{
  display: inline-block;
    margin-bottom: 0;
  }

.text-testimonials__item-content{
   grid-area: 1 / 2 / 2 / 3; 
}
.text-testimonials__item-text{
    line-height: 1.875rem;
  grid-area: 2 / 2 / 3 / 3; 
  }
.text-testimonials__dark {
      display: grid;
    grid-template-columns: 1fr 1fr;
     background: #000;
}
@media only screen and (max-width: 1200px){
.text-testimonials__container{
  padding-inline: 2rem;
  }
  .text-testimonials__heading h2{
      margin: 0 30px;
  }
    .text-testimonials__title{
    padding-inline: 1.875rem;
  }
}
@media only screen and (max-width: 768px){
.text-testimonials{
  margin-top: 0;
  margin-bottom: 0;
     background: #000;
}
  .text-testimonials.white {
       background: #fff;
  }
  .text-testimonials__image{
      height: 24.25rem;
    width: 100%;
  }

.text-testimonials__dark {
    display: grid;
    grid-template-columns: 1fr;
}

  .text-testimonials__image img{
    object-position: 20%;
  }
  
  .text-testimonials__wrapper{
    padding: 2.875rem 2rem 0 1.875rem;
  }
  .text-testimonials__heading.background-dark {
    position: absolute;
    top: 0;
    margin: 2.375rem 2.9375rem 0 1.875rem;
      background: transparent;
  }
    .text-testimonials__heading {
    margin: 2.375rem 1.875rem 0 1.875rem;
   padding-top: 1.875rem;
         background: transparent;
  }
  .text-testimonials__heading h2{
  line-height: 2.3125rem;
    margin: 0;
}
    .text-testimonials.white  .text-testimonials__heading h2{
  }
  .text-testimonials__content p, .text-testimonials__item p{
    margin-bottom: 0;
  }
  .text-testimonials__heading_2{
  margin-bottom: 2.125rem;
    float: none;
    width: 100%;
    margin-top: 0;
    padding: 0;
       margin-left: 0;
  }
  .text-testimonials__title{
    line-height: 2.3125rem;
  }
  .text-testimonials.white .text-testimonials__title{
  }
  
  .text-testimonials__container{
    display: block;
    background-color: #000;
   padding: 0 2rem 3.8125rem 1.875rem;
}
  .text-testimonials__container.white {
        background-color: #fff;
  }
.text-testimonials__item{
  margin-bottom: 2.1875rem;
  }
  .text-testimonials__item-heading{
grid-template-rows: auto 1fr;
  }
.text-testimonials__item-image{
    width:  4.375rem;
    height:  4.375rem;
   grid-area: 1 / 1 / 3 / 3;
  }
.text-testimonials__item-image img{
    object-fit: cover;
      background: #734e36;
  }
.text-testimonials__item-content h2{
    margin-bottom: 0;
    line-height: 2.1875rem;
    word-break: break-word;
  hyphens: auto;
  }
  .text-testimonials__item-content{
  margin-top: 0;
    margin-bottom: 30px; 
   
  }
  .text-testimonials__item .text-testimonials__item-text{
    margin-top: 15px;
    margin-left: 0;
 grid-area: 2 / 1 / 3 / 3;
  }
}


/* plugins  */
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
	--swiper-theme-color: #734e36;
}
:host {
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}
.swiper {
	display: block;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}
.swiper-wrapper {
	box-sizing: initial;
	display: flex;
	height: 100%;
	position: relative;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	width: 100%;
	z-index: 1;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translateZ(0);
}
.swiper-horizontal {
	touch-action: pan-y;
}
.swiper-vertical {
	touch-action: pan-x;
}
.swiper-slide {
	display: block;
	flex-shrink: 0;
	height: 100%;
	position: relative;
	transition-property: transform;
	width: 100%;
}
.swiper-slide-invisible-blank {
	visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}
.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
	backface-visibility: hidden;
	transform: translateZ(0);
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}
.swiper-3d {
	perspective: 1200px;
	.swiper-cube-shadow,
	.swiper-slide {
		transform-style: preserve-3d;
	}
}
.swiper-css-mode {
	> .swiper-wrapper {
		overflow: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		&::-webkit-scrollbar {
			display: none;
		}
	}
	> .swiper-wrapper > .swiper-slide {
		scroll-snap-align: start start;
	}
	&.swiper-horizontal {
		> .swiper-wrapper {
			scroll-snap-type: x mandatory;
		}
	}
	&.swiper-vertical {
		> .swiper-wrapper {
			scroll-snap-type: y mandatory;
		}
	}
	&.swiper-free-mode {
		> .swiper-wrapper {
			scroll-snap-type: none;
		}
		> .swiper-wrapper > .swiper-slide {
			scroll-snap-align: none;
		}
	}
	&.swiper-centered {
		> .swiper-wrapper:before {
			content: "";
			flex-shrink: 0;
			order: 9999;
		}
		> .swiper-wrapper > .swiper-slide {
			scroll-snap-align: center center;
			scroll-snap-stop: always;
		}
	}
	&.swiper-centered.swiper-horizontal {
		> .swiper-wrapper > .swiper-slide:first-child {
			margin-inline-start: var(--swiper-centered-offset-before);
		}
		> .swiper-wrapper:before {
			height: 100%;
			min-height: 1px;
			width: var(--swiper-centered-offset-after);
		}
	}
	&.swiper-centered.swiper-vertical {
		> .swiper-wrapper > .swiper-slide:first-child {
			margin-block-start: var(--swiper-centered-offset-before);
		}
		> .swiper-wrapper:before {
			height: var(--swiper-centered-offset-after);
			min-width: 1px;
			width: 100%;
		}
	}
}
.swiper-3d {
	.swiper-slide-shadow,
	.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-left,
	.swiper-slide-shadow-right,
	.swiper-slide-shadow-top {
		height: 100%;
		left: 0;
		pointer-events: none;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 10;
	}
	.swiper-slide-shadow {
		background: #00000026;
	}
	.swiper-slide-shadow-left {
		background-image: linear-gradient(270deg, #00000080, #0000);
	}
	.swiper-slide-shadow-right {
		background-image: linear-gradient(90deg, #00000080, #0000);
	}
	.swiper-slide-shadow-top {
		background-image: linear-gradient(0deg, #00000080, #0000);
	}
	.swiper-slide-shadow-bottom {
		background-image: linear-gradient(180deg, #00000080, #0000);
	}
}
.swiper-lazy-preloader {
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top: 4px solid #0000;
	box-sizing: border-box;
	height: 42px;
	left: 50%;
	margin-left: -21px;
	margin-top: -21px;
	position: absolute;
	top: 50%;
	transform-origin: 50%;
	width: 42px;
	z-index: 10;
}
.swiper-watch-progress .swiper-slide-visible,
.swiper:not(.swiper-watch-progress) {
	.swiper-lazy-preloader {
		animation: swiper-preloader-spin 1s linear infinite;
	}
}
.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(1turn);
	}
}
.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
	.swiper-wrapper:after {
		content: "";
		left: 0;
		pointer-events: none;
		position: absolute;
		top: 0;
	}
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
	.swiper-wrapper:after {
		height: 1px;
		width: var(--swiper-virtual-size);
	}
}
.swiper-virtual.swiper-css-mode.swiper-vertical {
	.swiper-wrapper:after {
		height: var(--swiper-virtual-size);
		width: 1px;
	}
}
:root {
	--swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
	align-items: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
	cursor: pointer;
	display: flex;
	height: var(--swiper-navigation-size);
	justify-content: center;
	position: absolute;
	width: var(--swiper-navigation-size);
	z-index: 10;
	&.swiper-button-disabled {
		cursor: auto;
		opacity: 0.35;
		pointer-events: none;
	}
	&.swiper-button-hidden {
		cursor: auto;
		opacity: 0;
		pointer-events: none;
	}
	.swiper-navigation-disabled & {
		display: none !important;
	}
	svg {
		height: 100%;
		object-fit: contain;
		transform-origin: center;
		width: 100%;
		fill: currentColor;
		pointer-events: none;
	}
}
.swiper-button-lock {
	display: none;
}
.swiper-button-next,
.swiper-button-prev {
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-button-prev {
	left: var(--swiper-navigation-sides-offset, 4px);
	right: auto;
	.swiper-navigation-icon {
		transform: rotate(180deg);
	}
}
.swiper-button-next {
	left: auto;
	right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal {
	.swiper-button-next,
	.swiper-button-prev,
	~ .swiper-button-next,
	~ .swiper-button-prev {
		margin-left: 0;
		margin-top: calc(0px - var(--swiper-navigation-size) / 2);
		top: var(--swiper-navigation-top-offset, 50%);
	}
	&.swiper-rtl .swiper-button-next,
	&.swiper-rtl ~ .swiper-button-next,
	& ~ .swiper-button-prev,
	.swiper-button-prev {
		left: var(--swiper-navigation-sides-offset, 4px);
		right: auto;
	}
	&.swiper-rtl .swiper-button-prev,
	&.swiper-rtl ~ .swiper-button-prev,
	& ~ .swiper-button-next,
	.swiper-button-next {
		left: auto;
		right: var(--swiper-navigation-sides-offset, 4px);
	}
	&.swiper-rtl .swiper-button-next,
	&.swiper-rtl ~ .swiper-button-next,
	& ~ .swiper-button-prev,
	.swiper-button-prev {
		.swiper-navigation-icon {
			transform: rotate(180deg);
		}
	}
	&.swiper-rtl .swiper-button-prev,
	&.swiper-rtl ~ .swiper-button-prev {
		.swiper-navigation-icon {
			transform: rotate(0deg);
		}
	}
}
.swiper-vertical {
	.swiper-button-next,
	.swiper-button-prev,
	~ .swiper-button-next,
	~ .swiper-button-prev {
		left: var(--swiper-navigation-top-offset, 50%);
		margin-left: calc(0px - var(--swiper-navigation-size) / 2);
		margin-top: 0;
		right: auto;
	}
	.swiper-button-prev,
	~ .swiper-button-prev {
		bottom: auto;
		top: var(--swiper-navigation-sides-offset, 4px);
		.swiper-navigation-icon {
			transform: rotate(-90deg);
		}
	}
	.swiper-button-next,
	~ .swiper-button-next {
		bottom: var(--swiper-navigation-sides-offset, 4px);
		top: auto;
		.swiper-navigation-icon {
			transform: rotate(90deg);
		}
	}
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	transform: translateZ(0);
	transition: opacity 0.3s;
	z-index: 10;
	&.swiper-pagination-hidden {
		opacity: 0;
	}
	&.swiper-pagination-disabled,
	.swiper-pagination-disabled > & {
		display: none !important;
	}
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 8px);
	left: 0;
	top: var(--swiper-pagination-top, auto);
	width: 100%;
}
.swiper-pagination-bullets-dynamic {
	font-size: 0;
	overflow: hidden;
	.swiper-pagination-bullet {
		position: relative;
		transform: scale(0.33);
	}
	.swiper-pagination-bullet-active,
	.swiper-pagination-bullet-active-main {
		transform: scale(1);
	}
	.swiper-pagination-bullet-active-prev {
		transform: scale(0.66);
	}
	.swiper-pagination-bullet-active-prev-prev {
		transform: scale(0.33);
	}
	.swiper-pagination-bullet-active-next {
		transform: scale(0.66);
	}
	.swiper-pagination-bullet-active-next-next {
		transform: scale(0.33);
	}
}
.swiper-pagination-bullet {
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
	display: inline-block;
	height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
	width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
	button& {
		appearance: none;
		border: none;
		box-shadow: none;
		margin: 0;
		padding: 0;
	}
	.swiper-pagination-clickable & {
		cursor: pointer;
	}
	&:only-child {
		display: none !important;
	}
}
.swiper-pagination-bullet-active {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	opacity: var(--swiper-pagination-bullet-opacity, 1);
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
	left: var(--swiper-pagination-left, auto);
	right: var(--swiper-pagination-right, 8px);
	top: 50%;
	transform: translate3d(0, -50%, 0);
	.swiper-pagination-bullet {
		display: block;
		margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
	}
	&.swiper-pagination-bullets-dynamic {
		top: 50%;
		transform: translateY(-50%);
		width: 8px;
		.swiper-pagination-bullet {
			display: inline-block;
			transition:
				transform 0.2s,
				top 0.2s;
		}
	}
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
	.swiper-pagination-bullet {
		margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
	}
	&.swiper-pagination-bullets-dynamic {
		left: 50%;
		transform: translateX(-50%);
		white-space: nowrap;
		.swiper-pagination-bullet {
			transition:
				transform 0.2s,
				left 0.2s;
		}
	}
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition:
		transform 0.2s,
		right 0.2s;
}
.swiper-pagination-fraction {
	color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
	background: var(--swiper-pagination-progressbar-bg-color, #00000040);
	position: absolute;
	.swiper-pagination-progressbar-fill {
		background: var(--swiper-pagination-color, var(--swiper-theme-color));
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		transform: scale(0);
		transform-origin: left top;
		width: 100%;
	}
	.swiper-rtl & .swiper-pagination-progressbar-fill {
		transform-origin: right top;
	}
	&.swiper-pagination-horizontal,
	&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
	.swiper-horizontal > &,
	.swiper-vertical > &.swiper-pagination-progressbar-opposite {
		height: var(--swiper-pagination-progressbar-size, 4px);
		left: 0;
		top: 0;
		width: 100%;
	}
	&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
	&.swiper-pagination-vertical,
	.swiper-horizontal > &.swiper-pagination-progressbar-opposite,
	.swiper-vertical > & {
		height: 100%;
		left: 0;
		top: 0;
		width: var(--swiper-pagination-progressbar-size, 4px);
	}
}
.swiper-pagination-lock {
	display: none;
}
.swiper-scrollbar {
	background: var(--swiper-scrollbar-bg-color, #0000001a);
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	position: relative;
	touch-action: none;
	&.swiper-scrollbar-disabled,
	.swiper-scrollbar-disabled > & {
		display: none !important;
	}
	&.swiper-scrollbar-horizontal,
	.swiper-horizontal > & {
		bottom: var(--swiper-scrollbar-bottom, 4px);
		height: var(--swiper-scrollbar-size, 4px);
		left: var(--swiper-scrollbar-sides-offset, 1%);
		position: absolute;
		top: var(--swiper-scrollbar-top, auto);
		width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
		z-index: 50;
	}
	&.swiper-scrollbar-vertical,
	.swiper-vertical > & {
		height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
		left: var(--swiper-scrollbar-left, auto);
		position: absolute;
		right: var(--swiper-scrollbar-right, 4px);
		top: var(--swiper-scrollbar-sides-offset, 1%);
		width: var(--swiper-scrollbar-size, 4px);
		z-index: 50;
	}
}
.swiper-scrollbar-drag {
	background: var(--swiper-scrollbar-drag-bg-color, #00000080);
	border-radius: var(--swiper-scrollbar-border-radius, 10px);
	height: 100%;
	left: 0;
	position: relative;
	top: 0;
	width: 100%;
}
.swiper-scrollbar-cursor-drag {
	cursor: move;
}
.swiper-scrollbar-lock {
	display: none;
}
.swiper-zoom-container {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	text-align: center;
	width: 100%;
	> canvas,
	> img,
	> svg {
		max-height: 100%;
		max-width: 100%;
		object-fit: contain;
	}
}
.swiper-slide-zoomed {
	cursor: move;
	touch-action: none;
}
.swiper .swiper-notification {
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
	margin: 0 auto;
	transition-timing-function: ease-out;
}
.swiper-grid > .swiper-wrapper {
	flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
	flex-direction: column;
	flex-wrap: wrap;
}
.swiper-fade {
	&.swiper-free-mode {
		.swiper-slide {
			transition-timing-function: ease-out;
		}
	}
	.swiper-slide {
		pointer-events: none;
		transition-property: opacity;
		.swiper-slide {
			pointer-events: none;
		}
	}
	.swiper-slide-active {
		pointer-events: auto;
		& .swiper-slide-active {
			pointer-events: auto;
		}
	}
}
.swiper.swiper-cube {
	overflow: visible;
}
.swiper-cube {
	.swiper-slide {
		backface-visibility: hidden;
		height: 100%;
		pointer-events: none;
		transform-origin: 0 0;
		visibility: hidden;
		width: 100%;
		z-index: 1;
		.swiper-slide {
			pointer-events: none;
		}
	}
	&.swiper-rtl .swiper-slide {
		transform-origin: 100% 0;
	}
	.swiper-slide-active {
		&,
		& .swiper-slide-active {
			pointer-events: auto;
		}
	}
	.swiper-slide-active,
	.swiper-slide-next,
	.swiper-slide-prev {
		pointer-events: auto;
		visibility: visible;
	}
	.swiper-cube-shadow {
		bottom: 0;
		height: 100%;
		left: 0;
		opacity: 0.6;
		position: absolute;
		width: 100%;
		z-index: 0;
		&:before {
			background: #000;
			bottom: 0;
			content: "";
			filter: blur(50px);
			left: 0;
			position: absolute;
			right: 0;
			top: 0;
		}
	}
}
.swiper-cube {
	.swiper-slide-next + .swiper-slide {
		pointer-events: auto;
		visibility: visible;
	}
}
.swiper-cube {
	.swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-cube.swiper-slide-shadow-left,
	.swiper-slide-shadow-cube.swiper-slide-shadow-right,
	.swiper-slide-shadow-cube.swiper-slide-shadow-top {
		backface-visibility: hidden;
		z-index: 0;
	}
}
.swiper.swiper-flip {
	overflow: visible;
}
.swiper-flip {
	.swiper-slide {
		backface-visibility: hidden;
		pointer-events: none;
		z-index: 1;
		.swiper-slide {
			pointer-events: none;
		}
	}
	.swiper-slide-active {
		&,
		& .swiper-slide-active {
			pointer-events: auto;
		}
	}
}
.swiper-flip {
	.swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
	.swiper-slide-shadow-flip.swiper-slide-shadow-left,
	.swiper-slide-shadow-flip.swiper-slide-shadow-right,
	.swiper-slide-shadow-flip.swiper-slide-shadow-top {
		backface-visibility: hidden;
		z-index: 0;
	}
}
.swiper-creative {
	.swiper-slide {
		backface-visibility: hidden;
		overflow: hidden;
		transition-property: transform, opacity, height;
	}
}
.swiper.swiper-cards {
	overflow: visible;
}
.swiper-cards {
	.swiper-slide {
		backface-visibility: hidden;
		overflow: hidden;
		transform-origin: center bottom;
	}
}

/* Theme field overrides (loads last so design settings win) */






/* 1a. Containers */


  



  


/* 1b. Colors */







/* 1c. Typography */





























/* 1d. Buttons — single default size (former regular preset; no theme fields). */
























/* 1e. Forms */






























/* 1f. Icons */



/* 1g. Cards */






/* 1h. Tables */













/* 1i. Website header */



























/* 1j. Website footer */













/* Drag and drop layout styles */

.dnd-section {
  padding: 60px 20px;
}

/* Padding on blog post sections */

.blog-post-section {
  padding: 60px 0;
}

/* .content-wrapper is used for blog post and system templates and .header-wrapper is used for the website header module */

.dnd-section > .row-fluid,
.content-wrapper,
.header__wrapper {
  max-width: 1000px;
}





html {
  font-size: 16px;
}

body {
  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
  background-color: #f8f8f8;
  color: #231f20;
  font-size: 16px;
}

/* Paragraphs */

p {
  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
}

/* Anchors */

a {
  font-weight: 600; text-decoration: underline; font-family: 'Source Serif Pro', serif; font-style: normal;
  color: #231f20;
}

a:hover,
a:focus {
  font-weight: 600; text-decoration: underline; font-family: 'Source Serif Pro', serif; font-style: normal;
  color: #415239;
}

a:active {
  font-weight: 600; text-decoration: underline; font-family: 'Source Serif Pro', serif; font-style: normal;
  color: #91a289;
}

/* Headings */

h1 {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 40px;
  text-transform: none;
}

h2 {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 32px;
  text-transform: none;
}

h3 {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 28px;
  text-transform: none;
}

h4 {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 24px;
  text-transform: none;
}

h5 {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 20px;
  text-transform: none;
}

h6 {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 16px;
  text-transform: none;
}

/* Blockquotes */

blockquote {
  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
  border-left-color: #f1851f;
  color: #231f20;
  font-size: 24px;
}

blockquote > footer {
  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
  font-size: 16px;
}

/* Horizontal rules */

hr {
  border-bottom-color: #d7d9e3;
}





/* Primary button */

button,
.button,
.hs-button,
.cta_button {
  border: 1px solid #411a46;

  padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px;
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  background-color: #411a46;
  border-radius: 0px;
  color: #ffffff;
  fill: #ffffff;
  font-size: 16px;
  text-transform: none;
}

button:hover,
button:focus,
button:active,
.button:hover,
.button:focus,
.button:active,
.hs-button:hover,
.hs-button:focus,
.hs-button:active,
.cta_button:hover,
.cta_button:focus,
.cta_button:active {
  border: 1px solid #411a46;

  font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  background-color: #415239;
  color: #ffffff;
  fill: #ffffff;
}

button:active,
.button:active,
.hs-button:active {
  border: 1px solid #411a46;

  font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  background-color: #415239;
  border-color: #916a96;
  color: #ffffff;
  fill: #ffffff;
}

/* Secondary button */

.button.button--secondary {
  border: 1px solid #411a46;

  font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  background-color: #f8f8f8;
  border-radius: 0px;
  color: #411a46;
  fill: #411a46;
  text-transform: none;
}

.button.button--secondary:hover,
.button.button--secondary:focus,
.button.button--secondary:active {
  border: 1px solid #411a46;

  font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  background-color: #411a46;
  color: #ffffff;
  fill: #ffffff;
}

.button.button--secondary:active {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  background-color: #411a46;
  border: 1px solid #411a46;

  border-color: #916a96;
  color: #ffffff;
  fill: #ffffff;
}

/* Simple button */

.button.button--simple {
  font-weight: 600; text-decoration: underline; font-family: 'Source Serif Pro', serif; font-style: normal;
  color: #231f20;
  fill: #231f20;
}

.button.button--simple:hover,
.button.button--simple:focus {
  font-weight: 600; text-decoration: underline; font-family: 'Source Serif Pro', serif; font-style: normal;
  color: #415239;
  fill: #415239;
}

.button.button--simple:active {
  font-weight: 600; text-decoration: underline; font-family: 'Source Serif Pro', serif; font-style: normal;
  color: #91a289;
  fill: #91a289;
}

/* Button size modifiers — aliases of default (presets removed). */

.button.button--small,
.button.button--large {
  padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px;
  font-size: 16px;
}





/* Form */

form {
  border: 1px none #f1851f;

  padding: 45px;

  background-color: #f1851f;
  border-radius: 0px;
}

/* Form title */

.form-title {
  border: 1px none #411a46;

  padding: 25px;

  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  background-color: #411a46;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  color: #ffffff;
  font-size: 28px;
  text-transform: none;
}

/* Labels */

form label {
  padding-top: 6px;
padding-right: 0px;
padding-bottom: 6px;
padding-left: 0px;

  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #231f20;
  font-size: 16px;
}

/* Help text */

form legend {
  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #231f20;
  font-size: 14px;
}

/* Form fields */

form input[type='text'],
form input[type='email'],
form input[type='password'],
form input[type='tel'],
form input[type='number'],
form input[type='search'],
form select,
form textarea {
  border: 1px none #d7d9e3;

  padding: 10px;

  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
  background-color: #ffffff;
  border-radius: 0px;
  color: #231f20;
  font-size: 16px;
}

/* Form fields - placeholders */

::-webkit-input-placeholder {
  color: #d7d9e3;
}

::-moz-placeholder {
  color: #d7d9e3;
}

:-ms-input-placeholder {
  color: #d7d9e3;
}

:-moz-placeholder {
  color: #d7d9e3;
}

::placeholder {
  color: #d7d9e3;
}

/* Form fields - date picker */

form .hs-dateinput:before {
  right: 10px;
}

form .pika-table thead th {
  background-color: #734e36;
  color: #231f20;
}

form td.is-today .pika-button {
  color: #231f20;
}

form .is-selected .pika-button {
  background-color: #f1851f;
  color: #231f20;
}

form .pika-button:hover {
  background-color: #411a46 !important;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext *,
form .hs-richtext p,
form .hs-richtext h1,
form .hs-richtext h2,
form .hs-richtext h3,
form .hs-richtext h4,
form .hs-richtext h5,
form .hs-richtext h6 {
  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #231f20;
}

form .hs-richtext a {
  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #231f20;
}

/* GDPR */

form .legal-consent-container,
form .legal-consent-container .hs-richtext,
form .legal-consent-container .hs-richtext p {
  font-family: 'Source Serif Pro', serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #231f20;
  font-size: 14px;
}

/* Submit button */



  form input[type='submit'],
  form .hs-button {
    border: 1px solid #411a46;

    padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px;
    font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
    background-color: #411a46;
    border-radius: 0px;
    color: #ffffff;
    font-size: 16px;
    text-transform: none;
  }

  form input[type='submit']:hover,
  form input[type='submit']:focus,
  form .hs-button:hover,
  form .hs-button:focus {
    border: 1px solid #411a46;

    font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
    background-color: #415239;
    color: #ffffff;
  }

  form input[type='submit']:active,
  form .hs-button:active {
    border: 1px solid #411a46;

    font-family: Flama1, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
    background-color: #415239;
    border-color: #916a96;
    color: #ffffff;
}



/* Inline thank you message */

.submitted-message {
  border: 1px none #f1851f;

  padding: 45px;

  background-color: #f1851f;
  border-radius: 0px;
}





/* Icon fill and background */

.icon {
  
  background-color: #ffffff;
}

.icon svg {
  color: #734e36;
  height: ;
  width: ;
}

/* Legacy wrapper — same tokens */

.icon {
  background-color: #ffffff;
}

.icon svg {
  fill: #734e36;
}






/* Table */

table {
  border: 1px solid #d7d9e3;

  background-color: #f8f8f8;
}

/* Table cells */

th,
td {
  border: 1px solid #d7d9e3;

  padding: 10px;

  color: #231f20;
}

/* Table header */

thead th,
thead td {
  background-color: #734e36;
  color: #231f20;
}

/* Table footer */

tfoot th,
tfoot td {
  background-color: #d7d9e3;
  color: #231f20;
}





/* Header container */

.header {
  background-color: #f8f8f8;
}

/* Header content color */

.header p,
.header h1,
.header h2,
.header h3,
.header h4,
.header h5,
.header h6,
.header a:not(.button),
.header span,
.header div,
.header li,
.header blockquote,
.header .tabs__tab,
.header .tabs__tab:hover,
.header .tabs__tab:focus,
.header .tabs__tab:active {
  color: #231f20;
}

/* Header top bar */

.header__top {
  background-color: #f1851f;
}

/* Language switcher */

.header__language-switcher-current-label > span {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 16px;
  text-transform: none;
}

.header__language-switcher:hover .header__language-switcher-current-label > span,
.header__language-switcher:focus .header__language-switcher-current-label > span {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #000000;
}

.header__language-switcher-child-toggle svg {
  fill: #231f20;
}

/* Language switcher - submenu */

.header__language-switcher .lang_list_class {
  border-color: #d7d9e3;
}

.header__language-switcher .lang_list_class li {
  background-color: #f8f8f8;
}

.header__language-switcher .lang_list_class a:not(.button) {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 16px;
  text-transform: none;
}

.header__language-switcher .lang_list_class a:hover,
.header__language-switcher .lang_list_class a:focus {
  background-color: #f8f8f8;
  color: #000000;
}

.header__language-switcher .lang_list_class a:active {
  background-color: #f8f8f8;
}

/* Header bottom */

.header__bottom {
  background-color: #f8f8f8;
}

/* Logo */

.header__logo-company-name {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
  font-size: 40px;
  text-transform: none;
}

/* Menu */

@media (max-width: 900px) {
  .header__menu--mobile {
    background-color: #f8f8f8;
  }
}

/* Menu items */

.header__menu-link {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  font-size: 16px;
  text-transform: none;
}

@media (max-width: 767px) {
  .header__menu-item--depth-1 {
    border-top: 1px solid #d7d9e3;
  }
}

/* Menu items - top level */

.header__menu-item--depth-1 > .header__menu-link:not(.button) {
  color: #231f20;
}

.header__menu-item--depth-1 > .header__menu-link:hover,
.header__menu-item--depth-1 > .header__menu-link:focus {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #000000;
}

.header__menu-item--depth-1 > .header__menu-link:active {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #505050;
}

.header__menu-item--depth-1 > .header__menu-link--active-link:not(.button) {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #000000;
}

.header__menu-item--depth-1 .header__menu-child-toggle svg {
  fill: #231f20;
}

/* Menu items - submenus */

.header__menu-submenu {
  background-color: #f8f8f8;
  border-color: #d7d9e3;
}

.header__menu-submenu .header__menu-link:not(.button) {
  color: #231f20;
}

.header__menu-submenu .header__menu-item:hover,
.header__menu-submenu .header__menu-item:focus {
  background-color: #f8f8f8;
}

.header__menu-submenu .header__menu-link:hover,
.header__menu-submenu .header__menu-link:focus {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #000000;
}

.header__menu-submenu .header__menu-link:active {
  background-color: #f8f8f8;
}

.header__menu-submenu .header__menu-link--active-link:not(.button) {
  color: #000000;
  background-color: #f8f8f8;
}

/* Menu icons */

.header__menu-toggle svg {
  fill: #231f20;
}





/* Footer container */

.footer {
  background-color: #f8f8f8;
}

/* Footer content color */

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer p,
.footer a:not(.button),
.footer span,
.footer div,
.footer li,
.footer blockquote,
.footer .tabs__tab,
.footer .tabs__tab:hover,
.footer .tabs__tab:focus,
.footer .tabs__tab:active {
  color: #231f20;
}

.footer hr {
  border-bottom-color: #231f20 !important;
}

/* Footer menu */

.footer .hs-menu-wrapper a {
  color: #231f20;font-size: 16px;font-family: Flama1, sans-serif;;
  text-transform: none;
}

.footer .hs-menu-wrapper a:hover,
.footer .hs-menu-wrapper a:focus {
  font-weight: normal; text-decoration: none; font-family: Flama1, sans-serif; font-style: normal;
  color: #000000;
}

.footer .hs-menu-wrapper a:active {
  font-weight: normal; text-decoration: none; font-family: Flama1, sans-serif; font-style: normal;
  color: #505050;
}

.footer .hs-menu-wrapper .active > a {
  font-weight: bold; text-decoration: underline; font-family: Flama1, sans-serif; font-style: normal;
  color: #000000;
}






/* Card (legacy --dark / --light modifiers share one theme palette) */

.card--dark,
.card--light {
  border: 1px solid #d7d9e3;

  background-color: #f8f8f8;
  border-radius: 0px;
  color: #231f20;
}

.card--dark summary,
.card--dark p,
.card--dark h1,
.card--dark h2,
.card--dark h3,
.card--dark h4,
.card--dark h5,
.card--dark h6,
.card--dark a:not(.button),
.card--dark span,
.card--dark div,
.card--dark li,
.card--dark blockquote,
.card--light summary,
.card--light p,
.card--light h1,
.card--light h2,
.card--light h3,
.card--light h4,
.card--light h5,
.card--light h6,
.card--light a:not(.button),
.card--light span,
.card--light div,
.card--light li,
.card--light blockquote {
  color: #231f20;
}





/* Error templates */

.error-page:before {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
}

/* System templates */

#email-prefs-form,
#email-prefs-form h1,
#email-prefs-form h2 {
  color: #231f20;
}

/* Search template */

.hs-search-results__title {
  font-size: 32px;
}

/* Backup unsubscribe template */

.backup-unsubscribe input[type='email'] {
  font-size: 16px !important;
  padding: padding: 10px;
 !important;
}





/* Accordion */

.accordion__summary,
.accordion__summary:before {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  font-size: 24px;
}

.card--dark .accordion__summary:before,
.card--light .accordion__summary:before {
  color: #231f20;
}

/* Blog listing, recent posts, related posts, and blog post */

.blog-listing__post-title {
  text-transform: none;
}

.blog-listing__post-title-link {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #231f20;
}

.blog-listing__post-title-link:hover,
.blog-listing__post-title-link:focus {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #000000;
}

.blog-listing__post-title-link:active {
  font-family: Flama1, sans-serif; font-style: normal; font-weight: 400; text-decoration: none;
  color: #736f70;
}

.blog-listing__post-tag {
  color: #231f20;
}

.blog-listing__post-tag:hover,
.blog-listing__post-tag:focus {
  color: #000000;
}

.blog-listing__post-tag:active {
  color: #736f70;
}

.blog-listing__post-author-name,
.blog-post__author-name {
  color: #231f20;
}

.blog-listing__post-author-name :hover,
.blog-listing__post-author-name :focus,
.blog-post__author-name:hover,
.blog-post__author-name:focus {
  color: #000000;
}

.blog-listing__post-author-name :active,
.blog-post__author-name:active {
  color: #736f70;
}

/* Image gallery */

.image-gallery__close-button-icon:hover,
.image-gallery__close-button-icon:focus {
  background-color: #ffffff;
}

.image-gallery__close-button-icon:active {
  background-color: #ffffff;
}

/* Pagination */

.pagination__link-icon svg {
  fill: #231f20;
  height: 16px;
  width: 16px;
}

.pagination__link:hover .pagination__link-icon svg,
.pagination__link:focus .pagination__link-icon svg {
  fill: #415239;
}

.pagination__link:active .pagination__link-icon svg {
  fill: #736f70;
}

.pagination__link--active {
  border-color: #d7d9e3
}

/* Pricing card */

.pricing-card__heading {
  background-color: #411a46;
}

/* Social follow and social sharing */

.social-follow__icon:hover,
.social-follow__icon:focus,
.social-sharing__icon:hover,
.social-sharing__icon:focus {
  background-color: #ffffff;
}

.social-follow__icon:active,
.social-sharing__icon:active {
  background-color: #ffffff;
}

/* Tabs */

.tabs__tab,
.tabs__tab:hover,
.tabs__tab:focus,
.tabs__tab:active {
  border-color: #231f20;
  color: #231f20;
}