/* Theme base styles */

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

/* Variables */
:root {
  --site-width-min: 92vw;
  --site-width-max: 1140px;
  --body-bg: #fff;
  --bg-color: var(--body-bg);
  --color-primary: #ff4473;
  --color-red: #ff4473;
  --color-purple: #4e49c7;
  --color-deep-purple: #181646;
  --color-orange: #ffac70;
  --color-pink: #ffc3d2;
  --color-border: #aaa;
  --color-overlay: rgba(0,0,0,.6);
  --color-gray: #8b8aa2;
  --color-lightgray: #f5f5f6;
  --color-error: #ff4473;
  --color-facebook: #3b5998;
  --color-twitter: #4099ff;
  --color-linkedin: #0077b5;
  --gradient-1: linear-gradient(180deg,var(--color-deep-purle) 0%,var(--color-purple) 49.48%,var(--color-pink) 100%);
  --gradient-2: linear-gradient(289.69deg,var(--color-purple) 8.94%,var(--color-red) 80.65%);
  --gradient-3: linear-gradient(180deg,var(--color-deep-purle) 0%,var(--color-purple) 100%);
  --spacing-x-small: 0.25rem;
  --spacing-small: 0.75rem;
  --spacing-medium: 1.5rem;
  --spacing-large: 3rem;
  --spacing-x-large: 5rem;
  --container-margin: 6rem;
  --grid-gap: 1.625rem;
  --grid-row-gap: 3rem;
  --section-padding: 6rem;
  --card-padding: 3rem;
  --border-radius: 0.25rem;
  --shadow-small: 0 0.4rem 0.6rem 0 rgba(46,77,100,.39);
  --shadow-medium: 0 0.6rem 1.2rem rgba(0,0,0,.2),0 0.4rem 0.4rem rgba(0,0,0,.25);
  --shadow-large: 0 3.75rem 8.75rem -2.5rem rgba(0,0,0,.25),0 3.75rem 7.5rem -1.25rem rgba(0,0,0,.25);
  --easing: ease;
  --anim-speed: .4s;
  --selection-color: #fff;
  --selection-bg: var(--color-primary);
  --body-font-size: 0.9375rem;
  --body-font-family: Silka,sans-serif;
  --body-font-weight: normal;
  --body-font-style: normal;
  --body-line-height: 1.5;
  --body-letter-spacing: 0;
  --body-text-transform: none;
  --color-overlay: rgba(24,22,70,.8);
  --font-size-x-large: 1.5rem;
  --font-size-large: 1.0625rem;
  --font-size-small: 0.8125rem;
  --font-size-x-small: 0.6875rem;
  --text-color: #181646;
  --text-decoration-color: initial;
  --text-underline-offset: 2px;
  --h1-size: clamp(2.375rem,7vw,4.5rem);
  --h2-size: clamp(1.5rem,7vw,2.75rem);
  --h3-size: 1.5rem;
  --h4-size: 1.375rem;
  --h5-size: 1.2rem;
  --h6-size: 1rem;
  --heading-font-family: inherit;
  --heading-font-weight: bold;
  --heading-font-style: normal;
  --heading-line-height: 1.2;
  --heading-letter-spacing: 0;
  --heading-text-transform: none;
  --heading-color: #181646;
  --link-color: #4e49c7;
  --link-color-hover: #4e49c7;
  --button-color: #ff4473;
  --button-padding-x: 1.1rem;
  --button-padding-y: 0.58rem;
  --button-font-size: var(--body-font-size);
  --button-font-family: inherit;
  --button-font-weight: 600;
  --button-letter-spacing: 0;
  --button-line-height: 1.2;
  --button-text-transform: none;
  --button-text-color: #fff;
  --button-border-width: 2px;
  --button-border-style: solid;
  --button-border-radius: 0;
  --button-transition-duration: 0.25s;
  --button-shadow: none;
  --dialog-backdrop-color: var(--color-overlay);
  --form-field-bg: #e8e8ed;
  --form-field-focus-bg: #fbfbfb;
  --form-field-hover-bg: var(--form-field-bg);
  --form-field-padding-x: 0.75rem;
  --form-field-padding-y: 1rem;
  --form-field-font-size: var(--body-font-size);
  --form-field-font-family: var(--body-font-family);
  --form-field-font-weight: var(--body-font-weight);
  --form-field-letter-spacing: var(--body-letter-spacing);
  --form-field-line-height: var(--body-line-height);
  --form-field-text-color: var(--text-color);
  --form-field-border-width: 1px;
  --form-field-border-style: solid;
  --form-field-border-radius: 0;
  --form-field-border-color: #e8e8ed;
  --form-field-hover-border-color: var(--form-field-border-color);
  --form-field-focus-border-color: var(--form-field-border-color);
  --select-arrow-size: 0.5rem;
  --placeholder-color: #333;
  --placeholder-focus-color: #999;
  --site-width: min(var(--site-width-min,90vw),var(--site-width-max,1280px));
  --site-padding: calc((100vw - var(--site-width)) / 2);
  --site-header-height: 88.53px;
}

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

