/* 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 24px;
}
.small {
  font-size: 14px;
}
.large {
  font-size: 18px;
}
.cta__link {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
}
.mb-0 {
  margin-bottom: 0;
}
.custom-width {
  margin: 0 auto;
  padding: 0 20px;
}
.description *:last-child {
  margin-bottom: 0;
}
.description *{
  color: inherit;
}
.text-left{text-align:left!important}
.text-right{text-align:right!important}
.text-center{text-align:center!important}
.cta--group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}
.text-left .cta--group {
  -webkit-box-pack: start!important;
  -ms-flex-pack: start!important;
  justify-content: flex-start!important
}
.text-right .cta--group {
  -webkit-box-pack: end!important;
  -ms-flex-pack: end!important;
  justify-content: flex-end!important
}
.text-center .cta--group {
  -webkit-box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center!important
}
.cta--group .cta__button {
  display: inline-block;
}


.full-width, .custom-width, .content-wrapper {
  position: relative;
  z-index: 1;
}

.bg_image,.gradient{width:100%;height:100%;top:0;left:0;right:0;pointer-events:none}
div[data-aos="none"] {
  transition-delay: unset !important;
  transition-timing-function: unset !important;
  transition-duration: unset !important;
}
.position-relative{
  position: relative;
}
section .full-width,
.custom-width, .content-wrapper {
  position: relative;
  z-index: 1;
}
.dnd-section[class*=force-full-width-section] {
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.dnd-section[class*=full-width-section]>.row-fluid>.dnd-column {
  padding-left: 0;
  padding-right: 0;
}
.overflow-hidden{
  overflow: hidden;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

.resources-tag-page .tag-page-wrapper {
  padding-bottom: 96px;
  padding-top: 64px;
  background: linear-gradient(0deg, #fff, #e6f3f9);
}
.resources-tag-page .tag-page-row {
  display: flex;
  gap: 46px;
}
.resources-tag-page .tag-page-right {
  width: 70%;
}
.resources-tag-page .tag-page-left {
  width: 30%;
}
.resources-tag-page .tag-page-left>div {
  position: sticky;
  top: 140px;
}
@media (max-width: 992px){
  .resources-tag-page .tag-page-left,
  .resources-tag-page .tag-page-right {
    width: 100%;
  }
  .tag-page-row {
    flex-wrap: wrap;
  }
  .resources-tag-page .tag-page-left {
    z-index: 9;
  }
}
@media (max-width: 1200px) and (min-width: 993px) {
  .resources-tag-page .tag-page-left>div {
    position: sticky;
    top: 200px;
  }
}



@media (max-width: 479px){
  .cta--group .cta__button {
    width: 100%; 
    text-align: center;
  }
}

/* Elements
Base HTML 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;
}
@font-face {
  font-family: 'fontello';
  src: url(https://50318466.fs1.hubspotusercontent-na1.net/hubfs/50318466/raw_assets/public/WesternComputer_Nov2025/templates/font/fontello.woff) format('woff'),
    url(https://50318466.fs1.hubspotusercontent-na1.net/hubfs/50318466/raw_assets/public/WesternComputer_Nov2025/templates/font/fontello.ttf) format('ttf'),
    url(https://50318466.fs1.hubspotusercontent-na1.net/hubfs/50318466/raw_assets/public/WesternComputer_Nov2025/templates/font/fontello.woff2) format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap
}

/* 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 {
  margin: 0 0 24px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px;
}

/* Lists */

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

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 {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
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;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  margin-bottom: 10px;
}

/* Labels */
.hs-form label {
  display: block;
  margin-bottom: 0.35rem;
  text-transform: capitalize;
}
.hs-form label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1875;
  color: ;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 6px;
  text-transform: capitalize;
}
.hs-form-field > label {
  margin-bottom: 6px;
}
.inputs-list.hs-error-msgs label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1875;
  margin-top: .5rem;
  color: #ef6b51;
}
.hs-error-msgs label {
  color: #ef6b51;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}
.hs_error_rollup label {
  color: red;
}
/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */
header.header input[type=search],
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;
  padding: 15px 16px;
  width: 100%;
  outline: none;
}

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: red;
  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;
  font-weight: 700;
}

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

