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








/* Containers */




/* Colors */















/* Typography */











































/* Links */









/* Forms */





























/* Tables */










/* Website header */





/* Standard header */






/* Light Overlay Header (Transparent) */







/* Dark Overlay Header (Transparent) */







/* Sticky header */









/* Menu */
















/* Mobile menu */










/*  Website footer */


















/*--- CSS variables --*/

:root {
  --primary-color: #4CAF50;
  --primary-color-rgb: 76, 175, 80;
  --secondary-color: #2196F3;
  --secondary-color-rgb: 33, 150, 243;
  --body-color: #222222;
  --body-color-rgb: 34, 34, 34;
  --text-color: #222222;
  --text-color-rgb: 34, 34, 34;
  --body-bg-color: #FFFFFF;
  --body-bg-color-rgb: 255, 255, 255;
  --black-color: #000000;
  --black-color-rgb: 0, 0, 0;
  --off-black-color: #666666;
  --off-black-color-rgb: 102, 102, 102;
  --white-color: #FFFFFF;
  --white-color-rgb: 255, 255, 255;
  --off-white-color: #FAF4E6;
  --off-white-color-rgb: 250, 244, 230;
  --success-color: #4CAF50;
  --success-color-rgb: 76, 175, 80;
  --error-color: #EE3B2B;
  --error-color-rgb: 238, 59, 43;
  --gray-color: #D3D3D3;
  --gray-color-rgb: 211, 211, 211;
  --custom-1-color: #FFC107;
  --custom-1-color-rgb: 255, 193, 7;
  --custom-2-color: #8B4513;
  --custom-2-color-rgb: 139, 69, 19;
  --link-color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

;
  --link-color-rgb: 33, 150, 243;
  --link-hover-color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
  --link-hover-color-rgb: 76, 175, 80;
  --link-active-color: #74d778;
  --link-active-color-rgb: 116, 215, 120;
  --inherit-color: inherit;
  --current-color: currentColor;
  --primary-font: Montserrat;
  --secondary-font: Open Sans;
  --container-width: 1240px;
  --header-height: 100px;
  --sticky-header-height: 65px;
  --shadow-color: rgba(var(--black-color-rgb), 0.12);
}

@media only screen and (max-width: 767px) {
  :root {
    --header-height: 80px;
    --sticky-header-height: 65px;
  }
}

/* Generic */

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

/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
/* Containers */

.content-wrapper, .page-center {
  max-width: 1240px;
  margin: 0 auto;
}

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

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

.content-wrapper--vertical-spacing {
  padding: 35px 1rem;
}


/* DnD section */

.dnd-section {
  position: relative;
  padding: 35px 1rem;
  z-index: auto;
}

.dnd-section > .row-fluid {
  max-width: 1240px;
  margin: 0 auto;
}

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

/* Elements */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

html, body {
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 17px;
  line-height: 1.75;
  overflow-wrap: break-word;
  background-color: #FFFFFF;
}

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

@media only screen and (max-width: 767px) {
  html, body {
    font-size: 17px;
  }
}

/* Paragraphs */

p {
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

;
}

a:hover,
a:focus {
  color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
}

a:active {
  color: #74d778;
}

/* links underline */


a, a:hover {
  text-decoration: none;
}


/* ********* Headings */

/* Lead */
.lead {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 22px;
  text-transform: ;
  margin: 0 0 1.4rem;
}

@media only screen and (max-width: 767px) {
  .lead {
    font-size: 18px;
  }
}

/* PreTitle */
.pretitle {
  font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
  letter-spacing: 2px;
}

@media only screen and (max-width: 767px) {
  .pretitle {
    font-size: 16px;
  }
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin: 0 0 1.4rem;
  line-height: 1.5;
}

h1, .h1,
h2, .h2 {
  line-height: 1.2;
}

/* H1 */

h1, .h1 {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #000000;
  font-size: 58px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 50px;
  }
}

/* H2 */

h2, .h2 {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #000000;
  font-size: 44px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 34px;
  }
}

/* H3 */

h3, .h3 {
  font-family: 'Playfair Display', serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #000000;
  font-size: 32px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 28px;
  }
}

/* H4 */

h4, .h4 {
  font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #000000;
  font-size: 22px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  h4, .h4 {
    font-size: 20px;
  }
}

/* H5 */

h5, .h5 {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: 500; text-decoration: none;
  color: #000000;
  font-size: 18px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  h5, .h5 {
    font-size: 18px;
  }
}

/* H6 */

h6, .h6 {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: 500; text-decoration: none;
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  h6, .h6 {
    font-size: 16px;
  }
}

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

li {
  margin-bottom: 0.7rem;
}

li::marker {
  font-size: 1.2em;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Lead */
blockquote, .quote {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; text-decoration: none;
  color: #222222;
  font-size: 18px;
  text-transform: none;
}

@media only screen and (max-width: 767px) {
  blockquote, .quote {
    font-size: 18px;
  }
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
  max-width: 100%;
}

/* Tags */

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

.tags > .tag {
  margin: 0.3rem 0.5rem 0.3rem 0;
}

.tag {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  padding: 0.15em 0.8em;
  border-radius: 0.625em;
  border: solid 0.1em transparent;
  text-decoration: none;
}

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

.tag.tag--simple {
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-color);
}

.tag.tag--simple:after {
  background: currentColor;
  bottom: -6px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: width .2s cubic-bezier(.55,0,.1,1);
  width: 0;
}

.tag.tag--simple:hover:after {
  width: 100%;
}

/* Primary */
.tag.tag--primary {
  background: var(--primary-color);
  color: var(--white-color);
}

.tag.tag--primary.active,
a.tag.tag--primary:hover {
  background: #248728;
}

.tag.tag--outline {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.tag.tag--outline.active,
a.tag.tag--outline:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Secondary */
.tag.tag--secondary {
  background: var(--secondary-color);
  color: var(--white-color);
}

.tag.tag--secondary.active,
a.tag.tag--secondary:hover {
  background: #006ecb;
}

.tag.tag--secondary.tag--outline {
  background: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.tag.tag--secondary.tag--outline.active,
a.tag.tag--secondary.tag--outline:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

/* ######## Button theme global settings ############ */

/* Buttons */

/* Primary */












/* Secondary */













/* Simple */





 
 
 





/* ########################## */

button,
.button,
.hs-button,
form input[type=submit],
.cta-button.button--solid a,
.cta-button.button--outline a {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  padding: 16px 24px;
  border-radius: 50px;
  background-color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

;
  --shadow-color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

;
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  font-size: 16px;font-family: 'Open Sans', sans-serif;
  border: 1px solid transparent;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.15;
  transition: all .15s linear;
}

button:hover, button:focus,
.button:hover, .button:focus,
.hs-button:hover, .hs-button:focus,
form input[type=submit]:hover, form input[type=submit]:focus,
.cta-button.button--primary a:hover, .cta-button.button--primary a:focus {
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.95)

;
  --shadow-color: 

  
  
    
  

  rgba(76, 175, 80, 0.95)

;
  text-decoration: none;
}

.button.button--large,
.cta-button.button--solid.button--large a,
.cta-button.button--outline.button--large a {
  padding: 18px 30px;
  font-size: 18px;
}

.button.button--small,
.cta-button.button--solid.button--small a,
.cta-button.button--outline.button--small a {
  padding: 14px 18px;
  font-size: 14px;
}

.button.button--xsmall,
.cta-button.button--solid.button--xsmall a,
.cta-button.button--outline.button--xsmall a {
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1;
}

button svg,
.button svg {
  fill: currentColor;
  width: 1.5em;
  display: block;
  margin-left: 0.3752em;
}

button:disabled,
.button:disabled,
.hs-button:disabled,
form input[type=submit]:disabled {
  opacity: .3;
}

/* Button secondary */

.button.button--secondary,
.cta-button.button--secondary a {
  padding: 16px 24px;
  background-color: 

  
  
    
  

  rgba(250, 244, 230, 1.0)

;
  --shadow-color: 

  
  
    
  

  rgba(250, 244, 230, 1.0)

;
  border-radius: 50px;
  color: 

  
  
    
  

  rgba(0, 0, 0, 1.0)

;
  font-size: 16px;font-family: 'Open Sans', sans-serif;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.button.button--secondary:hover,
.button.button--secondary:focus,
.cta-button.button--secondary a:hover,
.cta-button.button--secondary a:focus {
  color: 

  
  
    
  

  rgba(0, 0, 0, 1.0)

;
  background-color: 

  
  
    
  

  rgba(33, 150, 243, 0.95)

;
  --shadow-color: 

  
  
    
  

  rgba(33, 150, 243, 0.95)

;
}

.button.button--secondary.button--large,
.cta-button.button--secondary.button--large a {
  padding: 18px 30px;
  font-size: 18px;
}

.button.button--secondary.button--small,
.cta-button.button--secondary.button--small a {
  padding: 14px 18px;
  font-size: 14px;
}

.button.button--secondary.button--xsmall,
.cta-button.button--secondary.button--xsmall a {
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1;
}


/* Outline button */

.button.button--outline, 
.cta-button.button--outline a {
  color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

;
  border-color: currentColor;
  background-color: transparent;
  --shadow-color: currentColor;
}

.button.button--outline:hover, 
.button.button--outline:focus,
.cta-button.button--outline a:hover, 
.cta-button.button--outline a:focus {
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.95)

;
  border-color: 

  
  
    
  

  rgba(76, 175, 80, 0.95)

;
  --shadow-color: 

  
  
    
  

  rgba(76, 175, 80, 0.95)

;
  text-decoration: none;
}

.button.button--outline.button--secondary, 
.cta-button.button--outline.button--secondary a {
  background-color: transparent;
  color: #2196F3;
}

.button.button--outline.button--secondary:hover,
.button.button--outline.button--secondary:focus,
.cta-button.button--outline.button--secondary a:hover,
.cta-button.button--outline.button--secondary a:focus {
  color: 

  
  
    
  

  rgba(0, 0, 0, 1.0)

;
  background-color: 

  
  
    
  

  rgba(33, 150, 243, 0.95)

;
  border-color: 

  
  
    
  

  rgba(33, 150, 243, 0.95)

;
  --shadow-color: 

  
  
    
  

  rgba(33, 150, 243, 0.95)

;
}

/* Button white outline */

.button.button--outline.button--white, 
.cta-button.button--outline.button--white a {
  background-color: transparent;
  color: #FFFFFF;
}

.button.button--outline.button--white:hover,
.button.button--outline.button--white:focus,
.cta-button.button--outline.button--white a:hover,
.cta-button.button--outline.button--white a:focus {
  border-color: currentColor;
  --shadow-color: currentColor;
}


/* 
* Simple button */

.button.button--simple,
.cta-button.button--simple a {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  white-space: normal;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
  transform: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-transform: uppercase;
}

.button.button--simple:hover,
.button.button--simple:focus,
.button.button--simple:active,
.cta-button.button--simple a:hover, 
.cta-button.button--simple a:focus,
.cta-button.button--simple a:active {
  color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

;
  background: none;
  box-shadow: none;
  transform: none;
  border-radius: 0;
  border: 0;
  transition: none;
}


.button.button--simple:not(.button--arrow):after,
.cta-button.button--simple:not(.button--arrow) a:after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: currentColor;
  transition: cubic-bezier(.55,0,.1,1) width 200ms;
}