/* Responsive grid */

.row-fluid {
  width: 100%;
}

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

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

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

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

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

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

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

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

/* Custom modules */

.event-information {
  width: 65.81196581200001%;
  margin: 0 auto;
}

.event-text {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }

  .event-information {
    width: 100%;
  }
}

@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-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

.dnd-section--hero-image + .dnd-section {
  padding-top: 192px;
}

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



.content-wrapper {
  margin: 0 auto;
  padding: 0 16px;
}

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

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

.dnd-section--hero-image + .dnd-section {
  padding-top: 192px;
}

.dnd-section--hero-form h1 {
  font-size: 44px;
}

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

  .dnd-section--hero-image + .dnd-section {
    padding-top: 178px;
  }
  
  .dnd-section--hero-form h1 {
    font-size: 24px;
  }
}

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

/* Fonts
Custom fonts
*/
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-Regular.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-RegularItalic.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-Medium.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-Medium.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-MediumItalic.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-MediumItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-SemiBold.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-SemiBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-SemiBoldItalic.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-SemiBoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-Bold.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-BoldItalic.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-BoldItalic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-Black.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Silka';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-BlackItalic.woff2') format('woff2'),
        url('https://library.mynewsdesk.com/hubfs/Fonts/Silka-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: 'fontello';
    src: url('https://library.mynewsdesk.com/hubfs/Fonts/fontello.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}


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

*, ::after, ::before {
  text-underline-offset: var(--text-underline-offset,initial);
}

::selection {
  background-color: var(--color-red);
  color: white;
}

html {
  font-family: 'Silka', sans-serif;
  font-size: var(--body-font-size,1rem);
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  word-break: break-word;
}

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

/* Paragraphs */

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

p:last-of-type {
  margin-bottom: 0.5rem;
}

/* Anchors */

a {
  color: var(--color-deep-purple);
  cursor: pointer;
  transition: color .25s ease;
}

a:hover {
  color: var(--color-red);
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.4em;
  font-weight: 800;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 72px;
  letter-spacing: -0.05em;
}

h2, .h2 {
  font-size: 44px;
  letter-spacing: -0.03em;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  display: block;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

h5, .h5,
h6, .h6 {
  font-size: 17px;
}

h1 small,
.h1 small,
h2 small,
.h2 small {
  display: block;
  margin-bottom: 0.5em;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-red);
}

/* Label */

.label {
  display: block;
  font-size: 17px;
  text-transform: uppercase;
}

/* Lists */

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

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

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

strong,
b {
  font-weight: 600;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
  vertical-align: middle;
}


@media (max-width: 767px) {
  h1, .h1 {
    font-size: 44px;
  }

  h2, .h2 {
    font-size: 24px;
  }

  h3, .h3 {
    font-size: 17px;
  }

  h4, .h4 {
    font-size: 15px;
  }

  h2 small,
  .h2 small {
    font-size: 15px;
  }
}
.buttons {
  margin-top: 16px;
  text-align: center;
}

.buttons .button {
  margin: 16px 8px 0 8px;
}

button,
.button {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--color-red);
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-weight: 600;
  background-color: var(--color-red);
  color: white;
}

.button {
  text-decoration: none;
}

.button--primary {
  background-color: var(--color-red);
  color: white;
  border-color: var(--color-red);
}

.button:hover,
.button--primary:hover {
  background-color: rgba(255, 68, 115, 0.8);
  border-color: rgba(255, 68, 115, 0.8);
  color: white;
}

.button--secondary {
  background-color: white;
  color: var(--color-red);
  border-color: white;
}

.button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: white;
  color: var(--color-red);
}

.button--large {
  padding: 20px 30px;
}

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

/* No button */

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

.dnd-section--cta .button--primary {
  background-color: white;
  color: var(--color-red);
  border-color: var(--color-red);
}

.dnd-section--cta .button--secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}
/* Fields */

.hs-form-field {
  position: relative;
  margin-bottom: 20px;
}

.hs-form-field:not(.hs-fieldtype-radio) > label {
  display: none;
  position: absolute;
  top: -12px;
  left: 15px;
  z-index: 1;
  padding: 2px 10px;
  border-radius: 16px;
  font-size: 13px;
  color: var(--color-deep-purple);
  background: white;
}

.hs-input {
  display: inline-block;
  width: 100%;
  padding: 14px;
  font-size: 17px;
  line-height: 1;
  border: none;
  background-color: white;
}

/* Labels */

form label {
  display: block;
  font-size: 1rem;
  color: white;
}

/* Help text */

form legend {
  font-size: 1rem;
}

/* Inputs */

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 select,
form textarea {

}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 4px 0;
}

