/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 4.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

body {
  line-height: 1.4;
  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 {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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















.hs-private.hs-private.hs-private .uiButton,
.hs-private.hs-private.hs-private .uiButton:hover {
    border-radius:3px!important;
}

.button_max--wrapper-all {
  margin:0px -15px; 
  overflow:hidden;
	width:100%;
}

.header .cta_button,  
.cta_button,
form input[type=submit],
.button_max--wrapper a,
.button_max--wrapper button,
.hs-form__actions__submit {
  min-height:50px;
  width:auto;
  padding: 0px 30px!important;
  display:flex;
  justify-content:center;
  align-items:center;
  box-sizing: border-box!important;
  -webkit-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  line-height:1rem;
  margin:10px 0px;
	font-family: Asap,sans-serif!important;
	font-weight:600!important;
}
#header .button_max--wrapper a {
	font-size: 16px; 
}
#header .button_max--wrapper.button_color-secondary:hover a {
	background:transparent; 
	border-color: #FABF00!important;
	color:white;
}

#header .button_max--wrapper.button_color-secondary.button_style-outline a  {
	background:transparent; 
	color:white;
}
#header .button_max--wrapper.button_color-secondary.button_style-outline:hover a  {
	background: #FABF00!important;
	color:black;
}

form input[type=submit]:hover {
  background-color: #25231f!important;
  color: white;
	font-weight: 400!important;
  border-color: #25231f!important;
	font-family: Asap,sans-serif;
	font-weight:600;
}

.button_max--wrapper.button_style-icon.button_style-cta a {
	padding: 0px 30px 0px 60px!important;
}

.header .cta_button  {
  background-color: 

  
  
    
  


  rgba(250, 191, 0, 1.0)

;
	border:1px solid #FABF00!important;
	color: black !important;
	max-height:44px;
	position:relative;
	white-space:nowrap;
	animation-name:	cta_header; 
	transition-property: right, border-radius, box-shadow;
  animation-duration:	.5s, .4s;
  animation-delay: 0s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards; 
 	top:0px;
	right:0px;
	margin-right:-2rem;
	z-index: 999;
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}
.header .cta_button:hover {
  background-color: transparent;
	border:1px solid #FABF00!important;
	color: #fff!important;
}
@media (max-width: 575px) {
	.header .cta_button {
		margin-right:0rem;
		position:initial;
	}
	.header .cta_button, 
	.cta_button,
	.button_max--wrapper a,
	.hs-form__actions__submit {
		font-size:15px;
	}

}
.header-sticky.header .cta_button {
	transition-property: top, border-radius,box-shadow;
 	animation-name:	cta_header_sticky; 
  animation-duration:	1s, 1s;
  animation-delay: 0s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards; 
	position:fixed;
  top:-60px;
	right:30px; 
	margin-right:0px;
	box-shadow: -16px 20px 36px -4px rgba(0,0,0,.2);
}

.header-sticky.header .cta_button:hover {
	color: #FABF00!important;
}
@-moz-keyframes cta_header { 
  0% {
     right:0px;
  }
  100% {
     right:30px;
 }
}
@-webkit-keyframes cta_header { 
  0% {
     right:0px;
  }
  100% {
     right:30px;
 }
}
@keyframes cta_header { 
  0% {
     right:0px;
  }
  100% {
     right:30px;
 }
}
@-moz-keyframes cta_header_sticky { 
  0% {
     top:-60px;
  }
  60% {
		 top:-60px;
	}
  100% {
    top:19px;
 }
}
@-webkit-keyframes cta_header_sticky { 
  0% {
     top:-60px;
  }
	60% {
		 top:-60px;
	}
  100% {
    top:19px;
 }
}
@keyframes cta_header_sticky { 
  0% {
     top:-60px;
  }
	60% {
		 top:-60px;
	}
  100% {
    top:19px;
 }
}

.button_max--wrapper.button_style-icon.button_style-cta a {
  padding-left:58px;
}
.button_max--wrapper.button_style-fullwidth {
  width:calc(100% - 30px);
}
.button_max--wrapper.button_style-fullwidth  .hs_cos_wrapper_type_cta {
  width:100%;
}
.button_max--wrapper {
  position:relative;
  display:inline-flex; 
  flex-direction:row;
  justify-items:flex-start;
  align-items:center;
  margin:0 auto;
  width: auto;
  margin:0px 15px;
}
.button_max--wrapper .button_max--cat_content,
.button_max--wrapper a {
  width:100%; 
}

