:root {
  --colors-black: #151300;
  --colors-grey65: #676659;
  --colors-grey35: #adaca6;
	--colors-grey10: #D0D0CC;	
  --colors-grey5: #F5F7F9;		
  --colors-white: #ffffff;
  --colors-yellow: #FFE249;
  --colors-yellow35: #FFF5BF;	
  --colors-red: #ff3355;
}

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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


:root {
	--black: #151300;
	--white: #FFFFFF;
	--grey65: #676659;
	--grey35: #adaca6;
	--grey10: #D0D0CC;
	--grey5: #F5F7F9;
	--green: #B2F2E3;
	--yellow: #FFE249;
	--yellow35: FFF5BF;
	--red: #ff3355;
	--textColor: #151300;
	--linkColor: #151300;
	--linkColorHover: #8A8980;
	--transition: all .4s cubic-bezier(0, 0, 0.41, 1);
}


/* Old root */

:root {
  --colors-black: #151300;
  --colors-grey65: #676659;
  --colors-grey35: #adaca6;
	--colors-grey10: #D0D0CC;	
  --colors-grey5: #F5F7F9;		
  --colors-white: #ffffff;
  --colors-yellow: #FFE249;
  --colors-yellow35: #FFF5BF;	
  --colors-red: #ff3355;
}





            







/* Typography */






/* Buttons */











/* Color transitions */




/* Backgrounds */

.bg_black {
	background-color: var(--black);
}
.bg_white {
	background-color: var(--white);
}
.bg_yellow {
	background-color: var(--yellow);
}
.bg_green {
	background-color: var(--green);
}
.bg_grey {
	background-color: var(--grey5);
}

html {
  scroll-behavior: smooth;
}

.content-wrapper {
  margin: 0 auto !important;
	max-width: 1440px !important;
	padding: 0 20px;	
}

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

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

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

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

.border-top {
	border-top: 1px solid #151300;
}
:root {
	--column-gap: 1rem;
}

.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.module {
  padding: 100px 0;	
}

.module__section--200 {
	margin-top: 200px;
}

.module__section--150 {
	margin-top: 150px;
}

.module__section--100 {
	margin-top: 100px;
}

.module__section--50 {
	margin-top: 50px;
}

.module__section--30 {
	margin-top: 30px;
}

.module__padding--100 {
	padding-top: 100px;
}

.module__padding--mobile-15,
.module__padding--mobile-30,
.module__padding--mobile-50,
.module__padding--mobile-100 { 
	padding-top: 0px;
}

.module__margin--md-30,
.module__margin--sm-30,
.module__margin--xs-30 {
	margin-top: 0;
}

@media (max-width: 1199px) {	
  .module__margin--md-30 {
		margin-top: 30px;
	}
}