form .inputs-list > li::before {
  display: none;
}

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

input, select, textarea {
  accent-color: var(--color-primary);
}

form input[type=checkbox],
form input[type=radio]{
  position: absolute;
  left: 0;
  top: 6px;
  width: auto;
  cursor: pointer;
}

form input[type=checkbox] + span,
form input[type=radio] + span {
  cursor: pointer;
}

/* Inputs - select */
form select {
  position: relative;
  height: 48px;
  padding: 2px 14px 0px;
  color: var(--color-deep-purple);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23ff4473' height='24' viewBox='0 0 24 24' width='40' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-position: 100% 50%;
  background-repeat: no-repeat;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form a {
  color: white;
}

form .hs-richtext,
form .hs-richtext p {
  margin: 0 0 1.4rem;
  font-size: 11px;
  color: white;
}

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

/* GDPR */

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

/* Validation */

.hs-form-required {
  color: var(--color-deep-purple);
}

.hs-input.invalid.error {
  border-color: var(--color-deep-purple);
}

.hs-error-msg {
  font-size: 13px;
  color: var(--color-deep-purple);
}

form .hs-error-msgs > li {
  padding-left: 0;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
  padding: 24px 40px;
  text-align: center;
  border: none;
  font-weight: 600;
  line-height: 1;
  white-space: normal;
  color: white;
  background-color: var(--color-purple);
  cursor: pointer;
  transition: all 0.15s linear;
}

/* Submitted message */
.dnd-section--hero-form .submitted-message,
.dnd-section--hero-form .submitted-message p,
.dnd-section--hero-form .submitted-message h4 {
  color: var(--color-deep-purple);
}

.dnd-section--hero-form .submitted-message a {
  color: var(--color-purple);
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* Placeholder */

::-webkit-input-placeholder {
  color: var(--color-deep-purple);
}
::-moz-placeholder {
  color: var(--color-deep-purple);
}
:-ms-input-placeholder {
  color: var(--color-deep-purple);
}
:-moz-placeholder {
  color: var(--color-deep-purple);
}

/* Hero form */

.dnd-section--hero-form span[data-hs-cos-type=form] {
  position: relative;
  display: block;
  padding: 56px 48px;
  background-color: white;
}

.dnd-section--hero-form .form-title {
  display: inline-block;
  position: absolute;
  left: -24px;
  top: -32px;
  z-index: 10;
  padding: 16px 24px;
  font-weight: 700;
  background-color: var(--color-purple);
  color: white;
}

.dnd-section--hero-form .form-title::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent var(--color-deep-purple); transparent transparent;
}

.dnd-section--hero-form .hs-form-field:not(.hs-fieldtype-radio) > label {
  background: var(--form-field-bg);
}

.dnd-section--hero-form .hs-input {
  background-color: var(--form-field-bg);
}

.dnd-section--hero-form form label {
  color: var(--color-deep-purple);
}

.dnd-section--hero-form form input[type=checkbox] + span::before,
.dnd-section--hero-form form input[type=radio] + span::before {
  border: 1px solid var(--form-field-bg);
  background: var(--form-field-bg);
}

.dnd-section--hero-form form input[type=checkbox]:checked + span::before,
.dnd-section--hero-form form input[type=radio]:checked + span::before {
  border-color: var(--form-field-bg);
}

.dnd-section--hero-form form select {
  background-color: var(--form-field-bg);
}

.dnd-section--hero-form .fn-date-picker .pika-table thead th {
  color: var(--form-field-bg);
}

.dnd-section--hero-form .fn-date-picker td .pika-button:hover,
.dnd-section--hero-form .fn-date-picker td .pika-button:focus {
  color: var(--form-field-bg);
}

.dnd-section--hero-form form a {
  color: var(--color-deep-purple);
}

.dnd-section--hero-form form .hs-richtext,
.dnd-section--hero-form form .hs-richtext p {
  color: var(--color-deep-purple);
}

.dnd-section--hero-form .hs-form-required {
  color: var(--color-red);
}

.dnd-section--hero-form .hs-input.invalid.error {
  border-color: var(--color-red);
}

.dnd-section--hero-form .hs-error-msg {
  color: var(--color-red);
}

.dnd-section--hero-form form input[type=submit],
.dnd-section--hero-form form .hs-button {
  width: auto;
  background-color: var(--color-red);
}

/* Subscription preferences */
.dnd-section--subscription {
  max-width: 816px;
  margin: 0 auto;
  color: var(--color-deep-purple);
}

form#email-prefs-form {

}

.dnd-section--subscription .page-header {
  margin-bottom: 48px;
}

.dnd-section--subscription h1 {
  font-size: 44px;
}

.dnd-section--subscription h2 {
  font-size: 24px;
}

form#email-prefs-form label {
  color: var(--color-deep-purple);
}

.dnd-section--subscription .header {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 800;
}

.dnd-section--subscription .hs-input {
  background-color: var(--form-field-bg);
}

