/* 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.
*/
:root {
  /*****************************************/
  /* Colors    */
  /*****************************************/
  
  --white: #ffffff;
  --light-gray: #eeeeee;
  --beige-gray: #d9d4ce;
  --gray: #cccccc;
  --spanish-gray: #999999;
  --smoke-gray: #666666;
  --ashy-gray: #515151;
  --dark-gray: #333333;
  --black: #000000;  

  --primary100: #9dcbef;
  --primary200: #0095d5;
  --primary300: #0089d9;
  --primary400: #006eb2;
  --primary500: #0072da;
  
  --light-blue50: #f8fdff;

  --secondary50: #e6ecf5;
  --secondary100: #c2d0e8;
  --secondary200: #9ab2da;
  --secondary300: #3d3936;
  --secondary400: #092c62;
  --secondary600: rgba(61, 57, 54, 0.1);
  --secondary650: rgba(61, 57, 54, 0.3);
  
  --red200: #ef6b51;

  --text-color: var(--secondary300);
  --secondary-text-color: var(--secondary400);
  --gray-background: var(--light-grey);
  --nav-text: var(--smoke-grey);
  --btn-text-color: var(--black);
  --slider-nav-arrow: var(--secondary400);
  
  --root-custom-button-secondary-py: 10px;
  --root-custom-button-secondary-px: 24px;
  --root-custom-button-secondary-bg: var(--white);
  --root-custom-button-secondary-text-color: #515151;
  --root-custom-button-secondary-bg_hover: #eeeeee;
  --root-custom-button-secondary-text-color_active: #bbbbbd;
  --root-custom-button-secondary-letter-spacing: .5px;
  
  
  /*****************************************/
  /* Dimensions    */
  /*****************************************/  
    
  --root-header-h: 80px;
  
  /*****************************************/
  /* Breakpoints    */
  /*****************************************/
  --lg: 1200px;
  --md: 992px;
  --sm: 768px;
  
  /*****************************************/
  /* Font    */
  /*****************************************/
  --primary-font: "Kumbh Sans";
  --default-font-size: 16px;
  --default-line-height: 1.625;
  
  /*****************************************/
  /* Forms    */
  /*****************************************/
  --form-gap: 10px;
  --form-font-size: 14px;
  --form-line-height: 1.5;
}

@media (max-width: 992px) {
  :root {
    --root-header-h: 68px;
  }
}
.flex-row {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

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

.items-stretch {
  align-items: stretch;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
 justify-content: center;
}

.justify-between {
 justify-content: space-between;
}

.flex-wrap {
 flex-wrap: wrap;
}

.absolute {
 position: absolute;
}

.uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

html, body { 
  scroll-behavior: smooth !important;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  color: var(--secondary300);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}
/*! 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: var(--default-line-height);
  font-family: var(--primary-font);
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

body {
  margin: 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)
*/

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  *margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.66%;
}
.row-fluid .span10 {
  width: 83.33%;
}
.row-fluid .span9 {
  width: 75%;
}
.row-fluid .span8 {
  width: 66.66%;
}
.row-fluid .span7 {
  width: 58.33%;
}
.row-fluid .span6 {
  width: 50%;
}
.row-fluid .span5 {
  width: 41.66%;
}
.row-fluid .span4 {
  width: 33.33%;
}
.row-fluid .span3 {
  width: 25%;
}
.row-fluid .span2 {
  width: 16.66%;
}
.row-fluid .span1 {
  width: 8.33%;
}

/*  */


.flex_row .col12 {
  width: 100%;
}
.flex_row .col11 {
  width: 91.66%;
}
.flex_row .col10 {
  width: 83.33%;
}
.flex_row .col9 {
  width: 75%;
}
.flex_row .col8 {
  width: 66.66%;
}
.flex_row .col7 {
  width: 58.33%;
}
.flex_row .col6 {
  width: 50%;
}
.flex_row .col5 {
  width: 41.66%;
}
.flex_row .col4 {
  width: 33.33%;
}
.flex_row .col3 {
  width: 25%;
}

.flex_row .col20 {
  width: 20%;
}

