/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.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: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

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

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

/* layout */

.minh-full {
  min-height: calc(100vh - var(--header_height_px));
}

.minh-70 {
  min-height: calc(70vh - var(--header_height_px));
}

.dnd-section.minh-full,
.dnd-section.minh-half,
.dnd-section.minh-70 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dnd-section.minh-full > *,
.dnd-section.minh-half > *,
.dnd-section.minh-70 > *{
  width: 100%;
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
	transition:.3s ease-in-out;
}

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

/* No button */

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

button.dark_mode.button_color-secondary,
.button.dark_mode.button_color-secondary,
.hs-button.dark_mode.button_color-secondary
.dark_mode .hs-button {
	background-color: var(--secondary_color);
	border-color: var(--secondary_color);
	color: var(--primary_color);
}
button.dark_mode.button_color-secondary:hover,
.button.dark_mode.button_color-secondary:hover,
.hs-button.dark_mode.button_color-secondary:hover,
.dark_mode .hs-button:hover {
	background-color: white;
	border-color: white;
	color: var(--primary_color); 
}



/* new */


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

.button_max--wrapper {
  position:relative;
  display:inline-flex; 
  flex-direction:row;
  justify-items:flex-start;
  align-items:center;
  width: auto;
  margin:0px 15px;
	min-height:51px;
}
.button_max--wrapper > a {
	font-size:15px!important;
  min-height:51px;
  width:fit-content;
  padding: 0px 30px!important;
  display:flex;
  justify-content:center;
  align-items:center;
  box-sizing: border-box!important;
  -webkit-transition: background 400ms ease-in-out!important;
  -ms-transition: background ease-in-out!important;
  transition: background 400ms ease-in-out!important;
  line-height:1rem;
  margin:10px 0px;
  font-family: 'Roboto Condensed', sans-serif;
	font-weight:700!important;
	text-decoration: none!important;
	border-radius: 5px;
}

.button_max--wrapper.button_style-fullwidth {
  width:calc(100% - 30px);
}
.button_max--wrapper.button_style-fullwidth a {
  width:100%;
}
.button_max--wrapper.button_style-fullwidth  .hs_cos_wrapper_type_cta {
  width:100%;
}


 
.button_max--wrapper.button_color-primary:not(.button_style-cta) a {
  background-color: var(--primary_color);
  color: var(--white);
	border: 2px solid var(--primary_color);
}
.button_max--wrapper.button_color-primary:not(.button_style-cta):hover a {
  background-color: var(--secondary_color);
  color: var(--white);
	border: 2px solid var(--white);
}

.button_max--wrapper.button_color-secondary a:not(.button_style-cta) {
  background-color: var(--secondary_color);
  color: var(--primary_color);
	border: 2px solid var(--secondary_color);
}
.button_max--wrapper.button_color-secondary:not(.button_style-cta):hover a {
  background-color: var(--primary_color);
  color: var(--secondary_color);
	border: 2px solid var(--secondary_color);
}

@media (max-width: 767px) {
	.button_max--wrapper-all {
		flex-direction: column;
  } 
}
/* Fields */

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

/* Labels */

form label,
#input_full_address 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,
#input_full_address input {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}
form fieldset.form-columns-1 input[type=text],
form fieldset.form-columns-1 input[type=search],
form fieldset.form-columns-1 input[type=email],
form fieldset.form-columns-1 input[type=password],
form fieldset.form-columns-1 input[type=tel],
form fieldset.form-columns-1 input[type=number] {
	width: 100%!important;
}
form fieldset.form-columns-1 .input {
	width: 100%;
}
form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections and custom Header with oblique logo Alu-rex, menu, and more  */