.button_max--wrapper.button_size-small a {
	min-height: 35px;
  padding: 0 15px!important;
}
.button_max--wrapper.button_size-small a:hover {
  border-radius:30px 8px!important;
}
.button_max--wrapper .button_max-icon {
  position:relative;
  margin-right:10px;
  font-size:20px;
  height:20px;
  width:20px;
	fill: #FABF00;
	-webkit-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}
.button_max--wrapper .button_max-image {
  position:relative;
  margin-right:10px;
  height:20px;
  width:20px;
  background-color:#FABF00;
	-webkit-transition: 400ms ease-in-out;
  -ms-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
} 


.button_max--wrapper.button_color-secondary .button_max-image {
  background-color: white;
}
.button_max--wrapper.button_color-primary:hover .button_max-image {
  background-color: #25231f;
}
.button_max--wrapper.button_color-secondary:hover .button_max-image {
  background-color: white;
}
.button_max--wrapper.button_style-outline.button_color-secondary .button_max-image {
  background-color: white;
}
.button_max--wrapper.button_style-outline:hover .button_max-image {
  background-color:#FABF00!important;
}
.button_max--wrapper.button_style-outline.button_color-primary .button_max-image {
  background-color: #25231f;
}

.button_max--wrapper .button_max-icon.button_max-icon-cta {
  position:absolute;
  left: 30px;
}
.button_max--wrapper .button_max-image.button_max-image-cta {
  position:absolute;
  left: 28px;
}

.button_max--wrapper.button_color-secondary .button_max-icon {
  fill: white;
}

.button_max--wrapper.button_color-primary:hover .button_max-icon {
  fill: white;
}
.button_max--wrapper.button_color-secondary:hover .button_max-icon {
  fill: #FABF00;
}
.button_max--wrapper.button_style-outline.button_color-primary .button_max-icon {
  fill: #25231f;
}
.button_max--wrapper.button_style-outline.button_color-secondary .button_max-icon {
  fill: #FABF00;
}

.button_max--wrapper.button_style-outline.button_color-secondary:hover .button_max-icon {
  fill:white;
}
.button_max--wrapper.button_style-outline.button_color-primary:hover .button_max-icon {
  fill: #FABF00;
}
.button_max--wrapper .button_max-icon-cta > span {
  line-height:20px;
  display:block; 
}

.button_max--wrapper .button_max-icon svg {
  max-height:20px;
  max-width:20px;
}

.button_max--wrapper.button_color-primary a,
.button_max--wrapper.button_color-primary button {
  background-color: #25231f;
  color: #FABF00;
  border-color: #25231f;
}
.button_max--wrapper.button_color-primary:hover a,
.button_max--wrapper.button_color-primary:hover button {
  background-color: #FABF00;
  color: white;
  border-color: #FABF00;
}

.button_max--wrapper.button_color-secondary a,
.button_max--wrapper.button_color-secondary button {
  background-color: #FABF00;
  color:black;
  border-color: #FABF00;
}
.button_max--wrapper.button_color-secondary:hover a,
.button_max--wrapper.button_color-secondary:hover button {
  background-color: #25231f;
  color: white;
  border-color: #25231f;
}


.button_max--wrapper.button_style-outline.button_color-primary a, 
.button_max--wrapper.button_style-outline.button_color-primary button {
  background: transparent;
	border-color: #25231f;
	color: #25231f;
}
.button_max--wrapper.button_style-outline.button_color-primary:hover a,
.button_max--wrapper.button_style-outline.button_color-primary:hover button {
  background: #25231f;
	border-color: #25231f;
	color: #FABF00;
}
.button_max--wrapper.button_style-outline.button_color-secondary a,
.button_max--wrapper.button_style-outline.button_color-secondary button {
  background: white;
	border-color: #FABF00;
	color: #FABF00;
}
.button_max--wrapper.button_style-outline.button_color-secondary:hover a,
.button_max--wrapper.button_style-outline.button_color-secondary:hover button {
  background: #FABF00;
	border-color: #FABF00;
	color: white;
}