form#email-prefs-form .item {
  margin-bottom: 32px;
}

form#email-prefs-form .item-inner {
  position: relative;
  padding-left: 24px;
}

form#email-prefs-form .fakelabel {
  font-weight: 800;
}

form#email-prefs-form input[type=checkbox]+span,
form#email-prefs-form input[type=radio]+span {
  cursor: default;
}

form#email-prefs-form .hs-button {
  width: auto;
  background-color: var(--color-red);
}

form#email-prefs-form .hs-button:hover {
  background-color: #FE6F93;
}

form#email-prefs-form .subscribe-options {
  margin-bottom: 32px;
}

form#email-prefs-form .subscribe-options .header {
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 400;
}

form#email-prefs-form .subscribe-options label {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
}

form#email-prefs-form .localization-language {
  margin-bottom: 32px;
  padding-right: 32px;
}

@media (max-width: 767px) {
  form label {
    font-size: 13px;
  }

  .dnd-section--hero-form span[data-hs-cos-type=form] {
    margin-top: 80px;
    padding: 48px 16px 16px;
  }
  
  .dnd-section--hero-form form input[type=submit],
  .dnd-section--hero-form form .hs-button {
    width: 100%;
  }
}

/* CSS specific to iOS devices */ 
@supports (-webkit-touch-callout: none) {
  form input[type=checkbox],
  form input[type=radio] {
    -webkit-transform: scale(0.6);
    left: -5px;
    top: 0px;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* Unordered lists */

ul {
  padding-left: 0;
}

ol {
  padding-left: 16px;
}

ol li {
  margin-bottom: 0.5em;
  padding-left: 8px;
}

ul li {
  position: relative;
  list-style: none;
  margin-bottom: 0.5em;
  padding-left: 24px;
}

ul li::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-red);
}

li::marker {
  color: #ffffff;
}

/* Detail list */

.detail-list {
  margin-bottom: 24px;
  font-size: 15px;
}

.list-item {
  margin-right: 20px;
}

.list-item:last-of-type {
  margin-right: 0;
}

.list-item span:first-of-type {
  font-weight: 700;
}

.list-item span div {
  display: inline;
}

@media (max-width: 767px) {
  .list-item {
    display: block;
    margin-right: 0;
  }
}

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

/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

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

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

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

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

/* Logo */

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

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

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

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

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

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

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

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

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

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

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

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

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

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

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

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

/* Language switcher */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Header Navigation */
#site-header a {
  text-decoration: none;
}

#site-header ul li::before {
  display: none;
}

#site-header ul {
  margin: 0;
}

#site-header ul li {
  margin: 0;
  padding: 0;
}

#site-header .button a {
  all: unset;
}

#site-header {
  --link-color: var(--text-color);
  --link-color-hover: var(--color-primary);
  align-items: center;
  display: grid;
  gap: var(--spacing-large);
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  padding: var(--spacing-medium) min(var(--spacing-medium),var(--site-padding));
  position: relative;
  z-index: 99;
}

#site-header .site-logo {
  display: inline-flex;
}

#site-header .site-logo img {
  width: 162px;
}

/* secondary menu */
#site-header .button {
  background: var(--button-color,var(--color-primary,blue));
  border: var(--button-border-width,1px) var(--button-border-style,solid) var(--button-color,var(--color-primary,blue));
  border-radius: var(--button-border-radius,var(--border-radius,0));
  box-shadow: var(--button-shadow,none);
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-family: var(--button-font-family,inherit);
  /* font-size: var(--button-font-size,inherit); */
  font-size: 15px;
  font-weight: var(--button-font-weight,normal);
  letter-spacing: var(--button-letter-spacing,0);
  line-height: var(--button-line-height,1.2);
  outline: 0;
  padding: var(--button-padding-y,.75rem) var(--button-padding-x,1.25rem);
  text-align: center;
  text-transform: var(--button-text-transform,none);
  transition: all var(--button-transition-duration,.25s) var(--easing);
  vertical-align: middle;
}

#site-header .button--ghost:not(:hover) {
  --button-text-color: var(--button-color);
  background: transparent;

  color: var(--color-primary);
}

#site-header:target [data-toggle-hash] {
  background-position: calc(var(--burger-menu-size, 24px) * 1.5) 50%;
  transition: background-color var(--burger-menu-transition-duration,.25s) var(--easing);
}

#site-header:target [data-toggle-hash]:before {
  top: calc(50% - var(--burger-menu-thickness, 2px) / 2);
  transform: rotate(
45deg);
  transition: top var(--burger-menu-transition-duration,.25s) var(--easing),transform var(--burger-menu-transition-duration,.25s) var(--burger-menu-transition-duration,.25s) var(--easing),background-color var(--burger-menu-transition-duration,.25s) var(--easing);
}

