/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 1rem 1rem 0;
  }
}
/* Section Styles */

/* Module level  */
.card-section {
    padding: 2rem 0 4rem;
}

.card-section-bottom-0 {
    padding: 2rem 0 0;
}

.colorful-cards-section {
    background-color: var(--light-blue);
}

/* Optional: Add some breathing room on very small screens */
@media (max-width: 480px) {
  .full-width-card-section .card-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Mobile Space styles  */
@media (max-width: 767px) {
 .card-section {
    padding: 2rem 0;
}
.card-section-bottom-0 {
    padding: 2rem 0 0;
}
}

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

:root {
/* primary colors  */
  --teal: #37A2BE;
  --navy: #002B49;
  --black: #5A5A5A;
  --white: #ffffff;

  /* secondary colors  */
  --pool: #88D1D1;
  --light-blue: #E2F0F7;
  --green: #72bf44;
  --orange: #f68a1e;
  --maroon: #7e2850;
  --yellow: #FFCC00;
  --purple: #5c71ac;
  --grey: #a9a9a9;
  --grey-light: #ebebeb;

  /* web accessible variants */
  --green-web-1: #5DA037;
  --orange-web-1: #E0750B;
  --teal-web-1: #359CB6;
  --green-web-2: #4B812C;
  --orange-web-2: #B45E08;
  --teal-web-2: #2A7D92;
  
  /* eversight academy colors */
  --pool-mid: #b2e0df;
  --pool-light: #dbf0ee;
}
/* 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;
}





/* Avenir Next – Regular (400) */
@font-face {
  font-family: 'Avenir Next';
  src: url('') format('woff2'),
       url('') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Demi 600 */
@font-face {
  font-family: 'Avenir Next';
  src: url('') format('woff2'),
       url('') format('woff');
  font-weight: 600 700; 
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 21px;
}

body {
  ;
  color: var(--black);
  font-size: 1rem;
  font-family: 'Avenir Next', Arial, Verdana, sans-serif;
}

/* Paragraphs */
p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 28px;
  line-height: 34px;
  color: var(--navy);
  font-family: 'Avenir Next', Arial, Verdana, sans-serif;
  font-weight: 600;   /* use the demi cut */
}
.text-md {
  font-size: 18px;
  line-height: 24px;
}
.text-sm {
  font-size: 16px;
  line-height: 21px;
}
.text-xs {
  font-size: 12px;
  line-height: 18px;
}
.testimonial-quote {
  color: var(--navy);
  font-family: 'Avenir Next', Arial, Verdana, sans-serif;
  font-weight: 600;   /* use the demi cut */
}

/* Anchors */

a {
 color: var(--teal-web-2);
 font-size: 1rem;
 font-weight: 400;
}

a:hover,
a:focus {
  color: var(--navy);
}

a:active {
  color: var(--teal-web-2);
}

/* Headings */

h1, .h1, h2, .h2, h3, .h3,  h4, .h4,  h5, h6 {
  color: var(--navy);
  font-family: 'Avenir Next', Arial, Verdana, sans-serif;
  font-weight: 600;   /* use the demi cut */
}

h1,
.h1 {
  font-size: 60px;
  line-height: 68px;
}

h2,
.h2 {
  font-size: 42px;
  line-height: 60px;
}

h3,
.h3 {
  font-size: 32px;
  line-height: 44px;
}

h4,
.h4 {
  font-size: 26px;
  line-height: 37px;
}

@media (max-width: 767px) {
  h1,
.h1 {
  font-size: 42px;
  line-height: 50px;
}

h2,
.h2 {
  font-size: 32px;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 28px;
  line-height: 36px;
}

}








/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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


.number-callout {
  color: var(--navy);
  font-size: 56px;
  font-weight: 600;
  margin: 1rem 0;
}
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;
}


/*************************** Text CTA styles  ************************/
/* Inline button styles */
.inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Avenir Next', Arial, Verdana, sans-serif;
  font-weight: 600;   /* use the demi cut */
  font-size: 1rem;
  line-height: 1rem;
  position: relative;
  transition: all 0.2s ease;
  padding-bottom: 2px;
}

.inline-btn a {
  text-decoration: none;
}

/* Underline effect */
.inline-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.2s ease;
}