.button_max--wrapper.button_color-primary.button_style-outline button.filters_button.selected,
.button_max--wrapper.button_color-primary.button_style-outline button.filters_button.selected:hover:active {
  background-color: #25231f;
  color: #FABF00;
  border-color: #25231f;
	border-radius:8px;
}
.button_max--wrapper button.filters_button,
.button_max--wrapper.button_color-primary.button_style-outline button.filters_button:hover:active,
.filters_button {
	min-height: 42px!important;
	text-align:left;
	font-size:.7rem;
	line-height:.8rem!important;
	padding: 0px 20px!important;
	border-radius:8px!important;
}


button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* custom background of filed */
.body-container--contact-page form input[type=text],
.body-container--contact-page form input[type=search],
.body-container--contact-page form input[type=email],
.body-container--contact-page form input[type=password],
.body-container--contact-page form input[type=tel],
.body-container--contact-page form input[type=number],
.body-container--contact-page form input[type=file],
.body-container--contact-page form select,
.body-container--contact-page form textarea {
  background-color: rgba(255,255,255,.1)!important;
	border:none!important;
}
div.row-fluid-wrapper[class*="-background-layers"] form input[type=text],
div.row-fluid-wrapper[class*="-background-layers"] form input[type=search],
div.row-fluid-wrapper[class*="-background-layers"] form input[type=email],
div.row-fluid-wrapper[class*="-background-layers"] form input[type=password],
div.row-fluid-wrapper[class*="-background-layers"] form input[type=tel],
div.row-fluid-wrapper[class*="-background-layers"] form input[type=number],
div.row-fluid-wrapper[class*="-background-layers"] form input[type=file],
div.row-fluid-wrapper[class*="-background-layers"] form select,
div.row-fluid-wrapper[class*="-background-layers"] form textarea,
div.row-fluid-wrapper[class*="-background-gradient"] form input[type=text],
div.row-fluid-wrapper[class*="-background-gradient"] form input[type=search],
div.row-fluid-wrapper[class*="-background-gradient"] form input[type=email],
div.row-fluid-wrapper[class*="-background-gradient"] form input[type=password],
div.row-fluid-wrapper[class*="-background-gradient"] form input[type=tel],
div.row-fluid-wrapper[class*="-background-gradient"] form input[type=number],
div.row-fluid-wrapper[class*="-background-gradient"] form input[type=file],
div.row-fluid-wrapper[class*="-background-gradient"] form select,
div.row-fluid-wrapper[class*="-background-gradient"] form textarea{
  background-color: rgba(255,255,255,.1)!important;
	color:white!important;
	border:none!important;
}

div.row-fluid-wrapper[class*="-background-layers"] form label:not(.hs-error-msg),
div.row-fluid-wrapper[class*="-background-layers"] form legend,
div.row-fluid-wrapper[class*="-background-gradient"] form label:not(.hs-error-msg),
div.row-fluid-wrapper[class*="-background-gradient"] form legend{
	color: var(--ternary_color)!important;
}

div.row-fluid-wrapper[class*="-background-layers"] form .legal-consent-container,
div.row-fluid-wrapper[class*="-background-gradient"] form .legal-consent-container{
	color: white!important;
}

div.row-fluid-wrapper[class*="-background-layers"] form ::placeholder,
div.row-fluid-wrapper[class*="-background-gradient"] form ::placeholder{
  color: rgba(255,255,255,.4)!important;
  opacity: 1!important; /* Firefox */
}

div.row-fluid-wrapper[class*="-background-layers"] form ::-ms-input-placeholder,
div.row-fluid-wrapper[class*="-background-gradient"] form ::-ms-input-placeholder{ /* Edge 12 -18 */
  color: rgba(255,255,255,.4)!important;
}


/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* 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;
}
[data-aos^=lgi][data-aos^=lgi].aos-animate {
  animation:spin 1.4s 0s linear forwards; 
  transition-duration:1.4s!important;
  transition-timing-function: linear!important;
  
}
[data-aos^=lgi][data-aos^=lgi] {
  opacity: 1;
  transform: translateZ(0) scale(0) rotate(-90deg);
}


@-moz-keyframes spin { 
  0% {
     transform: translateZ(0) scale(0.8) rotate(-90deg);
     opacity: 1;
  }
  35% {
     transform: translateZ(0) scale(1) rotate(-90deg);
     opacity: 1;
  }

  100% {
    transform: translateZ(0) scale(1) rotate(0deg);
    opacity: 1;
 }
}