/* ---------------------------------------------------
1. HEADER WRAPPER
--------------------------------------------------- */
header.header {
  box-shadow: 0px 6px 15px 0px #00000026;
  padding: 15px 0 0 0;
  position: fixed;
  z-index: 9;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
}

/* ---------------------------------------------------
2. LOGO
--------------------------------------------------- */
header.header .header__logo {
  padding-bottom: 21px;
  padding-top: 7px;
}
header.header .header__logo img {
  display: block;
}

/* ---------------------------------------------------
3. HEADER ROW + LAYOUT
--------------------------------------------------- */
header.header .header__row {
  display: flex;
  align-items: flex-end;
}

header.header .header__column1 {
  display: flex;
  align-items: flex-end;
  gap: 104px;
}

header.header .header__column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: absolute;
  right: 100px;
  top: 0;
  z-index: 9;
}
.header__container {
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}
/* ---------------------------------------------------
4. HEADER LINKS
--------------------------------------------------- */
header.header .header__header--links {
  margin: 0 0 10px 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

header.header .header__header--links ul li a {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 0 10px 0;
}

header.header .header__header--links ul li a:hover {
  text-decoration: none;
}

/* ---------------------------------------------------
5. SEARCH BAR
--------------------------------------------------- */
header.header .header__search.header--element {
  margin-top: 3px;
  position: relative;
  left: 69px;
}
header.header .header__search-button {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
  position: relative;
}

header.header button.search-toggle {
  padding: 0;
  background: transparent;
  border: none;
  margin: 0;
  position: relative;
  z-index: 1;
}

header.header .search-toggle:after {
  content: '';
  font-family: 'fontello';
  font-size: 30px;
  line-height: 42px;
  display: block;
  font-weight: 400;
  color: #03af8c;
}

header.header input[type=search] {
  padding: 0 15px;
  border: none !important;
  height: 40px;
  transition: width 0.5s ease-out;
  width: 0;
}

header.header .is-open input[type=search] {
  border: 1px solid #000 !important;
  width: 240px;
}

header.header .header__search.header--element form {
  padding: 0;
  background: none;
  border-radius: 0;
}
header.header .hs-search-field__suggestions-container {
  flex-basis: 100%;
  position: absolute;
  top: 100%;
  background: #fff;
  font-size: 14px;
  left: 0;
  right: 0;
  display: none;
}

header.header input[type="search"]::-webkit-search-cancel-button {
  display: none;
}
header.header input[type="search"]:-moz-search-cancel-button {
  display: none;
}
header.header input[type="search"]::-ms-clear  {
  display: none;
}  
header.header .is-open .hs-search-field__suggestions-container {
  display: block;
}
.header__search-button.is-open button.hs-search-field__button {
  z-index: 11;
}
/* ---------------------------------------------------
6. DESKTOP MENU (TOP LEVEL)
--------------------------------------------------- */
.header__menu.header__menu__desktop {
  display: inline-block;
  vertical-align: bottom;
  width: calc(100% - 461px);
  z-index: 2;
  position: relative;
  margin-left: 4px;
}
header.header .cta__button--btn-secondary a {
  font-size: 13px;
  font-weight: 600;
  padding: 16px 27px;
  line-height: 1;
  border: none;
  border-radius: 0;
  border-radius: 50px;
}
header.header .header__menu .hs-menu-wrapper>ul {
  padding-left: 100px;
  max-width: 990px;
}
header.header .header__menu .hs-menu-wrapper>ul>li:not(:last-child) {
  margin-right: 5%;
}
header.header .header__menu .hs-menu-wrapper > ul > li > a {
  padding: 15px;
  font-weight: 700;
  display: inline-block;
  font-size: 20px;
  line-height: normal;
}

header.header .header__menu .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
  content: '';
  font-family: 'fontello';
  font-size: 30px;
  line-height: 22px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}

