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


/*--- CSS variables --*/
:root {
  --primary-color: #0C7252;
  --primary-color-rgb: 12, 114, 82;
  --secondary-color: #A98D3F;
  --secondary-color-rgb: 169, 141, 63;
  --body-color: #222222;
  --body-color-rgb: 34, 34, 34;
  --text-color: #222222;
  --text-color-rgb: 34, 34, 34;
  --link-color: #0C7252;
  --link-color-rgb: 12, 114, 82;
  --body-bg-color: #FFFFFF;
  --body-bg-color-rgb: 255, 255, 255;
  --black-color: #000000;
  --black-color-rgb: 0, 0, 0;
  --white-color: #FFFFFF;
  --white-color-rgb: 255, 255, 255;
  --dark-gray-color: #808080;
  --dark-gray-color-rgb: 128, 128, 128;
  --light-gray-color: #F5F5F5;
  --light-gray-color-rgb: 245, 245, 245;
  --custom-1-color: #F2E8C3;
  --custom-1-color-rgb: 242, 232, 195;
  --custom-2-color: #F3F1EA;
  --custom-2-color-rgb: 243, 241, 234;
  --inherit-color: inherit;
}
/* 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: 1160px;
  margin: 0 auto;
}

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

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

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


/* DnD section */

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

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

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

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

/* Elements */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Gotham, 'Open Sans', sans-serif;
  color: #222222;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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: 16px;
  }
}


/* Paragraphs */

p {
  font-size: 1rem;
  font-family: Gotham, 'Open Sans', sans-serif;
  margin: 0 0 1.4rem;
}

.lead {
  font-size: 1.4rem;
  font-family: Gotham, 'Open Sans', sans-serif;
  margin: 0 0 1.4rem;
}


/* Anchors */

a {
  cursor: pointer;
  font-weight: 500; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

a:hover,
a:focus {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

a:active {
  color: #349a7a;
}

/* links underline */


a {
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 0.25ch;
  /*text-decoration-thickness: 1px;*/
}


/* Headings */

/* PreTitle ( Additional headline ) */
.pretitle {
  font-weight: bold; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: #222222;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

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

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

/* H1 */

h1, .h1 {
  font-weight: 300; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: #222222;
  font-size: 48px;
  text-transform: none;
}

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

/* H2 */

h2, .h2 {
  font-weight: 400; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: #222222;
  font-size: 36px;
  text-transform: none;
}

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

/* H3 */

h3, .h3 {
  font-weight: 400; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: #222222;
  font-size: 26px;
  text-transform: none;
}
@media only screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 28px;
  }
}

/* H4 */

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

/* H5 */

h5, .h5 {
  font-weight: 500; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: #222222;
  font-size: 18px;
  text-transform: none;
}

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

/* H6 */

h6, .h6 {
  font-weight: bold; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: #222222;
  font-size: 16px;
  text-transform: uppercase;
}

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

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

/* Horizontal rules */

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

/* Image alt text */

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

/* Tags */

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

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

.tag {
  font-size: 0.625em;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 0.15em 0.8em;
  border-radius: 0.625em;
  border: solid 0.1em transparent;
  background: #0C7252;
  color: #FFFFFF;
  text-decoration: none;
}

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

.tag.tag--primary {
  background: #0C7252;
  color: #FFFFFF;
}

a.tag.tag--primary:hover {
  background: #004a2a;
}

.tag.tag--outline {
  background: transparent;
  border-color: #0C7252;
  color: #0C7252;
}

a.tag.tag--outline:hover {
  background: #0C7252;
  color: #FFFFFF;
}

.tag.tag--secondary {
  background: #A98D3F;
  color: #FFFFFF;
}

a.tag.tag--secondary:hover {
  background: #816517;
}

.tag.tag--secondary.tag--outline {
  background: transparent;
  border-color: #A98D3F;
  color: #A98D3F;
}

a.tag.tag--secondary.tag--outline:hover {
  background: #A98D3F;
  color: #FFFFFF;
}
/* ######## Button theme global settings ############ */

 
 
 


.button, .hs-button, form input[type=submit], .cta-button.button--solid a, .cta-button.button--outline a {
  box-shadow: 0px 8px 15px -10px var(--shadow-color);
}



.button:not(:disabled):hover, .hs-button:not(:disabled):hover, form input[type=submit]:hover, .cta-button.button--solid a:hover, .cta-button.button--outline a:hover {
  transform: translateY(-1.2px);
  
}


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

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  --shadow-color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  font-weight: 500; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  font-size: 18px;
  border: 1px solid transparent;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.15;
  transition: all .25s 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(12, 114, 82, 0.95)

;
  --shadow-color: 

  
  
    
  

  rgba(12, 114, 82, 0.95)

;
  text-decoration: none;
}

.button.button--large,
.cta-button.button--solid.button--large a,
.cta-button.button--outline.button--large a {
  padding: 16px 26px;
  font-size: 20px;
}

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