/* Arrow icon */
.text-cta-arrow-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Hover effects */

.inline-btn:hover::after {
  transform: scaleX(1.02);
}

.inline-btn:hover .text-cta-arrow-icon {
  transform: translateX(2px);
}
/* 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;
}


/* 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;
}
.product-hero-img {
    width: 260px;
    height: auto;
    margin: 0 auto;
}
.tribute-img {
    width: 100%;
    height: auto;
}
.tribute-img-extra {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}
.testimonial-img {
  width: 200px;        /* Set fixed width */
  height: 200px;       /* Set fixed height */
  border-radius: 50%; /* Makes it circular */
  object-fit: cover;  /* Crops image to fit without distortion */
  object-position: center; /* Centers the image when cropping */
  display: block;
  margin: 1rem auto;     /* Centers the circle */
  border: 7px solid var(--navy);
  background-color: var(--navy);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, box-shadow;
}
.testimonial-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .product-hero-img {
    /* border: solid 2px black; */
  }
}

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

/* =========================================================
   HEADER (Consolidated)
   ========================================================= */

/* DND sections */
.header .dnd-section { padding: 0; }

/* Container */
.header__container{
  display:flex;
  justify-content:center;
  position:relative;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.51);
}

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

/* Skip link */
.header__skip{
  position:absolute; left:-1000px; top:-1000px;
  width:1px; height:1px; overflow:hidden; text-align:left;
}
.header__skip:hover,
.header__skip:focus,
.header__skip:active{ left:0; top:0; width:auto; height:auto; overflow:visible; }

/* Logo */
.header__logo{
  align-items:center; display:flex; height:auto;
  margin-right:auto; max-width:150px; overflow:hidden;
}
.header__logo img{ max-width:100%; }
.header__logo .logo-company-name{ font-size:1.167rem; margin-top:.7rem; }
.header__logo--main{ padding-top:1rem; }

/* Search */
/* default hidden */
.header__search-icon { display:none; }
.header__search{ padding:0 1rem; width:auto; }
.header__search label{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}
.header__search input{ border-color:var(--black); border-width:1px; border-radius:4px; }
.header__search input:focus{ outline:none; }
.header__search input:focus-visible{ outline:2px solid var(--navy); }



.header__search .hs-search-field__input{
  
    background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gPHRpdGxlPlNlYXJjaDwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+PGRlZnM+PHBhdGggZD0iTTkuMTM4NjE1MzQsMTUuODkyNTY4NSBDNS40MTM5NTc0MiwxNS44OTI1Njg1IDIuMzgzODg1MjcsMTIuODYzNDQ3NSAyLjM4Mzg4NTI3LDkuMTM5MDAzNzYgQzIuMzgzODg1MjcsNS40MTQ1NjAwNSA1LjQxMzk1NzQyLDIuMzgzODg1MjcgOS4xMzg2MTUzNCwyLjM4Mzg4NTI3IEMxMi44NjMyNzMzLDIuMzgzODg1MjcgMTUuODkyNTY4NSw1LjQxNDU2MDA1IDE1Ljg5MjU2ODUsOS4xMzkwMDM3NiBDMTUuODkyNTY4NSwxMi44NjM0NDc1IDEyLjg2MzI3MzMsMTUuODkyNTY4NSA5LjEzODYxNTM0LDE1Ljg5MjU2ODUgTTkuMTM4NzUyNDUsMi40MzM2MDg4N2UtMTMgQzE0LjE3Nzk5NTUsMi40MzM2MDg4N2UtMTMgMTguMjc2NDUzNyw0LjEwMDMyNDcxIDE4LjI3NjQ1MzcsOS4xMzkxNzc5NiBDMTguMjc2NDUzNywxMS4yMjk4MjExIDE3LjU3MTAxNjksMTMuMTU4NDQzNCAxNi4zODU2MzEzLDE0LjY5OTY2OTYgTDIzLjY1MDg4ODEsMjEuOTY1MjI2NiBDMjQuMTE2MzcwNiwyMi40MzA3MDkyIDI0LjExNjM3MDYsMjMuMTg1NDA1NSAyMy42NTA4ODgxLDIzLjY1MDg4ODEgQzIzLjE4NTQwNTUsMjQuMTE2MzcwNiAyMi40MzA3MDkyLDI0LjExNjM3MDYgMjEuOTY1MjI2NiwyMy42NTA4ODgxIEwxNC42OTk4MTMzLDE2LjM4NTQ3MTMgQzEzLjE1ODQ0MDUsMTcuNTcwOTUwOSAxMS4yMjk1NzM4LDE4LjI3NjQ1MzcgOS4xMzg3NTI0NSwxOC4yNzY0NTM3IEM0LjA5OTUwOTM4LDE4LjI3NjQ1MzcgLTMuNzMwMzQ5MzZlLTE0LDE0LjE3ODIzMTIgLTMuNzMwMzQ5MzZlLTE0LDkuMTM5Mjc3OTYgQy0zLjczMDM0OTM2ZS0xNCw0LjEwMDMyNDcxIDQuMDk5NTA5MzgsMi40MzM2MDg4N2UtMTMgOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBaIj48L3BhdGg+PC9kZWZzPjxnIGlkPSJTZWFyY2giIGZpbGw9IiM0OTRBNTIiPjxtYXNrIGlkPSJtYXNrLTIiPjx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+PC9tYXNrPjxzZWluIGlkPSJJY29ucy9BY3Rpb25zL1NlYXJjaCI+PHVzZSB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT48L3NlaW4+PC9nPjwvc3ZnPg==);
    background-position:center right 15px;
    background-repeat:no-repeat;
  
  height:45px; padding:0 .7rem;
}