#site-header:target [data-toggle-hash]:after {
  bottom: calc(50% - var(--burger-menu-thickness, 2px) / 2);
  transform: rotate(
-45deg);
  transition: bottom var(--burger-menu-transition-duration,.25s) var(--easing),transform var(--burger-menu-transition-duration,.25s) var(--burger-menu-transition-duration,.25s) var(--easing),background-color var(--burger-menu-transition-duration,.25s) var(--easing);
}


@media (max-width: 1259px) {
  html.hash-active-site-header {
    overflow: hidden;
    touch-action: none;
  }

  #site-header .button {
    display: block;
  }

  #site-header .button+.button {
    margin-top: calc(var(--spacing-small) - var(--spacing-medium));
  }
}

@media (min-width: 1260px) {
  #site-header .button+.button {
    margin-left: calc(var(--spacing-x-small) - var(--spacing-medium));
  }

  #site-header a {
    font-size: 15px;
  }
}

/* nav */
@media (max-width: 1259px) {
  #site-header:target > nav {
    transform: translateX(0);
  }

  #site-header > nav {
    background: #fff;
    font-size: var(--font-size-large);
    height: 100vh;
    left: 0;
    overflow: auto;
    padding: var(--site-header-height,var(--spacing-large)) min(var(--spacing-medium),var(--site-padding)) var(--spacing-medium);
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100vmax);
    transition: transform .5s var(--easing);
    z-index: -2;
  }

  #site-header > nav > div {
    height: 100%;
    overflow: auto;
  }

  #site-header > nav > div > ul + ul {
    margin-top: var(--spacing-medium);
  }

  #site-header > nav > div > ul > li:not(:last-child) {
    margin-bottom: var(--spacing-medium);
  }

  #site-header > nav > div > ul > li.dropdown {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #site-header > nav > div > ul > li.dropdown:after {
    transition-delay: 0s;
    transition-duration: .25s;
  }

  #site-header > nav > div > ul > li.dropdown.open:after {
    transform: rotate(180deg);
  }

  #site-header > nav > div > ul > li.dropdown.open > a,
  #site-header > nav > div > ul > li.dropdown.open > strong {
    color: var(--link-color-hover);
  }

  #site-header > nav a[href="#"] {
    pointer-events: none;
  }

  #site-header > nav > div > ul > li > .sub-menu {
    font-size: var(--body-font-size);
    max-height: 0;
    min-width: 100%;
    opacity: 0;
    order: 99;
    overflow: hidden;
    transition: max-height .25s linear,opacity .25s var(--easing);
  }

  #site-header > nav > div > ul > li.open > .sub-menu {
    max-height: var(--dropdown-menu-height,20rem);
    opacity: 1;
  }

  #site-header > nav > div > ul > li > .sub-menu > li {
    border-left: 1px solid var(--color-gray);
    margin-left: var(--spacing-x-small);
    padding-left: var(--spacing-small);
  }

  #site-header > nav > div > ul > li > .sub-menu > :first-child {
    margin-top: var(--spacing-medium);
  }

  #site-header > nav > div > ul > li > .sub-menu > li:not(:last-child) {
    padding-bottom: var(--spacing-small);
  }

  #site-header > nav > div > ul > li:not(:last-child) {
    margin-bottom: var(--spacing-medium);
  }
}


@media (min-width: 1260px) {
  #site-header > nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}

/* div */

@media (min-width: 1260px) {
  #site-header > nav > div {
    display: contents;
  }
}

/* main menu */
#site-header ul {
  list-style: none;
  margin: 0;
}

#site-header > nav > div > ul > li > a {
  font-weight: 600;
}

#site-header > nav > div > ul > li.dropdown:after {
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e822";
  display: inline-block;
  font-family: fontello;
  font-size: .6em;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: inherit;
  margin-left: 0;
  margin-right: var(--icon-margin,.25rem);
  margin: 0 0 0 var(--spacing-x-small);
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  transition: transform .2s .5s var(--easing);
  vertical-align: middle;
  width: 1em;
}

#site-header > nav > div > ul :is(.active,.active-parent,.active-anecestor):not(.button) > a,
#site-header > nav > div > ul :is(.active,.active-parent,.active-anecestor):not(.button) > strong {
  color: var(--link-color-hover);
}