@media (max-width: 1024px) {	
  .module__margin--sm-30 {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	
	.module {
		padding: 30px 0;	
	}
	.module__section--100,
  .module__section--150,
  .module__section--200	{
		margin-top: 30px;
	}	
	.module__padding--100 {
		padding-top: 30px;
	}
	.module__padding--mobile-15 {
		padding-top: 15px;
	}
	.module__padding--mobile-30 {
		padding-top: 30px;
	}
	.module__padding--mobile-50 {
		padding-top: 50px;
	}
	.module__padding--mobile-100 {
		padding-top: 100px;
	}
	
	.module__margin--xs-30 {
		margin-top: 30px;
	}
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

@media screen and (max-width: 767px) {
.blog-post > .row,
.blog__related-posts > .row {
		margin-right: 0;
		margin-left: 0;
	}	
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: var(--column-gap);
  padding-left: var(--column-gap);
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 768px) {

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--column-gap);
    padding-left: var(--column-gap);
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 1024px) {

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--column-gap);
    padding-left: var(--column-gap);
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 1200px) {

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: var(--column-gap);
    padding-left: var(--column-gap);
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

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

:root {
	--black: #151300;
	--white: #FFFFFF;
	--grey65: #676659;
	--grey35: #adaca6;
	--grey10: #D0D0CC;
	--grey5: #F5F7F9;
	--green: #B2F2E3;
	--yellow: #FFE249;
	--yellow35: FFF5BF;
	--red: #ff3355;
	--textColor: #151300;
	--linkColor: #151300;
	--linkColorHover: #8A8980;
	--transition: all .4s cubic-bezier(0, 0, 0.41, 1);
}


/* Old root */

:root {
  --colors-black: #151300;
  --colors-grey65: #676659;
  --colors-grey35: #adaca6;
	--colors-grey10: #D0D0CC;	
  --colors-grey5: #F5F7F9;		
  --colors-white: #ffffff;
  --colors-yellow: #FFE249;
  --colors-yellow35: #FFF5BF;	
  --colors-red: #ff3355;
}





            







/* Typography */






/* Buttons */











/* Color transitions */




/* Backgrounds */

.bg_black {
	background-color: var(--black);
}
.bg_white {
	background-color: var(--white);
}
.bg_yellow {
	background-color: var(--yellow);
}
.bg_green {
	background-color: var(--green);
}
.bg_grey {
	background-color: var(--grey5);
}

body {
	font-family: halyard-text, arial, sans-serif;
	font-weight: 300;
	font-style: normal;
  line-height: 1.6;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
	color: var(--textColor);
	font-family: halyard-text, helvetica, arial, sans-serif;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
  line-height: 1.6;	
  margin: 0 0 1.4rem;
}

p.small {
	color: var(--textColor);
	font-size: 1.05rem;
	font-style: normal;
	font-weight: 300;
  line-height: 1.6;	
  margin: 0 0 1.4rem;
}

p.intro {
	font-size: 1.45rem;
	font-weight: 400;
  line-height: 1.6;	
}

p.module-intro {
	font-size: 1.25rem;
	font-weight: 300;
  line-height: 1.6;	
}

p.intro--small {
	font-family: halyard-micro, helvetica, arial, sans-serif;		
	font-size: 1.25rem;
	font-weight: 400;
  line-height: 1.6;	
}

p.intro--small strong {
	font-weight: 500;
}

p.intro--small span {
	color: var(--yellow);
}

p.intro--large {
	font-size: 1.55rem;
	font-weight: 400;
  line-height: 1.5;	
}

p.subheading {
	font-family: halyard-micro, helvetica, arial, sans-serif;	
	font-size: 1.15rem;
	font-weight: 400;
	letter-spacing: 3px;
  margin: 0 0 0.7rem;	
}

/* Anchors */

a {
	color: var(--linkColor);
	cursor: pointer;
	font-family: halyard-text, helvetica, arial, sans-serif;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 300;
	text-decoration: underline;
	transition: var(--transition);	
}

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

/* Headings */

h1, h1 a,
h2, h2 a,
h3, h3 a,
h4, h4 a,
h5, h5 a,
h6, h6 a {
	color: var(--textColor);
	font-family: halyard-display, helvetica, arial, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.3;
  margin: 0 0 1.4rem;
	text-decoration: none;
}

h1 {
	font-size: 4.75rem;
	line-height: 1.1;	
}
h2 {
	font-size: 3.45rem;
	line-height: 1.1;
}
/* Landing pages */

.landing-page h2 {
	font-size: 2.45rem;
	line-height: 1.2;
}

h3 {
	font-size: 2.15rem;
}
h4,
h4 a {
	font-size: 1.85rem;
	font-weight: 400;	
}

h5 {
	font-size: 1.55rem;
}
h6 {
	font-size: 1.25rem;
}


/* Text on black */

.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text p,
.white-text a  {
	color: var(--white);
}

/* Lists */

ul,
ol {
	color: var(--textColor);
	font-family: halyard-text, helvetica, arial, sans-serif;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8;
  margin: 1rem 0 1.4rem;
}



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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Legal consent */

form .legal-consent-container .hs-richtext p,
.legal-consent-container a {
	font-family: halyard-micro, helvetica, arial, sans-serif;	
  font-size: 0.75rem;
}

/* Blockquotes */

blockquote {
	color: var(--textColor);
	font-family: halyard-text, helvetica, arial, sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid var(--grey65);
}

/* Image alt text */

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

@media (max-width: 767px) {
	p {
		font-size: 1rem;
	}
	p.subheading {
		font-size: 1.25rem;
	}
	p.intro {
		font-size: 1.15rem;
	}
	p.intro--large {
		font-size: 1.25rem;
	}
	p.intro--small {
		font-size: 1rem;
	}
	p.subheading {
		font-size: 1.05rem;
	}
	
	a {
    font-size: 1rem;	
	}
	
	h1, h1 a,
	h2, h2 a,
	h3, h3 a,
	h4, h4 a,
	h5, h5 a,
	h6, h6 a {
		margin: 0 0 1rem;
	}

	h1 {
		font-size: 2.75rem;
	}
	h2 {
		font-size: 2.45rem;
		line-height: 1.2;
	}
	
	h3 {
		font-size: 1.95rem;
	}
	
	h4,
	h4 a {
		font-size: 1.65rem;
	}
	
	ul,
	ol {
		font-size: 1rem;
		line-height: 1.6;
	}
}

/* Text aligning */

.align-right {
	text-align: right;
}

/* Landing pages */

.hero-lp h1 {
  font-size: 3.75rem;	
}

/* Pillar pages */

.pillar-page-text h2 {
  font-size: 3.15rem;
}

.pillar-page-text h3 {
  font-size: 1.55rem;
}

.pillar-page-text p {
  margin: 0 0 0.7rem
}

@media (max-width: 767px) {
	
	.pillar-page-text h2 {
		font-size: 2.45rem;
		line-height: 1.2;
	}
}
:root {
	--black: #151300;
	--white: #FFFFFF;
	--grey65: #676659;
	--grey35: #adaca6;
	--grey10: #D0D0CC;
	--grey5: #F5F7F9;
	--green: #B2F2E3;
	--yellow: #FFE249;
	--yellow35: FFF5BF;
	--red: #ff3355;
	--textColor: #151300;
	--linkColor: #151300;
	--linkColorHover: #8A8980;
	--transition: all .4s cubic-bezier(0, 0, 0.41, 1);
}


/* Old root */

:root {
  --colors-black: #151300;
  --colors-grey65: #676659;
  --colors-grey35: #adaca6;
	--colors-grey10: #D0D0CC;	
  --colors-grey5: #F5F7F9;		
  --colors-white: #ffffff;
  --colors-yellow: #FFE249;
  --colors-yellow35: #FFF5BF;	
  --colors-red: #ff3355;
}





            







/* Typography */






/* Buttons */











/* Color transitions */




/* Backgrounds */

.bg_black {
	background-color: var(--black);
}
.bg_white {
	background-color: var(--white);
}
.bg_yellow {
	background-color: var(--yellow);
}
.bg_green {
	background-color: var(--green);
}
.bg_grey {
	background-color: var(--grey5);
}

button,
.button,
.btn-solid,
.btn-border {
  cursor: pointer;
	font-family: halyard-micro, sans-serif;
	font-size: 1rem;
	font-weight: 400;
  display: inline-block;
	padding: 0.85rem 1.75rem;
  text-align: center;
  text-decoration: none;
  text-transform: none;
	transition: var(--transition);
  white-space: normal;
}

.secondary-btn {
	margin-left: 15px;
}

.btn {
	border-radius: 0px;	
	margin-top: 30px;
	text-decoration: none;	
}

.btn:hover {
	border-radius: 12px;	
}

.btn-black {
	background-color: var(--black);
	border: 1px solid var(--black);
  color: var(--white);	
}

.white-text a.btn-black {
  color: var(--white);
}

.btn-black:hover {
  color: var(--white);	
}

.btn-green {
	background-color: var(--green);
	border: 1px solid var(--green);	
	color: var(--black);
}

.white-text a.btn-green {
	color: var(--black);
}

.btn-white {
	background-color: var(--white);
	border: 1px solid var(--white);
	color: var(--black);
}

.white-text a.btn-white{
	color: var(--black);
}

.btn-white:hover {
	color: var(--black);
}

.btn-yellow {
	background-color: var(--yellow);
	border: 1px solid var(--yellow);	
	color: var(--black);	
}

.white-text a.btn-yellow  {
	color: var(--black);
}


.btn-yellow:hover {
	color: var(--black);	
}

.btn-border {
	background-color: transparent;
	border: 1px solid var(--black);
	color: var(--black);	
}
.btn-border:hover {
	color: var(--black);	
}


.btn-border--white {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}

.btn-border--white:hover {
	color: var(--white);
}

.btn-simple {
	background-color: transparent;
	border: none;
	color: var(--black);
	font-family: halyard-micro, sans-serif;
	font-size: 1rem;
	font-weight: 400;	
}

.btn-simple:hover {
	color: var(--black);
}

.btn-simple--white {
	background-color: transparent;
	color: var(--white);
	font-family: halyard-micro, sans-serif;
	font-size: 1rem;
	font-weight: 400;	
}

.btn-simple--white:hover {
	color: var(--white);
}

.btn-solid svg,
.btn-border svg,
.btn-simple svg {
  height: 15px;
  width: 15px;
  position: relative;
  top: 2px;
  margin-left: 7px;
	-webkit-transition: var(--transition);
  transition: var(--transition);
	transform: translateX(0);
  fill: var(--black);
}

.btn-solid:hover svg,
.btn-border:hover svg,
.btn-simple:hover svg {
  transform: translateX(5px);
}

.btn-solid.btn-black svg,
.btn-border--white svg,
.btn-simple--white svg {
  height: 15px;
  width: 15px;
  position: relative;
  top: 2px;
  margin-left: 7px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
	transform: translateX(0);
  fill: var(--white);
}

.btn-solid.btn-black:hover svg,
.btn-border--white:hover svg,
.btn-simple--white:hover svg {
  transform: translateX(5px);
}

button:disabled,
.button:disabled {
  background-color: #D0D0CC;
  border-color: #D0D0CC;
	color: var(--black);
}

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

@media (max-width: 767px) {
	
	.button:not(footer .button),
	.btn-solid:not(footer .btn-solid),
	.btn-border:not(footer .btn-border) {
		clear: both;
		display: inline-block;
		float: left;
	}
	.secondary-btn {
		margin-left: 0;
	}
	.btn {
		margin-top: 15px;
	}
}
:root {
	--black: #151300;
	--white: #FFFFFF;
	--grey65: #676659;
	--grey35: #adaca6;
	--grey10: #D0D0CC;
	--grey5: #F5F7F9;
	--green: #B2F2E3;
	--yellow: #FFE249;
	--yellow35: FFF5BF;
	--red: #ff3355;
	--textColor: #151300;
	--linkColor: #151300;
	--linkColorHover: #8A8980;
	--transition: all .4s cubic-bezier(0, 0, 0.41, 1);
}


/* Old root */

:root {
  --colors-black: #151300;
  --colors-grey65: #676659;
  --colors-grey35: #adaca6;
	--colors-grey10: #D0D0CC;	
  --colors-grey5: #F5F7F9;		
  --colors-white: #ffffff;
  --colors-yellow: #FFE249;
  --colors-yellow35: #FFF5BF;	
  --colors-red: #ff3355;
}





            







/* Typography */






/* Buttons */











/* Color transitions */




/* Backgrounds */

.bg_black {
	background-color: var(--black);
}
.bg_white {
	background-color: var(--white);
}
.bg_yellow {
	background-color: var(--yellow);
}
.bg_green {
	background-color: var(--green);
}
.bg_grey {
	background-color: var(--grey5);
}

/* iOs & Android overrides */

input,
textarea {
  -webkit-appearance: none;
  -webkit-border-radius:0; 
}

/* Fields */

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

form fieldset.form-columns-1 .hs-input:not(input[type=checkbox]) {
  width: 100% !important;
}

/* Labels */

form label {
	color: var(--black);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.bg_black form label {
	color: var(--white);
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* 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 textarea {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--black);
	color: var(--grey65);	
  display: inline-block;
  font-size: 1rem;
  padding: 0.7rem;
  width: 100%;
}

form select {
	background: #eceef0;
	border: none;
	border-bottom: none;
	border-radius: 20px;
	color: var(--grey65);
	display: inline-block;
	margin-top: 5px;
  padding: 0.7rem;
  width: 100%;	
}

.bg_black form input[type=text],
.bg_black form input[type=email],
.bg_black form input[type=password],
.bg_black form input[type=tel],
.bg_black form input[type=number],
.bg_black form input[type=file],
.bg_black form select,
.bg_black form textarea {
	border-bottom: 1px solid var(--white);
	color: var(--white);
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

ul.inputs-list.multi-container li {
	display: inline-block;
	width: calc(100% / 3);
}

/* 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: var(--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: var(--white);
}

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
	color: var(--black);
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

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

::-webkit-input-placeholder {
	color: var(--grey65);
}

::-moz-placeholder {
  color: var(--grey65);
}

:-ms-input-placeholder {
  color: var(--grey65);
}

:-moz-placeholder {
  color: var(--grey65);
}

::placeholder {
  color: var(--grey65);
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
	font-family: halyard-micro, sans-serif;	
	font-size: 0.75rem;
  margin-left: 1.5rem !important;
}

.legal-consent-container input[type=checkbox] {
	margin: 3px 5px 5px 3px;
}

/* Validation */

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

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

.hs-error-msg {
  color: var(--red);
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
	background-color: var(--black);
	border: none;
	border-radius: 0px;
	color: var(--white);
  cursor: pointer;
	font-family: halyard-micro, sans-serif;
	font-size: 1rem;
	font-weight: 400;
  display: inline-block;
	line-height: 1.6;
	padding: 0.85rem 1.75rem;
  text-align: center;
  text-decoration: none;
	transition: all .4s cubic-bezier(0, 0, 0.41, 1);
  white-space: normal;
}

.bg_black form input[type=submit],
.bg_black form .hs-button {
	background-color: var(--white);
	color: var(--black);
}

form input[type=submit]:hover,
form .hs-button:hover {
	background-color: var(--yellow);
	border-radius: 7px;
	color: var(--black);	
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Language switcher */

.language-switcher select {
	border: none;
}
/* 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;
}

/* Custom */

table, tbody, thead, tr {
  width: 100% !important;
}

tr:hover {
  background: var(--yellow);
}

/* Zebra striping */

tr:nth-of-type(odd) { 
  background: var(--grey5); 
}

tr:nth-of-type(even) { 
  background: var(--white); 
}

th { 
  background: var(--yellow);  
}

td, th { 
  padding: 20px; 
  text-align: left; 
}

td.points {
  width: 10% !important;
  text-align: center !important;
}

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

:root {
	--black: #151300;
	--white: #FFFFFF;
	--grey65: #676659;
	--grey35: #adaca6;
	--grey10: #D0D0CC;
	--grey5: #F5F7F9;
	--green: #B2F2E3;
	--yellow: #FFE249;
	--yellow35: FFF5BF;
	--red: #ff3355;
	--textColor: #151300;
	--linkColor: #151300;
	--linkColorHover: #8A8980;
	--transition: all .4s cubic-bezier(0, 0, 0.41, 1);
}


/* Old root */

:root {
  --colors-black: #151300;
  --colors-grey65: #676659;
  --colors-grey35: #adaca6;
	--colors-grey10: #D0D0CC;	
  --colors-grey5: #F5F7F9;		
  --colors-white: #ffffff;
  --colors-yellow: #FFE249;
  --colors-yellow35: #FFF5BF;	
  --colors-red: #ff3355;
}





            







/* Typography */






/* Buttons */











/* Color transitions */




/* Backgrounds */

.bg_black {
	background-color: var(--black);
}
.bg_white {
	background-color: var(--white);
}
.bg_yellow {
	background-color: var(--yellow);
}
.bg_green {
	background-color: var(--green);
}
.bg_grey {
	background-color: var(--grey5);
}

.main-navigation {
  display: block;
}

header {
	align-items: center;
	background-color: var(--white);
	box-shadow: 0 5px 35px rgb(21 19 0 / 5%);	
	display: flex;
	flex-flow: row nowrap;
	height: 90px;
	justify-content: space-between;
	margin-bottom: -10px;
	padding: 0 20px;
	position: fixed;
	top: 0;
	transition: top 0.3s;
	width: 100%;
	z-index: 999;
}

.header__inner--logo {
	flex: 0 1 auto;
}

.header__inner--navigation {
	flex: 0 1 auto;	
}

.header__inner--language {
	flex: 0 1 auto;	
}

.header__inner--mobile {
	display: none;
}

header .hs-menu-wrapper ul li {
  text-align: center;
}

header ul li {
	position: relative;
}

header ul li a {
	text-decoration: none;
}

/* Underline on hover */

header ul li:not(:last-child, header ul li ul li):after {
  content: '';
  position: absolute;
  width: 50%;
  transform: scaleX(0);
  height: 2px;
  bottom: 2px;
  left: 15px;
	background-color: var(--yellow);
  transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
header ul li > ul li:after {
  background-color: transparent;
}
header ul li:hover:after {
	transform: scaleX(1);
  transform-origin: bottom left;
}

/* End of Underline on hover */

header .hs-menu-wrapper > ul > li a {
	font-size: 1rem;
	font-family: halyard-micro, sans-serif;
	margin: 0 15px;
}

header .hs-menu-wrapper > ul > li a:hover {
	color: var(--black);
}

header .hs-menu-wrapper > ul > li:last-child a {
	background-color: var(--yellow);
  border-radius: 0;	
	color: var(--black);
  padding: 10px 20px;
	transition: var(--transition);
}

header .hs-menu-wrapper > ul > li:last-child:hover a {
  border-radius: 12px;
}

header .hs-menu-wrapper ul li ul {
	background: var(--white);
  box-shadow: -7px 3px 40px rgb(0 0 0 / 10%);	
  margin-left: 15px;		
	padding: 5px 20px !important;
}

header .hs-menu-wrapper ul li ul li {
  padding: 15px 0;
  text-align: left;	
}

header .hs-menu-wrapper ul li ul li:not(:last-child) {
	border-bottom: 1px solid var(--black);
}

header .hs-menu-wrapper ul li ul li a{
	color: var(--black);
	margin: 0;
}

header .hs-menu-wrapper ul li ul li a:hover{
	color: var(--grey65);
}

@media screen and (max-width: 1280px) {

	header .hs-menu-wrapper > ul > li a {
		font-size: 0.90rem;
		margin: 0 10px;
	}
	
	header .hs-menu-wrapper > ul > li a:last-child {
		margin: 0 0 0 10px;
	}
}

/* Mobile navigation */

@media screen and (max-width: 1023px) {
	
	header .hs-menu-wrapper ul {
		display: block;
	}
	
	.main-navigation {
		display: none;
	}
	
	.main-navigation.responsive {
		background-color: var(--white);
		border-bottom: 1px solid var(--black);
    display: block;
		float: none;
		position: absolute;
		left: 0;
		padding: 0 20px 10px;
		top: 90px;
		width: 100%;
		z-index: 999;
	}
	
	header {
		flex-flow: row nowrap;
  	position: fixed;
		width: 100%;
	}
	
	.header__inner--mobile {
		display: inline-block;
	}

	header .hs-menu-wrapper ul:not(ul li ul) {
	  border-top: 1px solid var(--black);		
		width: 100%;
	}
	
	header .hs-menu-wrapper ul li {
		border-bottom: 1px solid var(--black);
		padding: 20px 0;
		text-align: left;
	}
	header .hs-menu-wrapper ul li:last-child {
		border-bottom: none;
	}

	header .hs-menu-wrapper > ul > li:last-child a {
		background-color: transparent;
		padding: 0;
	}
	
	header .hs-menu-wrapper>ul>li a {
	  font-size: 1.25rem;
    margin: 0;
	}
	
	/* 2nd level */
	header .hs-menu-wrapper ul li ul {
		background: transparent;
		box-shadow: none;	
		margin-left: 0;		
		padding: 5px 0 !important;
	}
	
	header .hs-menu-wrapper ul li ul li {
		border-bottom: none !important;
    padding: 10px 0 0 15px;
	}
	
	header .hs-menu-wrapper ul li ul li a:hover{
		color: var(--black);
	}
	
	/* Underline on hover */
	header ul li:not(:last-child, header ul li ul li):after {
    display: none;
	}
}

/* Hamburger icon */

#nav-icon {
  display: inline-block;
  width: 40px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
	float: left;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
	background: var(--black);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

@media screen and (min-width: 1024px) {
	#nav-icon {
		display: none;
	}
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 12px;
}

#nav-icon span:nth-child(4) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* Language switcher */

.globe_class {
	background-image: none !important;
	width: 1px !important;
}

.header__language-switcher .lang_list_class {
	background-color: var(--white);	
	padding: 1rem 1.5rem;
}

.lang_list_class:after,
.lang_list_class:before {
	display: none !important;
}

.header__language-switcher .lang_list_class li {
	padding: 0.5rem 0 !important;
}

.header__language-switcher .lang_list_class li a {
	color: var(--black);
	font-size: 1rem;
}

.header__language-switcher .lang_list_class li a:hover {
	color: var(--grey65);
}

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

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

.header__language-switcher .lang_list_class {
  border: none;
  box-shadow: -7px 3px 40px rgb(0 0 0 / 10%);	
  display: block;
  left: calc(100% - 30px);
  opacity: 0;
  min-width: 100px;
  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: 1rem;
  padding: 0.35rem 0.7rem;
}

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

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

.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: 1rem;
  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;
}
/* 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%;
}
:root {
	--black: #151300;
	--white: #FFFFFF;
	--grey65: #676659;
	--grey35: #adaca6;
	--grey10: #D0D0CC;
	--grey5: #F5F7F9;
	--green: #B2F2E3;
	--yellow: #FFE249;
	--yellow35: FFF5BF;
	--red: #ff3355;
	--textColor: #151300;
	--linkColor: #151300;
	--linkColorHover: #8A8980;
	--transition: all .4s cubic-bezier(0, 0, 0.41, 1);
}


/* Old root */

:root {
  --colors-black: #151300;
  --colors-grey65: #676659;
  --colors-grey35: #adaca6;
	--colors-grey10: #D0D0CC;	
  --colors-grey5: #F5F7F9;		
  --colors-white: #ffffff;
  --colors-yellow: #FFE249;
  --colors-yellow35: #FFF5BF;	
  --colors-red: #ff3355;
}





            







/* Typography */






/* Buttons */











/* Color transitions */




/* Backgrounds */

.bg_black {
	background-color: var(--black);
}
.bg_white {
	background-color: var(--white);
}
.bg_yellow {
	background-color: var(--yellow);
}
.bg_green {
	background-color: var(--green);
}
.bg_grey {
	background-color: var(--grey5);
}

/* Footer structure */

.footer {
	border-top: 1px solid var(--black);
}

.footer-row-1 {
	padding-bottom: 30px;
	padding-top: 30px;
}

.footer-row-2 {
	border-top: 1px solid var(--black);
	padding: 50px 0;
}

.footer-row-3 {
	border-top: 1px solid var(--black);
	padding: 30px 0 20px;
}

footer .border-right {
	border-right: 1px solid var(--black);
	padding-right: 30px;
}

footer .border-left {
	border-left: 1px solid var(--black);
	padding-left: 30px;
}

footer .border-sides {
	border-right: 1px solid var(--black);
	border-left: 1px solid var(--black);
	padding-right: 30px;
	padding-left: 30px;
}

@media (max-width: 767px) {
	
	footer .border-right {
		border-right: 0px solid var(--black);
		padding-right: 20px;
	}

	footer .border-left {
		border-left: 0px solid var(--black);
		padding-left: 0;
	}

	footer .border-sides {
		border-right: 0px solid var(--black);
		border-left: 0px solid var(--black);
		padding-right: 0;
		padding-left: 0;
	}
}

/* Footer typography */

footer p {
	font-size: 1.05rem;
	margin: 0 0 0;
}

footer p.menu {
  font-family: halyard-display, sans-serif;	
  font-size: 1.25rem;
	font-weight: 500;
	display: inline-block;
	margin: 0 0 0;		
}

footer .footer-row-3 p,
footer .footer-row-3 a {
	font-family: halyard-micro, sans-serif;
	font-size: 0.875rem;
	margin: 0 0 0;
}

footer h3,
footer h6 {
	display: inline-block;
  font-family: halyard-display, sans-serif;
	margin: 0 0 0;	
}

footer h3 {
  font-size: 2.75rem;
	line-height: 0.75;
}

footer h6 {
  font-size: 1.25rem;
	font-weight: 500;
}

footer ul {
	padding-top: 15px;
}

footer a.btn {
	margin-top: 0;
}

footer ul li a {
	font-size: 1.05rem;
	text-decoration: none;
}


@media (max-width: 767px) {
	
	footer h3 {
		font-size: 1.75rem;
		line-height: 0.75;
	}
	
	footer h6 {
	  margin-top: 20px;
	}
	footer p.menu {
	 margin-top: 20px;		
	}
	footer ul {
		padding-top: 5px;
	}
	
	footer ul li a {
		font-size: 1.05rem;
	}
	
	footer .footer-row-1 p {
		font-size: 0.875rem;
	}
}

/* Footer form */

footer form {
	padding: 30px 0;
}

footer form input[type=email] {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--black);
	color: var(--grey65);	
  font-size: 1rem;
  padding: 0 0.7rem;
  width: 100%;
}

footer form input[type=submit],
footer form .hs-button {
	background-color: var(--white);
	border: 1px solid var(--black);
	border-radius: 0px;
	color: var(--black);
  cursor: pointer;
	font-family: halyard-micro, sans-serif;
	font-size: 1rem;
	font-weight: 400;
  display: inline-block;
	height: 55px;
	line-height: 1.6;
	padding: 0;
	position: relative;
  text-align: center;
  text-decoration: none;
	top: 0;
	transition: var(--transition);
  -webkit-appearance: none;		
  white-space: normal;
	width: 100%;
}

footer form input[type=submit]:hover,
footer form .hs-button:hover {
	background-color: var(--black);
	border-radius: 7px;
	color: var(--white);
}

footer .hs-form .hs-form-field input {
	clear: both;
  display:inline-block;
	float: left;
	height: 71px;		
  margin: 0;
	width: 70%;	
}

footer .hs_submit {
  width: 30%;
  display:inline-block;
  margin: 0; 	
}

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

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

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

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