.flex_row .col2 {
  width: 16.66%;
}
.flex_row .col1 {
  width: 8.33%;
}


.container-fluid {
  *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: "";
}

.container-fluid:after {
  clear: both;
}

.content-wrapper,
.dnd-section > .row-fluid,
.page-center {
  padding: 0 15px;
}

.page-center.full_width {
  padding: 0!important;
}

.page-center.full-width,
[class*=full-width-section].dnd-section,
[class*=full-width-section].dnd-section > .row-fluid {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"]  > .row-fluid > .dnd-column.span12,
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .span12.dnd-module {
  padding:0;
}


.page-center,
.content-wrapper ,
.dnd-section > .row-fluid {
  max-width: 100%;
  margin-right:auto;
  margin-left:auto;
}


.content-wrapper,.page-center {
  margin: 0 auto;
  padding: 0 10px;
}

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

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

.page-center{
  padding-left: 0;
  padding-right: 0;
}

.page-center.full_width, .full_width > .row-fluid {
  max-width: 100%;
  width: 100%;
}

.flex_row .col20,
.flex_row .col12,
.flex_row .col11,
.flex_row .col10,
.flex_row .col9 ,
.flex_row .col8 ,
.flex_row .col7 ,
.flex_row .col6 ,
.flex_row .col5 ,
.flex_row .col4 ,
.flex_row .col3 ,
.flex_row .col2 ,
.flex_row .col1 {
  padding:0 10px;
}

.content-wrapper--vertical-spacing,.dnd-section {
  padding-bottom: 40px;
  padding-top: 40px
}

.contact-banner .cm_lb_svg,.landing-banner .cm_lb_svg {
  margin-bottom: -40px
}

.dnd-section>.row-fluid .dnd-column,.dnd-section>.row-fluid>[class*=span].dnd-module,.flex_row .col1,.flex_row .col10,.flex_row .col11,.flex_row .col12,.flex_row .col2,.flex_row .col20,.flex_row .col3,.flex_row .col4,.flex_row .col5,.flex_row .col6,.flex_row .col7,.flex_row .col8,.flex_row .col9 {
  padding-left: 15px;
  padding-right: 15px
}

.content-wrapper,.dnd-section>.row-fluid,.page-center {
  max-width: 1200px
}

@media (max-width: 767px) {
  .row-fluid [class*=span] {
    min-height: 0;
  }
}


@media (min-width: 768px) {

  .dnd-section > .row-fluid .dnd-column,
  .dnd-section > .row-fluid > [class*="span"].dnd-module {
    padding: 0 10px;
  }


  .row-fluid {
    width: 100%;
    *zoom: 1;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: 91.66%;
  }
  .row-fluid .span10 {
    width: 83.33%;
  }
  .row-fluid .span9 {
    width: 75%;
  }
  .row-fluid .span8 {
    width: 66.66%;
  }
  .row-fluid .span7 {
    width: 58.33%;
  }
  .row-fluid .span6 {
    width: 50%;
  }
  .row-fluid .span5 {
    width: 41.66%;
  }
  .row-fluid .span4 {
    width: 33.33%;
  }
  .row-fluid .span3 {
    width: 25%;
  }
  .row-fluid .span2 {
    width: 16.66%;
  }
  .row-fluid .span1 {
    width: 8.33%;
  }
}

@media (min-width: 768px) {
  .dnd-section > .row-fluid,
  .page-center {
    max-width: 769px;
  }
}

@media (min-width: 992px) {
  .dnd-section > .row-fluid,
  .page-center {
    max-width: 994px;
  }
}

@media (min-width: 1200px) {
  .dnd-section > .row-fluid,
  .page-center {
    max-width: 1200px;
  }
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .flex_row .col20,
  .flex_row .col12,
  .flex_row .col11,
  .flex_row .col10,
  .flex_row .col9 ,
  .flex_row .col8 ,
  .flex_row .col7 ,
  .flex_row .col6 ,
  .flex_row .col5 ,
  .flex_row .col4 ,
  .flex_row .col3 ,
  .flex_row .col2 ,
  .flex_row .col1 {
    width: 100%;  
  }

  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
    width: 100%;
  }

  .dnd-section > .row-fluid .dnd-column,
  .dnd-section > .row-fluid > [class*="span"].dnd-module {
    padding: 0 10px;

  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

.body-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

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

/* Elements */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.button_primary,
form input[type=submit],
form .hs-button,
.hs-search-results__next-page,
.hs-search-results__prev-page {
  border: 1px solid;
  border-image-slice: 1;
  border-width: 4px;
  border-image-source: linear-gradient(90deg, var(--primary500), var(--primary100));
  border-color: transparent;

  padding: 12px 16px;

  font-family: Kumbh Sans;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;

  background-color: transparent;
  color: var(--btn-text-color);

  width: fit-content;
  display: inline-block;

  transition: all 0.5s ease-in;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  
  text-align: center;
}

.button_primary:hover,
form input[type=submit]:hover,
form .hs-button:hover,
.hs-search-results__next-page:hover,
.hs-search-results__prev-page:hover {
  border-image-source: linear-gradient(90deg, var(--primary100), var(--primary500));
}

.button_primary:focus,
.button_primary:active,
form input[type=submit]: focus,
form .hs-button:focus,
form input[type=submit]: active,
form .hs-button:active,
.hs-search-results__next-page:focus,
.hs-search-results__prev-page:focus {
  border-image-source: linear-gradient(90deg, var(--primary100), var(--primary500));
  outline: none;
}

.button_primary:disabled,
.button_primary.button_disabled,
form input[type=submit]: disabled,
form .hs-button:disabled {
  border-image-source: linear-gradient(90deg, var(--gray), var(--spanish-gray));
  background-color: var(--beige-gray);
  cursor: default;
  color: var(--spanish-gray);
  opacity: 0.6;
}

.button_secondary {
  background-color: var(--root-custom-button-secondary-bg);
  color: var(--root-custom-button-secondary-text-color);
  
  font-size: 14px;
  font-family: Kumbh Sans;  
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal; 
  
  padding: var(--root-custom-button-secondary-py) var(--root-custom-button-secondary-px);
  
  letter-spacing: var(--root-custom-button-secondary-letter-spacing);
  transition: background-color 0.3s;
  
  
}

.button_secondary:focus-visible,
.button_secondary:focus,
.button_secondary:hover {
  --root-custom-button-secondary-bg: var(--root-custom-button-secondary-bg_hover);
}

.button_secondary:active {
  --root-custom-button-secondary-text-color: var(--root-custom-button-secondary-text-color_active);
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

:root {
  --root-custom-modal-z-index: 100;
  --root-custom-modal-bg: rgba(0,0,0,.3);
  --root-custom-modal-pt: 16px;
  --root-custom-modal-container-py: var(--root-custom-modal-pt) 18px;  
  --root-custom-modal-container-px: 18px;
  
  --root-custom-modal-border-radius: 6px;  
  --root-custom-modal-transition-timing: 300ms;
  --root-custom-modal-transition-easing: ease;
  --root-custom-modal-transition-property: all;
  
  --root-custom-modal-box-h: fit-content;
  --root-custom-modal-box-min-h: 548px;
  --root-custom-modal-box-transition-timing: 300ms;
  --root-custom-modal-box-transition: 
      var(--root-custom-modal-box-transition-timing) 
      var(--root-custom-modal-transition-easing) 
      var(--root-custom-modal-transition-timing); 
  --root-custom-modal-box-offset-y: 12px;
  --root-custom-modal-box-bg: #fff;  
}

.modal {
  background: var(--root-custom-modal-bg);
  
  width: 100%;  
  height: 100%;
  
  left: 0;
  opacity: 0;
  position: fixed;
  bottom: 0;
  
  opacity: var(--root-custom-modal-opacity, 0);
  transition: 
    var(--root-custom-modal-transition-property)    
    var(--root-custom-modal-transition-timing) 
    var(--root-custom-modal-transition-easing);
  visibility: hidden;
  pointer-events: none;
  
  z-index: var(--root-custom-modal-z-index);  
}

.modal-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  width: 100%;
  height: var(--root-custom-modal-container-h, 100%);

  overflow: hidden;
  overflow-y: auto;

  padding: var(--root-custom-modal-container-py) var(--root-custom-modal-container-px);
}

.modal-box {
  background: var(--root-custom-modal-box-bg);
  
  width: 100%;
  height: var(--root-custom-modal-box-h);
  max-width: var(--root-custom-modal-box-w, 1024px);
  margin-inline: auto;
  
  border-radius: var(--root-custom-modal-border-radius);
  opacity: var(--root-custom-modal-box-opacity, 0);
  will-change: opacity, transform;
  transform: translateY(var(--root-custom-modal-box-offset-y));
  
  overflow: hidden;
  
  transition: var(--root-custom-modal-box-transition);  
}

.modal--opened {
  --root-custom-modal-box-offset-y: 0;  
  --root-custom-modal-box-opacity: 1;   
  --root-custom-modal-opacity: 1;

  visibility: visible;
  pointer-events: all;
}

@media (max-width: 768px) {
  .modal-container {
    align-items: flex-start;
  }
}

/* Modal Animations  */
/* @keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  --root-fade-in-transition-timing: 300ms;
  --root-fade-in-transition-easing: ease;
  
  animation: 
     fade-in 
     var(--root-fade-in-transition-timing) 
     var(--root-fade-in-transition-easing) 
     forwards;
} */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Fields */

.hs-form-field {
  margin-top: var(--form-gap);
}

/* Labels */

form label {
  display: block;
  font-size: var(--default-font-size);
  line-height: 1.5;
  font-weight: 700;
}

.hs-form-field > label:first-child {
  margin-bottom: var(--form-gap);
}

/* Help text */

form legend {
  font-size: var(--default-font-size);
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea,
form .hs-input{
  display: inline-block;
  font-size: var(--form-font-size);
  padding: 8px 14px;
  width: 100% !important;
  background-color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--gray) !important;
  line-height: var(--form-line-height);
}

form input[type=text]:hover,
form input[type=email]:hover,
form input[type=password]:hover,
form input[type=tel]:hover,
form input[type=number]:hover,
form input[type=file]:hover,
form select:hover,
form textarea:hover,
form .hs-input:hover,
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus,
form .hs-input:focus {
  outline: 1px solid var(--gray);
}

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

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  width: fit-content !important;
  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: var(--white);
}

.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: var(--white);
}

