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


/* Media Object */
.media {
  display: flex;
  align-items: flex-start;
  gap: 1rem; /* Adjust spacing between icon and text */
}
.media-icon {
text-align:center;
}
.media-content {
flex: 1;  
}






/* Margin Top */
.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-3 { margin-top: 3rem !important; }
.mt-4 { margin-top: 4rem !important; }
.mt-5 { margin-top: 5rem !important; }
.mt-6 { margin-top: 6rem !important; }

/* Margin Bottom */
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 3rem !important; }
.mb-4 { margin-bottom: 4rem !important; }
.mb-5 { margin-bottom: 5rem !important; }
.mb-6 { margin-bottom: 6rem !important; }

/* Margin Left */
.ml-1 { margin-left: 1rem !important; }
.ml-2 { margin-left: 2rem !important; }
.ml-3 { margin-left: 3rem !important; }
.ml-4 { margin-left: 4rem !important; }
.ml-5 { margin-left: 5rem !important; }
.ml-6 { margin-left: 6rem !important; }

/* Margin Right */
.mr-1 { margin-right: 1rem !important; }
.mr-2 { margin-right: 2rem !important; }
.mr-3 { margin-right: 3rem !important; }
.mr-4 { margin-right: 4rem !important; }
.mr-5 { margin-right: 5rem !important; }
.mr-6 { margin-right: 6rem !important; }
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

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


@media (max-width: 767px) {
body .content-wrapper--vertical-spacing, body .dnd-section {
    padding: 30px 1rem;
}
}

/* --- Home page: let dnd_area sections actually reach full width ---
   dnd_area wraps its content in a chain of grid wrappers
   (.container-fluid > .row-fluid-wrapper > .row-fluid > .span12 >
   [each dnd_section: .row-fluid-wrapper.dnd-section > .row-fluid]).
   theme-overrides.css's ".dnd-section > .row-fluid { max-width: 1200px }"
   caps that chain at theme.spacing.maximum_content_width regardless of a
   section's own force_full_width flag — that flag/param controls how the
   section itself breaks out, not this theme's separate custom CSS. Since
   the exact source of the outer cap isn't fully visible from local files,
   override every level of the chain directly rather than one surgical
   selector. Scoped to the home page only (via the template_class="home"
   body class set in ees-theme/templates/home.html) so other pages/areas —
   the footer's dnd_area, in particular — keep their normal contained
   width.

   The actual full-bleed-background-with-centered-content behavior comes
   from two things working together, neither of which lives in this file:
   1. Each home.html dnd_section call itself: force_full_width=true and
      padding={'top':0,'bottom':0,'left':0,'right':0} — a truly edge-to-
      edge, unpadded band.
   2. A .content-wrapper div inside each module (card-grid.module,
      home-hero.module, etc.) wrapping the actual content — reusing this
      same file's .content-wrapper class (max-width via theme-overrides.
      css's container_width, centered via margin: 0 auto) rather than a
      hand-rolled calc()-padding trick. This is the same class this file
      already defines for the theme's other content-width needs, so no
      new centering mechanism was introduced.
   An earlier version of this fix instead added .hero/.section/etc.
   directly to ees-base.css's flat-HTML full-bleed rule so it would reach
   into dnd markup — that made the centering padding apply twice (once via
   .dnd-section, again via the module's own div nested inside it),
   squeezing content far too narrow. Reverted in favor of the
   content-wrapper approach above; see ees-base.css's full-width-bands
   comment for the reasoning. */
body.home .body-container-wrapper .container-fluid,
body.home .body-container-wrapper .row-fluid-wrapper,
body.home .body-container-wrapper .row-fluid,
body.home .body-container-wrapper .span12,
body.home .body-container-wrapper .dnd-section {
  max-width: none !important;
  width: 100% !important;
}

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

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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




/* Lists */

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

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

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