.header__search .hs-search-field--open .hs-search-field__input{
  border:1px solid var(--grey); border-radius:6px; max-width:100%;
}
.header__search .hs-search-field--open .hs-search-field__suggestions{
  background:#fff; border:2px solid #D1D6DC; border-top-width:1px;
  border-radius:0 0 6px 6px; position:absolute; width:100%; z-index:10;
}
.header__search .hs-search-field__suggestions li{ border-top:1px solid #D1D6DC; font-size:.875rem; }
.header__search .hs-search-field__suggestions li a{
  color:#494A52; padding:.35rem .7rem; text-decoration:none; transition:background-color .3s;
}
.header__search .hs-search-field__suggestions #results-for{ display:none; }

/* Language switcher (base) */
.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 rgba(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 .3s; visibility:hidden;
}
.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class{ opacity:1; 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:.3s; }
.header__language-switcher .lang_list_class li{ border:none; font-size:18px; padding:.35rem .7rem; }
.header__language-switcher .lang_list_class li:first-child{ border-radius:6px 6px 0 0; }
.header__language-switcher .lang_list_class li:last-child{ border-radius:0 0 6px 6px; }
.header__language-switcher .lang_list_class li:hover{ transition:background-color .3s; }
.header__language-switcher--label{ display:flex; position:relative; }
.header__language-switcher--label-current{
  align-items:center; display:flex; font-size:.75rem; margin:.175rem 0 0 .7rem;
}
.header__language-switcher--label-current:after{
  content:""; display:block; width:0; height:0; margin-left:.7rem; margin-top:.175rem;
  border-left:4px solid transparent; border-right:4px solid transparent; border-top:6px solid #494A52;
}

/* Base toggles */
#nav-toggle{ display:none; }

/* Top-row links (desktop) */
.header__row-1 .header-menu-top-row a{
  text-decoration:none; font-size:14px; line-height:18px; color:var(--black);
  margin-left:.5rem; font-family:'Avenir Next', Arial, Verdana, sans-serif; font-weight:600;
}
.header__row-1 .header-menu-top-row li:nth-child(2) a{ margin:0 1rem; }
.header__row-1 .header-menu-top-row li:nth-child(3) a,
.header__row-1 .header-menu-top-row li:nth-child(4) a,
.header__row-1 .header-menu-top-row li:nth-child(5) a{
  color:var(--white); padding:8px; border-radius:8px;
}
.header__row-1 .header-menu-top-row li:nth-child(3) a{ background-color:var(--teal); }
.header__row-1 .header-menu-top-row li:nth-child(4) a,
.header__row-1 .header-menu-top-row li:nth-child(5) a{ background-color:var(--navy); }
.header__row-1 .header-menu-top-row li:nth-child(3) a:hover,
.header__row-1 .header-menu-top-row li:nth-child(4) a:hover,
.header__row-1 .header-menu-top-row li:nth-child(5) a:hover{ text-decoration:underline; }

/* ---------------------------------------------
   Close (X) — CSS-only icon; hidden by default
----------------------------------------------*/
.header__close--toggle{
  position:relative; width:25px; height:25px; display:none;
  background:transparent; cursor:pointer; margin:0 5vw; z-index:5;
}
.header__close--toggle::before,
.header__close--toggle::after{
  content:""; position:absolute; left:50%; top:50%;
  width:21px; height:3px; background:#494A52; transform-origin:center;
}
.header__close--toggle::before{ transform:translate(-50%,-50%) rotate(45deg); }
.header__close--toggle::after { transform:translate(-50%,-50%) rotate(-45deg); }

/* =========================================================
   DESKTOP (≥1151px)
   ========================================================= */
@media (min-width:1151px){
  .header__search-wrap{ display:flex; align-items:center; gap:.5rem; }
  .header__search form{ display:flex; flex-direction:row; align-items:center; }
  .header__search label{ margin:0 1rem 0 0; }
  .header__search .hs-search-field__input{ width:auto; }

  .header__navigation--desktop{ display:block; }
  .header__navigation--mobile{  display:none !important; }
  .header__navigation--toggle,
  .header__close--toggle{ display:none !important; }
  /* show a standalone icon next to the input */
  .header__search-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:25px; height:25px;
    margin-left:.5rem;
    background:none; border:0; padding:0;
    cursor:pointer;
  }
  .header__search-icon svg{ display:block; }
  .header__search-icon:hover svg{ opacity:.75; }

  /* hide the built-in button that sits inside the field */
  .header__search .hs-search-field__button{ display:none; }
}