@-webkit-keyframes spin { 
  0% {
     transform: translateZ(0) scale(0.8) rotate(-90deg);
     opacity: 1;
  }
  35% {
     transform: translateZ(0) scale(1) rotate(-90deg);
     opacity: 1;
  }

  100% {
    transform: translateZ(0) scale(1) rotate(0deg);
    opacity: 1;
 }
}

@keyframes spin { 
  0% {
     transform: translateZ(0) scale(0.8) rotate(-90deg);
     opacity: 1;
  }
  35% {
     transform: translateZ(0) scale(1) rotate(-90deg);
     opacity: 1;
  }

  100% {
    transform: translateZ(0) scale(1) rotate(0deg);
    opacity: 1;
 }
} 

.circled_image--wrapper { 
  position:relative;
  display:block;
  width: 100%;
  height:auto;
  padding:40px;
  max-height: 700px;
  max-width: 700px;
  overflow:hidden;
}
.circled_image--wrapper.small {
  max-height: 260px;
  max-width: 260px;
}
.circled_image {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  height:100%;
  display: block;
  border-radius: 50%;
  position:relative;
}
.circled_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circled_image--wrapper .circled_border {
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  border-radius:50%;
}
.circled_image--wrapper .circled_border:before {
  display:block;
  content:'';
  width:100%;
  height:100%;
  border-width: 42px;
  border-style: solid;
  transform: rotate(-45deg);
  position:absolute;
  top:0px;
  left:0px;
  border-radius:50%;
/*   -webkit-animation:spin 1s ease-in-out forwards .5s;
  -moz-animation:spin 1s ease-in-out forwards .5s;
  animation:spin 1s ease-in-out forwards .5s; */
}

.circled_image--wrapper.small {
  padding:20px;
}

.circled_image--wrapper.small .circled_border:before {
  border-width: 22px;
}

@media (max-width:1023px) {
  .circled_image--wrapper {
    padding:20px;
  }
  .circled_image--wrapper .circled_border:before {
    border-width: 22px;
  }
}

/* @-moz-keyframes spin { 
    100% { -moz-transform: rotate(-45deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(-45deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(-45eg); 
        transform:rotate(-45deg); 
    } 
} */
/* popup consent cockies */

div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-policy-wording:before {
  display:block;
	content:'';
	background-image:url("https://guepard.tech/hubfs/Logos/Guepard-logo-fit-02.svg");
	background-repeat: no-repeat;
  background-size: contain;
	width:200px;
	height:50px; 
	top:0px;
	left:0px; 
	margin-bottom:15px;
}
body #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-modal-save-settings,
body #hs-modal #hs-modal-content #hs-modal-footer #hs-modal-footer-container button#hs-modal-accept-all {
	padding-left:30px!important;
	padding-right:30px!important;
}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner button#hs-eu-confirmation-button {
    color: #ffcf34!important;
}

body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-header-container button#hs-eu-close-button {
	display: none;
}
/* Dots style */
li .splide__pagination__page {
	background-color: var(--ternary_dark_color)!important;
	border-radius:10px!important;
	border:none!important;
	opacity:.5!important;
}

li .splide__pagination__page:hover {
	background-color: var(--ternary_dark_color)!important;
	border-radius:10px!important;
	opacity:1!important;
}

li .splide__pagination__page.is-active {
	background-color: var(--ternary_dark_color)!important;
	transform:none;
	opacity:1!important;
}

li .splide__pagination__page {
  height: 8px; 
  width: 8px;
  margin: 3px 6px;
}

li .splide__pagination__page.is-active {
  transform: scale(1.4);
}

/* Arrow style */
.splide__arrow i {
	color: var(--secondary_color);
}

.splide__arrow:hover i {
	color: var(--primary_color);
}

.testimonies--wrapper .splide__arrow {
  position:relative;
  top:0px;
  left:0px;
  right:unset;
  background: transparent;
  transform: unset;
  height:1rem;
}

.splide__toggle {
	background: var(--ternary_color) !important;
	transition: background 0.5s ease;
}

.splide__toggle:hover {
	background: var(--ternary_dark_color) !important;
}

.splide__toggle > svg {
	transition: background 0.5s ease;
}

.splide__toggle:hover > svg {
    fill: white;
}

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













.megamenu h5 {
/*   color: #ffcf34!important;   */
}