button svg,
.button svg {
  fill: currentColor;
  height: 1em;
  width: auto;
  display: block;
  margin-left: 0.3em;
}

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: 14px 20px;
  background-color: 

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
  --shadow-color: 

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
  border-radius: 3px;
  color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  font-weight: 500; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  font-size: 18px;
  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(255, 255, 255, 1.0)

;
  background-color: 

  
  
    
  

  rgba(169, 141, 63, 0.95)

;
  --shadow-color: 

  
  
    
  

  rgba(169, 141, 63, 0.95)

;
}

.button.button--secondary.button--large,
.cta-button.button--secondary.button--large a {
  padding: 16px 26px;
  font-size: 20px;
}

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

/* Outline button */

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

  
  
    
  

  rgba(12, 114, 82, 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(12, 114, 82, 0.95)

;
  border-color: 

  
  
    
  

  rgba(12, 114, 82, 0.95)

;
  --shadow-color: 

  
  
    
  

  rgba(12, 114, 82, 0.95)

;
  text-decoration: none;
}

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

.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(255, 255, 255, 1.0)

;
  background-color: 

  
  
    
  

  rgba(169, 141, 63, 0.95)

;
  border-color: 

  
  
    
  

  rgba(169, 141, 63, 0.95)

;
  --shadow-color: 

  
  
    
  

  rgba(169, 141, 63, 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;
}


/* 
* Link button and Arrow button */

.button.button--simple,
.cta-button.button--simple a,
.button.button--arrow,
.cta-button.button--arrow a {
  color: #222222;
  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;
  padding: 0;
}


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

  
  
    
  

  rgba(12, 114, 82, 1.0)

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

.button.button--arrow:active,
.button.button--simple:active,
.cta-button.button--arrow a:active,
.cta-button.button--simple a:active {
  color: #349a7a;
  background: none;
  box-shadow: none;
  transform: none;
  border: none;
  transition: none;
}

.button.button--arrow:after,
.cta-button.button--arrow a:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.25em;
  border-width: 0.15em 0.15em 0 0;
  border-style: solid;
  transform: rotate(45deg);
  transition: transform 0.2s ease-in-out;
}

[dir="rtl"] .button.button--arrow:after, 
[dir="rtl"] .cta-button.button--arrow a:after {
  border-width: 0 0 0.15em 0.15em;
}

.button.button--arrow:hover:after,
.cta-button.button--arrow a:hover:after {
  transform: translateX(0.4em) rotate(45deg);
}

[dir="rtl"] .button.button--arrow:hover:after,
[dir="rtl"] .cta-button.button--arrow a:hover:after {
  transform: translateX(-0.4em) rotate(45deg);
}



/* 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: Gotham, 'Open Sans', sans-serif;
  border: 2px none #F5F5F5;
;
  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, 1.0)

;
  padding: 30px;
;
}

/* Form title */