/* =========================================================
   TABLET & MOBILE (≤1150px)
   ========================================================= */
@media (max-width:1150px){
.header__column {
  /* border: solid 1px blue; */
  width: 100%;
  height: 100px;
}

  /* move hamburger and x icon to the right - 3 steps  */
  /* 1) right-align the row */
  .header__row-2{
    justify-content:flex-end !important;
  }

  /* Hide desktop-only bits */
  .header__row-1{ display:none !important; }
  .header__navigation--desktop{ display:none !important; }

  /* Nav container: closed vs open */
  .header__navigation{ display:none; position:relative; width:100%; }
  .header__navigation.open{
    display:block; position:absolute; left:0; right:0; top:100px;
    background:#F8FAFC; min-height:calc(100vh - 115px); z-index:1000;
  }

  /* Mobile panel content */
  .header__navigation--mobile{
    display:block; transform:translateY(-8px); opacity:0;
    transition:transform .2s ease, opacity .2s ease;
  }
  .header__navigation.open .header__navigation--mobile{
    transform:translateY(0); opacity:1;
  }

  /* Toggles (hamburger / search / language) */
  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle{
    cursor:pointer; position:relative; margin:0 5vw; width:25px; height:25px;
    background-size:cover; background-repeat:no-repeat; z-index:1001;
  }
  .header--toggle.hide{ display:none !important; }

  .header__navigation--toggle{
    /* border: solid 2px blue; */
    width: 35px;
    height: 35px;
    background-image: url("https://4517248.fs1.hubspotusercontent-na1.net/hubfs/4517248/raw_assets/public/eversight-2025/images/bars-solid-full.svg");
  }
  .header__search--toggle{
    background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHRpdGxlPlNlYXJjaDwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+PGRlZnM+PHBhdGggZD0iTTkuMTM4NjE1MzQsMTUuODkyNTY4NSBDNS40MTM5NTc0MiwxNS44OTI1Njg1IDIuMzgzODg1MjcsMTIuODYzNDQ3NSAyLjM4Mzg4NTI3LDkuMTM5MDAzNzYgQzIuMzgzODg1MjcsNS40MTQ1NjAwNSA1LjQxMzk1NzQyLDIuMzgzODg1MjcgOS4xMzg2MTUzNCwyLjM4Mzg4NTI3IEMxMi44NjMyNzMzLDIuMzgzODg1MjcgMTUuODkyNTY4NSw1LjQxNDU2MDA1IDE1Ljg5MjU2ODUsOS4xMzkwMDM3NiBDMTUuODkyNTY4NSwxMi44NjM0NDc1IDEyLjg2MzI3MzMsMTUuODkyNTY4NSA5LjEzODYxNTM0LDE1Ljg5MjU2ODUgTTkuMTM4NzUyNDUsMi40MzM2MDg4N2UtMTMgQzE0LjE3Nzk5NTUsMi40MzM2MDg4N2UtMTMgMTguMjc2NDUzNyw0LjEwMDMyNDcxIDE4LjI3NjQ1MzcsOS4xMzkxNzc5NiBDMTguMjc2NDUzNywxMS4yMjk4MjExIDE3LjU3MTAxNjksMTMuMTU4NDQzNCAxNi4zODU2MzEzLDE0LjY5OTY2OTYgTDIzLjY1MDg4ODEsMjEuOTY1MjI2NiBDMjQuMTE2MzcwNiwyMi40MzA3MDkyIDI0LjExNjM3MDYsMjMuMTg1NDA1NSAyMy42NTA4ODgxLDIzLjY1MDg4ODEgQzIzLjE4NTQwNTUsMjQuMTE2MzcwNiAyMi40MzA3MDkyLDI0LjExNjM3MDYgMjEuOTY1MjI2NiwyMy42NTA4ODgxIEwxNC42OTk4MTMzLDE2LjM4NTQ3MTMgQzEzLjE1ODQ0MDUsMTcuNTcwOTUwOSAxMS4yMjk1NzM4LDE4LjI3NjQ1MzcgOS4xMzg3NTI0NSwxOC4yNzY0NTM3IEM0LjA5OTUwOTM4LDE4LjI3NjQ1MzcgLTMuNzMwMzQ5MzZlLTE0LDE0LjE3ODIzMTIgLTMuNzMwMzQ5MzZlLTE0LDkuMTM5Mjc3OTYgQy0zLjczMDM0OTM2ZS0xNCw0LjEwMDMyNDcxIDQuMDk5NTA5MzgsMi40MzM2MDg4N2UtMTMgOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBaIj48L3BhdGg+PC9kZWZzPjxnIGlkPSJTZWFyY2giIGZpbGw9IiM0OTRBNTIiPjxtYXNrIGlkPSJtYXNrLTIiPjx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+PC9tYXNrPjxzZWluIGlkPSJJY29ucy9BY3Rpb25zL1NlYXJjaCI+PHVzZSB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT48L3NlaW4+PC9nPjwvc3ZnPg==);
  }
  .header__language-switcher--toggle{
    background-image:url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
  }

  /* Search & language drawers (closed by default) */
  .header__search,
  .header__language-switcher{ display:none; width:100%; }
  .header__search.open,
  .header__language-switcher.open{
    display:block; position:absolute; left:0; right:0; top:75px;
    background:#F8FAFC; min-height:calc(100vh - 115px); z-index:1000;
  }

  /* Show Close (X) ONLY when any drawer is open AND JS added .show */
  .header__close--toggle{ display:none !important; }
  .header:has(.header__navigation.open, .header__search.open, .header__language-switcher.open) .header__close--toggle.show{
    display:block !important;
  }
  
}