/* remove event to all childrens of li.megamenu_li_wrapper */
/* .megamenu_li_wrapper a.menu__link, */
.megamenu_li_wrapper div.megamenu-item,
.megamenu_li_wrapper .menu__child-toggle {
  pointer-events: none;
} 
.megamenu_li_wrapper:hover {
  cursor:pointer;
}
.megamenu_li_wrapper .menu__submenu.menu__submenu--level-2 {
  display:none;
}
html.hs-inline-edit input.megamenu_nav:checked ~ #mega_menu--wrapper {
  display:block;
  position:relative;
  height:calc(100vh - 200px);
  z-index:999!important;
  overflow: scroll;
}

html.hs-inline-edit .megamenu_nav,
html.hs-inline-edit .megamenu_nav--label {
  display:inline-block;
}
html.hs-inline-edit .hs-baymax-editor .megamenu_nav,
html.hs-inline-edit .hs-baymax-editor .megamenu_nav--label {
  display:none!important;
}
html.hs-inline-edit .megamenu_nav--label {
  color: white;
  font-size: 16px;
  display: inline-block;
  margin-left:.5rem;
}
html.hs-inline-edit #mega_menu--wrapper .mega_menu--section {
  padding: 2rem 15px;
  background:#ccc;
}
html.hs-inline-edit .container-fluid.megamenu {
  padding:20px;
  background:white;
}
html.hs-inline-edit #mega_menu--wrapper .mega-menu--title {
  display:block!important;
  font-size:18px;
  color: #ffcf34;
  font-weight:600;
}
html.hs-inline-edit #mega_menu--wrapper .mega-menu--title p {
  margin-top:5px;
  font-size:14px;
  color: #25231f;
}
html.hs-inline-edit #mega_menu--wrapper .mega-menu--title input {
  width:800px; 
  font-size:14px;
  display:block;
  background: #e5e5e5;
  border: none;
  padding: 3px;
}

html.hs-inline-edit input.megamenu_nav:checked ~ #mega_menu--wrapper .mega_menu--content {
  position: relative;
  top:0px;
  bottom: unset;
  opacity:1;
  z-index:99999999;
  box-shadow: none!important;
}
.megamenu_nav, .megamenu_nav--label {
  display:none;
}
#mega_menu--wrapper .mega_menu--section {
  padding: 0rem 2rem;
}


#mega_menu--wrapper .mega-menu--title {
  display:none;
  font-size:20px;
  font-weight:bold;
  color:#999;
  margin-bottom:20px;
}
#mega_menu--wrapper {
  position: absolute;
  width: 100%;
  height: 0px;
  display: block;
  bottom: 0px;
  left: 0px;
  z-index: -1;
}

#mega_menu--wrapper .mega_menu--content {
  position: absolute;
  background: white;
  width:100%;
  height: auto;
  display: block;
  bottom: 0px;
  left:0px;
  margin:0px auto;
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,.2)!important;
  opacity:0;
  -moz-transition:  .4s ease-in-out;
  -webkit-transition:  .4s ease-in-out;
  -o-transition:  .4s ease-in-out;
  transition:  .4s ease-in-out;
}
#mega_menu--wrapper .mega_menu--content.mega_menu_open {
  opacity:1;
}

#mega_menu--wrapper ul li a {
  color: #25231f;
}
#mega_menu--wrapper ul li a:hover {
  color: #ffcf34;
}
.megamenu_li_wrapper .menu__link  {
  display: flex;
  flex-direction: row;
  align-items: center;
} 
.megamenu_li_wrapper a.menu__link:after,
.megamenu_li_wrapper span:after {
  color: white;
  width:10px;
  height:auto;
  font-family: 'Font Awesome 5 free';
  content: "\f078";
  display: flex;
  font-size: 10px;
  right: 0px;
  top: 2px;
  pointer-events: none;
  position: relative;
  font-weight: bold;
  margin-left:6px;
}
.megamenu_li_wrapper a.menu__link:hover:after, 
.megamenu_li_wrapper span:hover:after {
  color: #ffcf34;
}


/* Header DND sections */
html:not(.hs-inline-edit) .body-wrapper #header {
  position: fixed;
  width: 100vw; 
} 
html:not(.hs-inline-edit) .body-wrapper.hs-landing-page #header.header-sticky .header__container {
	max-height:0px;
}
html:not(.hs-inline-edit) .body-wrapper.hs-landing-page #header.header-sticky .header__container .header__logo {
	display:none!important;
}
html:not(.hs-inline-edit) #header.header-sticky .header__row-2 {
/* 	padding:0px; */
}

