/* 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 20px;
}
.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
}
.dnd-section[class*=force-full-width-section] {
  padding-left: 0!important;
  padding-right: 0!important
}
.dnd-section[class*=force-full-width-section]>.row-fluid>.span12 {
  padding-left: 0;
  padding-right: 0
}

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

@font-face {
  font-family: 'Gotham';
  src:url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/NewFonts/GothamBook.eot') format('eot'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/NewFonts/GothamBook.woff2') format('woff2'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/NewFonts/GothamBook.woff') format('woff'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/NewFonts/GothamBook.ttf') format('truetype');
  font-weight:normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Book';
  src:url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/NewFonts/GothamBook.eot') format('eot'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/NewFonts/GothamBook.woff2') format('woff2'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/NewFonts/GothamBook.woff') format('woff'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/NewFonts/GothamBook.ttf') format('truetype');
  font-weight:normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamMedium.eot');
  src: url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamMedium.eot') format('embedded-opentype'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamMedium.woff2') format('woff2'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamMedium.woff') format('woff'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamMedium.ttf') format('truetype');
  font-weight:500;
}
@font-face {
  font-family: 'Gotham';
  src: url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamLight.eot');
  src: url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamLight.eot') format('embedded-opentype'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamLight.woff2') format('woff2'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamLight.woff') format('woff'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamLight.ttf') format('truetype');
  font-weight:300;
}
@font-face {
  font-family: 'Gotham';
  src: url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamThin.eot');
  src: url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamThin.eot') format('embedded-opentype'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamThin.woff2') format('woff2'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamThin.woff') format('woff'),
    url('//22251138.fs1.hubspotusercontent-na1.net/hubfs/22251138/FrontlinePG_2024/Fonts/GothamThin.ttf') format('truetype');
  font-weight:200;
}
@font-face {
  font-family: 'Gotham';
  src: url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBoldItalic.eot');
  src: url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBoldItalic.eot') format('embedded-opentype'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBoldItalic.woff2') format('woff2'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBoldItalic.woff') format('woff'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBoldItalic.ttf') format('truetype');
  font-style:italic;
  font-weight:700;
}
@font-face {
  font-family: 'Gotham';
  src: url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBookItalic.eot');
  src: url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBookItalic.eot') format('embedded-opentype'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBookItalic.woff2') format('woff2'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBookItalic.woff') format('woff'),
    url('//46948780.fs1.hubspotusercontent-na1.net/hubfs/46948780/ACM_2024/Fonts/GothamBoldItalic.ttf') format('truetype');
  font-style:italic;
  font-weight:400;
}

body {
  line-height: 1.6;
  overflow-wrap: break-word;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}


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

/* Anchors */

a {
  cursor: pointer;
  
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  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 {
  margin: 0 ;
}
blockquote h6 {
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0 10px;
}

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

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;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

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

.hs-input {
  height: 50px;
  width: 100% !important;
}
.inputs-list .hs-input {
  width: auto !important;
}
input.hs-button.primary.large {
  margin-top: 20px;
}

ul.no-list.hs-error-msgs.inputs-list label {
  font-size: 14px;
  background: red;
  color: #fff;
  padding: 7px;
}
fieldset.form-columns-2 ul.no-list.hs-error-msgs.inputs-list,
fieldset.form-columns-3 ul.no-list.hs-error-msgs.inputs-list {
    max-width: calc(100% - 10px););
}
ul.no-list.hs-error-msgs.inputs-list {
    max-width: calc(100% - 10px);
}

main .hs-form-field {
  margin-bottom: 10px;
}
.hs_error_rollup {
  display: none;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

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

/* Global Styles */
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
blockquote {
  margin: 0;
  font-style: italic;
  color: #555555;
  padding: 1.2em 30px 1.2em 20px;
  border-left: 8px solid #78C0A8;
  line-height: 1.7; 
  position: relative;
  background: #EDEDED;
  font-size: 23px;
}
blockquote::before {
  font-family: Arial;
  content: "\201C";
  color: #78C0A8;
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
}
blockquote::after {
  content: '';
}

/* Header Styles */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  padding: 25px 50px;
}
.header .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1.5rem 20px;
  position: relative;
}
.header__container.header--landing-page {
  justify-content: center;
}
.header-nav__trigger {
  display: none;
}
.header-right-side.mobile-show {
  display: none;
}
header.header.scroll.default {
  position: fixed;
  background: hsla(0, 0%, 99%, .9);
  transform: translateY(0);
  top: 0;
  transition: transform ease 0.4s;
  padding-top: 10px;
  padding-bottom: 10px;
}
header.header.scroll {
  transform: translateY(-100%);
  transition: transform ease 0.4s;
}