li {
margin-bottom:0.5rem;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes

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

blockquote, 
.green-headline {
    color: #7ba71e;
    font-size: 20px;
    border-top: 1px solid #7ba71e;
    border-bottom: 1px solid #7ba71e;
    padding: 20px 30px;
    margin: 25px 0;
    line-height: 22px;
    letter-spacing: 0.8px;
    text-align: center;
}


/* Horizontal rules */

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

/* Image alt text */

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

.lead, .lead > * {
font-size:18px;
}

.text-uppercase {
text-transform: uppercase;
}


.text-center {
text-align: center;
}
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;
}


/*  */

a {
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    font-family: 'Raleway', sans-serif;
}

button,
.button,
.button:hover,
.button:focus,
.button:active {
  text-decoration:none;
}

.button.primary {
background-color: #ff4e00;
  border-color:#ff4e00;
}

.button.primary:hover,
.button.primary:focus,
.button.primary:active {
  background-color: #e64701;
  border-color: #e64701;
}


.button.primary--outline {
  background-color: #fff;
  border-color:#ff4e00;
  color: #ff4e00;
  font-weight:bold;
}

.button.primary--outline:hover,
.button.primary--outline:focus,
.button.primary--outline:active {
  background-color: #e64701;
  border-color: #e64701;
  font-weight:bold;
}




.button.secondary {
background-color: #6FB62A;
  border-color:#6FB62A;
}