.form-title, 
.custom-form-text {
  border: 2px solid #F5F5F5;
;
  padding: 32px;
;
  font-weight: 400; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  font-size: 26px;
  color: #222222;
  background-color: 

  
  
    
  

  rgba(245, 245, 245, 1.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 select,
form textarea {
  display: inline-block;
  font-size: 1rem;
  padding: 0.9rem 0.7rem;
  width: 100%;
  border: 1px solid #808080;

  background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

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

form textarea {
  resize: vertical;
}

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

/* */

fieldset.form-columns-1 .hs-input:not([type="radio"]):not([type="checkbox"]) {
	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: #808080;
}

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

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

::placeholder {
  color: #808080;
}

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

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

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

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

.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: #0C7252 !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(12, 114, 82, 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
*/

.cp-animate, 
.cp-animate-group .cp-animate-item {
  opacity: 0;
  transition-property: opacity,transform;
  transition-duration: 700ms;
  transition-delay: 100ms;
  transition-timing-function: ease;
}

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

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

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


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

/* Animate */

.cp-animate.animated, 
.cp-animate-group .cp-animate-item.animated {
  opacity: 1;
}

.cp-animate[class^='fade'].animated, 
.cp-animate[class*='fade'].animated,
.cp-animate-group[class^='fade'] .animated.cp-animate-item, 
.cp-animate-group[class*='fade'] .animated.cp-animate-item {
  transform: translateZ(0);
}



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



.cp-animate-group .cp-animate-item:nth-child(1){transition-delay: 0ms;}.cp-animate-group .cp-animate-item:nth-child(2){transition-delay: 100ms;}.cp-animate-group .cp-animate-item:nth-child(3){transition-delay: 200ms;}.cp-animate-group .cp-animate-item:nth-child(4){transition-delay: 300ms;}.cp-animate-group .cp-animate-item:nth-child(5){transition-delay: 400ms;}.cp-animate-group .cp-animate-item:nth-child(6){transition-delay: 500ms;}.cp-animate-group .cp-animate-item:nth-child(7){transition-delay: 600ms;}.cp-animate-group .cp-animate-item:nth-child(8){transition-delay: 700ms;}.cp-animate-group .cp-animate-item:nth-child(9){transition-delay: 800ms;}
.cp-animate-group .cp-animate-item:nth-child(10){transition-delay: 900ms;}.cp-animate-group .cp-animate-item:nth-child(11){transition-delay: 1000ms;}.cp-animate-group .cp-animate-item:nth-child(12){transition-delay: 1100ms;}.cp-animate-group .cp-animate-item:nth-child(13){transition-delay: 1200ms;}.cp-animate-group .cp-animate-item:nth-child(14){transition-delay: 1300ms;}.cp-animate-group .cp-animate-item:nth-child(15){transition-delay: 1400ms;}.cp-animate-group .cp-animate-item:nth-child(16){transition-delay: 1500ms;}.cp-animate-group .cp-animate-item:nth-child(17){transition-delay: 1600ms;}.cp-animate-group .cp-animate-item:nth-child(18){transition-delay: 1700ms;}.cp-animate-group .cp-animate-item:nth-child(19){transition-delay: 1800ms;}
.cp-animate-group .cp-animate-item:nth-child(20){transition-delay: 1900ms;}.cp-animate-group .cp-animate-item:nth-child(21){transition-delay: 2000ms;}.cp-animate-group .cp-animate-item:nth-child(22){transition-delay: 2100ms;}.cp-animate-group .cp-animate-item:nth-child(23){transition-delay: 2200ms;}.cp-animate-group .cp-animate-item:nth-child(24){transition-delay: 2300ms;}.cp-animate-group .cp-animate-item:nth-child(25){transition-delay: 2400ms;}.cp-animate-group .cp-animate-item:nth-child(26){transition-delay: 2500ms;}.cp-animate-group .cp-animate-item:nth-child(27){transition-delay: 2600ms;}.cp-animate-group .cp-animate-item:nth-child(28){transition-delay: 2700ms;}.cp-animate-group .cp-animate-item:nth-child(29){transition-delay: 2800ms;}
.cp-animate-group .cp-animate-item:nth-child(30){transition-delay: 2900ms;}

/*
 * If user has turned of system animation
*/
@media (prefers-reduced-motion) {
  .cp-animate, .cp-animate-group .cp-animate-item {
    opacity: 1 !important;
    transform: translateZ(0) !important;
  }
}

/* Components */



.header {
  position: relative;
  z-index: 2;
}

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

.cp-header {
  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: height 0.5s, background-color 0.5s;
  -moz-transition: height 0.5s, background-color 0.5s;
  -o-transition: height 0.5s, background-color 0.5s;
  transition: height 0.5s, background-color 0.5s;
  z-index: 999; 
}

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

  
  
    
  

  rgba(0, 0, 0, 0.0)

;
}

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

  
  
    
  

  rgba(255, 255, 255, 0.0)

;
}

.cp-header, 
.cp-header-placeholder {
  height: 100px;
}

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

.cp-header.cp-header--sticky {
  position: fixed;
  height: 80px;
  background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

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

@media (min-width: 992px) {
  .cp-header,
  .cp-header-placeholder {
    height: 150px;
  }
  .cp-header.cp-header--sticky {
    height: 100px;
  }
}



/* Header Container */

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

/* Logo */

.cp-header__logo {
  display: flex;
  align-items: center;
  max-width: 100px;
}

.cp-header__logo > a {
  display: flex;
}

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

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

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

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

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

.cp-header__logo img {
  max-width: 100%;
  margin-right: 1rem;
  display: block;
}

.cp-header__logo > a:not(.logo-dark) {
  display: none;
}

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

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

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

.cp-header--sticky.sticky-enabled .cp-header__logo > a.logo-dark {
  display: inherit;
}

@media (min-width: 992px) {
  .cp-header__logo {
    max-width: 100%;
  }
  .cp-header__logo img {
    max-width: none;
  }
  
}


/* Header Navbar */

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


/* Nav toggle */

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

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

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

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

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

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

.cp-nav--toggle-icon > span,
.cp-nav--toggle-icon > span::before,
.cp-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;
}
.cp-nav--toggle-icon > span::before {
  content: '';
  top: -8px;
}
.cp-nav--toggle-icon > span::after {
  content: '';
  top: 8px;
}

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

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


/* Nav */

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

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

.cp-nav--open {
  display: block;
}

@media (max-width: 991.98px) {
  .cp-nav {
    height: calc(100vh - 100px);
  }
}

@media (min-width: 992px) {
  .cp-nav {
    display: block;
    padding: 0;
    position: static;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .cp-nav {
    background: inherit;
  }
  
}

@media (min-width: 481px) and (max-width: 991.98px) {
  .cp-nav {
    border-radius: 4px;
    right: 4px;
    -webkit-box-shadow: 2px -2px 20px 10px rgba(26,26,26,0.1);
    -moz-box-shadow: 2px -2px 20px 10px rgba(26,26,26,0.1);
    box-shadow: 2px -2px 20px 10px rgba(26,26,26,0.1);
  }
  .cp-nav--open:after {
    content: "";
    position: absolute; 
    top: 0;
    right: 12px;
    margin-left: -15px;
    margin-top:-15px;
    width: 0;
    z-index: 9998;
    height: 0;
    border-bottom: solid 15px #ffffff;
    border-left: solid 15px transparent;
    border-right: solid 15px transparent; 
  }
  [dir="rtl"] .cp-nav {
    right: auto;
    left: 4px;
  }
  [dir="rtl"] .cp-nav--open:after {
    right: auto;
    margin-left: auto;
    left: 12px;
    margin-right: -15px;
  }
}



/* Nav Container */

.cp-nav__container {
  padding: 2px 1rem;
}

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

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


/* Menu */

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

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

/* Menu item */

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


.cp-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-weight: bold; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  font-size: 14px;
  z-index: 901;
}

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

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
  background-color: 

  
  
    
  

  rgba(169, 141, 63, 0.0)

;
}

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