.header { 
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  position: relative;
  z-index: 30;
	background-color: white;
	width:100%;
}
.header.header--no-navigation {  
	background-color: var(--secondary_color)!important; 
}
.header__container.content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
	width: 100%;
}
.header__container-middle {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
/* 	.header__container.content-wrapper {
		min-width: 1300px; 
	} */
	.header__container-nav-wrapper {
		align-items: center;
		display: flex;
		flex-grow: 1;
		height: 65px;	
		position: relative;
		white-space:nowrap;
		justify-content: flex-start;
	  transform: skewX(-20deg));
    -webkit-transform: skewX(-20deg);

	}

	.header__container-nav-menu { 
		align-items: center;
		display: flex;
		flex-grow: 1;
		height: 65px;	
		position: relative;
	  left:-13px;
		box-sizing: border-box;
		margin-right:-20px;
	}
	.header__container-nav-menu .menu__wrapper{
		display:flex;
	}
}

.header__container-nav-menu .menu.menu--desktop li.menu__item.menu__item--depth-1 {
	height: 65px;
  padding: 0px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
	background-color:var(--secondary_color);
	width:auto;
	transition:.3s ease-in-out;
}
/* .header__container-nav-menu .menu.menu--desktop li.menu__item.menu__item--depth-1:first-child  {
	min-width:180px;
} */
.header__container-nav-menu .menu.menu--desktop li.menu__item.menu__item--depth-1:hover {
		background-color:#cba215;
}
.header__container-nav-menu .menu.menu--desktop li.menu__item.menu__item--depth-1:hover .menu__link {
	color: white!important;
}
.header__container-nav-menu .menu.menu--desktop li.menu__item.menu__item--depth-1:hover .menu__child-toggle-icon {
	border-top-color: white!important;
}
.header__container-nav-menu .menu.menu--desktop li.menu__item.menu__item--depth-1 .menu__child-toggle {
	transform: skewX(20deg));
  -webkit-transform: skewX(20deg);
	right:30px;
	position: absolute;
	top:calc(50% - 4px)
}
.header__container-nav-menu .menu.menu--desktop li.menu__item.menu__item--depth-1 .menu__link {
	transform: skewX(20deg));
  -webkit-transform: skewX(20deg);
	height:65px;
	padding:0px 30px;
	display: flex;
  align-items: center;
	line-height:1.1rem;
} 
.header__container-nav-menu .menu.menu--desktop li.menu__item.menu__item--depth-1.menu__item--has-submenu > .menu__link {
	padding-right:50px!important;
}
.header__container-nav-menu .menu.menu--desktop .menu__submenu .menu__item:not(:last-child) {
	border-bottom: 1px solid var(--grey_700_color);
}
.header__container-nav-menu .menu.menu--desktop .menu__submenu .menu__item:hover {
	background-color:var(--grey_700_color);
}
.header__container-nav-menu li.menu__item a.menu__link,
.header_cta a.button {
	font-size:16px;
	font-family: 'Open Sans', Helvetica Neue, Helvetica, Arial, sans-serif;
	font-weight:normal;
}
#hs_cos_wrapper_navigation-primary  .menu.menu--desktop .menu__submenu {
  border: 0px none;
  background-color: var(--grey_800_color);
  left: 0px;
  top: 65px;
  width: auto;
	border-radius:0px;
	transition: .3s ease-in-out;
	display:block;
	max-height:0px;
	overflow:hidden;
}
#hs_cos_wrapper_navigation-primary  .menu.menu--desktop .menu__item--depth-1.menu__item--has-submenu.menu__item--open .menu__submenu {
	max-height:500px;
}
#hs_cos_wrapper_navigation-primary  .menu.menu--desktop .menu__submenu .menu__link  {
	transform: skewX(20deg));
  -webkit-transform: skewX(20deg);
	background:none;
	height:65px;
}