.header {
  z-index:100;
}

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  padding:0px 2rem;
}

.header__row-1 {
  display: flex;
  height:38px;
  background-color:transparent;
  flex-direction : row;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  padding:0px;
  align-items: flex-end;
  max-height:38px;
  transition: .3s ease-in-out ;
}

.header__row-2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  background-color:transparent; 
  -moz-transition:  .3s ease-in-out;
  -webkit-transition:  .3s ease-in-out; 
  -o-transition:  .3s ease-in-out;
  transition:  .3s ease-in-out;
  height:auto;
	padding:.7rem 0px; 
  min-height: 88px;
}
.header__row-2 .header__desktop--wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  background-color:transparent; 
  -moz-transition:  .3s ease-in-out;
  -webkit-transition:  .3s ease-in-out; 
  -o-transition:  .3s ease-in-out;
  transition:  .3s ease-in-out;
  height:auto;
}
.header__row-2 .header_buttons {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

nav.header__button--mobile {
	width:0px;
}

@media (min-width: 1024px) {
  .header__row-2 ul.menu__wrapper {
    display: flex;
    flex-direction:row;
  }
  .header__row-2 ul.menu__wrapper > li.menu__item.menu__item--depth-1 {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0rem .5rem;
      margin: 0rem .5rem;
      height: 90px;
      -moz-transition:  .3s ease-in-out;
      -webkit-transition:  .3s ease-in-out;
      -o-transition:  .3s ease-in-out;
      transition:  .3s ease-in-out;
  }
  #header.header-sticky .header__row-2 ul.menu__wrapper > li.menu__item.menu__item--depth-1 {
      height: 90px;
  }
}

.menu__item--depth-1 > .menu__child-toggle {
  height: auto;
  margin-left: 0.25rem;
}
#header.header-sticky  {
  top: 0px;
  padding:0px;
  width:100%;
  -moz-transition:  .3s ease-in-out;
  -webkit-transition:  .3s ease-in-out;
  -o-transition:  .3s ease-in-out;
  transition:  .3s ease-in-out;
}
#header.header-sticky  .header__row-1  {
  max-height:0px;
}
.header__column {
  width: 100%;
}

.header.header-no-navigation .header__row-2 {
  background-color:#ffcf34;
  padding:15px 2rem;
}

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

  .header__column {
    position: relative;
  }

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

  .header__row-2 {
    justify-content: space-between;
    padding: .8rem 0px;
		flex-direction: column;
		height: auto;
		gap:.5rem;
		align-items: center;
  }
  
/*   #header.header-sticky .header__row-2 {
    padding: 0rem;
  } */

}

/* 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 img {
  position:relative;
	float:left;
}

/* 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 */
.lang_switcher .lang_switcher_link {
  color: #25231f;
  margin: 0 0.5rem;
  padding: 0 0.5rem;
  font-weight:200;
}
.lang_switcher .lang_switcher_link:hover {
  color: #ffcf34;
}
.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0rem 0.5rem;
  margin: 0rem 0.5rem;
  height: 90px;
	text-transform: uppercase;
  -moz-transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
@media (max-width: 1023px) {
 .header__language-switcher {
   padding:0px!important;
   height:auto!important;
   margin:0px!important;
   
  }
  .header__language-switcher a {
    padding: 0.6rem 1rem!important;
    line-height:20px;
    margin:0px!important;
    display:block;
  }
}
@media (min-width: 1024px) {
#header.header-sticky .header__language-switcher {
    height: 90px;
  }
}
.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: 1023px) {
  .header__language-switcher {
    border-top: 1px dashed #25231f;
    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;
  }
}


/*                                                               */
/*                                                               */
/*                             CTAs                              */
/*                                                               */
/*                                                               */

#header .button_max--wrapper-all {
	width: fit-content;
	display:flex;
  flex-direction:row;
	flex-wrap:nowrap;
}
#header .button_max--wrapper-all a {
	 white-space:nowrap;
}

@media(max-width:575px) {
	#header .button_max--wrapper-all {
		flex-direction:column;
		width:100%;
		align-items:center;
		margin:0px;
	}
}