@media (min-width: 1260px) {
  #site-header > nav ul.main-menu {
    flex: 1;
  }

  #site-header > nav > div > ul > li {
    display: inline-block;
    position: relative;
  }

  #site-header > nav > div > ul:not(:last-child) {
    margin-right: var(--spacing-medium);
  }

  #site-header > nav > div > ul > li:not(:last-child) {
    margin-right: var(--spacing-medium);
  }

  #site-header > nav > div > ul > li > .sub-menu {
    opacity: 0;
    transform: translateY(-1rem);
    transform-origin: top center;
    transition: opacity .2s .5s,transform .5s .5s,top 0s 1s;

    background: #fff;
    border-top: 4px solid var(--color-red);
    box-shadow: 0 13px 21px rgb(0 0 0 / 25%);
    font-weight: 600;
    left: 0;
    padding: var(--spacing-medium);
    position: absolute;
    top: -100vmax;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  #site-header > nav > div > ul > li:hover > .sub-menu {
    opacity: 1;
    top: calc(100% + var(--spacing-small));
    transform: translateY(0);
    transition: opacity .2s .5s,transform .5s .5s,top 0s .5s;
  }

  #site-header > nav > div > ul > li.dropdown:hover:after {
    transform: rotate(180deg);
  }

  #site-header > nav > div > ul > li > .sub-menu > li:not(:last-child) {
    margin-bottom: var(--spacing-small);
  }

  #site-header > nav > div > ul > li > .sub-menu.sub-menu--mega {
    display: grid;
    font-weight: 400;
    gap: var(--grid-gap);
    grid-auto-columns: minmax(0,15rem);
    grid-auto-flow: column;
    grid-template-rows: repeat(var(--menu-rows,3),-webkit-max-content);
    grid-template-rows: repeat(var(--menu-rows,3),max-content);
  }

  #site-header > nav > div > ul > li > .sub-menu.sub-menu--mega > li.dropdown {
    grid-column: 1/3;
  }

  #site-header > nav > div > ul > li > .sub-menu.sub-menu--mega > li {
    margin: 0;
  }

  #site-header > nav > div > ul > li > .sub-menu.sub-menu--mega > li a {
    display: inline-block;
  }

  #site-header > nav > div > ul > li > .sub-menu.sub-menu--mega > li.dropdown > a {
    display: inline-block;
    font-size: var(--h4-size);
    margin-bottom: var(--spacing-medium);
  }

  #site-header > nav > div > ul > li > .sub-menu.sub-menu--mega > li.dropdown > a strong:after {
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e824";
    display: inline-block;
    font-family: fontello;
    font-size: .8em;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: inherit;
    margin-left: 0;
    margin-right: var(--icon-margin,.25rem);
    margin: 0 0 0 var(--spacing-small);
    text-align: center;
    text-decoration: inherit;
    text-transform: none;
    width: 1em;
  }

  #site-header > nav > div > ul > li > .sub-menu.sub-menu--mega > li p {
    color: var(--color-gray);
    font-size: var(--font-size-small);
    margin: var(--spacing-x-small) 0 0;
  }

  #site-header > nav > div > ul > li > .sub-menu.sub-menu--mega > li.dropdown > ul {
    display: grid;
    gap: var(--grid-gap);
    grid-auto-flow: column;
    grid-template-columns: minmax(auto,15rem);
    grid-template-rows: repeat(var(--menu-rows,3),-webkit-max-content);
    grid-template-rows: repeat(var(--menu-rows,3),max-content);
  }


}

/* language menu */
@media (min-width: 1260px) {
  #site-header > nav > div > ul.language-menu > li.dropdown:after {
    display: none;
  }

  #site-header ul.language-menu .dropdown strong {
    font-size: 0;
  }

  #site-header ul.language-menu .dropdown strong:before {
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e805";
    display: inline-block;
    font-family: fontello;
    font-size: calc(var(--body-font-size) * 1.45);
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: inherit;
    margin-left: 0;
    margin-right: var(--icon-margin,.25rem);
    margin: 0;
    text-align: center;
    text-decoration: inherit;
    text-transform: none;
    width: 1em;
  }
}

/* toggle */
#site-header [data-toggle-hash] {
  background-image: linear-gradient(to right,transparent,transparent calc(100% - var(--burger-menu-middle-width, 100%)),currentColor calc(100% - var(--burger-menu-middle-width, 100%)));
  background-position: left 50%;
  background-repeat: no-repeat;
  background-size: 100% var(--burger-menu-thickness,2px);
  display: block;
  height: var(--burger-menu-size,24px);
  justify-self: end;
  overflow: hidden;
  position: relative;
  transition: background-color var(--burger-menu-transition-duration,.25s) var(--burger-menu-transition-duration,.25s) var(--easing);
  width: var(--burger-menu-size,24px);
}

#site-header [data-toggle-hash]:after,
#site-header [data-toggle-hash]:before {
  background: currentColor;
  content: "";
  display: block;
  height: var(--burger-menu-thickness,2px);
  left: 0;
  position: absolute;
  top: 0;
  transition: top var(--burger-menu-transition-duration,.25s) var(--burger-menu-transition-duration,.25s) var(--easing),transform var(--burger-menu-transition-duration,.25s) var(--easing),background-color var(--burger-menu-transition-duration,.25s) var(--easing);
  width: 100%;
}

#site-header [data-toggle-hash]:after {
  bottom: 0;
  top: auto;
  transition: bottom var(--burger-menu-transition-duration,.25s) var(--burger-menu-transition-duration,.25s) var(--easing),transform var(--burger-menu-transition-duration,.25s) var(--easing),background-color var(--burger-menu-transition-duration,.25s) var(--easing);
}

