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

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .content-wrapper {
    padding: 0 40px;
  }
}

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

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

h1 {
  line-height: 1.18181818182;
}

h2 {
  line-height: 1.25;
}

h3 {
  line-height: 1.2;
}


/* 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;
}
.btn {
	position: relative;
	display: inline-block;
	text-align: center;
	white-space: normal;
	border: none;
	text-decoration: none;
	cursor: pointer;
	z-index: 0;
}

.btn:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	transform: skew(-14deg);
	-webkit-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out;
	z-index: -1;
	font-weight:inherit;
}

.btn:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	width: 14px;
	height: 14px;
	background-image: url(https://22383675.fs1.hubspotusercontent-na1.net/hubfs/22383675/Website%20Redesign%20-%202023/icons/icon-arrow_triple.png);
	background-size: 14px 14px;
	background-repeat: no-repeat;
	-webkit-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out;
	font-weight:inherit;
}

/* General Button Hover Effects */
.btn:hover:after,
.btn:focus:after, {
	transform: translate(4px, -50%);
}

/* Primary Button Styles */

.btn {
	line-height:1.1875;
	font-weight:700;
}

.btn.btn--primary {
	color: #fff;
	padding-right: 58px;
}



.btn.btn--primary:hover:before,
.btn.btn--primary:focus:before {
	background: var(--black);
}

/* Secondary Button Styles */
.btn.btn--secondary {
	color: #fff;
	padding-right: 58px;
}

.btn.btn--secondary:before {
	background: var(--secondary);
}

.btn.btn--secondary:hover:before,
.btn.btn--secondary:focus:before {
	background: var(--tertiary);
}

/* Tertiary Button Styles */
.btn.btn--tertiary {
	font-weight: 700;
	color: var(--primary);
	padding: 0 20px 0 0;
}

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

.btn.btn--tertiary:before {
	display: none;
}

.btn.btn--tertiary:after {
	background-image: url(https://22383675.fs1.hubspotusercontent-na1.net/hubfs/22383675/Website%20Redesign%20-%202023/icons/icon-arrow_triple__yellow.png);
	right: 0;
}

.slick-arrow {
	-webkit-box-shadow: 0px 0px 15px 5px rgba(31,46,57,0.1); 
	box-shadow: 0px 0px 15px 5px rgba(31,46,57,0.1);
}

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

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

.hs-search-module a.hs-button.primary {
  margin-top: 28px;
}

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

/* Labels */

form label {
  display: block;
  font-size: 16px;
  margin-bottom: 0.35rem;
  line-height: 1.375;
}

/* Help text */

form legend {
  font-size: 16px;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 1rem;
  padding: 16px;
  width: 100%!important;
  outline: none;
  min-height: 50px;
  font-weight:var(--light);
}

form input[type=email]::placeholder,
form input[type=file]::placeholder,
form input[type=number]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=text]::placeholder,
form select::placeholder,
form textarea::placeholder {
  opacity: 0.5;
}

form select {
  position: relative;
  appearance: none;
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 22px;
  background-image: url('https://22383675.fs1.hubspotusercontent-na1.net/hubfs/22383675/raw_assets/public/tempel-theme-2023/images/expand%20arrow%20icon.png');
    }