header.header .header__menu .hs-menu-wrapper > ul > li.hs-item-has-children:hover > a:after {
/*   transform: rotate(180deg); */
}

/* ---------------------------------------------------
7. DESKTOP SUBMENU (LEVEL 2)
--------------------------------------------------- */
header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > .hs-item-has-children {
  break-inside: avoid;
}

header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > .hs-item-has-children > a {
  display: block;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 600;
  white-space: normal;
}

header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > li > a {
  display: block;
  padding: 8px 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: normal;
}

header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > li.hs-menu-depth-3 > a {
  padding: 8px 15px;
}
/* ---------------------------------------------------
8. CTA
--------------------------------------------------- */
header.header .cta--group {
  margin: 0;
}

/* ---------------------------------------------------
9. SEARCH BUTTON ICON
--------------------------------------------------- */
header.header .hs-search-field__button {
  border-radius: 0px;
  border: none;
  background: transparent;
  position: absolute;
  right: 0;
  height: 100%;
}

/* ---------------------------------------------------
10. HAMBURGER ICON (DESKTOP HIDDEN)
--------------------------------------------------- */
header.header .header__header--links--mobile,
header.header #nav-toggle {
  display: none;
}

header.header #nav-icon1 {
  display: none;
  width: 32px;
  min-width: 32px;
  height: 22px;
  position: relative;
  transition: .5s ease-in-out;
  cursor: pointer;
}

header.header #nav-icon1 span,
header.header #nav-icon3 span,
header.header #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 9px;
  left: 0;
  transition: .25s ease-in-out;
}

header.header #nav-icon1 span:nth-child(1) { top: 0px; }
header.header #nav-icon1 span:nth-child(2) { top: 10px; }
header.header #nav-icon1 span:nth-child(3) { top: 20px; }