.button.secondary:hover,
.button.secondary:focus,
.button.secondary:active {
  background-color: #5a9521;
  border-color: #5a9521;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

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














/* Style input fields */
.hs-form .hs-input, 
.hs-form .hs-input.hs-fieldtype-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Style placeholders */
.hs-form input::placeholder,
.hs-form textarea::placeholder,
.hs-form select {
    color: #ff4e00; /* Orange color */
}

/* Style required field labels */
.hs-form label {
    display: none; /* Hide labels */
}


.hs-form fieldset.form-columns-1 .hs-input {
    width: 100%!important;
}

/* Adjust spacing */
.hs-form fieldset {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hs-form fieldset .hs-form-field {
    flex: 1;
    min-width: 45%;
}

.hs-form .hs-form-field textarea {
    min-height: 120px;
}

/* Ensure mobile responsiveness */
@media (max-width: 600px) {
    .hs-form fieldset .hs-form-field {
        min-width: 100%;
    }
}



.hs-form .hs-dependent-field {
    display: flex;
    flex: 1;
    gap: 12px;
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__container-top {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header__container-bottom .header__column {
  justify-content: center;
}
.header__nav--telephone {
  margin: 0 40px;
}
.header__nav--utility ul {
  padding: 0;
  margin: 0;
}
.header__nav--utility li {
  padding: 0 10px;
  border-right: 1px solid rgb(34, 34, 34);
  margin: 0;
}
.header__nav--utility a {
  font-family: Raleway, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #084371;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
.header__nav--utility a:hover {
  font-family: Raleway, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #084371;
  text-decoration: underline;
}

.header__telephone,
.header__telephone a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #81cf36;
  margin: 0;
  text-align:center;
}

.header__telephone a {
  display: block;
  font-size: 25px;
  text-decoration: none;
}
.header__telephone a:hover {
  color: #81cf36;
  text-decoration: none;
}

.header__container-bottom {
  background-color: #F4F4F4;
}

@media screen and (min-width: 991px) {
  .header__first,
  .header__second {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}


@media screen and (min-width: 990px) {
  .header__column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

}




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

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

  .header__column {
    position: relative;
    width: 100%;
    padding: 0;
  }

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

  .header__row-2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    height: 60px;
  }
}

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
  height: auto;
  max-width: 200px;
}

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

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

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

/* Search bar */

  .header__search .hs-search-field__form {
    padding: 0;
    margin: 0;
    text-align: right;
  }
  /* Expandable search box */
  /* Note: don't change 0.8s in transition. */
  /* --------------------- */
  
@media screen and (min-width: 1025px) {
  .header__search input.hs-search-field__input {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%230E5C99" d="M505 442.7L405.3 343c28.4-35.3 45.4-80 45.4-128C450.7 95.1 355.6 0 233.3 0S16 95.1 16 215.3s95.1 215.3 215.3 215.3c48 0 92.7-17 128-45.4l99.7 99.7c4.7 4.7 10.9 7 17 7s12.3-2.3 17-7C514.3 467.3 514.3 452.1 505 442.7zM233.3 384c-93.1 0-168.7-75.6-168.7-168.7S140.2 46.7 233.3 46.7s168.7 75.6 168.7 168.7S326.4 384 233.3 384z"/></svg>') no-repeat right 10px center transparent;
    background-size: 20px;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #0E5C99;
    padding: 14px 10px;
    position: relative;
    z-index: 5;
    outline: none;
    transition: z-index 0.8s, width 0.5s, background 0.3s ease, border 0.3s;
    height: 45px;
    width: 110px;
    margin: 0;
    padding: 5px 40px 5px 10px;
    box-sizing: border-box;
    border: 0;
    cursor: pointer;
    
  }
  
  
}
@media screen and (min-width: 991px){
 .header__search input.hs-search-field__input:focus {
    z-index: 3; 
    width: 270px;
    border: 1px solid #CCCCCC; 
    outline: none;
    cursor: auto;
    padding-right: 10px;
  }
}
.hs-search-field__input {
    transition: width .4s;
  }
  
 

  .header__search .hs-search-field__button {
    display: none;
    /*position: relative;
    z-index: 4;
    top:17px;
    left: 49px;
    width: 45px;
    height: 45px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    border-radius: 30px;
    cursor: pointer; 
    background: none;
    visibility: hidden;*/
  }

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

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

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

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

@media screen and (max-width: 990px) {
  .hs-search-field__bar {
    position: absolute;
    z-index: 100;
    top: 150px;
    max-width: 90%;
    margin: 0 auto;
    left: 20px;
    padding: 0;
    overflow:hidden;
    max-height: 0px;
    transition: max-height .4s;
    width: 90%;
  }
  .header__search .hs-search-field__button {
    display: none;
  }
}



/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

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

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

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

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

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

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

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

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 990px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

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

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
  /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
  .header__language-switcher .hs-language-switcher__menu {
    display: block;
    box-shadow:none!important;
    background: transparent;
  }
  .header__language-switcher .hs-language-switcher__menu a {
    font-size: 20px!important;
  }
  .header__language-switcher .hs-language-switcher__button {
    display: none;
  }
  }

/* Mobile Navigation */

.header--mobile-search,
.header--mobile-only-menu,
#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 990px) {
  .header__language-switcher,
  .header__telephone span,
  .header__nav--button {
   display: none;
  }
  .header__search{
    overflow:hidden;
    max-height: 0px;
    
  }
  .header__navigation{
    overflow:hidden;
    max-height: 0px;
    transition: max-height .4s;
     display: block;
    position: absolute;
    background-color: #094371;
    top: 60px;
    z-index: 2;
    left: 0;
    right: 0;
  }
  .header__language-switcher.open {
    display: block;
    position: absolute;
    left: 0;
    z-index: 2;
    top: 40px;
  }
  .header__search.open .hs-search-field__bar {
    display: block;
    width: 90%;
    max-height: 50px;
  }
  
  .header__navigation.open {
    display: block;
    position: absolute;
    border-top: 20px solid #094371;
    background-color: #094371;
    top: 60px;
    z-index: 2;
    left: 0;
    right: 0;
    max-height: 500px;
    overflow-y:scroll;
  }
  
  .header__close--search--toggle.open,
  .header__navigation--toggle.open {
    display: none;
  }
  
  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
  }

  .header__navigation--toggle:after {
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: 10px;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: 10px;
  }

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

  .header--mobile-only-menu {
    display: block;
    background-color: #084371;
    width: 25%;
    position: relative;
  }
  
  .header__navigation--toggle {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
  }

  .header--mobile-only-menu:after {
    /*content: "Menu";
    left: 30px;
    top: 35px;
    position: absolute;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;*/
  }
  
  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 20px;
    width: 20px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header--mobile-search {
    display: block;
    width: 25%;
    height: 60px;
    background-color: #81cf36;
  }

  .header__search--toggle {
    height: 100%;
    width: 100%;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-transform: uppeprcase;
  }
  .header ion-icon{
    width: 30px;
    height: 30px;
    color: white;
  }
  .header__close--search--toggle {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjQgMTkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4wMDAwMDAsIC0xLjAwMDAwMCkiIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIzIj4KICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSgtNDUuMDAwMDAwKSB0cmFuc2xhdGUoLTEwLjAwMDAwMCwgLTEwLjUwMDAwMCkgIiB4PSItMC41IiB5PSIxMC41IiB3aWR0aD0iMjEiIGhlaWdodD0iMSIgcng9IjAuNSI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=');
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 20px;
    margin-right: 0;
    width: 20px;
    left: 20%;
    top: 20px;
    position: absolute;
  }
  .header__close--search--toggle.show .header__search--toggle {
    display: none;
  }
  .header__close--search--toggle.show {
    display: block;
    left: 0px;
    position: relative;
    margin: 0 auto;
  }
  .header__search--toggle.open {
    display: none;
  }
 .header__search--toggle.open:after {
    content: ""; 
  }

  .header__search--toggle:after {
    /*content: "Search";
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 20px;*/
  }
  .header__search.open {
    max-height: 50px;
  }
  
  
  .header__close--toggle {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMjQgMTkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4wMDAwMDAsIC0xLjAwMDAwMCkiIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIzIj4KICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSgtNDUuMDAwMDAwKSB0cmFuc2xhdGUoLTEwLjAwMDAwMCwgLTEwLjUwMDAwMCkgIiB4PSItMC41IiB5PSIxMC41IiB3aWR0aD0iMjEiIGhlaWdodD0iMSIgcng9IjAuNSI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=');
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 20px;
    margin-right: 0;
    width: 20px;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    position: absolute;
  }

  .header__close--toggle.show {
    display: block;
  }
  .header__close--toggle.show .header--mobile-only-menu:after {
    top: 30px;
  }
  .header__container-bottom {
    background-color: #0c5e9d;
    padding: 0;
    height: 60px;
    justify-content: center;
  }
  .header__telephone, .header__telephone a {
    color: #ffffff;
  }
  .header__telephone {
    background-color: #0C5E9D;
    text-align: center;
    left: 0px;
    width:100%;
    line-height: 60px;
    position:absolute;
  }
}