.cp-menu__link {
  margin: 0;
  padding: 10px 15px;
  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;
}

.cp-menu__link--toggle {
  padding-right: 2em;
}

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

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

.cp-menu__link > span {
  position: relative;
}


@media (min-width: 992px) {
  .cp-menu__link {
    /*     white-space: nowrap; */
  }
}

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


/* Child toggle button */

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

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

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

@media (min-width: 992px) {

}

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

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

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

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

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

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

}

/* Menu items - top level */

.cp-menu__item--depth-1 {

}

.cp-menu__item--depth-1 > .cp-menu__item-label .cp-menu__link > span:after,
.cp-menu__item--depth-1 > .cp-menu__item-label .cp-menu__link--active-link > span:after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: currentColor;
}
.cp-menu__item--depth-1 > .cp-menu__item-label .cp-menu__link--active-link > span:after {
  width: 100%;
}



@media (min-width: 992px) {

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

  
  
  

  .cp-menu__item--depth-1 {
    margin: 0 5px;
  }

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
    background-color: 

  
  
    
  

  rgba(12, 114, 82, 0.0)

;
  }

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

  
  
    
  

  rgba(245, 245, 245, 1.0)

;
    background-color: 

  
  
    
  

  rgba(245, 245, 245, 0.0)

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
    background-color: 

  
  
    
  

  rgba(12, 114, 82, 0.0)

;
  }

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

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
    background-color: 

  
  
    
  

  rgba(169, 141, 63, 0.0)

;
  }

}




/* Submenu */

.cp-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"] .cp-menu__submenu {
  text-align: right;
  padding: 10px 10px 10px 0px;
}

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

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

.cp-menu__submenu .cp-menu__link {
  text-transform: none;
}


@media (min-width: 992px) {

  /* Menu items - submenus */

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

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
    -webkit-box-shadow: 0 10px 30px -5px rgba(26,26,26,0.2);
    -moz-box-shadow: 0 10px 30px -5px rgba(26,26,26,0.2);
    box-shadow: 0 10px 30px -5px rgba(26,26,26,0.2);
    transition: transform .3s ease-in-out;
    z-index: 900;
  }

  .cp-menu__item--open > .cp-menu__submenu {
    visibility: visible;
    opacity: 1;
    transform: translate(0) !important;
  }

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

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

  .cp-menu__submenu .cp-menu__item-label {
    color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
    font-size: 14px;
  }

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

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
    background-color: 

  
  
    
  

  rgba(169, 141, 63, 0.05)

;
  }

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

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

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

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

  .cp-menu__item--depth-1:last-child > .cp-menu__submenu {
    left: auto;
    right: 0;
  }

  .cp-menu__submenu--level-2 .cp-menu__submenu {
    left: 100%;
    top: -10px;
    transform: translateX(-1rem);
    z-index: 901;
  }

  /* Flyouts for the last two top level menu items go left to keep page responsive */

  .cp-menu__item--depth-1:nth-last-child(-n+2) .cp-menu__submenu--level-3 {
    left: auto;
    right: 100%;
    transform: translateX(1rem);
  }

  /* Handle after 3rd level */

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

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

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


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

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

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

}

@media (max-width: 991.98px) {

}



/* Mega menu */

.cp-mega-menu {

}

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

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

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

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  font-size: 14px;
  text-transform: none;
}

.cp-mega-menu__dropdown a:hover {
  color: 

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
  background-color: 

  
  
    
  

  rgba(169, 141, 63, 0.0)

;
}

.cp-mega-menu__container {
  width: 100%;
}

.cp-mega-menu__content {

}

.cp-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);
}

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

.cp-mega-menu__item {
  padding: 0;
}

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

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

.cp-mega-menu__dropdown a:not(.cp-mega-menu__link-block) {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 4px;
}

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

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

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

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

/* Mega menu multicolumn */


.cp-mega-menu__column {

}

.cp-mega-menu__column .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: grid;
}

.cp-mega-menu__column a {

}

/* Mega menu Custom Column */

.cp-mega-menu__custom-col {

}