.header_language_switcher-desktop .header__container-nav-lang {
	left: -20px;
  transform: skewX(20deg);
	align-items: center;
  flex-grow: 0;
	height: 65px;	
  position: relative;
	background:white;
}
.header__logo-pre_wrapper {
	display: block;
	position:relative;
	width:100%;
	transform: skewX(-20deg));
  -webkit-transform: skewX(-20deg);
	z-index:4;
	margin-left:20px;
}
.header:not(.header--no-navigation) .header__logo-pre_wrapper .header__logo-wrapper {
	right:0px;
}

.header__logo-wrapper {
	display: flex;
  position: relative;
  justify-content: flex-end;
	align-items:center;
  flex-grow: 0;
  position: absolute;
  padding: 0px 50px 0px 0px;
  background: white;
  height: 130px;
  z-index: 5;
	white-space: nowrap;
}
.header__logo-wrapper:before {
  position:absolute;
	right:0px;
	top:0px;
	height:100%;
	width:2000px;
	display:block;
	content:'';
	background:white;
	box-shadow: 4px 2px 2px 2px rgba(0,0,0,0.3);
}

.header__logo-content {
	display: flex;
	align-items: flex-end;
	gap: 35px;
  position: relative;
  height: 75px;
	transform: skewX(20deg));
  -webkit-transform: skewX(20deg);
}
.header__logo-wrapper .header__logo  {
  display: inline-block;
  max-width: 103px;
  max-height: 75px;
	min-width: 103px;
}
.header__logo-wrapper .header__moto  {
  display: inline-block;
	position: relative;
	color: black!important;
	text-align: left;
	margin:0px;
	font-size: 26px;
  line-height: 26px;
	top:-1px;
}
@media (max-width:1399px) {
	.header__logo-wrapper .header__moto  {
	  display:none;
	}
}
.header__logo-wrapper .header__moto a {
  color: black!important;
	text-transform: uppercase;
	font-weight:bold;
	font-size: 26px;
  line-height: 26px;
}

.header .dnd-section {
  padding: 0;
}
@media(max-width: 767px) {
	.header__container-nav-wrapper {
		height: calc(var(--mobile_header_height) * 1px);
	}
	.header {  
		background-color: var(--secondary_color)!important; 
	}
	.header__container.content-wrapper {
		padding:0px;
	}

	.header__logo-wrapper .header__logo  {
    display: inline-block;
    max-width: 80px;
	  min-width: 80px;
  }
  .header__logo-wrapper .header__moto  {
	  display:none;
	}
	.header__logo-wrapper {
    height: 90px;
    left: -10px;
    padding: 0px 40px 0px 30px;
	}

	.header__navigation {
		height:0px;
		overflow:hidden;
		background-color: var(--primary_color);
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top:65px;
    z-index: 2;
		padding-top:0px;
		padding-bottom:0px;
		transition: .5s ease-in-out;
	}
	.header__navigation.open {
    height: calc(100vh - var(--mobile_header_height) * 1px );
		padding-top:50px;
		padding-bottom:50px;
  }
	.menu.menu--mobile .menu__item .menu__link {

		font-size:1rem;
		line-height:1.2rem;
	}
	.menu.menu--mobile .menu__item--depth-1 > .menu__link {
		color:var(--secondary_color)!important;
    padding: .75rem 1rem;
		background:transparent!important;
  }
	.menu.menu--mobile .menu__item--depth-1 > .menu__link:hover,
	.menu.menu--mobile .menu__item--depth-1 > .menu__link:focus {
		color:white!important;
  }
	.menu.menu--mobile .menu__item.menu__item--depth-2,
	.menu.menu--mobile .menu__item.menu__item--depth-2 .menu__link {
		background: transparent!important;
		border:none!important;
	}

	.menu.menu--mobile .menu__item--has-submenu .menu__submenu.menu__submenu--level-2 {
		background: var(--primary_color)!important;
		padding: 0rem 0px 0rem 0px;
		display:block!important;
		max-height:0px;
		height:auto;
		overflow:hidden;
		transition:.5s ease-in-out;
	}

	.menu.menu--mobile .menu__item--has-submenu.menu__item--open .menu__submenu.menu__submenu--level-2 {
		max-height:500px;
		transition:.3s ease-in-out;
	}

	.menu.menu--mobile .menu__item--has-submenu .menu__item.menu__item--depth-2  > .menu__link  {
		color:white!important;
		padding: .5rem 1rem;
		transition:.3s ease-in-out;
		font-size:16px;
	}
	.menu.menu--mobile .menu__item--has-submenu .menu__item.menu__item--depth-2  > .menu__link:hover,
		.menu.menu--mobile .menu__item--has-submenu .menu__item.menu__item--depth-2  > .menu__link:focus {
		color:var(--secondary_color)!important;
	}
	.menu.menu--mobile .menu__item--has-submenu.menu__item--open .menu__item.menu__item--depth-2  > .menu__link  {
	  padding: .5rem 2rem;
		transition:.2s ease-in-out .1s;
	}

}