@media (min-width: 1260px) {
  #site-header [data-toggle-hash] {
    display: none;
  }
}


/* Footer Navigation */
#site-footer {
  display: grid;
  padding: var(--section-padding) var(--site-padding) calc(var(--spacing-medium) + min(80vw, 25rem) * .7748592871);
  position: relative;
}

@media (min-width: 768px) {
  #site-footer {
    padding-bottom: var(--spacing-medium);
  }
}

#site-footer ul li {
  margin: 0;
  padding: 0;
}

#site-footer ul li::before {
  display: none;
}

#site-footer a {
  font-size: 15px;
  color: #FFFFFF;
}

#site-footer p {
  font-size: 15px;
  color: #FFFFFF;
}

#site-footer > svg,
#site-footer > svg path {
  fill: var(--accent-color);
}

#site-footer > svg {
  bottom: 0;
  line-height: 0;
  max-height: calc(100% - var(--section-padding));
  max-width: min(80vw,25rem);
  position: absolute;
  right: 0;
}

#site-footer > :not(svg) {
  position: relative;
  z-index: 1;
}

.site-footer__simple .site-logo {
  text-align: center;
}

#site-footer .site-logo svg {
  fill: var(--accent-color);
  width: 238px;
}

#site-footer > ul.menu-footer {
  margin-top: var(--spacing-large);
  row-gap: var(--spacing-large);
}

#site-footer > ul.menu-footer > li > a {
  color: var(--heading-color);
  display: block;
  font-family: var(--body-font-family,sans-serif);
  font-size: var(--text-kicker-size,var(--body-font-size));
  font-style: var(--body-font-style,normal);
  font-weight: var(--body-font-weight,normal);
  font-weight: 900;
  letter-spacing: var(--body-letter-spacing,0);
  letter-spacing: .06em;
  line-height: var(--body-line-height,1.6);
  margin-bottom: var(--spacing-small);
  text-transform: var(--body-text-transform,none);
  text-transform: uppercase;
}

#site-footer > ul.menu-footer > li > a::after {
  background: var(--text-color);
  content: "";
  display: block;
  height: 4px;
  margin-top: var(--spacing-x-small);
  opacity: .15;
  width: 100%;
}

#site-footer ul {
  list-style: none;
  margin: 0;
}

@media (min-width: 768px) {
  .site-footer__simple .site-logo {
    text-align: left;
  }

  #site-footer > ul.menu-footer:not(:last-child) {
    margin-bottom: calc(var(--section-padding) * 2);
  }
}

.grid,
[class*=grid--] {
  --grid-cols: 1;
  display: grid;
  gap: var(--grid-row-gap,var(--grid-gap,3rem)) var(--grid-column-gap,var(--grid-gap,3rem));
  grid-template-columns: repeat(var(--grid-cols),minmax(0,1fr));
}

@media (min-width: 768px) {
  [class*="tablet:grid--"] {
    --grid-cols: 1;
    display: grid;
    gap: var(--grid-row-gap,var(--grid-gap,3rem)) var(--grid-column-gap,var(--grid-gap,3rem));
    grid-template-columns: repeat(var(--grid-cols),minmax(0,1fr));
  }

  .tablet\:grid--2 {
    --grid-cols: 2;
  }
}

@media (min-width: 1080px) {
  [class*="laptop:grid--"] {
    --grid-cols: 1;
    display: grid;
    gap: var(--grid-row-gap,var(--grid-gap,3rem)) var(--grid-column-gap,var(--grid-gap,3rem));
    grid-template-columns: repeat(var(--grid-cols),minmax(0,1fr));
  }

  .laptop\:grid--4 {
    --grid-cols: 4;
  }
}

/* Bottom Menu */
#site-footer > ul.menu-bottom {
  margin: var(--spacing-large) 0;
}

#site-footer > ul.menu-bottom li {
  margin-bottom: var(--spacing-x-small);
}

@media (min-width: 768px) {
  #site-footer > p,
  #site-footer > ul.menu-bottom {
    order: 99;
  }

  #site-footer > ul.menu-bottom {
    margin: var(--spacing-medium) calc(var(--spacing-small) * -1) calc(var(--spacing-small) * -1);
  }

  #site-footer > ul.menu-bottom li {
    display: inline-block;
    margin: 0 var(--spacing-small) var(--spacing-small);
  }
}


/* Social Links */
@media (min-width: 768px) {
  #site-footer #social-links, #site-footer>p {
    text-align: left;
  }
}

#site-footer #social-links {
  margin-top: var(--spacing-medium);
  text-align: center;
}

#site-footer a {
  text-decoration: none;
}

#social-links ul {
  list-style: none;
  margin: 0 calc(var(--spacing-x-small) * -1) calc(var(--spacing-small) * -1);
}