.cp-mega-menu__custom-col .hs-menu-item {
  display: block;
}

.cp-mega-menu__custom-col .hs-menu-item {
  padding: 0;
  color: inherit;
}

.cp-mega-menu__custom-col .hs-menu-item > a {

}

.cp-mega-menu__custom-col .hs-menu-item > a:hover {

}

.cp-mega-menu__custom-col .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  position: static;
  display: block;
  opacity: 1;
}

.cp-mega-menu__custom-col .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul.hs-menu-children-wrapper {
  padding-left: 0.5em;
}

/* Mega menu Blog Posts */

.cp-mega-menu__custom-col .blog-listing-widget__post {
  margin: 0;
}

.cp-mega-menu__custom-col .blog-listing-widget__post > a {
  font-size: 80%;
}

.cp-mega-menu__custom-col .blog-listing-widget__post > a:hover {
  font-weight: 500;
}

.cp-mega-menu__custom-col .blog-listing-widget__post-image {
  display: none;
}

.cp-mega-menu__custom-col .blog-listing-widget__post-title {
  margin-bottom: 0;
  font: inherit;
  color: inherit;
  text-transform: inherit;
}

@media (min-width: 992px) {

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

  /* Mega menu */

  .cp-mega-menu__dropdown {
    padding: 4rem 3rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
    border-radius: 6px;
    -webkit-box-shadow: 0 10px 10px rgba(26,26,26,0.2);
    -moz-box-shadow: 0 10px 10px rgba(26,26,26,0.2);
    box-shadow: 0 10px 10px rgba(26,26,26,0.2);
    z-index: 9000;
    transition: all .3s ease-in-out;
  }

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

  .cp-mega-menu__divider {
    width: 2px;
    background: rgba(12, 114, 82, 0.18);
    border-radius: 10px;
    align-self: stretch;
  }
  
  .cp-mega-menu .cp-menu__item {
    position: static;
  }

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

  .cp-header.cp-header--sticky .cp-mega-menu .cp-menu__item--depth-1 {
    height: 100px;
  }

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  }

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

  
  
    
  

  rgba(255, 255, 255, 1.0)

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

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
  }

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  }

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
    font-size: 14px;
  }

  .cp-mega-menu__dropdown a:hover {
    color: 

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
    background-color: 

  
  
    
  

  rgba(169, 141, 63, 0.05)

;
  }

  .cp-mega-menu__title {
    border-color: rgba(12, 114, 82, 0.18);
  }

  .cp-mega-menu__container {
    display: flex;
    gap: 2rem;
  }

  .cp-mega-menu__content {
    flex: 3;
  }

  .cp-mega-menu__custom-col {
    flex: 1;
  }
  
  .cp-mega-menu__multicolumn {
    display: flex;
    width: 100%;
    gap: 2rem;
  }
  
  .cp-mega-menu__column {
    flex: 1;
  }
  
  .cp-mega-menu__footer .cp-mega-menu__content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(12, 114, 82, 0.18);
  }
  
  
  .cp-mega-menu__column .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
}


/* Search wrapper */

.cp-nav-search--wrapper {
  position: relative;
  margin-left: 0.75rem;
}

/* Search toggle */

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

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

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

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

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

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

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

.cp-nav-search--toggle-icon:after, 
.cp-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;
}

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

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

.cp-nav-search--toggle.open .cp-nav-search--toggle-icon:before,
.cp-nav-search--toggle.open  .cp-nav-search--toggle-icon:after {
  width: 26px;
  height: 2px;
}

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

.cp-nav-search--toggle.open .cp-nav-search--toggle-icon > div {
  width: 0;
  height: 0;
  border-color: transparent;
}


/* Search bar */

.cp-nav-search {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 30px );
  right: -15px;
  padding: 1rem;
  width: 0;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  -webkit-box-shadow: 2px -2px 20px 10px rgba(26,26,26,0.1);
  -moz-box-shadow: 2px -2px 20px 10px rgba(26,26,26,0.1);
  box-shadow: 2px -2px 20px 10px rgba(26,26,26,0.1);
  transition: all 0.3s ease-in-out;
}