/* Header buttons */
.header_cta,
.header_cta .button-wrapper {
	height:100%;
	transition:.3s ease-in-out;
}
@media (min-width:768px) {
	.header_cta .button-wrapper {
		transform: translateZ(0) skewX(20deg));
		-webkit-transform: skewX(20deg);
	}
}
.header_cta.header_cta1 {
	background:white;
}
.header_cta.header_cta2  {
	background:var(--primary_color);
	padding-right: 20px;
}
.header_cta.header_cta1 .button {
	color:var(--primary_color);
}
.header_cta.header_cta1:hover .button {
	color:var(--secondary_color);
	background-color: black;
}
.header_cta.header_cta2 .button {
	color:white;
}
.header_cta.header_cta1:hover  {
	background-color: var(--grey_700_color);
}
.header_cta.header_cta2:hover  {
	background-color: var(--grey_700_color);
}
.header_cta.header_cta2:hover .button {
	color:var(--secondary_color);
}
.header_cta a.button {
	background:none!important;
	display: flex;
  border: none;
  height: 100%;
  padding: 0 34px;
  white-space: nowrap;
	align-items: center;
	text-transform: uppercase;
}
@media(max-width: 767px) {
	.header_cta {
		height:auto!important;
		margin: 2rem 1rem 0rem;
		padding:0px!important;
		background:none!important;
	}
	.header_cta .button-wrapper {
		height:auto!important;
	}
	.header_cta a.button {
    padding: .75rem .5rem;
		justify-content: center;
		border-radius:5px;
  }
	.header_cta.header_cta1 a.button {
		background: var(--secondary_color)!important;
		border:2px solid var(--secondary_color);
	}
	.header_cta.header_cta2 a.button {
		background: none;
		border:2px solid var(--secondary_color);
		color:var(--secondary_color);
	}
	.header_cta.header_cta1 a.button:hover,
	.header_cta.header_cta1 a.button:focus {
		background: white!important;
		border:2px solid white;
		color:black!important
	}
	.header_cta.header_cta2 a.button:hover,
	.header_cta.header_cta2 a.button:focus {
		background: none!important;
		border:2px solid white;
		color:white!important;
	}
	.header_cta.header_cta1:hover, .header_cta.header_cta2:hover {
		background: none!important;
	}
}

/* Header container */

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

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

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

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



/* Navigation skipper */

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

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

/* Logo */

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

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

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

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

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

/* Search bar */

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



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


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

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

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

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

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

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

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

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

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

/* Language switcher */

.button-wrapper.header__language-switcher--label {
	height:100%;
}
.header_language_switcher-desktop .header__language-switcher .button {
  cursor: pointer;
	background:white!important;
	display: flex;
  border: none;
  height: 100%;
  white-space: nowrap;
	align-items: center;
	text-transform: uppercase;
	font-family: Open Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
	padding:0px;
	width:100px;
	justify-content: center;
	transition:.3s ease-in-out;
	border-radius:0px!important;
}