/*                                                               */
/*                                                               */
/*                         menu mobile                           */
/*                                                               */
/*                                                               */

@media (max-width: 1023px) {
  .header__navigation,
  .header__search,
  .header__row-1 {
    display: none;
    width: 100%;
  }

  nav.header__button--mobile {
    display:block;
    color: white;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 1rem;
  }
  
  nav.header__button--mobile:hover {
    cursor:pointer;
  }
  nav.header__button--mobile svg path {
    fill:white!important;
  }
	nav.header__button--mobile .icon-menu,
	#header.menu_mobile-open nav.header__button--mobile .icon-close {
    display:block;
		width:100px;
  }
  #header.menu_mobile-open nav.header__button--mobile .icon-menu,
	nav.header__button--mobile .icon-close {
    display:none;
  }

	.header__mobile--wrapper {
		display:none;
	}
  #header.menu_mobile-open .header__mobile--wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100vw;
    background: #2e2e2e;
    top: 88px;
		left: 0;
		padding-bottom:200px;
		overflow:scroll;
		max-height: calc(100vh - 88px );
	}
  #header.menu_mobile-open .header__ctas {
		margin-top:2rem;
	}
  .header__mobile--wrapper .menu__item--depth-1 {
    border-top:1px solid rgba(255,255,255,.1)!important;
  }
  .header__mobile--wrapper .menu__item--depth-1:first-child {
    border-top:none!Important;
		margin-top: 2rem;
  }
  .header__mobile--wrapper .menu__submenu {
    border:none!important;
  }
  .header__mobile--wrapper .menu__submenu .menu__item {
    border-top:none!important;
    border-bottom:none!important;

  }
  .header__mobile--wrapper .menu__link {
    padding:.7rem 1rem!important;
    font-size:.5rem; 
  }


  .header__mobile--wrapper .menu__item--has-submenu .menu__submenu .menu__link {
    margin-left: 0rem;
    transition: .5s ease-in-out;
		background:transparent!important;
		font-weight:normal!important;
		text-transform:none!important;
		line-height:1.2em;
  }
  .header__mobile--wrapper .menu__item--has-submenu .menu__submenu {
    overflow:hidden;
    height:auto;
    max-height:0px;
    display:block!important;
    transition: .5s ease-in-out;
    float: left;
    width:calc(100% - 2rem);
  }
  .header__mobile--wrapper .menu__item--has-submenu.menu__item--open .menu__submenu {
    height:auto;
    max-height:600px;
    transition: .3s ease-in-out;
  }
  .header__mobile--wrapper .menu__item--has-submenu.menu__item--open .menu__submenu .menu__link {
    margin-left: 1rem;
    border-left:2px solid #ffcf34;
  }
  .header__mobile--wrapper .menu__child-toggle {
    background:none!important;
    border: 0;
    cursor: pointer;
    height: 40px;
    padding: 0px 0px;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    color:white;
    display: flex;
    align-items: center;
  }
  .header__mobile--wrapper .menu__child-toggle i {
    background:none!important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    margin:0px;
  }
  
  .header__mobile--wrapper button:hover {
    box-shadow:none!important;
  }

}
	
	
  /* Mobile toggles */
  
  @media (max-width: 1023px) {
    .header__navigation,
    .header__search,
    .header__row-1 {
      display: none;
      width: 100%;
    }
    .header__navigation--mobile {
      display:block;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      flex: 1 1 80%;
    }
    .header__navigation--mobile  label {
      font-size:30px;
      margin:0px 1rem 0px 1.5rem;
    }
    .header__navigation--mobile  label:hover {
      cursor:pointer;
    }
    .header__navigation--mobile  input {
      display:none;
    }
    .header__navigation--mobile  #hs_cos_wrapper_navigation-mobile {
      position:absolute;
      left:0px;
      width:100vw;
      top:100%;
      background:;
      height: auto;
      max-height:0px;
      overflow: auto;
      transition: max-height .5s ease-in-out;
      left:-1rem;
    }
    .header__navigation--mobile #toggle-menu {
      display:block;
      color: white;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .header__navigation--mobile input + #toggle-menu svg {
      display:none;
      max-width: 30px;
      width: 100%;
      max-height: 30px;
      height: auto;
    }
    .header__navigation--mobile #toggle-menu svg path {
      fill:white;
    }
    .header__navigation--mobile input[type="checkbox"]:not(:checked) + label#toggle-menu .icon-menu {
      display:block;
    }
    .header__navigation--mobile input[type="checkbox"]:checked + label#toggle-menu .icon-close {
      display:block;
      max-width: 26px;
    }
    
    .header__navigation--mobile input[type="checkbox"]:checked + label + #hs_cos_wrapper_navigation-mobile {
      height: auto!important;
      max-height: calc(100vh - 75px)!important;
      transition: max-height .5s ease-in-out; 
    }
  
    .header__navigation--mobile .menu__item--depth-1 {
      border-top:1px solid rgba(255,255,255,.1)!important;
    }
     .header__navigation--mobile .menu__item--depth-1:first-child {
      border-top:none;
    }
    .header__navigation--mobile .menu__submenu {
      border:none!important;
    }
    .header__navigation--mobile .menu__submenu .menu__item {
      border-top:none!important;
      border-bottom:none!important;
    }
    .header__navigation--mobile .menu__link {
      padding:.6rem 1rem!important;
      font-size:.5rem; 
    }

    .header__navigation--mobile .menu__item--has-submenu .menu__submenu .menu__link {
      margin-left: 0rem;
      border-color: #ffcf34;
      transition: .5s ease-in-out;
    }
    .header__navigation--mobile .menu__item--has-submenu .menu__submenu {
      overflow:hidden;
      height:auto;
      max-height:0px;
      display:block!important;
      transition: .5s ease-in-out;
      float: left;
    }
    .header__navigation--mobile .menu__item--has-submenu.menu__item--open .menu__submenu {
      height:auto;
      max-height:600px;
      transition: .3s ease-in-out;
    }
    .header__navigation--mobile .menu__item--has-submenu.menu__item--open .menu__submenu .menu__link {
      margin-left: 1rem;
      border-left:2px solid #ffcf34;
    }
    .header__navigation--mobile .menu__child-toggle {
      background:none!important;
      border: 0;
      cursor: pointer;
      height: 60px;
      padding: 0px 0;
      position: absolute;
      right: 0;
      top: 0;
      width: 30%;
      color:white;
      display: flex;
      align-items: center;
    }
    .header__navigation--mobile .menu__child-toggle i {
      background:none!important;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 1rem;
      margin:0px;
    }
    
    
  
    .header__search--toggle,
    .header__language-switcher--toggle {
      cursor: pointer;
      margin: 0 5vw;
      position: relative;
    }
  
    .header__search--toggle.hide,
    .header__language-switcher--toggle.hide {
      display: none;
    }
    
    .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__search--toggle.open,
    .header__language-switcher--toggle.open {
      display: block;
      margin-left: 0;
      margin-right: auto;
    }
  
    .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__search--toggle.open:after,
    .header__language-switcher--toggle.open:after {
      display: block;
      word-break: normal;
    }
  
    .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";
    }
  
  }