/* Logo */
.custom-logo {
  font-size: 0;
  max-width: 180px;
}
.custom-logo img {
  width: 180px !important;
}
.header__logo {
  margin-right: 10px;
}

/* Navigation Menu */
.custom-menu-primary {
  padding-left: 20px;
  margin-left: auto;
  display: flex;
  align-items: center;
  width: calc(100% - 180px);
}
.custom-menu-primary .hs-menu-wrapper > ul > li {
  margin: 0;
  padding-right: 28px;
  padding-bottom: 5px;
  padding-top: 5px;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  color: #5E5E5E;
  font-family: Gotham;
  font-size: 18px;
  font-style: normal;
  transition: all ease 0.3s;
  text-decoration: none;
  text-transform: uppercase;
}
.custom-menu-primary .hs-menu-wrapper > ul > li:hover > a,
.custom-menu-primary .hs-menu-wrapper > ul > li.active > a {
  color: #FE6347;
}
.custom-menu-primary .hs-menu-wrapper > ul > li.active > a {
  background: transparent;
}
.custom-menu-primary .hs-menu-wrapper > ul > li.active > a:before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
}
.custom-menu-primary .hs-item-has-children svg {
  position: absolute;
  top: 13px;
  right: 13px;
  fill: #FE6347;
  width: 11px;
  height: 11px;
}
.custom-menu-primary .hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  transform: translateY(0);
}
.custom-menu-primary .hs-item-has-children ul.hs-menu-children-wrapper {
  position: absolute;
  background: #272c68;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 8px;
}
.custom-menu-primary .hs-item-has-children ul.hs-menu-children-wrapper > li > a{
  color:#fff;
}
.custom-menu-primary .hs-menu-children-wrapper > li {
  margin: 0;
  padding: 10px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-menu-primary .hs-menu-children-wrapper > li:last-child {
  border: 0;
}
.custom-menu-primary .hs-item-has-children ul.hs-menu-children-wrapper:before {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid  #272c68;
  position: absolute;
  width: 10px;
  top: -9px;
  left: 22px;
}
/* .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > a::after {
content: "";
background: #FE6347;
position: absolute;
bottom: 7px;
width: 100%;
height: 1px;
left: 0;
} */
.child-trigger{
  display:none;
}
.header-left-side {
  display: flex;
  justify-content: space-between;
}
.custom-menu-primary {
  width: auto;
}


/* Media Queries */
@media (max-width: 1024px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-size: 15px;
  }
  .header__container {
    padding: 1.5rem 0px; /* Adds spacing inside the container */
  }
  .header__logo {
    margin-right: 20px;
    max-width: 180px;
  }
  .header__navigation {
    display: none;
  }
  .header-nav__trigger {
    display: block;
  }
  .header-right-side.mobile-show {
    display: block;
    transform: translateX(100%);
    transition: transform ease 0.4s;
    z-index: 999;
  }
  .menu-open .header-right-side.mobile-show {
    transform: translateX(0);
  }
  .child-trigger {
    padding: 28px;
  }
  .child-trigger.is-open svg {
    transform: rotate(90deg);
  }
  .custom-menu-primary.mobile {
    width: calc(100% - 100px);
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a {
    padding: 14px 20px;
  }
}

/* Language Switcher */
.header__language-switcher {
  cursor: pointer;
  margin-left: 50px;
}
.header__language-switcher .lang_switcher_class {
  position: static;
}
.header__language-switcher .lang_switcher_class .globe_class {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-top: 5px;
}
.header__language-switcher .lang_list_class {
  border-radius: 0 0 18px 18px;
  box-shadow: 0 23px 50px -14px rgba(0, 0, 0, 0.21);
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  padding-top: 0;
  transform: none;
}
.header__language-switcher:hover .lang_list_class {
  opacity: 1;
  visibility: visible;
}
.header__language-switcher .lang_list_class li {
  background-color: transparent;
  padding: 10px;
}
.header__language-switcher-label {
  display: flex;
  align-items: center;
}
.header__language-switcher-label-current {
  display: flex;
  align-items: center;
  line-height: 2;
  margin-left: 10px;
}


.custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > a:before {
  opacity: 0;
}

.header-right-side.mobile-show {
  display: none;
}

/* Logo & Navigation Menu - Tablet */
@media (max-width: 767px) {
  blockquote {
    padding-left: 50px;
    font-size: 17px;
    line-height: 1.4;
    border-width: 4px;
  }
  blockquote::before {
    top: 2px;
  }
  .header__container {
    padding: 0px;
  }
  .header__language-switcher {
    margin-left: auto;
  }
  .header__language-switcher .lang_switcher_class .globe_class {
    height: 24px;
    margin-top: 0;
    width: 24px;
  }
  .header__language-switcher .lang_list_class li {
    padding: 10px 30px;
  }
  header.header .content-wrapper {
    max-width: 100%;
  }
}


body hs-cmsf-branding {
  display: none !important;
}

@media (max-width: 1480px) {
  header.header .content-wrapper {
    max-width: 1270px;
  }
  header.header {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1280px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    padding-right: 20px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children {
    padding-right: 30px;
  }
}

@media (min-width: 1024px) and (max-width: 1150px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-size: 15px;
  }
  body .header-right-links ul li a {
    min-width: 120px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 1024px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    padding-right:15px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-size: 15px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children {
    padding-right: 30px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children svg {
    right: 15px;
  }
  body .header-right-links ul li a {
    padding-left: 20px;
    padding-right: 20px;
    min-width: auto;
    margin-left: 6px;
  }
}


@media (min-width: 992px) {
  header.header .header-left-side .custom-menu-primary.mobile {
    display: none !important;
  }
  .custom-menu-primary.mobile {
    display: none;
  }
  .custom-menu-primary .hs-menu-children-wrapper a:hover {
    opacity:0.7;
  }
  .custom-menu-primary .hs-item-has-children ul.hs-menu-children-wrapper {
    transition: transform ease 0.3s;
    transform: translateY(30px);
  }
  .custom-menu-primary .hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    transform: translateY(0);
  }
  .custom-menu-primary .hs-menu-children-wrapper > li {
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .custom-menu-primary .hs-menu-children-wrapper > li:last-child {
    border: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children > a:before{
    width: calc(100% - 21px);
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a:before {
    content: "";
    width:100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
    background: #FE6347;
    transform-origin: 100% 50%;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li:hover > a:before {
    transform-origin: 0 50%;
    transform: scale3d(1, 1, 1);
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:not(.hs-item-has-children) > a:before {
    width: calc(100% - 26px);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:not(.hs-item-has-children).active > a:after {
    width: calc(100% - 26px);
  }
}

@media (max-width: 991px) {
  .header__language-switcher {
    margin-left: auto;
    margin-right: 20px;
    order: 2;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.active > a{
    color: #FE6347 !important;
    border-bottom:1px solid rgba(255, 255, 255, 0.5) !important;
  }
  .header__language-switcher .lang_switcher_class .globe_class {
    height: 24px;
    margin-top: 0;
    width: 24px;
  }
  .header__language-switcher .lang_list_class {
    border-radius: 0 0 18px 18px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children{
    padding-right:0;
  }
  .header__language-switcher:hover .lang_list_class {
    opacity: 0;
    visibility: hidden;
  }
  .header__language-switcher .lang_list_class li {
    padding: 10px 30px;
  }
  .header__language-switcher-label {
    position: static;
  }
  .header__language-switcher-label-current {
    display: none;
  }
  .header__language-switcher.open .lang_list_class {
    opacity: 1;
    visibility: visible;
  }  
  .custom-menu-primary {
    display: none;
  }
  .header-nav__trigger {
    display: block;
    position: absolute;
    right: 0;
    top: 16px;
    z-index: 9999;
    height: 40px;
    width: 50px;
    cursor: pointer;
  }
  .header-right-side {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .header-nav__trigger .icon-left {
    transition-duration: 0.5s;
    position: absolute;
    height: 4px;
    width: 15px;
    top: 30px;
    background-color: #282E6D;
  }
  .header-nav__trigger .icon-right {
    transition-duration: 0.5s;
    position: absolute;
    height: 4px;
    width: 15px;
    top: 30px;
    background-color: #282E6D;
    left: 15px;
  }
  .header-nav__trigger .icon-left::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #282E6D;
    content: "";
    top: -10px;
  }
  .header-nav__trigger .icon-left::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #282E6D;
    content: "";
    top: 10px;
  }
  .header-nav__trigger .icon-right::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #282E6D;
    content: "";
    top: -10px;
  }
  .header-nav__trigger .icon-right::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #282E6D;
    content: "";
    top: 10px;
  }
  .header-nav__trigger.open .icon-right::after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
  }
  .header-nav__trigger.open .icon-right::before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
  }
  .header-nav__trigger.open .icon-left::after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
  }
  .header-nav__trigger.open .icon-left::before {
    transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
  }
  .header-nav__trigger.open .icon-left {
    transition-duration: 0.5s;
    background: transparent;
  }
  .header-nav__trigger.open .icon-right {
    transition-duration: 0.5s;
    background: transparent;
  }
  header.header .header-left-side .custom-menu-primary.desktop {
    display: none !important;
  }
  .custom-menu-primary.mobile {
    background: #272c68;
    display: block;
    height: 100vh;
    left: auto;
    overflow-y: auto;
    padding: 0;
    position: fixed;
    right: -400px;
    transition: all .4s ease;
    width: 400px;
    top: 0;
    z-index: 999;
    padding: 130px 0px;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li  > ul {
    position: static !important;
    left: 0;
    display: none;
  }
  .child-trigger {
    display: block;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>a > svg {
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>a {
    color: #fff !important;
    font-size: 16px;
    padding: 19px 20px;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 400;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:first-child>a {
    border-top: 1px solid hsla(0, 0%, 100%, .5);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.active>a {
    color: #fff;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.active>a:after {
    display: none;
    background: #fff;
  }
  body.menu-open {
    overflow: hidden;
  }
  .header-nav__trigger.open.is-open .icon-left:after, .header-nav__trigger.open.is-open .icon-left:before {
    background: #fff;
  }
  .header-nav__trigger.open .icon-right:after, .header-nav__trigger.open .icon-right:before {
    background: #ffff;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li{
    padding: 0;
    width:100%;'
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children {
    padding: 0;
    width:100%;'
  }
  .menu-open .custom-menu-primary.mobile {
    right: 0;
    z-index: 999;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children svg {
    right: 19px;
    top: 25px;
  }
  .child-trigger {
    position: absolute;
    top: 0;
    right: 0;
    padding: 33px;
    cursor:pointer;
    z-index:99;
  }
  .child-trigger svg * {
    fill: #fff;
  }
  .custom-menu-primary .hs-item-has-children ul.hs-menu-children-wrapper:before{
    display:none;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>a:focus, .custom-menu-primary .hs-menu-wrapper>ul>li>a:hover {
    color: #fff;
  }
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul {
    display: none;
    left: 0;
    position: static !important;
    background: #fff;
    border-radius: 0;
    padding: 0;
    min-width: auto;
    z-index: 99 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .custom-menu-primary .hs-menu-children-wrapper a {
    color: #000;
    font-size: 16px;
    padding: 10px 37px;
    border-bottom: 1px solid hsla(0, 0%, 100%, .5);
  }
  .custom-menu-primary .hs-menu-children-wrapper li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  .child-trigger.is-open svg {
    transform: rotate(90deg);
  }
  .child-trigger svg {
    transition: all ease 0.3s;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li > a:focus, .custom-menu-primary .hs-menu-wrapper > ul > li:hover > a {
    color: #fff;
  }
  .custom-menu-primary .hs-menu-children-wrapper > li.active > a {
    background: #FE6347;
    color: #fff;
  }
  .header-right-side{
    display:none;
  }
  .header-right-side.mobile-show{    
    background: #124074;
    position: fixed;
    right: 0;
    height: 100vh;
    top: 0;
    width: 300px;
    padding-top: 90px;
    transform: translateX(100%);
    transition: transform ease 0.4s;
    display: block;
    z-index:999;
  }
  .menu-open .header-right-side.mobile-show{
    display:block;
    height:100vh;
    z-index:999;
    transform: translateX(0);
  }
  .header-right-side.mobile-show .header-right-side {
    display: block;
  }
  .header-right-side.mobile-show .header-right-side ul {
    flex-direction: column;
    padding: 50px 7px;
  }
  .header-right-side.mobile-show .header-right-side ul li {
    margin: 8px 0 1px;
  }
  .custom-logo img {
    width: 140px !important;
  }
  .custom-menu-primary .hs-item-has-children ul.hs-menu-children-wrapper {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    left: 0 !important;
    top: 0 !important;
    padding: 0;
    display:none;
    border-radius: 0 !important;
  }
  .custom-menu-primary .hs-menu-children-wrapper > li{
    padding:0;
  }
}

@media (max-width: 500px) {
  body .header-right-side {
    margin-left: auto;
    padding-right: 0;
    padding-bottom: 6px;
  }
  body .header-right-links ul li a {
    padding-left: 13px;
    padding-right: 13px;
    font-size: 14px;
  }
  body .header-right-links ul li a.button.white {
    padding-left: 14px;
    padding-right: 15px;
    font-size: 14px;
  }
  body header.header .header-left-side {
    padding-right: 48px;
  }
  body header.header .content-wrapper {
    max-width: 100%;
  }
  .custom-menu-primary.mobile {
    width: calc(100% - 100px);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>a {
    font-size: 15px;
    padding: 14px 20px;
    padding-right: 30px;
  }
  .child-trigger {
    padding: 28px;
  }
}

@media (max-width: 400px) {
  body .header-right-links ul li a.button.white {
    border: 0;
    padding: 0;
  }
  body .header-right-links ul li a {
    padding-left: 8px;
    padding-right: 8px;
  }

}
/* Footer Container */

.footer .dnd-section {
  padding: 0;
}
.footer__container {
  margin: 0 auto;
  padding: 5.6rem 20px 2.8rem;
}
footer.footer .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer.footer .footer-logo img {
  max-width: 187px;
}
footer.footer {
  padding: 50px 0px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
footer.footer .hs-menu-wrapper a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
footer.footer .hs-menu-wrapper > ul > li {
  margin-right: 30px;
}
footer.footer p {
  margin: 0 0 6px;
}
footer.footer .hs-menu-wrapper > ul {
  margin-bottom: 60px;
}
footer.footer p a {
  color: #fff;
  text-decoration: none;
}


@media(min-width:768px) and (max-width:1120px){
  .footer-left-side {
    padding-right: 30px;
  }
  footer.footer .hs-menu-wrapper > ul li {
    margin-bottom: 12px;
  }
  footer.footer .hs-menu-wrapper > ul {
    margin-bottom: 30px;
  }
  footer.footer .footer-logo img {
    max-width: 127px;
  }
}

@media(max-width:767px){
  footer.footer .content-wrapper {
    flex-direction: column-reverse;
  }
  footer.footer .footer-right-side {
    margin-bottom: 20px;
  }
  footer.footer .hs-menu-wrapper > ul > li {
    width: 50%;
    margin:0;
    padding: 0 0 17px;
  }
  footer.footer .footer-logo img {
    max-width: 120px;
    margin-bottom: 10px;
  }
  footer.footer .footer-right-side {
    width: 100%;
  }
  footer.footer .hs-menu-wrapper > ul {
    flex-direction: row;
    margin-bottom: 30px;
  }
  footer.footer {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    padding-bottom:30px;
  }
}
/* 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;
  }
}

/* Language switcher */

.body-container-wrapper .lang_switcher_class {
  width: 100%;
}

.body-container-wrapper .lang_list_class {
  left: 10px;
}

.body-container-wrapper .lang_list_class li {
  margin: 0;
}
/* Avoiding Horizontal scroll from AOS Animation */

.body-wrapper {
  position: relative;
  overflow-x: hidden;
}

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