header.header #nav-icon1.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}
header.header #nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
header.header #nav-icon1.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}
header.header .header__menu .hs-menu-wrapper>ul>li > .hs-menu-children-wrapper {
  text-align: left;
}
header.header .header__menu .hs-menu-wrapper>ul>li:hover>a {
  text-decoration: none;
}
header.header li#results-for {
  padding: 0 10px;
}
/* ---------------------------------------------------
11. DESKTOP MEDIA QUERIES
--------------------------------------------------- */
@media (min-width: 768px) {
  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > li > a{
    padding: 8px 15px; 
  }
  header.header .header__menu .hs-menu-wrapper>ul>li:hover>.hs-menu-children-wrapper {
    pointer-events: auto;
  }
  header.header .header__menu .hs-menu-wrapper>ul>li>.hs-menu-children-wrapper {
    pointer-events: none;
  }
  header.header .header__menu .hs-menu-wrapper>ul>li:last-child > .hs-menu-children-wrapper {
    width: 310px;
    left: auto !important;
    right: 0;
  }
  header.header .header__menu .hs-menu-wrapper > ul > li.children4 {
    position: static;
  }

  header.header .header__menu .hs-menu-wrapper > ul > li.children4 > .hs-menu-children-wrapper {
    column-count: 4;
    display: block;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    width: 100%;
  }

  header.header .header__menu .hs-menu-wrapper > ul > li.children4 > ul.hs-menu-children-wrapper .hs-menu-children-wrapper {
    position: static;
    opacity: 1;
    visibility: visible;
  }

  header.header .header__menu .hs-menu-wrapper > ul > .hs-item-has-children > .hs-menu-children-wrapper {
    width: 310px;
  }

  header.header .header__menu .hs-menu-wrapper > ul > li.children4 > ul.hs-menu-children-wrapper > .hs-item-has-children > a {
    margin-bottom: 22px;
  }

  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > .hs-item-has-children:hover>ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
    display: block;
    left: 100%;
    right: auto;
    top: 0;
  }
  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > .hs-item-has-children {
    position: relative;
  }
  header.header .header__column2 {
    right: 100px;
  }
}
@media (max-width: 1640px) and (min-width: 768px) {
  .header__container {
    padding-left: 30px;
    padding-right: 30px;
  }
  header.header .header__menu .hs-menu-wrapper>ul {
    padding-left: 34px;
  }
  header.header .header__menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin-right: 0;
  }
  header.header .header__menu .hs-menu-wrapper > ul > li > a {
    font-size: 18px;
  }

}
@media (max-width: 1200px) and (min-width: 768px) {
  .header__responsive--menu {
    display: block !important;
  }
  header.header .header__menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin-right: 5%;
  }
  header.header .header__menu .hs-menu-wrapper>ul{
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }
  header.header .header__menu.header__menu__mobile span {
    width: 100%;
  }
  header.header .header__menu .hs-menu-wrapper>ul {
    justify-content: center;
  }
  header.header .header__menu .hs-menu-wrapper > ul > li.children4 > .hs-menu-children-wrapper {
    width: calc(100% - 60px);
  }
  header.header .header__column2 {
    right: 30px;
  }
}
/* Hide mobile menu on large screens */
@media (min-width: 1201px) {
  header.header .header__menu__mobile {
    display: none;
  }
}
/* Hide desktop menu on tablet/mobile */
@media (max-width: 1200px) {
  header.header .header__menu__desktop {
    display: none;
  }
  header.header .header__menu.header__menu__mobile {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 880px) and (min-width: 768px) {
  header.header .header__menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin-right: 2.3%;
  }
}
/* ---------------------------------------------------
12. MOBILE MEDIA (≤ 767px)
--------------------------------------------------- */
@media (max-width: 767px) {
  header.header {
    position: relative;
  }

  .body-wrapper {
    padding-top: 0 !important;
  }

  header.header #nav-icon1 {
    display: block;
  }

  header.header .header__responsive--menu {
    background-color: var(--secondary);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: none;
  }

  header.header .header__search-button,
  .header__header--links--desktop {
    display: none;
  }

  header.header .header__header--links--mobile {
    display: block;
  }

  header.header #nav-toggle {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../icons/menu.png?1681139202);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
  }

  header.header .header__menu.header__menu__mobile > span {
    width: 100%;
  }

  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper {
    display: none;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: var(--tertiary);
  }

  header.header .header__header--links ul li a,
  header.header .header__menu .hs-menu-wrapper > ul > li > a {
    display: block;
    color: #fff;
    font-weight: 400;
    padding: 11px 15px;
    border-top: 1px solid #fff;
    font-size: 16px;
    text-transform: none;
  }

  header.header .header__column2 {
    display: none;
  }

  header.header .header__row {
    align-items: center;
  }

  header.header .header__menu .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
  }

  header.header .child-trigger {
    position: absolute;
    width: 55px;
    height: 45px;
    top: 0;
    right: 0;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /*     border-left: 1px solid #fff; */
    z-index: 999;
    width: 100%;
  }
  .child-trigger.child-open {

  }
  header.header .header__menu .hs-menu-wrapper > ul > li.hs-item-has-children:hover > a:after {
    transform: none;
  }
  header.header .header__menu .hs-menu-wrapper > ul > li.hs-item-has-children.has-menu-open > a:after {
    transform: rotate(180deg);
  }
  /* 
  header.header .child-trigger:after {
  content: '';
  font-family: 'fontello';
  font-size: 30px;
  line-height: 22px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  color: #fff;
} */

  header.header .child-trigger.child-open:after {
    transform: rotate(180deg);
  }
  header.header .header__menu.header__menu__mobile {
    margin: 0;
  }
  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > .hs-item-has-children {
    width: 100%;
  }
  header.header .header__menu .hs-menu-wrapper > ul ul .hs-menu-children-wrapper {
    display: block !important;
    height: auto !important;
    background: var(--tertiary);
  }
  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper .child-trigger {
    display: none;
  }
  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > .hs-item-has-children > a {
    background: var(--primary);
    padding: 11px 15px;
    color: #fff;
    padding-left: 30px;
    font-weight: 400;
  }
  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > li > a {
    font-size: 16px;
    font-weight: 400;
    padding: 11px 15px;
    color: #fff;
    padding-left: 45px;
  }
  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > li.hs-menu-depth-3 > a {
    padding: 11px 15px;
    padding-left: 45px;
  }
  header.header .header__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  header.header .header__logo {
    padding-bottom: 15px;
    padding-top: 1px;
  }
  header.header .header__row {
    justify-content: space-between;
  }
  header.header .header__menu .hs-menu-wrapper>ul {
    padding-left: 0;
  }
  header.header .header__menu .hs-menu-wrapper>ul>li:not(:last-child) {
    margin-right: 0;
  }
  header.header .header__header--links ul li a {
    color: #FFF;
  }
  header.header .header__menu .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
    font-weight: 400;
    margin-left: 8px;
  }
  header.header  li.hs-menu-item.hs-menu-depth-3.hs-item-has-children:not(:last-child) {
    margin-bottom: 0;
  }
  header.header .header__menu .hs-menu-wrapper .hs-menu-children-wrapper > .hs-item-has-children>a {
    padding-left: 30px !important;
  }
}
@media(min-width: 1201px) {
  .body-wrapper {
    padding-top: 121px;
  }
}
@media(max-width: 1200px) and (min-width: 768px) {
  .body-wrapper {
    padding-top: 176.188px;
  }
}
/* ---------------------------------------------------
FOOTER WRAPPER
--------------------------------------------------- */
footer.footer {
  padding-top: 50px;
  padding-bottom: 29px;
}