/* 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%;
} 




footer.footer {
  padding: 5rem 30px 2rem 30px;
}


footer > .content-wrapper {
  padding-left:0px;
  padding-right:0px;
}
.footer_span-wrapper {
	gap: 2rem 10%;
}
.footer_span-wrapper > .span3 {
	width:auto;
	flex: 0 1 auto;
}
.footer_span-col4 {
	min-width:180px;
}
.footer_span-wrapper > .span3:first-child {
	flex: 1 1 auto;
}
.footer__container--copyright {
  margin-top:3rem;
  border-top: 0px solid var(--grey_medium_color);
  padding: 0px 0px 0px 0px;
  color: white;
  font-size: .8rem;
  text-decoration:none;
}
.footer__container--copyright a {
  color: white;
  text-decoration:none;
  margin:0px .5rem;
}
.footer__container--copyright a:hover {
  color: white;
  text-decoration:underline;
}

footer .social-links { 
/*   margin-left: calc(30% + 1.3rem); */
  justify-content: flex-start;
	margin-left:-16px!important;
}



@media (max-width:575px) {
	.footer_span-wrapper > .span3 {
		width:100%;
		flex: 1 0 100%;
	}

  footer.footer {
    padding: 4rem 30px 2rem 30px;
  }
  .footer__container--copyright a {
    display:block;
    width:100%;
    margin-top:.3rem;
  }
  .footer__container--copyright {
    margin-top:3rem;
  }

}

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