html {
  scroll-behavior: smooth;
}




@media screen and (min-width: 991px) {
body .menu__submenu .menu__item--depth-2 a, 
body .menu__submenu .menu__item--depth-3 a  {
  line-height: 1.2;
  padding-top:15px;
  padding-bottom:15px;
}
 
 body #hs_cos_wrapper_navigation-primary .menu__submenu--level-3 .menu__item a, 
 body  #hs_cos_wrapper_navigation-primary .menu .menu__submenu.menu__submenu--level-3 a {
    background-color: #083b63 ;
}
  


  
}


@media screen and (min-width: 991px)  {
  .menu--desktop .menu__wrapper {
  display:flex;
  }
  
  body .menu__item--depth-1 {
    padding: 0 2.3vw;
  }
}

@media screen and (min-width: 1360px) and (max-width: 1409px)  {
  body .menu__item--depth-1 {
 padding: 0 30px;    /* */
    
  }
}

@media screen and (min-width: 1410px) {
  body .menu__item--depth-1 {
 padding: 0 36px;    /* */
    
  }
}


.header .hs-search-field__suggestions-container {
display:none;
}



@media screen and (min-width: 991px) and (max-width: 1670px)  {
.menu__item--depth-1.resources .menu__submenu--level-3 {
    left: -349px;
    top: 0;
}

}




:target {
    scroll-margin-top: 300px; /* Default for larger screens */
}


.header .menu__item {
    margin-bottom:0;
}




/* 
 * SECONDARY HEADER
 *  */

.encon-secondary-nav__header a {
  font-size: 21px;
  text-decoration: none;
}