/* 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: var(--default-font-size);
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.hs-form-booleancheckbox-display > input {
  float: left;
  margin-top: 4px;
}

.hs-form-booleancheckbox-display > span {
  margin-left: 20px !important;
  padding-left: 8px;
  display: block;
  font-weight: 500;
  font-size: var(--form-font-size);
}

/* Validation */

.hs-form-required {
  color: var(--red200);
}

.hs-input.invalid.error {
  border-color: var(--red200);
}

.hs-error-msg, .hs-error-msgs label {
  color: var(--red200);
  font-weight: 500;
}

/* Submit button */

form input[type=submit], form .hs-button {
  padding-left: 42px !important;
  padding-right: 42px !important;
  margin-top: var(--form-gap);
}

/* Captcha */

.hs_recaptcha {
  margin-top: var(--form-gap);
}

.grecaptcha-badge {
  margin: 0;
}

/* Sections */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.section-links-wrapper a {
  color: #0095d5;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.15s linear !important;
  -moz-transition: all 0.15s linear !important;
  -o-transition: all 0.15s linear !important;
  transition: all 0.15s linear !important;
}
.section-list-wrapper ul {
  padding-left: 20px !important;
}
.section-links-wrapper a:hover {
  color: #b9bbbd;
}

.home-page-section {
  min-height: 768px;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-page-section .heading {
  line-height: 1.1 !important;
}

.fixed-bg {
  background-attachment: fixed;
}

.overlay-wrapper {
  position: relative;
  
  isolation: isolate;
}

.green-overlay-wrapper {
  position: relative;
}

.green-overlay-wrapper:after {
  content: "";
  position: absolute;
  
  top: 0;
  left: 0;
  
  width: 100%;
  height: 100%;
  
  pointer-events: none;
  
  background-color: rgba(2, 103, 128, 0.5);
}

@media (max-width: 768px) {
  .hero-text-with-graphics > .row-fluid {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }
  
  .hero-text-with-graphics img {
    max-height: 240px;
    width: auto;
  }
}

@media (max-width: 520px) {
  .hero-text-with-graphics img {
    max-height: 100%;
    width: 100%;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.header {
  background-color: var(--secondary300);
  z-index: 98;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--root-header-h);
}

.header__content {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo-wrapper a {
  display: flex;
}

#main-content {
  margin-top: var(--root-header-h);
}

.navigation__right-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navigation__search-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation__search-btn:hover:after, #hamburger-menu-btn:hover:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--white);
  animation: grow-width 0.5s forwards;
}

.open-search-icon {
  display: block;
}

.close-search-icon {
  display: none;
}

.navigation__search-btn.open .open-search-icon {
  display: none;
}

.navigation__search-btn.open .close-search-icon {
  display: block;
}

.blur-placeholder {
  --transition-duration: 300ms;
  --transition-easing: ease;
  
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  top: var(--root-header-h);
  height: calc(100vh - var(--root-header-h));
  background: rgba(0, 6, 26, .239);
  backdrop-filter: blur(6px);
  
  pointer-events: none;
  opacity: var(--opacity, 0);
  transition: 
    opacity var(--transition-duration) var(--transition-easing),
    pointer-events var(--transition-duration) var(--transition-easing);
  will-change: opacity;
}

.blur-placeholder.visible {
  --opacity: 1;
}

.header__dropdown {
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  
  top: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
  
  margin-top: -18px;
  padding-top: 18px;
  overflow-y: auto;
  
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.header__dropdown::-webkit-scrollbar {
  display: none;
}

.header__dropdown-wrapper {
  background: var(--white);
  width: 100%;
  height: 100%;
}

.header__dropdown-inner {
  max-width: 984px;
  margin: 0 auto;
  padding: 32px;
  color: var(--dark-gray);
}

.search__dropdown.open, .mobile-navigation__dropdown.open {
  visibility: visible;
  position: fixed;
  max-height: calc(100vh - var(--root-header-h));
  top: calc(var(--root-header-h) - 1px);
}

.mobile-navigation__dropdown {
  margin-top: 0;
  padding-top: 0;
}

.mobile-navigation__dropdown-wrapper {
  background-color: #3d3936;
}

.mobile-navigation__dropdown-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px 15px 40px;
}

.navigation-action__wrapper.desktop {
  display: flex;
}

.navigation-action__wrapper.mobile {
  display: none;
}

@keyframes grow-width {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

#hamburger-menu-btn {
  display: none;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

#hamburger-menu-btn.hidden {
  display: none !important;
}

@media (max-width: 992px) {
    #hamburger-menu-btn {
      display: flex;
    }
  
    #hamburger-menu-btn-open {
      display: flex;
    }
  
    #hamburger-menu-btn-close {
      display: none;
    }

    #hamburger-menu-btn.open #hamburger-menu-btn-open {
      display: none;
    }
  
    #hamburger-menu-btn.open #hamburger-menu-btn-close {
      display: flex;
    }
  
  .navigation-action__wrapper.desktop {
    display: none;
  }

  .navigation-action__wrapper.mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .mobile-navigation__dropdown-inner {
    padding: 20px 15px 40px;
  }
}