.header_language_switcher-desktop .header__language-switcher .button:hover {
	background:var(--grey_700_color)!important;
	color:white;
	border:none!important;
	border-radius:0px!important;
}

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

.header_language_switcher-desktop .header__language-switcher .lang_list_class {
  border: 0px solid;
  border-radius: 0px;
  display: block;
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
	position:absolute;
	right:0px;
	list-style: none;
  margin: 0;
  padding: 0;
	width:100%;
}
.header_language_switcher-desktop .header__language-switcher .lang_list_class a {
  display : flex;
	align-items: center;
	justify-content: center;
  height: 100%;
	width:100%;
}
.header_language_switcher-desktop .header__language-switcher:hover .lang_list_class,
.header_language_switcher-desktop .header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

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

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

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

.header_language_switcher-desktop .header__language-switcher .lang_list_class li {
  border: none;
  font-size: 16px;
  padding:0px;
	display:flex;
	height:65px;
	width:100%;
	justify-content: center;
	align-items: center;
	background:white;
	text-transform: uppercase;
}

.header_language_switcher-desktop .header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
	background-color: var(--grey_700_color)!important;
	color:white!important; 
}
.header_language_switcher-desktop .header__language-switcher .lang_list_class li:hover a {
	color:white!important; 
}

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

.header_language_switcher-desktop .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-desktop .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;
}
.header_language_switcher-mobile {
	display:none;
} 
@media (max-width: 767px) {
	.header_language_switcher-desktop {
		display:none;
	}
	.header_language_switcher-mobile {
		display:flex;
		height:100%;
		align-items:center;
		min-width:90px;
		justify-content: center;
		position:relative;
	} 
	.header_language_switcher-mobile button,
	.header_language_switcher-mobile button:hover,
	.header_language_switcher-mobile button:active,
	.header_language_switcher-mobile button:focus {
		border:0px!important;
		padding:0px;
		margin:0px;
		text-transform: uppercase;
		font-family: Open Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
		cursor: pointer;
		white-space: nowrap;
		font-size: 18px;
		font-weight: 400;
		color:var(--primary_color)!important;
		background-color: transparent!important;
	}
  .header_language_switcher-mobile .header__language-switcher .lang_list_class {
		border: 0px solid;
		border-radius: 0px;
		display: block;
		opacity: 0;
		min-width: 90px;
		padding-top: 0;
		text-align: left;
		top: 100%;
		transition: opacity 0.3s;
		visibility: hidden;
		position:absolute;
		left:0px;
		list-style: none;
		margin: 0;
		padding: 0;
		width:auto;

	}
	.header_language_switcher-mobile.open .header__language-switcher .lang_list_class {
		opacity: 1;
		transition: opacity 0.3s;
		visibility: visible;
	}
	.header_language_switcher-mobile .header__language-switcher .lang_list_class li {
		border: none;
		font-size: 18px;
		padding:0px;
		display:flex;
		height:65px;
		width:100%;
		justify-content: center;
		align-items: center;
		background:white;
		text-transform: uppercase;
	}
	.header_language_switcher-mobile .header__language-switcher .lang_list_class li:hover,
	.header_language_switcher-mobile .header__language-switcher .lang_list_class li:active,
	.header_language_switcher-mobile .header__language-switcher .lang_list_class li:focus{
		background:var(--primary_color)!important;
	}
	.header_language_switcher-mobile .header__language-switcher .lang_list_class li:hover a,
	.header_language_switcher-mobile .header__language-switcher .lang_list_class li:active a,
	.header_language_switcher-mobile .header__language-switcher .lang_list_class li:focus a{
		color:white!important;
	}
	.header__container-nav-menu .menu.menu--mobile li.menu__item.menu__item--depth-1 {
		border-width: 0px;
	}
	.header_language_switcher-mobile.open {
		
	}
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

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

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

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


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

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

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

  .header__navigation--toggle {
    background-image: url(//39830866.fs1.hubspotusercontent-na1.net/hubfs/39830866/raw_assets/public/Alu-rex%20theme%20from%20boilerplate/images/icons/icon-menu.svg);
    background-size: cover;
    height: 28px;
    width: 28px;
  }
	.menu__child-toggle-icon  {
		-webkit-mask-image: url(//39830866.fs1.hubspotusercontent-na1.net/hubfs/39830866/raw_assets/public/Alu-rex%20theme%20from%20boilerplate/images/icons/icon-plus.svg);
    mask-image: url(//39830866.fs1.hubspotusercontent-na1.net/hubfs/39830866/raw_assets/public/Alu-rex%20theme%20from%20boilerplate/images/icons/icon-plus.svg);
		mask-size: 20px 20px;
		background-color: var(--secondary_color);
		background-size: cover;
    height: 20px;
    width: 20px;
		background-repeat: no-repeat;
    display: block;
    transition: transform 0.4s;
		left: calc(50% - 10px);
    position: relative;
	}
	.menu__child-toggle:hover .menu__child-toggle-icon  {
		background-color: white;
	}
  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

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

  .header__close--toggle {
    background-image: url(//39830866.fs1.hubspotusercontent-na1.net/hubfs/39830866/raw_assets/public/Alu-rex%20theme%20from%20boilerplate/images/icons/icon-close.svg);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 28px;
    width: 28px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
footer.footer {
  background-color: var(--primary_color);
  padding: 4rem 30px 2rem 30px;
}
.footer.footer-landing_page {
	padding-top:2rem;
}

footer > .content-wrapper {
  padding-left:0px;
  padding-right:0px;
}
.footer.footer-landing_page .footer__container--copyright {
  margin-top:0rem;
  border-top: 0px solid white;
  padding: 0px 0px 0px 0px;
  color: white;
  font-size: .8rem;
  text-decoration:none;
}
.footer__container--copyright {
  margin-top:3rem;
  border-top: 1px solid var(--grey_700_color);
  padding: 20px 0px 0px 0px;
  color: var(--grey_500_color);
  font-size: .8rem;
  text-decoration:none;
	line-height:1.65;
}
.footer__container--copyright .hs_cos_wrapper_type_rich_text {
  color: var(--grey_500_color);
}
.footer .footer__container--copyright a {
  color: white;
  text-decoration:none;
	width:fit-content;
	display:inline-block;
}
.footer__container--copyright a:hover {
  color: white;
  text-decoration:underline;
}

footer .social-links { 
  margin-left: calc(30% + 1.3rem);
  justify-content: flex-start;
}

footer .footer__container--col:not(.footer__container--col1) {
	padding-left:2rem; 
}

footer .hs-social-follow__link {
	border: 1px solid var(--grey_700_color); 
	width: 20px!important;
  height: 20px!important;
	padding: 10px;
	transition: .3s ease-in-out;
}
footer .hs-social-follow__link:hover svg path {
	fill: var(--secondary_color); 
}
footer .hs-social-follow__link:hover  {
		border: 1px solid var(--secondary_color); 
}
footer .footer__container--col a {
	color:white!important;
}
footer .footer__container--col a:hover {
	color:var(--grey_300_color)!important;
}
@media (max-width:575px) {
	footer .footer__container--col:not(.footer__container--col1) {
		padding-left:0rem; 
	}
  .footer__container--col.footer__container--col1 img {
    width:240px!important; 
  }
  footer.footer {
    padding: 4rem 30px 2rem 30px;
  }
  .footer__container--copyright a {
    display:block;
    width:100%;
    margin-top:.3rem;
  }
  .footer__container--copyright {
    margin-top:3rem;
  }
  footer .social-links { 
    margin-left: calc(30% + .3rem);
  }
	footer .footer__container--col4 .button_max--wrapper.button_style-fullwidth a {
		width:fit-content!important;
	}

}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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

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

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