/* ---------------------------------------------------
LAYOUT CONTAINERS
--------------------------------------------------- */
footer.footer .footer__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

footer.footer .footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* ---------------------------------------------------
LEFT SECTION
--------------------------------------------------- */
footer.footer .footer__left {
  max-width: 318px;
  line-height: 25px;
}

footer.footer .footer__logo img {
  width: 180px;
  margin-bottom: 20px;
}

footer.footer .footer__address {
  font-size: 14px;
  line-height: 1.6;
}

footer.footer .footer__certifications {
  display: flex;
  gap: 10px;
}

footer.footer .footer__certifications-item img {
  height: 50px;
}

footer.footer .ms-solutions-partner {
  max-width: 128px;
  width: 100%;
}
footer.footer .ms-solutions-partner:first-child {
  max-width: 165px;
}
footer.footer .footer__address ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
}

footer.footer .footer__address ul li a {
  text-transform: uppercase;
  font-size: 14px;
}

footer.footer .feature-box a{
  text-decoration: none
}
footer.footer .footer__copyright p {
  margin: 0;
}
/* ---------------------------------------------------
MENU BLOCKS
--------------------------------------------------- */
footer.footer .footer__menu-block {
  min-width: 180px;
}

footer.footer .footer__menu-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

footer.footer .footer__menu-list li {
  margin-bottom: 6px;
}

footer.footer .footer__menu-list li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

/* ---------------------------------------------------
FOOTER MENUS (HubSpot)
--------------------------------------------------- */
footer.footer .footer__menus {
  max-width: 500px;
  width: 100%;
  margin: 0 0 30px;
}