/* Templates */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.error-section {
  --custom-error-section-bg: #f1f4f3;  
  --custom-error-section-offset: var(--root-header-h);  
  
  --custom-error-section-main-bg: #515151;
  --custom-error-section-main-min-h: 40dvh;

  --custom-error-section-title-text-size: 28px;
  --custom-error-section-title-text-weight: 700;
  
  --custom-error-section-info-py: 50px;
  --custom-error-section-info-text-color: #666666;
  --custom-error-section-info-text-size: 20px;
  --custom-errro-section-info-heading-line-height: 1.175;
  --custom-error-section-info-text-weight: 400;
  --custom-error-section-info-max-w: 980px;
  --custom-error-section-info-w: 90%;
  
  --custom-error-section-list-item-line-height: 2.6;
  --custom-error-section-list-py: 16px;
  --custom-error-section-list-pl: 40px;
  --custom-error-section-list-link-text-color: #072350;
  --custom-error-section-list-link-text-weight: 700;  
  
  background-color: var(--custom-error-section-bg);  
  
  margin-block-start: var(--custom-error-section-offset);  
}

.error-section__main {
  background-color: var(--custom-error-section-main-bg);  
  
  min-height: var(--custom-error-section-main-min-h);
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  text-align: center;
}

.error-section__heading {
  font-size: var(--custom-error-section-title-text-size);
  font-weight: var(--custom-error-section-title-text-weight);
  
  color: var(--white);
}