.hs_error_rollup {
  display: none;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

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 {
  position: unset;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  text-align: center;
  padding: 18px 58px 18px 36px;
  -webkit-transition: all 0.35s linear;
  transition: all 0.35s linear;
  white-space: normal;  
  font-weight: 700;
}

form .hs-submit .actions {
  position: relative;
  width: fit-content;
}

form .hs-submit .actions:after,
form .hs-submit .actions:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 14px;
  height: 14px;
  background-image: url(https://22383675.fs1.hubspotusercontent-na1.net/hubfs/22383675/Website%20Redesign%20-%202023/icons/icon-arrow_triple.png);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

form .hs-submit .actions:hover:after,
form .hs-submit .actions:focus:after,
form .hs-submit .actions:hover:after,
form .hs-submit .actions:focus:after {
  transform: translate(4px, -50%);
}

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

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

/* Header Styles */


header { 
  position: relative; 
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
  z-index: 100;
}
/* header .content-wrapper{
  background-color: var(--white);
} */

body.navOpen {
  overflow: hidden;
}

body.navOpen header {
  background-color: var(--white);
}

header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

header .header .col.col--logo > div,
header .header .col.col--logo > div > span,
header .header .col.col--logo > div > span > a {
  line-height: 0;
}

header .header .col.col--logo > div > span > a img {
  max-width: 240px;
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}
/* 
//Inverts color on hamburger menu open
body.navOpen header .col.col--logo img {
  filter: brightness(0) invert(1);
} */

header .header .col.col--menu nav {
  display: none;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  padding: 40px 20px 0;
}

header .header .col.col--menu nav ul li a {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
}

header .header .col.col--menu nav ul > li.hs-menu-depth-1 {
  padding: 6px 0;
}

header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s ease-in-out .45s, visibility .35s ease-in-out .45s, width .35s ease-in-out .3s;
  transition: opacity .35s ease-in-out .45s, visibility .35s ease-in-out .45s, width .35s ease-in-out .3s;
}

body.navOpen header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child  {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child > a {
  font-size: 1.25rem;
  font-weight: 400;
  width: 100%;
  background-color: var(--tertiary);
  padding: 20px 40px 170px 40px;
}

header .header .col.col--menu nav ul > li.hs-menu-depth-1 > a {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 10px 14px 10px 0;
}

header .header .col.col--menu nav ul > li.hs-menu-depth-1 > .menu-indicator {
  line-height: 0;
  background-color: transparent;
  border: none;
  padding: 10px;
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
  cursor: pointer;
}
header .header .col.col--menu nav ul > li.hs-menu-depth-1 > .menu-indicator img {
  max-height: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .header .col.col--menu nav ul > li.hs-menu-depth-1 > .menu-indicator.open {
  transform: rotate(90deg);
} 

header .header .col.col--menu nav ul > li.hs-menu-depth-1 > ul {
  display: none;
  background-color: var(--primary-background);
  padding: 10px 30px;
  margin: 0 -20px;
}

header .header .col.col--menu nav ul > li.hs-menu-depth-1 > ul > li > a {
  padding: 8px 0;
}

.hamburger{
  width: 40px;
  height: 30px;
  display:flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: space-between;
  transform: scale(0.75);
  cursor: pointer;
  margin-bottom: 8px;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 101;
}

.hamburger:before {
  content: '';
}

.hamburger-slice{
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.hamburger .top{
  margin-top: 4px;
}

.hamburger .top-anim{
  animation: top-k 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .top-anim-r{
  animation: top-k-r 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .mid-anim{
  animation: mid-k 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .mid-anim-r{
  animation: mid-k-r 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .bot-anim{
  animation: bot-k 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .bot-anim-r{
  animation: bot-k-r 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .bot{
  margin-bottom: -3px;
}

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



.lang-wrap .lang_list_class {
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.lang-wrap .globe_class:hover .lang_list_class {
  opacity: 1;
  visibility: visible;
}

.lang-wrap ul li {
  background-color: #e4ecf2;
  border-left: 0;
  border-right: 0;
  min-width: 175px;
}
.lang-wrap ul li:first-child {
  border-top: 0;
}
.lang-wrap ul li:last-child {
  border-bottom: 0;
}
.lang-wrap ul:before {
  border: 0;
  border-bottom-color: #e4ecf2;
}
.lang-wrap ul:after {
  border-bottom-color: #e4ecf2;
}

.lang-wrap ul li a {
  color: #000000;
}

.lang-wrap ul li a:hover {
  color: #116df9;
}


header .header__row-1.lang-wrap {
  margin-top: 6px;
}

@keyframes top-k{
  from{
    transform:rotate(0deg) translate(0,0);
  }
  to{
    transform:rotate(45deg) translate(10px,10px);
  }
}

@keyframes top-k-r{
  from{
    transform:rotate(45deg) translate(12px,12px);
  }
  to{
    transform:rotate(0deg) translate(0,0);
  }
}

@keyframes mid-k{
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mid-k-r{
  from {
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@keyframes bot-k{
  from{
    transform:rotate(0deg) translate(0,0);
  }
  to{
    transform:rotate(-45deg) translate(8px,-8px);
  }
}
@keyframes bot-k-r{
  from{
    transform:rotate(-45deg) translate(12px,-12px);
  }
  to{
    transform:rotate(0deg) translate(0,0);
  }
}

@media (min-width: 1024px) {
  .body-wrapper {
    overflow: hidden;
  }
  .hamburger {
    display: none;
  }
  header .header {
    column-gap: 30px;
    padding: 0;
  }
  header .header .col.col--logo {
    margin-right: 30px;
  }
  header .header .col.col--logo > div > span > a img {
    max-width: 160px;
  }
  header .header .col.col--menu {
    width: 100%;
  }
  header .header .col.col--menu nav {
    display: block!important;
    position: relative;
    background-color: transparent;
    height: auto;
    padding: 0;
  }
  header .header .col.col--menu nav > span > div > ul {
    width: 100%;
    max-width: 900px;
    justify-content: space-between;
    margin: 0 0 0 auto;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1 {
    display: flex;
    align-items: center;
    padding: 0;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1.hs-item-has-children {
    position: relative;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1 + li.hs-menu-depth-1 {
    margin-left: 10px;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1 > a {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    min-height: 76px;
    padding: 20px 0;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1 > .menu-indicator {
    padding: 10px 0 10px 6px;
    cursor: pointer;
  }

  header .header .col.col--menu nav ul > li.hs-menu-depth-1 > a[aria-expanded="true"] + .menu-indicator img {
    transform: rotate(90deg);
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child {
    position: relative;
    bottom: initial;
    left: initial;
    width: auto;
    opacity: 1;
    visibility: visible;
  }
  body.navOpen header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child  {
    width: auto;
    opacity: 1;
    visibility: visible;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child > a {
    position: relative;
    font-size: 1rem;
    background-color: transparent;
    padding: 10px 0;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
  }

  header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child > a:after {
    display: none;
  }

  header .header .col.col--menu nav ul > li.hs-menu-depth-1.hs-item-has-children > ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 30px);
    text-align: center;
    min-width: 300px;
    margin: 0;
    background-color: var(--primary-background);
    padding: 14px 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1.hs-item-has-children > ul[aria-hidden="false"] {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1.hs-item-has-children > ul:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 12px 30px;
    -webkit-transition: all .25s ease-in-out .25s;
    transition: all .25s ease-in-out .25s;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child > a {
    color: #fff;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child > a:before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% + 18px);    
    width: 100vw;
    height: 100%;
    background-color: var(--tertiary);
    transform: skew(25deg) translate(100%);
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    pointer-events: none;
    z-index: -1;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child:hover > a:before,
  header .header .col.col--menu nav ul > li.hs-menu-depth-1:last-child:focus > a:before {
    right: calc(100% + 24px);    
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1.hs-item-has-children > ul > li.hs-menu-depth-2 > a {
    display: block;
    padding: 6px 0;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
  }
  header .header .col.col--menu nav ul > li.hs-menu-depth-1.hs-item-has-children > ul > li.hs-menu-depth-2 + li > a {
    margin-top: 6px;
  }

  header .header .col.col--menu nav ul > li.hs-menu-depth-1.hs-item-has-children > ul > li.hs-menu-depth-2 > a:focus {
    color: var(--tertiary);
  }
  header .header .col.col--menu nav ul>li.hs-menu-depth-1.hs-item-has-children>ul>li:last-child{
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1241px) {
  header .header .col.col--logo > div > span > a img {
    max-width: 240px;
  }
}



@media (max-width:1023px) {
  header .header .col.col--menu nav .hs-menu-wrapper>ul {
    flex-direction: column;
  } 
  body.navOpen header .header .col.col--menu nav ul>li.hs-menu-depth-1:last-child {
    opacity: 1;
    visibility: visible;
    width: 100%;
    position: relative;
    left: 0;
    padding: 0;
    padding: 6px 0;
  }
  header .header .col.col--menu nav ul>li.hs-menu-depth-1:last-child {
    opacity: 1;
    transition: none;
    visibility: visible;
    width: 100%;
    padding: 6px 0;
    position: relative;
    visibility: visible;
    width: 100%;
    left: 0;
  }
  header .header .col.col--menu nav ul>li.hs-menu-depth-1:last-child>a {
    background-color: var(--tertiary);
    font-size: 1.25rem;
    font-weight: 400;
    padding: 0;
    width: 100%;
    background: no-repeat;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 10px 14px 10px 0;
  }
}



@media (max-width:360px) {
  header .header .col.col--logo>div>span>a img {
    max-width: 190px;
  }
}


@media (max-width:767px) {
  .lang-wrap ul {
    left: -85%;
  }
  .lang-wrap ul:after {
    left: 75%;
  }
}
@media (min-width:767px) {
  .lang-wrap .globe_class {
    background-image: url('https://22383675.fs1.hubspotusercontent-na1.net/hubfs/22383675/Website%20Redesign%20-%202023/icons/icon-language-switcher__white.png');
  }
}



@media (max-width:1280px) {
  .lang-wrap ul {
    left: 10%;
  }
  .lang-wrap ul:after {
    left: 58%;
  }
}
/* Footer Styles */

footer.footer {
	position: relative;
	background-color: #686868;
	padding: 60px 0 20px;
	overflow: hidden;
}

.footer .logo img {
	filter: brightness(0) invert(1);
}

footer .menu-wrap {
	margin: 60px 0 70px;
}

footer .menu-wrap ul {
	justify-content: space-between;
}

footer .menu-wrap .hs-menu-wrapper>ul>li {
	max-width: 20%;
}

footer .menu-wrap .hs-menu-wrapper>ul>li>a {
	color: #FFFFFF;
	font-weight: bold;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 30px;
	display: block;
}

footer .menu-wrap .hs-menu-wrapper>ul>li ul li {
	margin-bottom: 10px;
}

footer .menu-wrap .hs-menu-wrapper>ul>li ul li a {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 22px;
}

footer .bottom-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

footer .bottom-wrap .left-sec {
	width: 70%;
}

footer .bottom-wrap .right-sec {
	width: 30%;
	position: relative;
}

footer .bottom-wrap .left-sec { 
	text-align: center;
}

footer .bottom-wrap .left-sec a {
	color: #FFFFFF;
	font-weight: 300;
}


footer .bottom-wrap .right-sec:before {
	background-color: #000000;
	content: "";
	height: 80px;
	left: 0;
	position: absolute;
	right: 0;
	transform: skew(-35deg) translate(-9%);
	width: 50vw;
	z-index: 1;
	bottom: -20px;
}


footer .bb-social-share {
	position: relative;
	z-index: 2;
}

footer .bb-social-share ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

footer .bb-social-share ul li {
	height: 30px;
	width: 30px;
	list-style: none;
}

footer .bb-social-share ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 30px;
	max-height: 30px;
}

footer .bb-social-share ul li a > span {
	line-height: 0;
}

footer .bb-social-share ul li svg {
	fill: var(--white);
	width: 100%;
	max-width: 30px;
	max-height: 30px;
	height: auto;
}

footer .bb-social-share ul li:first-child svg {
	margin-bottom: 4px;
}

footer .bb-social-share ul li:not(:last-child) {
	margin-right: 30px;
}



@media (max-width:991px) {
	footer .bottom-wrap .left-sec {
		text-align: left;
	}
	footer .bottom-wrap .left-sec,
	footer .bottom-wrap .right-sec {
		width: 45%;
	}
	footer .bottom-wrap {
		align-items: stretch;
		justify-content: space-between;
	}
	footer .bottom-wrap .right-sec {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	footer .bottom-wrap .right-sec:before {
		width: 60vw;
		height: calc(100% + 40px);
	}
	footer .bb-social-share ul {
		justify-content: center;
	}
}





@media (max-width:767px) {
	footer .menu-wrap .hs-menu-wrapper>ul>li {
		margin-bottom: 30px;
	}
	footer .menu-wrap .hs-menu-wrapper>ul>li>a {
		margin-bottom: 10px;
	}
	footer .menu-wrap .hs-menu-wrapper>ul {
		flex-direction: unset;
	}
	footer .menu-wrap .hs-menu-wrapper>ul>li {
		width: 45%;
		min-width: 45%;
		margin-right: 10px;
	}
	footer .menu-wrap {
		margin: 30px 0 30px;
	}
	footer .bottom-wrap {
		flex-direction: column;
	}
	footer .bottom-wrap .left-sec,
	footer .bottom-wrap .right-sec {
		width: 100%;
	}
	footer .bottom-wrap .right-sec {
		padding-top: 20px;
		margin-top: 30px;
	}
	footer .bottom-wrap .right-sec:before {
		left: 100px;
		height: calc(100% + 20px);
		width: 100%;
	}
	footer .bb-social-share ul li:not(:last-child) {
		margin-right: 10px;
	}
	footer .bb-social-share ul {
		justify-content: flex-end;
	}
}
/* 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;
  }
}