/* =========================================================
   MOBILE (≤767px) layout tweaks
   ========================================================= */
@media (max-width:767px){
  .header__container{ flex-direction:column; padding:0; }
  .header__column{ position:relative; }
  .header__row-1{ padding-top:0; padding-bottom:1.5rem; }
  .header__row-2{ justify-content:flex-end; padding:1rem 0; }

  .header__logo{ margin:0 auto; width:100%; }

  .header__search{ border-top:2px solid #CED4DB; order:1; padding:1.05rem; }

  .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:none; 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:.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; }}

.header__navigation {
  /* border: solid 1px green; */
}



/* =========================================================
   Eversight logo - mobile / ipad version
   ========================================================= */
/* Show mobile logo on iPad/phone; keep desktop logo hidden there */
@media (max-width:1150px){
  .header__logo--mobile{
    /* border: solid 2px green; */
    display:block;
    max-width:150px;
    margin-left:1rem;    /* left padding */
    margin-right:auto;  /* pushes toggles to the right */
  }
  .header__logo--main{  /* the desktop logo in row-1 */
    display:none !important;
  }

  /* Lay out row-2 as: [logo ......... icons] */
  .header__row-2{
    justify-content:space-between;
    align-items:center;
    padding:1rem 0;
  }

  /* Keep hamburger/X at the right edge */
  .header__navigation--toggle,
  .header__close--toggle{
    margin-left:auto;
    margin-right:1rem;
  }
}