.error-section__info {
  font-size: var(--custom-error-section-info-text-size);
  font-weight: var(--custom-error-section-info-text-weight);
  
  color: var(--custom-error-info-section-text-color);
  
  max-width: var(--custom-error-section-info-max-w);
  width: var(--custom-error-section-info-w);
  
  padding-block: var(--custom-error-section-info-py);
  margin-inline: auto;
}

.error-section__info-heading {
  font-size: var(--custom-error-section-info-text-size);
  font-weight: var(--custom-error-section-info-text-weight);
  line-height: var(--custom-errro-section-info-heading-line-height);
  
  color: var(--custom-error-section-info-text-color);
}

.error-section__list {
  padding-block: var(--custom-error-section-list-py);
  padding-inline-start: var(--custom-error-section-list-pl);
  
  margin: 0;
}

.error-section__list-item {
  line-height: var(--custom-error-section-list-item-line-height);
  
  color: var(--custom-error-section-info-text-color);
}

.error-section__list-item_link {
  text-decoration: none;
  font-weight: var(--custom-error-section-list-link-text-weight);
  
  color: var(--custom-error-section-list-link-text-color);
}

.error-section__list-item_link:hover {
  text-decoration: underline;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.hs-blog-post .body-container-wrapper {
  overflow-x: hidden;
}

.blog-post-form {
  background-color: #f7f6f5;
}

.blog-post__wrapper {
  max-width: 950px;
  padding: 12px 15px 32px;
  margin: 0 auto;
}

.blog-post__content a {
  color: var(--dark-gray);
}

.blog-post__content svg[aria-labelledby="simpleicons-linkedin-icon"] {
  fill: var(--primary200);
}

.blog-post__content p {
  margin-bottom: 16px;
  font-size: 16px;
}

.blog-post__content h1,
.blog-post__content h2,
.blog-post__content h3,
.blog-post__content h4,
.blog-post__content h5,
.blog-post__content h6 {
  margin-bottom: 14px;
}

.blog-post__content h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-top: 24px;
}