.cp-header.cp-header--sticky .cp-nav-search {
  background: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

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

.cp-nav-search--open {
  visibility: visible;
  opacity: 1;
  width: 80vw;
}

.cp-nav-search--open:after{
  content: "";
  position: absolute; 
  top: 0;
  right: 12px;
  margin-left: -15px;
  margin-top:-15px;
  width: 0;
  z-index: 9998;
  height: 0;
  border-bottom-width: 15px;
  border-bottom-style: solid;
  border-bottom-color: 

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
  border-left: solid 15px transparent;
  border-right: solid 15px transparent; 
}

[dir="rtl"] .cp-nav-search--open:after{
  right: auto;
  margin-left: auto;
  left: 12px;
  margin-right: -15px;
}

/* Search textfield */

.cp-nav-search .hs-search-field {
  width: 100%;
  position: relative;
}

.cp-nav-search .hs-search-field__input {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  caret-color: auto;
  height: 55px;
  font-size: 1.1rem;
  width: 100%;
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
}

.cp-header.cp-header--sticky .cp-nav-search .hs-search-field__input {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

.cp-nav-search .hs-search-field__input,
.cp-nav-search .hs-search-field__input:focus,
.cp-nav-search .hs-search-field__input:active {
  border-bottom: 2px solid currentColor;
}

/* Chnage textfield placeholder color */

.cp-nav-search .hs-search-field__input::-webkit-input-placeholder {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}
.cp-nav-search .hs-search-field__input:-moz-placeholder {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  opacity:  1;
}
.cp-nav-search .hs-search-field__input::-moz-placeholder {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  opacity:  1;
}
.cp-nav-search .hs-search-field__input:-ms-input-placeholder {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}
.cp-nav-search .hs-search-field__input::-ms-input-placeholder {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

.cp-nav-search .hs-search-field__input::placeholder {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

/* Search placeholder for sticky header */
.cp-header.cp-header--sticky .cp-nav-search .hs-search-field__input::-webkit-input-placeholder,
.cp-header.cp-header--sticky .cp-nav-search .hs-search-field__input:-moz-placeholder,
.cp-header.cp-header--sticky .cp-nav-search .hs-search-field__input::-moz-placeholder,
.cp-header.cp-header--sticky .cp-nav-search .hs-search-field__input:-ms-input-placeholder,
.cp-header.cp-header--sticky .cp-nav-search .hs-search-field__input::-ms-input-placeholder,
.cp-header.cp-header--sticky .cp-nav-search .hs-search-field__input::placeholder {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

/* Search button */

.cp-nav-search .hs-search-field__bar button {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.cp-header.cp-header--sticky .cp-nav-search .hs-search-field__bar button {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

[dir="rtl"] .cp-nav-search .hs-search-field__bar button {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotateY(-180deg);
}

.cp-nav-search .hs-search-field__bar button svg {
  height: 20px;
  fill: currentColor;
}

/* Search suggestions */

.cp-nav-search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

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

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

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

.cp-nav-search form {
  padding: 0;
  background: transparent;
  border: 0;
}

@media (min-width: 768px) {
  .cp-nav-search {
    padding: 2rem;
  }
}

@media (min-width: 992px) {

  .cp-nav-search--open {
    width: 700px;
  }

  .cp-nav-search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .cp-nav-search label {
    margin: 0 1rem 0 0;
  }

  .cp-nav-search .hs-search-field__input {

  }
}

/* Language switcher */

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

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

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

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

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

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

  
  
    
  

  rgba(255, 255, 255, 1.0)

;
}

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

  
  
    
  

  rgba(34, 34, 34, 1.0)

;
}

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

.cp-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"] .cp-nav-lang-switcher {
  right: auto;
  left: -15px;
}

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

.cp-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(26,26,26,0.1);
  -moz-box-shadow: 0 30px 30px 0 rgba(26,26,26,0.1);
  box-shadow: 0 30px 30px 0 rgba(26,26,26,0.1);
}

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

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

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

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


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

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

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  font-size: 14px;
}

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

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
  background-color: 

  
  
    
  

  rgba(169, 141, 63, 0.05)

;
}


/* Header buttons / ctas */

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

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

.cp-nav__ctas-desktop {
  display: none;
}

.cp-nav__ctas > a {
  white-space: nowrap;
}

.cp-nav__ctas--lp > a {
  margin-left: 1em;
} 

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




.footer {
  position: relative;
  background-color: 

  
  
    
  

  rgba(243, 241, 234, 1.0)

;
  z-index: 1;
}

.cp-footer { /* 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(34, 34, 34, 1.0)

;
}

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

.footer a {
  position: relative;
}

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

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
}

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

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
}


/* Footer links underline */


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




/* Footer container */

.footer-container {

}

/* Footer Top */

.footer-top {
  display: flex;
  justify-content: space-between;
}

@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;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer .social-links__icon {
  border-radius: 50%;
  display: inline-flex;
  height: 1.75rem;
  margin: 0 0.35rem;
  position: relative;
  width: 1.75rem;
  background: 

  
  
    
  

  rgba(34, 34, 34, 0.0)

;
}

.footer .social-links__icon:first-child {
  margin-left: 0;
}

.footer a:hover .social-links__icon {
  background: #000000;
}

.footer .social-links__icon svg {
  height: 0.625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.footer .social-links__icon svg,
.footer .social-links__icon:hover svg,
.footer .social-links__icon:focus svg,
.footer .social-links__icon:active svg {
  fill: 

  
  
    
  

  rgba(169, 141, 63, 1.0)

;
}


/* 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 {
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

@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-blog-links {
  flex-basis: 25%;
}

.footer-blog-links a {
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

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

/* Footer bottom */

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

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

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

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

/* Copyright */

.footer .copyright-text {
  color: 

  
  
    
  

  rgba(169, 141, 63, 1.0)

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

.copyright-links .hs-menu-item {
  position: relative;
  margin: 0;
  padding: 0 10px;
}

.copyright-links .hs-menu-item:before {
  content: '';
  width: 1px;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: currentColor;
  opacity: 0.5;
}

@media (max-width: 767px) {
  .copyright-links .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: row;
    margin-top: 10px;
  }
  .copyright-links .hs-menu-item:first-child:before {
    display: none;
  }
}
/* 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%;
}

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

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

/* Buttons */

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

/* Splide Slider */


/* Arrows */

.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 {
  height: 1.5rem;
  vertical-align: middle;
  width: 1.5rem;
  fill: rgba(12, 114, 82, 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 {
  background: rgba(12, 114, 82, 0.3);
}
.custom-splide .splide__pagination__page.is-active {
  background: rgba(12, 114, 82, 1);
}
/* Blog listing */

.blog-author-heading,
.blog-tag-heading {
  border-bottom: 2px solid #A98D3F;
}

.blog-author-heading > span,
.blog-tag-heading > span {
  padding: 0 8px;
  color: #A98D3F;
}

.blog-index__post-title-link,
.blog-index__post-title-link:hover,
.blog-index__post-title-link:focus,
.blog-index__post-title-link:active {
  font-weight: 400; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  text-transform: none;
}

.blog-index__post-title-link {
  color: #222222;
}

.blog-index__post-title-link:hover,
.blog-index__post-title-link:focus {
  color: #000000;
}

.blog-index__post-title-link:active {
  color: #4a4a4a;
}

.blog-index__post-author-name {
  color: #222222;
  font: inherit;
}


/* blog-listing-widget */

.blog-listing-widget {}
.blog-listing-widget__post {
  margin-bottom: 1rem;
}

.blog-listing-widget__post:last-child {
  margin-bottom: 0;
}

.blog-listing-widget__post > a {
  display: flex;
  align-items: flex-start;
}

.blog-listing-widget__post-image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.blog-listing-widget__post-title {

}
/* Blog pagination */
.pagination__link-text,
.pagination__link--number {
  color: #222222;
}

.pagination__link:hover .pagination__link-text,
.pagination__link:focus .pagination__link-text,
.pagination__link--number:hover,
.pagination__link--number:focus {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

.pagination__link:active .pagination__link-text,
.pagination__link--number:active {
  color: #349a7a;
}

.pagination__link--number:hover,
.pagination__link--number:focus,
.pagination__link--number.pagination__link--active {
  color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
  border-color: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

; 
}

.pagination__link-icon svg {
  fill: #222222;
}

.pagination__link:hover svg,
.pagination__link:focus svg {
  fill: 

  
  
    
  

  rgba(12, 114, 82, 1.0)

;
}

.pagination__link:active svg {
  fill: #349a7a;
}

.pagination__link--disabled .pagination__link-text {
  color: #808080 !important;
}

.pagination__link--disabled .pagination__link-icon svg,
.pagination__link--disabled .pagination__link-icon svg {
  fill: #808080 !important;
}
/* Pricing card */

.card__price {
  font-weight: 400; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: #222222;
  font-size: 26px;
}

.card__body svg {
  fill: #0C7252;
}
/* Pricing Cards Module */

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  grid-gap: 1rem;
  row-gap: 2rem;
}

.pricing-plan {
  max-width: 350px;
  position: relative;
  padding: 40px 35px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease-in-out;
}

@media (max-width: 767px) {
  .pricing-plan {

  }
}

.pricing-plan:hover {
  transform: scale(1.01);
}

/* Badge */

.plan-badge {
  background: #FFFFFF;
  color: #0C7252;
  font-size: 13px;
  font-weight: 600;
  left: 50%;
  line-height: 1;
  padding: 7px 28px;
  position: absolute;
  top: -13px;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 0 4px -2px #0C7252;
}

/* Plan Title */
.plan-title {
  color: #0C7252;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* Price */
.plan-price {
  margin-bottom: 25px;
}
.plan-price-title {
  display: block;
  font-size: 3rem;
  line-height: 1;
}
.plan-price-detail {
  display: block;
  font-size: 0.9rem;
}

/* Plan Body */

.plan-body {

}

.plan-description {
  margin-bottom: 25px;
}

.plan-description p, .plan-description span {
  color: inherit;
}

/* Features */

ul.plan-features {
  border-top: 1px solid #F5F5F5;
  padding: 2rem 0;
}

ul.plan-features li {
  text-align: left;
  display: flex;
}

ul.plan-features li:not(:last-child) {
  margin-bottom: 0.4em;
}

ul.plan-features svg {
  width: 1rem;
  height: 1rem;
  margin-right: 10px;
  fill: #0C7252;
}

ul.plan-features img {
  max-width: 1rem;
  max-height: 1rem;
  width: auto;
  height: auto;
  margin-right: 10px;
}

/* Button */

.plan-button .button {
  width: 100%;
}


/* Pricing Style Variants */

/* Primary */

.plan--primary .plan-badge {
  background-color: #0C7252;
  color: #FFFFFF;
}

.plan--primary .plan-title {
  color: #0C7252;
}

.plan--primary ul.plan-features svg {
  fill: #0C7252;
}

/* Primary Filled */

.plan--primary-filled {
  background-color: #0C7252;
  color: #FFFFFF;
}

.plan--primary-filled .plan-title {
  color: #FFFFFF;
}

.plan--primary-filled ul.plan-features svg {
  fill: #FFFFFF;
}

.plan--primary-filled .plan-badge {
  color: #0C7252;
}

.plan--primary-filled .plan-button .button {

}

/* Secondary */

.plan--secondary .plan-badge {
  background-color: #A98D3F;
  color: #FFFFFF;
  box-shadow: 0 0 4px -2px #A98D3F;
}

.plan--secondary .plan-title {
  color: #A98D3F;
}

.plan--secondary ul.plan-features svg {
  fill: #A98D3F;
}

/* Secondary Filled */

.plan--secondary-filled {
  background-color: #A98D3F;
  color: #FFFFFF;
  outline-color: #A98D3F;
}

.plan--secondary-filled .plan-title {
  color: #FFFFFF;
}

.plan--secondary-filled ul.plan-features svg {
  fill: #FFFFFF;
}

.plan--secondary-filled .plan-badge {
  color: #A98D3F;
  box-shadow: 0 0 4px -2px #A98D3F;
}

.plan--secondary-filled .plan-button .button {

}
/* Social follow */

.social-links__icon {
  background-color: #0C7252;
}

.social-links__icon:hover,
.social-links__icon:focus {
  background-color: #004a2a;
}

.social-links__icon:active {
  background-color: #349a7a;
  font-weight: 400; font-family: Gotham, 'Open Sans', sans-serif; font-style: normal;
  color: #222222;
  font-size: 26px;
}

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

/* Shadow presets */

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

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

.shadow-3 {
  box-shadow: 0px 30px 90px var(--shadow-color);
}

.shadow-4 {
  box-shadow: 30px 30px 20px -10px 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(12, 114, 82, 1.0)

; }
.primary-color, .text-primary, .text-hover-primary:hover { color: #0C7252; }
.secondary-color, .text-secondary, .text-hover-secondary:hover { color: #A98D3F; }
.black-color, .text-black, .text-hover-black:hover { color: #000000; }
.white-color, .text-white, .text-hover-white:hover { color: #FFFFFF; }
.dark-gray-color, .text-dark-gray, .text-hover-dark-gray:hover { color: #808080; }
.light-gray-color, .text-light-gray, .text-hover-light-gray:hover { color: #F5F5F5; }
.custom-1-color, .text-custom-1, .text-hover-custom-1:hover { color: #F2E8C3; }
.custom-2-color, .text-custom-2, .text-hover-custom-2:hover { color: #F3F1EA; }
.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(12, 114, 82, 1.0)

; }
.bg-primary, .bg-hover-primary:hover { background-color: #0C7252; }
.bg-secondary, .bg-hover-secondary:hover { background-color: #A98D3F; }
.bg-black, .bg-hover-black:hover { background-color: #000000; }
.bg-white, .bg-hover-white:hover { background-color: #FFFFFF; }
.bg-dark-gray, .bg-hover-dark-gray:hover { background-color: #808080; }
.bg-light-gray, .bg-hover-light-gray:hover { background-color: #F5F5F5; }
.bg-custom-1, .bg-hover-custom-1:hover { background-color: #F2E8C3; }
.bg-custom-2, .bg-hover-custom-2:hover { background-color: #F3F1EA; }
.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(12, 114, 82, 1.0)

; }
.border-primary { border-color: #0C7252; }
.border-secondary { border-color: #A98D3F; }
.border-body-bg { border-color: #FFFFFF; }
.border-black { border-color: #000000; }
.border-white { border-color: #FFFFFF; }
.border-dark-gray { border-color: #808080; }
.border-light-gray { border-color: #F5F5F5; }
.border-custom-1 { border-color: #F2E8C3; }
.border-custom-2 { border-color: #F3F1EA; }
.border-inherit { border-color: "inherit" }
.border-transparent { border-color: "transparent"; }

/* Box shadow color 
 * */

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

  
  
    
  

  rgba(12, 114, 82, 1.0)

; }
.shadow-primary { --shadow-color: #0C7252; }
.shadow-secondary { --shadow-color: #A98D3F; }
.shadow-body-bg { --shadow-color: #FFFFFF; }
.shadow-black { --shadow-color: #000000; }
.shadow-white { --shadow-color: #FFFFFF; }
.shadow-dark-gray { --shadow-color: #808080; }
.shadow-light-gray { --shadow-color: #F5F5F5; }
.shadow-custom-1 { --shadow-color: #F2E8C3; }
.shadow-custom-2 { --shadow-color: #F3F1EA; }
.shadow-inherit { --shadow-color: "inherit"; }
.shadow-transparent { --shadow-color: "transparent"; }