footer.footer .footer__menus .hs-menu-wrapper > ul > li > a {
  text-transform: uppercase;
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* All submenu ULs must stay visible */
footer.footer .footer__menus .hs-menu-wrapper > ul > li ul {
  position: static !important;
  opacity: 1 !important;
  visibility: visible;
}

/* 2-Column submenu layout */
footer.footer .footer__menus1 .hs-menu-wrapper > ul > li > ul {
  column-count: 2;
  column-gap: 15px;
  display: block;
}

footer.footer .footer__menus.footer__menus2 {
  max-width: 238px;
  flex-grow: 1;
  flex-shrink: 0;
}

/* Submenu heading */
footer.footer .footer__menus .hs-menu-wrapper > ul li.hs-menu-item.hs-menu-depth-2.hs-item-has-children > a {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 22px;
}

/* Submenu links */
footer.footer ul.hs-menu-children-wrapper > li > a {
  color: #fff;
  font-size: 14px;
  display: inline-block !important;
  line-height: normal;
  white-space: normal !important;
}
footer.footer ul.hs-menu-children-wrapper > li > a:hover {
  text-decoration: none;
  color: var(--primary);
}
/* Avoid column-break inside menu groups */
footer.footer li.hs-menu-item.hs-menu-depth-2.hs-item-has-children {
  break-inside: avoid;
}

footer.footer ul.hs-menu-children-wrapper li.hs-menu-item a:empty {
  display: none !important;
}

footer.footer .footer__menus.footer__menus2 li.hs-menu-item.hs-menu-depth-1 {
  margin: 0 0 30px;
}

footer.footer .footer__menus .hs-menu-wrapper > ul li.hs-menu-item.hs-menu-depth-2.hs-item-has-children:not(:last-child) > ul {
  padding-bottom: 22px;
}

/* ---------------------------------------------------
SOCIAL
--------------------------------------------------- */
footer.footer ul.social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 20px;
  max-width: 100%;
}

footer.footer .footer__social-link img {
  width: 22px;
  height: 22px;
}

/* ---------------------------------------------------
BOTTOM + COPYRIGHT
--------------------------------------------------- */
footer.footer .footer__bottom {
  text-align: center;
}

footer.footer .footer__copyright {
  text-align: center;
  font-size: 11px;
  margin: 30px 0 0;
  color: #fff;
}


footer.footer .footer__copyright p a {
  font-weight: 700;
}