.button.button--simple:not(.button--arrow):hover:after,
.cta-button.button--simple:not(.button--arrow) a:hover:after {
  width: 100%;
}


/* Arrow button */

.button--arrow,
.cta-button.button--arrow a {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  white-space: normal;
}

.button--arrow svg,
.cta-button.button--arrow a svg {
  fill: currentColor;
  width: 1.5em;
  display: block;
  margin-left: 0.3752em;
  transform: none;
  transition: transform 0.2s linear;
}

.button--arrow:hover svg,
.cta-button.button--arrow a:hover svg {
  transform: translateX(0.4em);
}

/* Popup button */

.button--popup::before {
  content: "\25BA"; 
  margin-right: 0.4em;
}

/* 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;
  text-transform: inherit;
  transition: none;
  transform: unset;
}
form,
.submitted-message {
  font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  border: 0px solid #FFFFFF;
;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: 

  
  
    
  

  rgba(255, 255, 255, 0.0)

;
  padding: 0px;
;
}

/* Form title */

.form-title, 
.custom-form-text {
  border: 0px solid #FFFFFF;
;
  padding-top: 0px;
padding-right: 0px;
padding-bottom: 20px;
padding-left: 0px;
;
  font-family: 'Open Sans'; font-style: normal; font-weight: 600; text-decoration: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  font-size: 32px;
  color: #222222;
  background-color: 

  
  
    
  

  rgba(255, 255, 255, 0.0)

;
  margin-bottom: 0;
}