#social-links ul li {
  display: inline-block;
  margin: 0 var(--spacing-x-small) var(--spacing-small);
}

#social-links ul li a:not(:hover) {
  opacity: .3;
}

#social-links ul li a {
  font-size: 0;
  transition: opacity var(--anim-speed) var(--easing);
}

#social-links a[href*="facebook.com"]::before {
  content: "\e800";
  display: inline-block;
}

#social-links a[href*="instagram.com"]::before {
  content: "\f16d";
  display: inline-block;
}

#social-links a[href*="linkedin.com"]::before {
  content: "\e803";
  display: inline-block;
}

#social-links a[href*="twitter.com"]::before {
  content: "\e801";
  display: inline-block;
}

#social-links ul li a::before {
  --icon-round-size: 2em;
  align-items: center;
  background: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 50%;
  color: var(--bg-color,#fff);
  display: inline-flex!important;
  font-size: var(--social-links-size,var(--font-size-large));
  height: var(--icon-round-size);
  justify-content: center;
  line-height: 1;
  width: var(--icon-round-size);
}

#social-links a::before {
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  display: inline-block;
  display: none;
  font-family: fontello;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: inherit;
  margin-left: 0;
  margin-right: var(--icon-margin,.25rem);
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  width: 1em;
}

/* Copyright text */
#site-footer > p {
  font-size: var(--font-size-small);
  margin-top: var(--spacing-medium);
  opacity: .3;
  text-align: center;
}

@media (min-width: 768px) {
  #site-footer #social-links,
  #site-footer > p {
    text-align: left;
  }

  #site-footer > p,
  #site-footer > ul.menu-bottom {
    order: 99;
  }
}
/* Hero sections */

.hero__label {
  display: inline-block;
  position: absolute;
  left: -24px;
  top: -32px;
  z-index: 10;
  padding: 16px 24px;
  font-size: 24px;
  font-weight: 700;
  background-color: var(--color-purple);
  color: white;
}

.hero__label::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent var(--color-deep-purple) transparent transparent;
}

.hero__image {
  position: relative;
  z-index: 1;
  margin-bottom: -240px;
}

.hero__image img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {

  .hero__label {
    top: -20px;
    left: -17px;
    padding: 8px 17px;
    font-size: 17px;
  }

  .hero__label::before {
    bottom: -17px;
    border-width: 0 17px 17px 0;
  }
}
/* Cards */

.cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: -1.282051282%;
  margin-left: -1.282051282%;
}

.card {
  flex: 0 1 auto;
  /* flex: 0 0 391px; 3 cards */
  /* flex: 0 0 358px; */
  /* flex: 0 0 calc(408px - 1.282051282%); */
  margin-left: 1.282051282%;
  margin-bottom: 32px;
  margin-right: 1.282051282%;
}

.card__image img {
  width: 100%;
}

.card-1 .card__image img {
  height: 679px !important;
  /*height: 38vw !important;*/
  object-fit: cover;
}

.card-2 .card__image img {
  height: 330px !important;
  /*height: 18vw !important;*/
  object-fit: cover;
}

.card-3 .card__image img {
  height: 220px !important;
  /*height: 12vw !important;*/
  object-fit: cover;
}

.card-4 .card__image img {
  height: 156px !important;
  /*height: 10vw !important;*/
  object-fit: cover;
}

.card__text h2 {
  margin-top: 16px;
  margin-bottom: 4px;
  font-size: 24px;
}

.card__text p {
  font-size: 15px;
}

.card__text strong {
  font-weight: 600;
}

.card-1 {
  flex-basis: auto;
}

.card-2 {
  flex-basis: 47.435897436%;
}

.card-3 {
  flex-basis: 30.769230836%;
}

.card-4 {
  flex-basis: 22.435897436%;
}

@media (max-width: 1279px) {
  .card-4 {
    flex-basis: 47.435897436%;
  }
}

@media (max-width: 767px) {
  .card-2,
  .card-3,
  .card-4 {
    flex-basis: auto;
  }

  .card .card__image img {
    height: 60vw !important;
  }
}

/*
2.564102564
2,564102564
22,435897436
27,564102564
*/
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

/* Light and dark text */

.color--light h1, .color--light h2, .color--light h3, .color--light h4, .color--light h5, .color--light h6,
.color--light p,
.color--light li {
  color: white;
}

.color--light li::before {
  background: white;
}

.bg--deep-purple {
  --bg-color: var(--color-deep-purple);
  --heading-color: #fff;
  --text-color: #fff;
  --link-color: #fff;
  --link-color-hover: #fff;
  --button-color: var(--color-purple);
  --button-text-color: #fff;
  --selection-bg: var(--color-primary);
  --accent-color: var(--color-red);
  --text-kicker-color: var(--color-red);
  background: var(--bg-color);
  color: var(--text-color);
}

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

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

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