.blog-post__content h2 {
  font-size: 34px;
  line-height: 1.48205882
}

.blog-post__content h4 {
  font-size: 18px;
}

.blog-post__content h5 {
  font-size: 16px;
}

.blog-post__content h6 {
    color: #495057;
    font-family: Open Sans,sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.42857142857
}

.blog-post__content li {
  margin-bottom: 5px;
  padding-left: 0;
  display: list-item;
  list-style-type: disc;
}

.blog-post__content ul {
   list-style: disc;
   margin-bottom: 10px;
   padding-left: 20px;
}

@media (max-width: 992px) {
  .blog-post__wrapper {
      padding: 12px 24px 32px;
  }
}

@media (max-width: 768px) {
  .blog-post-form__hero {
    margin-bottom: 50px;
  }
}
#main-content {
 margin-bottom: auto;
}

.search-results-container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hs-search-field {
  margin-bottom: 30px;
}

.hs-search-results__listing {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hs-search-results__title {
  color: var(--primary200);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
}

.hs-search-results__title:hover {
  text-decoration: underline;
}

.hs-search-results__description {
  font-size: 16px;
  color: #3d3936;
}

.hs-search-results__pagination {
  margin-top: 30px;
}

.hs-search__no-results {
  margin: 50px 0;
  text-align: center;
  font-size: 16px;
  color: #3d3936;
}

.hs-search-results__prev-page:empty, .hs-search-results__next-page:empty {
  display: none;
}