.form-title + div > form,
.custom-form-text + .hs_cos_wrapper_type_form form {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.custom-form-text h3 {
  font: inherit;
}

.custom-form-text h1, 
.custom-form-text h2, 
.custom-form-text h3, 
.custom-form-text h4, 
.custom-form-text h5, 
.custom-form-text h6,
.custom-form-text p {
  color: inherit;
  margin-bottom: 0;
}

.custom-form-text p {
  margin-top: 0.4rem;
}

/* Fields */

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

/* Labels */

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

form .hs-form-field > label {
  font-weight: 600;
}

/* Help text */

form legend {
  font-size: 0.875rem;
  color: #222222;
}

/* 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 input[type=search],
form select,
form textarea {
  display: inline-block;
  font-size: 1rem;
  padding: 18px 30px;
  width: 100%;
  border: 1px solid #D3D3D3;

  background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  color: #222222;
  border-radius: 30px;
  outline: 0;
}

form input[type=search] {
  padding-right: 40px;
}

form textarea {
  resize: vertical;
  min-height: 150px;
}

form fieldset {
  max-width: 100% !important;
}

/* */

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

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  form:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input, 
  form:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input {
    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;
}

/* Form placeholder text */

::-webkit-input-placeholder {
  color: #D3D3D3;
}

::-moz-placeholder {
  color: #D3D3D3;
}

:-ms-input-placeholder {
  color: #D3D3D3;
}

::placeholder {
  color: #D3D3D3;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.hs-fieldtype-date .input .hs-dateinput:before {
  color: #D3D3D3;
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
  background: #4CAF50;
}

.fn-date-picker td.is-today .pika-button {
  color: #4CAF50;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

.fn-date-picker td .pika-button:hover {
  background-color: #4CAF50 !important;
}


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

/* Submit buttons style is available in css/elements/_buttons.css */
form input[type=submit],
form .hs-button {
  
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
  border: 1px solid #222222;

  background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

/* Table cells */

td,
th {
  vertical-align: top;
  border: 1px solid #222222;

  padding: 18px;

  color: #222222;
}

/* Table header */

thead th {
  vertical-align: bottom;
  background-color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
  color: #FFFFFF;
}

/* Table footer */

tfoot td {
  background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  color: #222222;
}
/* Chevron / Angle
* default: chevron-down */

.chevron::before {
  border-style: solid;
  border-width: 0.1em 0.1em 0 0;
  content: "";
  display: inline-block;
  height: 0.4em;
  width: 0.4em;
  position: relative;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform-origin: 0.24em 0.13em;
  transition: transform .4s;
  vertical-align: middle;
}

.chevron-right:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.chevron-up:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.chevron-left:before {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

/* On hover chevron rotate up */

.has-icon:hover > .chevron.hover--up:before,
[aria-expanded="true"] > .chevron.hover--up:before {
  transform: rotate(315deg); 
  -webkit-transform: rotate(315deg);
}

.has-icon:hover > .chevron-left.hover--up:before,
[aria-expanded="true"] > .chevron-left.hover--up:before,
.has-icon:hover > .chevron-right.hover--up:before,
[aria-expanded="true"] > .chevron-right.hover--up:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.has-icon:hover > .chevron-up.hover--up:before,
[aria-expanded="true"] > .chevron-up.hover--up:before {
  transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
}


/* On hover chevron rotate down */

.has-icon:hover > .chevron.hover--down:before,
[aria-expanded="true"] > .chevron.hover--down:before {
  transform: rotate(135deg); 
  -webkit-transform: rotate(135deg);
}

.has-icon:hover > .chevron-left.hover--down:before,
[aria-expanded="true"] > .chevron-left.hover--down:before {
  transform: rotate(-225deg); 
  -webkit-transform: rotate(-225deg);
}

.has-icon:hover > .chevron-down.hover--down:before,
[aria-expanded="true"] > .chevron-down.hover--down:before {
  transform: rotate(495deg);  /* 135 + 360 */
  -webkit-transform: rotate(495deg);
}



/* Caret / Triangle
* default: caret-bottom */

.caret::before {
  content: "";
  display: inline-block;
  border-left: solid 6px transparent; 
  border-right: solid 6px transparent; 
  border-top: solid 6px; 
  height: 0; 
  width: 0; 
  transition: transform 0.4s;
}

.caret-right:before {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.caret-up:before {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}

.caret-left:before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

/* On hover caret rotate up */

.has-icon:hover > .caret.hover--up:before,
[aria-expanded="true"] > .caret.hover--up:before {
  transform: rotate(180deg); 
  -webkit-transform: rotate(180deg);
}

.has-icon:hover > .caret-right.hover--up:before,
[aria-expanded="true"] > .caret-right.hover--up:before {
  transform: rotate(-180deg); 
  -webkit-transform: rotate(-180deg);
}


/* On hover caret rotate down */

.has-icon:hover > .caret.hover--down:before,
[aria-expanded="true"] > .caret.hover--down:before {
  transform: rotate(0deg); 
  -webkit-transform: rotate(0deg);
}

.has-icon:hover > .caret-down.hover--down:before,
[aria-expanded="true"] > .caret-down.hover--down:before {
  transform: rotate(360deg); 
  -webkit-transform: rotate(360deg);
}


/* Plus 
* Minus, Times */

.plus {
  position: relative;
  width: 0.75em;
  height: 0.75em;
}

.plus:before, 
.plus:after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.4s;
}

/* Vertical line */

.plus:before {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}

/* horizontal line */

.plus:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

/* On hover plus to times (x) */

.has-icon:hover > .plus.hover--times:before,
.has-icon:hover > .plus.hover--times:after,
[aria-expanded="true"] > .plus.hover--times:before,
[aria-expanded="true"] > .plus.hover--times:after {
  transform: rotate(45deg); 
  -webkit-transform: rotate(45deg);
}

/* On hover plus to minus (-) */

.has-icon:hover > .plus.hover--minus:before,
[aria-expanded="true"] > .plus.hover--minus:before {
  transform: rotate(90deg); 
  -webkit-transform: rotate(90deg);
}

.has-icon:hover > .plus.hover--minus:after,
[aria-expanded="true"] > .plus.hover--minus:after {
  transform: rotate(180deg); 
  -webkit-transform: rotate(180deg);
}


/* Arrow 
* default: arrow--down  */

.arrow {
  width: 1rem;
  height: 1rem;
  position: relative;
  display: inline-block;
}

.arrow:before, 
.arrow:after {
  content: '';
  border-color: transparent;
  border-style: solid;
  position: absolute;
}

.arrow:before {
  border: none;
  background-color: currentColor;
  height: 50%;
  width: 30%;
  top: 0;
  left: 35%;
}

.arrow:after {
  left: 0;
  top: 50%;
  border-width: 0.5rem 0.5rem;
  border-top-color: currentColor;
}

.arrow-right {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.arrow-up {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.arrow-left {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

/* Triangle */

.triangle {   
  display: block;
  height: 25px;
  left: 64px;
  overflow: hidden;
  position: absolute;
  width: 60px;
}

.triangle > span {
  background-color: #f3f3f3;
  border-radius: 6px;
  box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
  display: block;
  height: 30px;
  margin-left: 20px;
  margin-top: 12px;
  transform: rotate(45deg);
  width: 30px;
}
/**
* Animations
*/

.animate, 
.animate-group .animate-item {
  opacity: 0;
  transition: opacity 700ms 100ms ease-in-out, transform 700ms 100ms ease-in-out;
}

.animate.fade-up,
.animate-group.fade-up .animate-item {
  transform: translateY(100px);
}

.animate.fade-down,
.animate-group.fade-down .animate-item {
  transform: translateY(-100px);
}

.animate.fade-right,
.animate-group.fade-right .animate-item {
  transform: translateX(-100px);
}

.animate.fade-left,
.animate-group.fade-left .animate-item {
  transform: translateX(100px);
}

.animate.animated, 
.animate-group .animate-item.animated {
  opacity: 1;
  transform: translate(0);
} 

/* Transition duration */
.duration-50{transition-duration: 50ms;}.duration-100{transition-duration: 100ms;}.duration-150{transition-duration: 150ms;}.duration-200{transition-duration: 200ms;}.duration-250{transition-duration: 250ms;}.duration-300{transition-duration: 300ms;}.duration-350{transition-duration: 350ms;}.duration-400{transition-duration: 400ms;}.duration-450{transition-duration: 450ms;}.duration-500{transition-duration: 500ms;}.duration-550{transition-duration: 550ms;}.duration-600{transition-duration: 600ms;}.duration-650{transition-duration: 650ms;}.duration-700{transition-duration: 700ms;}.duration-750{transition-duration: 750ms;}.duration-800{transition-duration: 800ms;}.duration-850{transition-duration: 850ms;}.duration-900{transition-duration: 900ms;}.duration-950{transition-duration: 950ms;}
.duration-1000{transition-duration: 1000ms;}.duration-1050{transition-duration: 1050ms;}.duration-1100{transition-duration: 1100ms;}.duration-1150{transition-duration: 1150ms;}.duration-1200{transition-duration: 1200ms;}.duration-1250{transition-duration: 1250ms;}.duration-1300{transition-duration: 1300ms;}.duration-1350{transition-duration: 1350ms;}.duration-1400{transition-duration: 1400ms;}.duration-1450{transition-duration: 1450ms;}.duration-1500{transition-duration: 1500ms;}.duration-1550{transition-duration: 1550ms;}.duration-1600{transition-duration: 1600ms;}.duration-1650{transition-duration: 1650ms;}.duration-1700{transition-duration: 1700ms;}.duration-1750{transition-duration: 1750ms;}.duration-1800{transition-duration: 1800ms;}.duration-1850{transition-duration: 1850ms;}.duration-1900{transition-duration: 1900ms;}.duration-1950{transition-duration: 1950ms;}
.duration-2000{transition-duration: 2000ms;}.duration-2050{transition-duration: 2050ms;}.duration-2100{transition-duration: 2100ms;}.duration-2150{transition-duration: 2150ms;}.duration-2200{transition-duration: 2200ms;}.duration-2250{transition-duration: 2250ms;}.duration-2300{transition-duration: 2300ms;}.duration-2350{transition-duration: 2350ms;}.duration-2400{transition-duration: 2400ms;}.duration-2450{transition-duration: 2450ms;}.duration-2500{transition-duration: 2500ms;}.duration-2550{transition-duration: 2550ms;}.duration-2600{transition-duration: 2600ms;}.duration-2650{transition-duration: 2650ms;}.duration-2700{transition-duration: 2700ms;}.duration-2750{transition-duration: 2750ms;}.duration-2800{transition-duration: 2800ms;}.duration-2850{transition-duration: 2850ms;}.duration-2900{transition-duration: 2900ms;}.duration-2950{transition-duration: 2950ms;}
.duration-3000{transition-duration: 3000ms;}
 
/* Transition duration in group */
.duration-50 .animate-item{transition-duration: 50ms;}.duration-100 .animate-item{transition-duration: 100ms;}.duration-150 .animate-item{transition-duration: 150ms;}.duration-200 .animate-item{transition-duration: 200ms;}.duration-250 .animate-item{transition-duration: 250ms;}.duration-300 .animate-item{transition-duration: 300ms;}.duration-350 .animate-item{transition-duration: 350ms;}.duration-400 .animate-item{transition-duration: 400ms;}.duration-450 .animate-item{transition-duration: 450ms;}.duration-500 .animate-item{transition-duration: 500ms;}.duration-550 .animate-item{transition-duration: 550ms;}.duration-600 .animate-item{transition-duration: 600ms;}.duration-650 .animate-item{transition-duration: 650ms;}.duration-700 .animate-item{transition-duration: 700ms;}.duration-750 .animate-item{transition-duration: 750ms;}.duration-800 .animate-item{transition-duration: 800ms;}.duration-850 .animate-item{transition-duration: 850ms;}.duration-900 .animate-item{transition-duration: 900ms;}.duration-950 .animate-item{transition-duration: 950ms;}
.duration-1000 .animate-item{transition-duration: 1000ms;}.duration-1050 .animate-item{transition-duration: 1050ms;}.duration-1100 .animate-item{transition-duration: 1100ms;}.duration-1150 .animate-item{transition-duration: 1150ms;}.duration-1200 .animate-item{transition-duration: 1200ms;}.duration-1250 .animate-item{transition-duration: 1250ms;}.duration-1300 .animate-item{transition-duration: 1300ms;}.duration-1350 .animate-item{transition-duration: 1350ms;}.duration-1400 .animate-item{transition-duration: 1400ms;}.duration-1450 .animate-item{transition-duration: 1450ms;}.duration-1500 .animate-item{transition-duration: 1500ms;}.duration-1550 .animate-item{transition-duration: 1550ms;}.duration-1600 .animate-item{transition-duration: 1600ms;}.duration-1650 .animate-item{transition-duration: 1650ms;}.duration-1700 .animate-item{transition-duration: 1700ms;}.duration-1750 .animate-item{transition-duration: 1750ms;}.duration-1800 .animate-item{transition-duration: 1800ms;}.duration-1850 .animate-item{transition-duration: 1850ms;}.duration-1900 .animate-item{transition-duration: 1900ms;}.duration-1950 .animate-item{transition-duration: 1950ms;}
.duration-2000 .animate-item{transition-duration: 2000ms;}.duration-2050 .animate-item{transition-duration: 2050ms;}.duration-2100 .animate-item{transition-duration: 2100ms;}.duration-2150 .animate-item{transition-duration: 2150ms;}.duration-2200 .animate-item{transition-duration: 2200ms;}.duration-2250 .animate-item{transition-duration: 2250ms;}.duration-2300 .animate-item{transition-duration: 2300ms;}.duration-2350 .animate-item{transition-duration: 2350ms;}.duration-2400 .animate-item{transition-duration: 2400ms;}.duration-2450 .animate-item{transition-duration: 2450ms;}.duration-2500 .animate-item{transition-duration: 2500ms;}.duration-2550 .animate-item{transition-duration: 2550ms;}.duration-2600 .animate-item{transition-duration: 2600ms;}.duration-2650 .animate-item{transition-duration: 2650ms;}.duration-2700 .animate-item{transition-duration: 2700ms;}.duration-2750 .animate-item{transition-duration: 2750ms;}.duration-2800 .animate-item{transition-duration: 2800ms;}.duration-2850 .animate-item{transition-duration: 2850ms;}.duration-2900 .animate-item{transition-duration: 2900ms;}.duration-2950 .animate-item{transition-duration: 2950ms;}
.duration-3000 .animate-item{transition-duration: 3000ms;}
 
/* Transition delay in group */
.animate-group .animate-item:nth-child(1){transition-delay: 0ms;}.animate-group .animate-item:nth-child(2){transition-delay: 100ms;}.animate-group .animate-item:nth-child(3){transition-delay: 200ms;}.animate-group .animate-item:nth-child(4){transition-delay: 300ms;}.animate-group .animate-item:nth-child(5){transition-delay: 400ms;}.animate-group .animate-item:nth-child(6){transition-delay: 500ms;}.animate-group .animate-item:nth-child(7){transition-delay: 600ms;}.animate-group .animate-item:nth-child(8){transition-delay: 700ms;}.animate-group .animate-item:nth-child(9){transition-delay: 800ms;}
.animate-group .animate-item:nth-child(10){transition-delay: 900ms;}.animate-group .animate-item:nth-child(11){transition-delay: 1000ms;}.animate-group .animate-item:nth-child(12){transition-delay: 1100ms;}.animate-group .animate-item:nth-child(13){transition-delay: 1200ms;}.animate-group .animate-item:nth-child(14){transition-delay: 1300ms;}.animate-group .animate-item:nth-child(15){transition-delay: 1400ms;}.animate-group .animate-item:nth-child(16){transition-delay: 1500ms;}.animate-group .animate-item:nth-child(17){transition-delay: 1600ms;}.animate-group .animate-item:nth-child(18){transition-delay: 1700ms;}.animate-group .animate-item:nth-child(19){transition-delay: 1800ms;}
.animate-group .animate-item:nth-child(20){transition-delay: 1900ms;}.animate-group .animate-item:nth-child(21){transition-delay: 2000ms;}.animate-group .animate-item:nth-child(22){transition-delay: 2100ms;}.animate-group .animate-item:nth-child(23){transition-delay: 2200ms;}.animate-group .animate-item:nth-child(24){transition-delay: 2300ms;}.animate-group .animate-item:nth-child(25){transition-delay: 2400ms;}.animate-group .animate-item:nth-child(26){transition-delay: 2500ms;}.animate-group .animate-item:nth-child(27){transition-delay: 2600ms;}.animate-group .animate-item:nth-child(28){transition-delay: 2700ms;}.animate-group .animate-item:nth-child(29){transition-delay: 2800ms;}
.animate-group .animate-item:nth-child(30){transition-delay: 2900ms;}
 
/* Disable animations on reduced motion preference */
 @media (prefers-reduced-motion) {
  .animate, .animate-group .animate-item {
    opacity: 1 !important;
    transform: translate(0) !important;
  }
}

/* Components */



:root {
  --logo-size: 40px; /* It is dynamic in the modules */
}

.header {
  position: relative;
}

.header .row-fluid [class*=span] {
  min-height: 0;
}
/* Navigation skipper */

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

[dir="rtl"] .header__skip {
  left: auto;
  right: -1000px;
}

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

/* 
* Website header module
*  */


/* Header */

.header-mod {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  -webkit-transition: top 0.5s, background-color 0.5s;
  -moz-transition: top 0.5s, background-color 0.5s;
  -o-transition: top 0.5s, background-color 0.5s;
  transition: top 0.5s, background-color 0.5s;
  z-index: 999; 
}

.page--light-overlay-header .header-mod {
  background-color: 

  
  
    
  

  rgba(0, 0, 0, 0.0)

;
}

.page--dark-overlay-header .header-mod {
  background-color: 

  
  
    
  

  rgba(255, 255, 255, 0.0)

;
}

.header-mod, 
.header-mod-placeholder {
  height: var(--header-height);
}

.page--light-overlay-header .header-mod + .header-mod-placeholder,
.page--dark-overlay-header .header-mod + .header-mod-placeholder {
  display: none;
}

.header-mod.header--sticky {
  position: fixed;
  height: var(--sticky-header-height);
  background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 4px 10px 0 rgba(0,0,0,0.1);
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.1);
}


/* Header Container */

.header__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */

.header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 1rem;
}

.header__logo > a {
  display: flex;
}

.header__logo .logo-company-name {
  font-size: 2rem;
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.header__logo .logo-company-name:not(:first-child) {
  display: none;
}

.page--light-overlay-header .header__logo .logo-company-name {
  color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
}

.page--dark-overlay-header .header__logo .logo-company-name {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.header--sticky .header__logo .logo-company-name {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.header__logo img {
  max-width: 100%;
  display: block;
  width: auto;
  height: var(--logo-size);
}

.header--sticky .header__logo img {
  height: calc(var(--logo-size) - ( var(--logo-size) / 4 ) );
}

.header__logo img:not(.logo-dark) {
  display: none;
}

.page--light-overlay-header .header__logo img:not(.logo-light) {
  display: none;
}
.page--light-overlay-header .header__logo img.logo-light {
  display: inherit;
}

.page--dark-overlay-header .header__logo img:not(.logo-dark) {
  display: none;
}
.page--dark-overlay-header .header__logo img.logo-dark {
  display: inherit;
}

.header--sticky.sticky-enabled .header__logo img:not(.logo-dark) {
  display: none;
}

.header--sticky.sticky-enabled .header__logo img.logo-dark {
  display: inherit;
}

@media (min-width: 992px) {
  .header__logo {
    max-width: 100%;
  }
  .page--header-menu-left .header__logo {
    margin-right: 20px;
  }
}
@media (max-width: 991.98px) {
  .header__logo img {
    height: calc(var(--logo-size) - ( var(--logo-size) / 4 ) );
  }
  .header--sticky .header__logo img {
    height: calc(var(--logo-size) - ( var(--logo-size) / 3 ) );
  }
}

/* Header Navbar */

.header__navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.header .button--simple, 
.header .button--simple:hover, 
.header .button--simple:focus {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.page--light-overlay-header .header__navbar .button--simple, 
.page--light-overlay-header .header__navbar .button--simple:hover, 
.page--light-overlay-header .header__navbar .button--simple:focus {
  color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
}

.page--dark-overlay-header .header__navbar .button--simple, 
.page--dark-overlay-header .header__navbar .button--simple:hover, 
.page--dark-overlay-header .header__navbar .button--simple:focus {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.header--sticky .header__navbar .button--simple, 
.header--sticky .header__navbar .button--simple:hover, 
.header--sticky .header__navbar .button--simple:focus {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}


/* Nav toggle */

.nav--toggle {
  display: block;
  margin-left: 0.75rem;
}

.nav--toggle-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 26px;
  height: 26px;
  cursor: pointer;
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.page--light-overlay-header .nav--toggle-icon {
  color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
}

.page--dark-overlay-header .nav--toggle-icon {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.header--sticky .nav--toggle-icon {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.nav--toggle-icon > span,
.nav--toggle-icon > span::before,
.nav--toggle-icon > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: all .2s ease-in-out, background-color 0s;
}
.nav--toggle-icon > span::before {
  content: '';
  top: -8px;
}
.nav--toggle-icon > span::after {
  content: '';
  top: 8px;
}

.nav--toggle.open .nav--toggle-icon  > span {
  transform: rotate(45deg);
}
.nav--toggle.open .nav--toggle-icon > span::before {
  top: 0;
  transform: rotate(0deg);
}
.nav--toggle.open .nav--toggle-icon > span::after {
  top: 0;
  transform: rotate(90deg);
}

@media (min-width: 992px) {
  .nav--toggle {
    display: none; 
  }
}


/* Nav */

.nav {
  display: none;
  margin: 0;
  padding: 3rem 1rem;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  width: 100%;
  max-width: 480px;
  background: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

.nav--open {
  display: block;
}

@media (min-width: 992px) {
  .nav {
    display: block;
    padding: 0;
    position: static;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .nav {
    background: inherit;
  }
  /* Menu position left */
  .page--header-menu-left .nav {
    margin-right: auto;
  }
}

@media (max-width: 991.98px) {
  .nav {
    right: 4px;
    -webkit-box-shadow: 0px 2px 10px -8px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 2px 10px -8px rgba(0,0,0,.5);
    box-shadow: 0px 2px 10px -8px rgba(0,0,0,.5);
  }
  [dir="rtl"] .nav {
    right: auto;
    left: 4px;
  }
}

@media (max-width: 480px) {
  .nav {
    right: 0; 
    max-width: 100%;
  }
  [dir="rtl"] .nav {
    right: auto;
    left: 0;
  }
}


/* Nav Container */

.nav__container {
  padding: 0;
}

@media (min-width: 992px) {
  .nav__container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

@media (max-width: 991.98px) {
  .nav__container {
    max-width: 100%;
    margin: auto;
    max-height: calc(100vh - var(--header-height) - 6rem);
    overflow-y: auto;
    min-height: 300px;
    scroll-behavior: smooth;
    transition: all .2s linear;
  }
}


/* Menu */

.menu { 
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 992px) {
  .menu {
    flex-direction: row;
  }
}

/* Menu item */

.menu__item {
  padding: 0;
  margin: 0;
  position: relative;
}


.menu__item-label {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  font-size: 16px;font-family: Montserrat, sans-serif; font-weight: 500;
  z-index: 901;
}

.menu__item:hover > .menu__item-label,
.menu__item--open > .menu__item-label {
  color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
  background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.0)

;
}

@media (max-width: 991.98px) {
  .menu__item-label {
    font-size: 16px;
  }
}


.menu__link {
  margin: 0;
  padding: 8px 16px;
  cursor: pointer;
  position: relative;
  flex: 1;
  display: block;
  border: 0;
  text-decoration: none;
  white-space: normal;
  transition: none;  
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  z-index: 902;
}

.menu__link--toggle {
  padding-right: 32px;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:active {
  text-decoration: inherit;
  color: inherit;
}

.menu__link--active-link,
.menu__link--active-branch {
  font-weight: bold;
}

.menu__link > span {
  position: relative;
}

@media (max-width: 991.98px) {
  .menu__link--toggle {
    max-width: 90%;
    flex: initial;
  }
  .menu__link--toggle.no-link {
    pointer-events: none;
  }
}


/* Child toggle button */

.menu__child-toggle {
  color: inherit;
  position: absolute;
  right: 0;
  height: 100%;
  z-index: 901;
}

.menu__child-toggle.no-button {
  color: inherit;
}

.menu__child-toggle-icon {
  align-items: center;
  color: inherit;
  display: flex;
  font: inherit;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 16px;
  pointer-events: none;
  position: relative;
  transition: transform .2s;
}

@media (min-width: 992px) {

}

@media (max-width: 991.98px) {
  .menu__child-toggle {
    width: 100%;
    left: 0;
  }

  .menu__child-toggle-icon {
    font-size: 24px; /* icon size on mobile */
  }

  /* Child toggle icon: based on theme mobile menu settings */

  
  
  .menu__child-toggle-icon {
      display: inherit;
      position: relative;
      width: 0.5em;
      height: 0.5em;
    }
    .menu__child-toggle-icon:before, 
    .menu__child-toggle-icon:after {
      content: "";position: absolute;background-color: currentColor;transition: transform 0.4s;
    }
    /* Vertical line */
    .menu__child-toggle-icon:before {top: 0;left: 50%;width: 2px;height: 100%;margin-left: -1px;}

    /* horizontal line */
    .menu__child-toggle-icon:after {top: 50%;left: 0;width: 100%;height: 2px;margin-top: -1px;}

    
    .menu__item--open > .menu__item-label .menu__child-toggle-icon:before { transform: rotate(90deg); }
    .menu__item--open > .menu__item-label .menu__child-toggle-icon:after { transform: rotate(180deg); }

}

/* Menu items - top level */

.menu__item--depth-1 {

}


@media (min-width: 992px) {

  /* Top level Desktop: Child toggle icon based on theme navigation settings */

  
  
  .menu__item--depth-1 > .menu__item-label .menu__child-toggle-icon::before {
      border-style: solid;
      border-width: 0.1em 0.1em 0 0;
      content: "";
      display: inline-block;
      height: 0.4em;
      width: 0.4em;
      position: relative;
      transform: rotate(135deg);
      -webkit-transform: rotate(135deg);
      transform-origin: 0.25em 0.15em;
      transition: transform .4s;
      vertical-align: middle;
    }

  .menu__item--depth-1 {
    margin: 0 6px;
    height: var(--header-height);
  }

  .header--sticky .menu__item--depth-1 {
    height: var(--sticky-header-height);
  }

  .menu__item--depth-1 > .menu__item-label {
    border-radius: 4px;
    height: inherit;
  }

  .menu__item--depth-1.menu__item--has-submenu.menu__item--open > .menu__item-label:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    border-bottom: 11px solid 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    transform: translateX(-50%);
    z-index: 900;
  }

  .menu__item--depth-1:hover > .menu__item-label,
  .mega-menu .menu__item--open > .menu__item-label {
    color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
    background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.0)

;
  }

  .page--light-overlay-header .menu__item--depth-1:hover > .menu__item-label,
  .page--light-overlay-header .mega-menu .menu__item--open > .menu__item-label {
    color: 

  
  
    
  

  rgba(250, 244, 230, 1.0)

;
    background-color: 

  
  
    
  

  rgba(250, 244, 230, 0.0)

;
  }

  .page--dark-overlay-header .menu__item--depth-1:hover > .menu__item-label,
  .page--dark-overlay-header .mega-menu .menu__item--open > .menu__item-label {
    color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
    background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.0)

;
  }

  .header--sticky .menu__item--depth-1:hover > .menu__item-label,
  .header--sticky .mega-menu .menu__item--open > .menu__item-label {
    color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
    background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.0)

;
  }

}




/* Submenu */

.menu__submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 10px 0px 10px 10px;
  min-width: 100%;
  width: 100%;
  background-color: inherit;
  text-align: left;
  text-transform: none;
}

[dir="rtl"] .menu__submenu {
  text-align: right;
  padding: 10px 10px 10px 0px;
}

.menu__item--open > .menu__submenu {
  display: block;
}

.menu__submenu .menu__item-label {
  font-size: 15px;
}

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


@media (min-width: 992px) {

  /* Menu items - submenus */

  .menu__submenu {
    display: block;
    width: auto;
    padding: 10px 0;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
    -webkit-box-shadow: 2px 10px 50px -5px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 10px 50px -5px rgba(0,0,0,0.2);
    box-shadow: 2px 10px 50px -5px rgba(0,0,0,0.2);
    z-index: 900;
  }

  .menu__item--open > .menu__submenu {
    visibility: visible;
    opacity: 1;
  }

  .menu__submenu > .menu__item {
    width: max-content;
    min-width: 100%;
    max-width: 300px;
  }

  .menu__submenu .menu__item-label {
    min-width: 230px;
  }

  .menu__submenu .menu__item-label {
    color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
    font-size: 16px;
  }

  .menu__submenu .menu__item:hover > .menu__item-label {
    color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
    background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.05)

;
  }

  .menu__submenu > .menu__item:last-child > .menu__item-label {
    border-bottom: none;
  }

  .menu__submenu .menu__link {
    padding: 10px 20px;
  }

  .menu__submenu .menu__link--toggle {
    padding-right: 40px;
  }

  .menu__submenu .menu__child-toggle-icon {
    margin-right: 20px;
  }

  /* Menu position right */
  .page--header-menu-right .menu__item--depth-1:last-child > .menu__submenu {
    left: auto;
    right: 0;
  }

  .menu__submenu--level-2 .menu__submenu {
    left: 100%;
    top: -10px;
    z-index: 901;
  }

  /* Menu position right : Flyouts for the last two top level menu items go left to keep page responsive */
  .page--header-menu-right .menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
    left: auto;
    right: 100%;
  }

  /* Handle after 3rd level */

  .menu__submenu--level-3 .menu__item {
    display: block;
  }

  .menu__submenu--level-3 ul {
    position: relative;
    display: block;
    box-shadow: none;
    border: none;
  }
  .menu__submenu--level-3 ul > .menu__item {
    border: none;
    padding: 0;
    font-size: 90%;
    margin: 0;
  }

  .menu__submenu--level-3 ul > .menu__item > a {
    margin: 0;
  }
  .menu__submenu--level-3 ul > .menu__item:before {
    content: "•";
    display: inline-block;
    margin-right: 0.4rem;
    font-size: 70%;
  }


  /* Submenu Desktop: Child toggle icon based on theme settings */

  
  
  .menu__submenu .menu__child-toggle-icon::before {
      border-style: solid;
      border-width: 0.1em 0.1em 0 0;
      content: "";
      display: inline-block;
      height: 0.4em;
      width: 0.4em;
      position: relative;
      transform: rotate(135deg);
      -webkit-transform: rotate(135deg);
      transform-origin: 0.25em 0.15em;
      transition: transform .4s;
      vertical-align: middle;
    }
    

    
      .menu__submenu .menu__child-toggle-icon:before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
      }

}

@media (max-width: 991.98px) {

}



/* Mega menu */

.mega-menu {

}

.mega-menu__dropdown {
  padding: 1em 0;
  display: none;
  width: 100%;
  background: inherit;
}

.menu__item--open > .mega-menu__dropdown {
  display: block;
}

.mega-menu__title,
.mega-menu__dropdown li,
.mega-menu__dropdown a {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  font-size: 15px;
  text-transform: uppercase;
}

.mega-menu__dropdown a:hover {
  color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
  background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.0)

;
}

.mega-menu__container {
  width: 100%;
}

.mega-menu__content {
  padding: 0.75rem;
}


.mega-menu__title {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  border-color: rgba(34, 34, 34, 0.18);
}

.mega-menu__nav {
  grid-gap: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu__item {
  padding: 0;
}

.mega-menu__link {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  white-space: unset;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.mega-menu__link.with-desc {
  align-items: flex-start;
}

.mega-menu__link > .hs_cos_wrapper_type_icon,
.mega-menu__link > .item-image-wrapper {
  display: inline-block;
  margin-right: 0.8rem;
}

.mega-menu__link svg,
.mega-menu__link img {
  fill: currentColor;
  vertical-align: middle;
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 0;
}

.mega-menu__link-text {
  color: inherit;
  font: inherit;
}

.mega-menu__link-text .description {
  font-size: 70%;
}

/* Mega menu multicolumn */


.mega-menu__column {

}

.mega-menu__column .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: grid;
  position: static;
  opacity: 1;
}

.mega-menu__column .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul ul {
  padding-left: 0.5rem;
}

.mega-menu__column .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul ul > li {
  margin-bottom: 0;
}

.mega-menu__column a,
.mega-menu__column .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 4px;
}

@media (min-width: 992px) {

  .mega-menu--slim {
    position: relative;
  }

  /* Mega menu */

  .mega-menu__dropdown {
    padding: 3rem 2rem;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
    border-radius: 6px;
    -webkit-box-shadow: 2px 10px 50px -5px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 10px 50px -5px rgba(0,0,0,0.2);
    box-shadow: 2px 10px 50px -5px rgba(0,0,0,0.2);
    z-index: 900;
  }

  .mega-menu--full .mega-menu__dropdown {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }

  .mega-menu .menu__item {
    position: static;
  }

  .mega-menu .menu__item--flyouts,
  .mega-menu .menu__item--flyouts .menu__item {
    position: relative;
  }

  .mega-menu .menu__item--depth-1 {
    display: flex;
    align-items: center;
  }

  .menu__item--depth-1 > .menu__item-label {
    color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  }

  .page--light-overlay-header .menu__item--depth-1 > .menu__item-label {
    color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
  }

  .page--dark-overlay-header .menu__item--depth-1 > .menu__item-label {
    color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  }

  .header--sticky .menu__item--depth-1 > .menu__item-label {
    color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  }

  .mega-menu__title,
  .mega-menu__dropdown li,
  .mega-menu__dropdown a {
    color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
    font-size: 16px;
  }

  .mega-menu__dropdown a:hover {
    color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
    background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.05)

;
  }

  .mega-menu__title {
    border-color: rgba(34, 34, 34, 0.18);
  }

  .mega-menu__divider {
    width: 2px;
    background: rgba(34, 34, 34, 0.18);
    border-radius: 10px;
    align-self: stretch;
  }

  .mega-menu__content {

  }
  .mega-menu__multicolumn {
    display: flex;
    width: 100%;
    gap: 2rem;
  }

  .mega-menu__column {
    flex: 1;
  }
  /* 
  .mega-menu__column .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
} */

}


/* Search toggle */

.nav-search--toggle {
  display: flex;
}

.nav-search--toggle, 
.nav-search--toggle:hover, 
.nav-search--toggle:focus, 
.nav-search--toggle:active {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.page--light-overlay-header .nav-search--toggle, 
.page--light-overlay-header .nav-search--toggle:hover, 
.page--light-overlay-header .nav-search--toggle:focus, 
.page--light-overlay-header .nav-search--toggle:active {
  color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
}

.page--dark-overlay-header .nav-search--toggle, 
.page--dark-overlay-header .nav-search--toggle:hover, 
.page--dark-overlay-header .nav-search--toggle:focus, 
.page--dark-overlay-header .nav-search--toggle:active {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.header--sticky .nav-search--toggle, 
.header--sticky .nav-search--toggle:hover, 
.header--sticky .nav-search--toggle:focus, 
.header--sticky .nav-search--toggle:active {
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.nav-search--toggle-icon {
  position: relative;
  height: 20px;
  width: 20px;
}

.nav-search--toggle-icon:after, 
.nav-search--toggle-icon:before {
  background-color: currentColor;
  content: "";
  height: 4px;
  position: absolute;
  right: 2px;
  -webkit-transition: all 0.2s ease-out, background-color 0s, color 0s;
  transition: all 0.2s ease-out, background-color 0s, color 0s;
}

.nav-search--toggle-icon:before {
  top: 0;
  transform: rotate(-45deg);
  transform-origin: right top;
  width: 0;
}

.nav-search--toggle-icon:after {
  bottom: 0px;
  transform: rotate(45deg);
  transform-origin: right bottom;
  width: 8px;
}

.nav-search--toggle-icon > div {
  display: block;
  height: 16px;
  width: 16px;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out, border-color 0s, color 0s;
  transition: all 0.2s ease-out, border-color 0s, color 0s;
}



.nav-search {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.nav-search--open {
  visibility: visible;
  opacity: 1;
}

.nav-search-container {
  width: 100%;
  max-width: 800px;
  margin: var(--header-height) auto auto;
  position: relative;
  background: #fff;
  padding: 3rem;
  border-radius: 4px;
}

.nav-search-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.nav-search-close > div {
  position: relative;
  height: 30px;
  width: 30px;
}

.nav-search-close > div:after, 
.nav-search-close > div:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 3px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-out, background-color 0s, color 0s;
  transition: all 0.2s ease-out, background-color 0s, color 0s;
}

.nav-search-close > div:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-search-close > div:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-search .custom-search form .hs-search-field__input {
  border: 0;
  border-bottom: 1px solid;
  border-radius: 0;
  padding: 0 0 10px;
}
.nav-search .custom-search form button {
  right: 2px;
}

@media (max-width: 767px) {
  .nav-search-container {
    padding: 3rem 1rem 2rem;
  }
  .nav-search-close {
    right: 10px;
    top: 10px;
  }
}

@media (min-width: 768px) {
  .nav-search .custom-search form > label,
  .nav-search .custom-search form .hs-search-field__input {
    font-size: 2rem;
  }
  .nav-search .custom-search form button svg {
    height: 2rem;
  }
}


/* Language switcher */

.nav-lang-switcher--wrapper {
  position: relative;
  margin-left: 0.75rem;
}

.nav-lang-switcher--toggle {
  display: flex;
}

.nav-lang-switcher--toggle-icon {
  display: flex;
  align-items: center;
}

.nav-lang-switcher--toggle-icon > span {
  display: flex;
}

.nav-lang-switcher--toggle-icon svg {
  fill: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.page--light-overlay-header .nav-lang-switcher--toggle-icon svg {
  fill: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
}

.page--dark-overlay-header .nav-lang-switcher--toggle-icon svg {
  fill: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.header--sticky .nav-lang-switcher--toggle-icon svg {
  fill: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.nav-lang-switcher {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: -15px;
  top: 100%;
  width: max-content;
  transform: translateY(-1rem);
  transition: transform 0.2s ease-in-out;
}

[dir="rtl"] .nav-lang-switcher {
  right: auto;
  left: -15px;
}

.nav-lang-switcher--open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-lang-switcher .lang_switcher_class {
  padding: 10px 0px 0px;
  margin-top: 1rem;
  min-width: 100%;
  width: 100%;
  background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  -webkit-box-shadow: 0 30px 30px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 30px 30px 0 rgba(0,0,0,0.1);
  box-shadow: 0 30px 30px 0 rgba(0,0,0,0.1);
}

.nav-lang-switcher .globe_class {
  background: none;
  width: auto;
  height: auto;
}

.nav-lang-switcher .lang_list_class {
  border: none;
  box-shadow: unset;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: unset;
  border: 0;
  margin: 0;
  padding: 0;
}

.nav-lang-switcher--open .lang_list_class {
  display: block;
}

.nav-lang-switcher .lang_list_class li,
.nav-lang-switcher .lang_list_class li:first-child,
.nav-lang-switcher .lang_list_class li:last-child {
  border: 0;
  padding: 0;
}


.nav-lang-switcher .lang_list_class li {
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.nav-lang-switcher .lang_list_class:before,
.nav-lang-switcher .lang_list_class:after {
  content: none;
}

.nav-lang-switcher .lang_list_class li a {
  white-space: nowrap;
  padding: 10px 20px;
  display: block;
  text-transform: uppercase;
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  font-size: 16px;
}

.nav-lang-switcher .lang_list_class li:hover a {
  color: 

  
  
    
  

  rgba(76, 175, 80, 1.0)

;
  background-color: 

  
  
    
  

  rgba(76, 175, 80, 0.05)

;
}


/* Header buttons / ctas */

.nav__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__ctas-mobile {
  margin-top: 40px;
}

.nav__ctas-desktop {
  display: none;
}

.nav__ctas > a {
  white-space: nowrap;
  box-shadow: 0 2px 12px -10px;
}

@media (min-width: 992px) {
  .nav__ctas {
    justify-content: flex-end;
  }
  .nav__ctas > a {
    margin-left: 1em;
  }
  .nav__ctas-mobile {
    display: none;
  }
  .nav__ctas-desktop {
    display: inherit;
  }
}




.footer {
  position: relative;
  background-color: 

  
  
    
  

  rgba(0, 0, 0, 1.0)

;
}

.footer-mod { /* Footer module */

}

/* Footer content */
.footer,
.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

.footer h3 {
  font-size: 1rem;
}

.footer a {
  position: relative;
}

.footer a:not(.hs-button):not(.social-links__link):not(.footer-link-button) {
  color: 

  
  
    
  

  rgba(250, 244, 230, 1.0)

;
}

.footer a:not(.hs-button):not(.social-links__link):not(.footer-link-button):hover {
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}


/* Footer links underline */


.footer a:hover {
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 0.25ch;
}




/* Footer container */

.footer-container {

}

/* Footer Top */

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 35px 1rem;
}

@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
  }
}


/* Footer logo */

.footer-logo {
  margin-bottom: 1.4rem;
}

/* Footer info text */

.footer-info {
  flex-basis: 25%;
}  

@media (min-width: 768px) {
  .footer-info {
    padding-right: 30px;
  }  
}


/* Footer social icons */

.footer .social-links {
  margin-top: 1.4rem;
  gap: 1rem;
}

.footer .social-links__link {
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
}

.footer .social-links__link:hover,
.footer .social-links__link:focus {
  color: 

  
  
    
  

  rgba(250, 244, 230, 1.0)

;
  background: transparent;
}


/* Footer menu column */

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.footer-menu-wrapper {
  margin: 0;
  padding: 0 30px 20px;
  max-width: 33%;
}

.footer-menu-wrapper .hs-menu-item > a {
  display: inline-block;
  margin-bottom: 0;
}

@media (min-width: 767px) {
  .footer-menu {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .footer-menu-wrapper {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-menu {
    margin: 40px 0 0;
  }
  .footer-menu-wrapper {
    padding-left: 0;
  }
}


/* Footer Blog links */

.footer-link-buttons {
  flex-basis: 25%;
}

.footer-link-buttons a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 12px 36px;
  background: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none !important;
}

.footer-link-buttons a:hover,
.footer-link-buttons a:focus {
  background: 

  
  
    
  

  rgba(250, 244, 230, 1.0)

;
  color: 

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

.footer-link-buttons .hs_cos_wrapper {
  color: inherit;
}

.footer-link-buttons a svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
  margin-right: 10px;
}

@media (min-width: 767px) {
  .footer-link-buttons {
    padding-left: 30px;
  }
}

/* Footer bottom */

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.footer-bottom:before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: currentColor;
  opacity: 0.4;
}

.footer-bottom p, .footer-bottom li, .footer-bottom a {
  font-size: 0.9rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
  }
}

/* Copyright */

.footer .copyright-text {
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  margin: 0;
  padding-right: 10px;
}

.footer .menu-links .hs-menu-item {
  position: relative;
  margin: 0;
}

.footer .menu-links .hs-menu-depth-1 {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .footer .menu-links .hs-menu-wrapper ul {
    margin-top: 10px;
    gap: 1rem;
    flex-direction: unset;
  }
}

@media screen and (min-width: 768px) {
  .footer .menu-links .hs-menu-wrapper ul {
    flex-wrap: nowrap;
  }
  .footer .menu-links .hs-menu-depth-1:not(:last-child)::after {
    content: " | ";
    margin: 0 1rem;
    color: currentColor;
    opacity: 0.7;
  }
}
/* 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%;
}
.dnd-section.parallax-bg {
  background-attachment: fixed;
}
/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .dnd-section.parallax-bg {
    background-attachment: scroll;
  }
}

/* Modules */
/* Custom modules common css */

.bg-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.bg-color,
.bg-gardient,
.bg-image,
.bg-video,
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-color,
.bg-gardient,
.bg-image,
.bg-video {
  z-index: 1;
}

.bg-overlay {
  z-index: 2;
}

/* Wave background */

.shape-divider-wrapper {
  position: relative;
}

.shape-divider {
  bottom: -1px;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  z-index: -1;
}

.shape-divider > svg {
  display: block;
  position: relative;
  height: 70px;
  width: 100%;
}

/* Buttons */

.buttons-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
  width: 100%;
}


/* Search */

.custom-search {

}

.custom-search.hs-search-field--open .hs-search-field__suggestions {
  padding: 1rem;
  border: none;
}

.hs-search-field {
  position: relative;
}

.hs-search-field form {
  background: var(--white-color);
  position: relative;
  border: 0;
  padding: 0;
}

.hs-search-field form > label {
  font-size: 1rem;
}

.hs-search-field form .hs-search-field__input {
  font-size: 1rem;
}

.hs-search-field form .hs-search-field__input.with-search-button {
  padding-right: 2rem;
}

.hs-search-field form button {
  background: transparent;
  padding: 0;
  color: inherit;
  border: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.hs-search-field form button svg {
  height: 1rem;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}

.hs-search-field form button:hover svg,
.hs-search-field form button:focus svg {
  opacity: 1;
}

.hs-search-field .hs-search-field__suggestions {
  background-color: var(--off-white-color);
  border-radius: 0 0 6px 6px;
  position: absolute;
  left: 0;
  list-style: none;
  width: 100%;
  z-index: 10;
}

.hs-search-field .hs-search-field__suggestions li {
  font-size: 0.9rem;
}

.hs-search-field .hs-search-field__suggestions li a {
  text-decoration: none;
  transition: background-color 0.1s;
}

.hs-search-field .hs-search-field__suggestions a:hover,
.hs-search-field .hs-search-field__suggestions a:focus {
  background-color: rgba(var(--gray-color-rgb), 0.1);
}


/* Custom List */

.custom-list {
  -webkit-column-gap: 1.5em;
  -moz-column-gap: 1.5em;
  column-gap: 1.5em; 
}

.custom-list > li {
  display: flex;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

.custom-list > li > span {
  display: inline-flex;
}

.custom-list > li .hs_cos_wrapper_type_icon {
  margin-right: .5em;
}

.custom-list > li svg {
  width: 1.5em;
  height: 1.5em;
  fill: currentColor;
}

@media (max-width: 767px) {
  .custom-list {
    text-align: left;
  }
}

/* Splide Slider */


/* Arrows */

.custom-splide {
  padding: 0 1rem;
}

.custom-splide .splide__arrow {
  background: transparent;
  width: auto;
  height: auto;
}
.custom-splide .splide__arrow--next {
  right: 0;
}
.custom-splide .splide__arrow--prev {
  left: 0;
}
.custom-splide .splide__arrow svg {
  margin: 0;
  height: 2rem;
  vertical-align: middle;
  width: auto;
  fill: rgba(var(--primary-color-rgb), 1);
}

@media (max-width: 768px) {
  .custom-splide .splide__arrow svg {
    height: 1rem;
    width: 1rem;
  }
}

/* Dots */

.custom-splide .splide__pagination {
  bottom: -2em;
}

.custom-splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: rgba(var(--primary-color-rgb), 0.3);
  transition: all .2s ease;
}
.custom-splide .splide__pagination__page.is-active {
  width: 30px;
  transform: none;
  background: rgba(var(--primary-color-rgb), 1);
}


/* Modal and Modal slider */

.modal, .modal-slider {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: rgba(var(--black-color-rgb), 0.7);
  z-index: 2;
}

.modal-content {
  background-color: var(--white-color);
  max-width: 950px;
  margin: var(--sticky-header-height) auto;
  padding: 4rem;
  position: relative;
  border-radius: 5px;
}

.modal-slides {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.modal-buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
}

.modal-buttons > button,
.modal-buttons > button:hover, 
.modal-buttons > button:focus {
  background: transparent;
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 0;
}

.modal-buttons > button svg {
  margin: 0;
  vertical-align: middle;
  height: 1.2rem;
  fill: var(--off-black-color);
}

@media (max-width: 768px) {
  .modal-content {
    padding: 3.5rem 2rem;
  }
}

/* Veno Box */

body .vbox-title {
  font-size: 1rem;
}


/* Social follow */

.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

.social-links__link {
  border-radius: 0;
  align-items: center;
  background-color: transparent;
  color: var(--primary-color); 
  display: flex;
  justify-content: center;
}

.social-links__link .hs_cos_wrapper_type_icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: inherit;
}

.social-links__link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* Utilities */

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

/* no-scroll */

.no-scroll {
  overflow: hidden;
}

/* Text presets */

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

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

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

/* Horizontal Alignment */

.hr-align-left {
  margin-right: auto;
}

.hr-align-right {
  margin-left: auto;
}

.hr-align-center {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

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

.justify-content-left {
  justify-content: flex-start;
}

.justify-content-right {
  justify-content: flex-end;
}

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

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

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

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

/* Vertical Alignment (Flex) */

.align-items-top {
  align-items: flex-start;
}

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

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

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


/* Shadow presets */

.shadow-1 {
  box-shadow: 0px 1px 6px -2px var(--shadow-color);
}

.shadow-2 {
  box-shadow: 0 3px 6px var(--shadow-color), 0 3px 6px var(--shadow-color);
}

.shadow-3 {
  box-shadow: 0 10px 20px var(--shadow-color), 0 6px 6px var(--shadow-color);
}

.shadow-4 {
  box-shadow: 0 14px 28px var(--shadow-color), 0 10px 10px var(--shadow-color);
}

.shadow-5 {
  box-shadow: 0 19px 38px var(--shadow-color), 0 15px 12px var(--shadow-color);
}



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

@media only screen and (max-device-width: 1024px) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

/* Colors */

.inherit-colors h1,.inherit-colors h2,.inherit-colors h3,.inherit-colors h4,.inherit-colors h5,.inherit-colors h6,
.inherit-colors p,.inherit-colors label,.inherit-colors span,.inherit-colors a:not(.button),.inherit-colors li,
.inherit-colors q,.inherit-colors blockquote,.inherit-colors i, .inherit-colors img {
  color: inherit;
}
.inherit-colors svg {
  fill: currentColor;
}

/* Text color
* */

.body-color, .text-body, .text-hover-body:hover { color: #222222; }
.body-bg-color, .text-body-bg, .text-hover-body-bg:hover { color: #FFFFFF; }
.link-color, .text-link, .text-hover-link:hover { color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

; }
.primary-color, .text-primary, .text-hover-primary:hover { color: #4CAF50; }
.secondary-color, .text-secondary, .text-hover-secondary:hover { color: #2196F3; }
.black-color, .text-black, .text-hover-black:hover { color: #000000; }
.off-black-color, .text-off-black, .text-hover-off-black:hover { color: #666666; }
.white-color, .text-white, .text-hover-white:hover { color: #FFFFFF; }
.off-white-color, .text-off-white, .text-hover-off-white:hover { color: #FAF4E6; }
.success-color, .text-success, .text-hover-success:hover { color: #4CAF50; }
.error-color, .text-error, .text-hover-error:hover { color: #EE3B2B; }
.gray-color, .text-gray, .text-hover-gray:hover { color: #D3D3D3; }
.custom-1-color, .text-custom-1, .text-hover-custom-1:hover { color: #FFC107; }
.custom-2-color, .text-custom-2, .text-hover-custom-2:hover { color: #8B4513; }
.inherit-color, .text-inherit, .text-hover-inherit:hover { color: inherit; }

/* Background color 
* */

.bg-body, .bg-hover-body:hover { background-color: #222222; }
.bg-body-bg, .bg-hover-body-bg:hover { background-color: #FFFFFF; }
.bg-link, .bg-hover-link:hover { background-color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

; }
.bg-primary, .bg-hover-primary:hover { background-color: #4CAF50; }
.bg-secondary, .bg-hover-secondary:hover { background-color: #2196F3; }
.bg-black, .bg-hover-black:hover { background-color: #000000; }
.bg-off-black, .bg-hover-off-black:hover { background-color: #666666; }
.bg-white, .bg-hover-white:hover { background-color: #FFFFFF; }
.bg-off-white, .bg-hover-off-white:hover { background-color: #FAF4E6; }
.bg-success, .bg-hover-success:hover { background-color: #4CAF50; }
.bg-error, .bg-hover-error:hover { background-color: #EE3B2B; }
.bg-gray, .bg-hover-gray:hover { background-color: #D3D3D3; }
.bg-custom-1, .bg-hover-custom-1:hover { background-color: #FFC107; }
.bg-custom-2, .bg-hover-custom-2:hover { background-color: #8B4513; }
.bg-inherit, .bg-hover-inherit:hover { background-color: "inherit"; }
.bg-transparent, .bg-hover-transparent:hover { background-color: "transparent"; }


/* Border color 
* */

.border-body { border-color: #222222; }
.border-link { border-color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

; }
.border-primary { border-color: #4CAF50; }
.border-secondary { border-color: #2196F3; }
.border-body-bg { border-color: #FFFFFF; }
.border-black { border-color: #000000; }
.border-off-black { border-color: #666666; }
.border-white { border-color: #FFFFFF; }
.border-off-white { border-color: #FAF4E6; }
.border-success { border-color: #4CAF50; }
.border-error { border-color: #EE3B2B; }
.border-gray { border-color: #D3D3D3; }
.border-custom-1 { border-color: #FFC107; }
.border-custom-2 { border-color: #8B4513; }
.border-inherit { border-color: "inherit" }
.border-transparent { border-color: "transparent"; }

/* Box shadow color 
* */

.shadow-body { --shadow-color: #222222; }
.shadow-link { --shadow-color: 

  
  
    
  

  rgba(33, 150, 243, 1.0)

; }
.shadow-primary { --shadow-color: #4CAF50; }
.shadow-secondary { --shadow-color: #2196F3; }
.shadow-body-bg { --shadow-color: #FFFFFF; }
.shadow-black { --shadow-color: #000000; }
.shadow-off-black { --shadow-color: #666666; }
.shadow-white { --shadow-color: #FFFFFF; }
.shadow-off-white { --shadow-color: #FAF4E6; }
.shadow-success { --shadow-color: #4CAF50; }
.shadow-error { --shadow-color: #EE3B2B; }
.shadow-gray { --shadow-color: #D3D3D3; }
.shadow-custom-1 { --shadow-color: #FFC107; }
.shadow-custom-2 { --shadow-color: #8B4513; }
.shadow-inherit { --shadow-color: "inherit"; }
.shadow-transparent { --shadow-color: "transparent"; }