/* Desktop keeps the original logo */
@media (min-width:1151px){
  .header__logo--mobile{ display:none !important; }
  .header__logo--main{  display:flex; }
}
/* ==============Footer css============== */
/* footer general styling  */
.site-footer {
	background:var(--white);
	color: var(--black);
	padding: 2rem 0 0;
}
.site-footer .page-center {
    max-width: 1180px;
    margin: 0 auto;
}

.site-footer a,
.site-footer small {
	text-decoration: none;
	font-size: 16px;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
	color: var(--black);
}
.site-footer a:hover, .footer-copy-link:hover {
	cursor: pointer;
	opacity: 1;
    color: var(--teal);
}
.site-footer .footer-copy-link {
    color: var(--navy);
    font-family: 'Avenir Next', Arial, Verdana, sans-serif;
  font-weight: 600;   /* use the demi cut */
}
.footer-contact-us a {
    color: var(--teal-web-2);
    font-family: 'Avenir Next', Arial, Verdana, sans-serif;
    font-weight: 600;   /* use the demi cut */
}

/* skip to top styles  */
.footer-top {
  position: relative;
  margin-bottom: 2rem;
}

/* The teal bar */
.footer-top .teal-bar {
  height: 3px; /* thickness of the bar */
  background-color: var(--teal);
  width: 100%;
}

/* rounded teal pill on the right */
.skip-pill {
  position: absolute;
  right: 10%;               /* move along the right edge */
  top: 1px;                  /* half the line height (2px / 2) */
  transform: translateY(-50%); /* vertically center over the line */
  width: 36px;
  height: 30px;
  background: var(--teal);   /* match the line so it looks continuous */
  border-radius: 8px;        /* rounded edges */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1;                /* sit above the teal line */
}

/* white triangle inside the pill */
.skip-pill .triangle {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid #fff; /* white triangle */
}


/* row 1 column structure */
.row-1-wrapper {
    display: flex;
    align-items: flex-start;
}
.row-1-wrapper > *{
    padding: 0 1rem 0 1rem;

}
/* First child: menu area */
.row-1-wrapper > :nth-child(1) {
  flex: 0 0 20%; /* fixed at 50% of container width */
}
/* Second child: copyright */
.row-1-wrapper > :nth-child(2) {
  flex: 0 0 50%;
}
/* Third child: social icons */
.row-1-wrapper > :nth-child(3) {
  flex: 0 0 30%;
  padding-left: 1rem;
  border-left: 1px solid var(--grey);
}


/* row 2 styles */
.footer-row-2 {
    margin: 1rem;
}

.site-footer__legal ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    flex-direction: column;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 16px;
	padding-top: 0;
}
.footer-contact-social-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.footer-contact-social-wrapper > *{
    width: 100%;
}

.social-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	list-style-type: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.social-list li {
	margin-right: 12px;
	margin-bottom: 0;
}

.social-list a {
	display: block;
	width: 24px;
}
.social-list a svg {
	width: 100%;
    width: 30px;
    height: 30px;
    fill: var(--navy); /* your teal/navy/etc. */
}


/* mobile and ipad styles  */
@media (max-width: 1024px) {
     .row-1-wrapper {
        flex-wrap: wrap;
    }
    .row-1-wrapper > * {
        flex: 0 0 100% !important;   /* sets flex-basis: 100% */
        max-width: 100%;  /* helpful with some flexbox quirks */
        padding: 0 1rem 1rem;
    }
    
}
/* 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
*/

/* helper classes for adhoc margins  */
.mb-1 {
  margin-bottom: 1rem;
}
.mt-1 {
  margin-top:1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mt-2 {
  margin-top:2rem;
}

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