.encon-secondary-nav {
    border-right: 1px solid #979797;
}




.encon-secondary-nav__list {
  /* Styles for the list */
  list-style: none;
  padding: 1rem 0 0 0;
  margin: 0;
}

.encon-secondary-nav__item {
  padding-right: 10px;
  margin-bottom:10px;
}

.encon-secondary-nav__item a {
  /* Styles for the links */
  display: block;
  text-decoration: none;
  color: #333;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .encon-secondary-nav__content {
    max-height:0;
    padding: 0; /* No padding by default */
     opacity: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
  }
  
  .encon-secondary-nav__header {
    display: flex;
    justify-content: space-between;
  }

  .encon-secondary-nav__content.is-open {
    opacity: 1;
    max-height: 1000px; /* Ensure it shows correctly */
  }
  
  

  
  
  
  
  

  .encon-secondary-nav__button {
    color:#084371!important;
    cursor: pointer;
    padding: 0 1rem!important;
    background:none!important;
    border:none!important;
    font-size:28px;
    line-height:20px;
    transform: rotate(45deg); /* Rotate the icon by 90 degrees */
  }



  .encon-secondary-nav__button.is-open {
  transform: rotate(0deg); /* Rotate the icon by 90 degrees */
  transition: transform 0.3s ease; /* Smooth transition for the rotation */
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .encon-secondary-nav__content {
    /* Always show content on desktop */
    display: block !important; /* Use!important to override default styles */
  }

  .encon-secondary-nav__button {
    display:none;
    /* Optionally disable button functionality on desktop */
    cursor: default;
    pointer-events: none; /* Prevent button clicks */
  }
}

.encon-secondary-nav {
  border-right: 1px solid #979797;
}

.encon-secondary-nav__header {
  margin-top: 0;
  border-bottom: 1px solid #979797;
  padding-bottom: 10px;
}

.encon-secondary-nav__item.current {
  border-right: 5px solid #6fb62a;
}

.encon-secondary-nav__item.current a {
  color: #0e5c99;
}

.encon-secondary-nav__item a:hover {
  text-decoration: underline;
}
.footer__top {
  background-color: #094371;
}
.footer__bottom {
  background-color: #0C5E9D;
}
.footer h5 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}
.footer address {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  text-align: center;
}
.footer ul.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 20px;
}
.footer li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: 1.8;
}
.footer a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer a:hover {
  color: #cccccc;
}

.footer__copyright,
.footer__back-to-top {
  color: #FFFFFF;
  font-size: 0.85em;
}
.footer .subscribe__wrapper {
  margin: 20px auto;
  text-align: center;
}
.footer__blocks .dnd-section {
  border-top: 1px solid #4D7DA5;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__blocks p {
  margin-bottom: 0;
}
.footer__sitemap .dnd-section {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer li,
  .footer a,
  .footer__sitemap a {
    text-align: center;
  }
  address {
    margin: 30px auto 0 auto;
  }
  .footer__back-to-top {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}


html {
  scroll-behavior: smooth;
}



@media screen and (max-width: 990px) {
  .footer .widget-type-blog_subscribe {
  margin:2rem 0;
  }
}
  
  
.footer .hs_cos_wrapper_widget .hs_cos_wrapper_type_blog_subscribe .form-title {
  text-align:center;
padding-bottom:10px;
}
.footer .hs_cos_wrapper_widget .hs_cos_wrapper_type_blog_subscribe form label {
display:none;
}
.footer .hs_cos_wrapper_widget .hs_cos_wrapper_type_blog_subscribe form {
display:flex;
}


/* subscribe orange button */
.footer .hs_cos_wrapper_widget .hs_cos_wrapper_type_blog_subscribe form input[type=submit] {
    height: 44px;
    margin-left: -2px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}



.footer .hs_cos_wrapper_widget .hs_cos_wrapper_type_blog_subscribe .submitted-message {
  text-align:center;
padding-bottom:20px;
}
/* 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, .sr-only:not(:focus):not(:active) {
  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;
  }
}