/* ---------------------------------------------------
MISC
--------------------------------------------------- */
footer.footer .feature-box {
  font-weight: 600;
  font-size: 18px;
  margin-top: 0;
  cursor: text;
  color: #fff;
}
footer.footer .feature-box * {
  color: #fff;
}
footer.footer .feature-box p {
  margin: 0;
}
footer.footer .feature-box a {
  display: block;
}
footer.footer .feature-box * {
  color: #fff;
  font-size: 16px;
}
footer.footer .footer__copyright p a:hover,
footer.footer .footer__menus .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: none;
}
footer.footer li.hs-menu-item.hs-menu-depth-3.hs-item-has-children:not(:last-child) {
  margin-bottom: 22px;
}
footer.footer .feature-box a[href*="tel"] {
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 800px) {
  footer.footer {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 1140px) and (min-width: 800px) {
  footer.footer .footer__left{
    max-width: 100%;
    text-align: center;
    margin: 20px 0;
    width: 100%;
  }
  footer.footer .footer__address ul {
    justify-content: center;
  }
  footer.footer .footer__certifications {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}


@media (max-width: 800px) {
  footer.footer .recognition {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer.footer .feature-box a[href*="mailto"] {
    margin: 15px 0;
  }
  footer.footer .feature-box a[href*="tel"] {
    margin-bottom: 15px;
  }
  footer.footer .footer__menus.footer__menus2 li.hs-menu-item.hs-menu-depth-1:last-child {
    margin-bottom: 0;
  }
  footer.footer .footer__menus.footer__menus2 li.hs-menu-item.hs-menu-depth-1 {
    width: 100%;
  }
  footer.footer .footer__menus li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a {
    margin-bottom: 10px;
  }

  footer.footer .footer__menus ul.hs-menu-children-wrapper>li>a {
    margin: 0 0 8px;
  }
  footer.footer .footer__menus1 .hs-menu-wrapper > ul > li > ul {
    column-count: 1;
    column-gap: 0;
    display: block;
  }
  footer.footer .footer__top {
    max-width: 270px;
    margin: 0 auto;
    text-align: center;
  }
  footer.footer .footer__address ul {
    justify-content: center;
  }

  footer.footer .footer__menus.footer__menus2 {
    max-width: 100%;
  }
}

footer.footer.updated-client {
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

footer.footer.updated-client .content-wrapper {
  max-width: 1180px;
  padding: 0;
}

footer.footer.updated-client .footer__menus .hs-menu-wrapper > ul li.hs-menu-item.hs-menu-depth-2.hs-item-has-children > a {
  margin: 0;
}

footer.footer.updated-client .footer__menus {
  margin: 0;
}
footer.footer.updated-client li.hs-menu-item.hs-menu-depth-2.hs-item-has-children:nth-child(2) > a {
  margin-bottom: 23px !important;
}

footer.footer.updated-client .footer__menus.footer__menus2 .hs-menu-wrapper > ul {
  margin-bottom: 19px;
}

footer.footer.updated-client .footer__menus.footer__menus2 .hs-menu-wrapper > ul > li > ul,
footer.footer.updated-client .footer__menus.footer__menus1 .hs-menu-wrapper > ul > li:first-child > ul{
  display: block!important;
}

footer.footer.updated-client .footer__menus .hs-menu-wrapper ul  li {
  line-height: normal;
}

footer.footer.updated-client .footer__menus.footer__menus1 .hs-menu-wrapper > ul > li:first-child > ul > li:nth-child(3) > a {
  margin-bottom: 23px!important;
}

footer.footer.updated-client .footer__menus.footer__menus1 .hs-menu-wrapper > ul > li > ul > li:first-child > a {
  margin-bottom: 23px!important;
}

footer.footer.updated-client .footer__logo img {
  height: 76px!important;
}

footer.footer.updated-client .footer__address {
  line-height: 1.8;
}
footer.footer.updated-client .footer__address .hs_cos_wrapper_type_rich_text {
  line-height: 25px;
}
footer.footer.updated-client  .footer__address ul {
  gap: 0;
}
footer.footer.updated-client .footer__address ul > li > a {
  margin-right: 10px;
  font-weight: 700;
}

footer.footer .footer__certifications .recognition .ms-solutions-partner:last-child {
  width: 128px;
  height: 146px;
}
footer.footer .footer__certifications .recognition .ms-solutions-partner:first-child {
  width: 165px;
  height: 60px;
}

footer.footer .footer__certifications .recognition .ms-solutions-partner:last-child img {
  width: 100%!important;
  height: 146px!important;
}
@media (min-width:800px){
  footer.footer.updated-client {
    padding-left: 30px;
    padding-right: 30px;
  } 
}

@media (max-width:767px){
  footer.footer.updated-client .footer__menus.footer__menus2 .hs-menu-wrapper > ul > li:nth-child(3) {
    order: 2;
  }
  footer.footer.updated-client .footer__menus.footer__menus2 .hs-menu-wrapper > ul > li:nth-child(2) {
    order: 3;
  }
  footer.footer.updated-client .footer__menus.footer__menus2 .hs-menu-wrapper > ul > li:first-child {
    order: 1;
  } 
  footer.footer.updated-client {
    padding-bottom: 29px;
  }
  footer.footer.updated-client .footer__menus.footer__menus2 .hs-menu-wrapper > ul {
    margin-bottom: 0;
  }
  footer.footer.updated-client .footer__menus.footer__menus2 .hs-menu-wrapper > ul > li {
    margin: 0 0 30px!important;
  }
  footer.footer.updated-client .footer__menus.footer__menus2 .hs-menu-wrapper > ul > li:nth-child(2) > a {
    margin: 0 0 11px;
  }
  footer.footer.updated-client .footer__menus.footer__menus1 .hs-menu-wrapper > ul > li {
    margin: 0 0 30px;
  }
  footer.footer.updated-clien .recognition {
    gap: 10px!important;
  }
  footer.footer.updated-client .footer__address ul > li > a {
    margin-right: 15px;
    font-weight: 700;
  }
}
/* 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;
  }
}