/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

.medium__wrapper{
  max-width: 1150px;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

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

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

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

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Top Header */

.Top_head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  min-height: 29px;
  justify-content: center;
  text-align: center;
  padding: 2px;
}
.top_head_content * {
  font-size: 15px;
  font-family: FormaDJR-Bold,sans-serif;
  letter-spacing: 0.8px;
}
.btm_head {
  padding: 20px 0px;
}

.top_head_content {
  text-align: center;
}
.lp_header_main.fixed {
  position: fixed;
  box-shadow: 0 0 4px rgb(14 55 63 / 15%);
  top: 0;
  width: 100%;
  left: 0;
}

.lp_header_main {
  transition: .3s all ease;
}

header.header.header--no-navigation {
  position: relative;
  z-index: 99;
  transition: 0.6s all ease;
  min-height: 114px;
}

.site_logo img {
  width: 250px;
}

.lp_header_main.fixed .site_logo img {
  width: 200px;
  transition: width .3s;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  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;
  }
}

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

.landing_page_v2 .flex_row .col20 {
  width: 20%;
}

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

.landing_page_v2 .flex_row {
  display: flex;
  flex-wrap: wrap;
  row-gap:30px;
  justify-content: center;
}

.landing_page_v2 .content-wrapper{
  max-width:1200px;
}


.landing_page_v2, .landing_page_v2 p{
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size:18px;
  font-weight:400;
  color:#646770;
  line-height:1.5;
}

.landing_page_v2 h1, .landing_page_v2 h2,
.landing_page_v2 h3, .landing_page_v2 h4,
.landing_page_v2 h5{
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.landing_page_v2 h1{
  font-size:72px;
  line-height:1.2;
  font-weight:700;
}

.landing_page_v2 h2{
  font-size:62px;
  line-height:1.16;
  font-weight:700;
}

.landing_page_v2 h3{
  font-size:48px;
  line-height:1.3;
  font-weight:700;
}

.landing_page_v2 h4{
  font-size:24px;
  line-height:1.6;
  font-weight:700;
}

.landing_page_v2 h5{
  font-size:21px;
  line-height:1.5;
  font-weight:700;
}

.landing_page_v2 h6{
  font-family: "Manrope", sans-serif;
  font-size:20px;
  line-height:1.35;
  font-weight:500;
  font-style: normal;
}

.landing_page_v2 p:last-child{
  margin:0;
}


/* //////////////////// */


.landing_page_v2 form input[type=email], .landing_page_v2 form input[type=file],
.landing_page_v2 form input[type=number], .landing_page_v2 form input[type=password], 
.landing_page_v2 form input[type=search], .landing_page_v2 form input[type=tel], 
.landing_page_v2 form input[type=text], .landing_page_v2 form select, 
.landing_page_v2 form textarea {
  border: 1px solid #707070;
  border-radius: 10px;
  min-height: 50px;
  color: #0B1215;
  outline: none;
}

.landing_page_v2 form  label, .landing_page_v2 form  legend, .landing_page_v2 form .hs-form-field>label {
  font-size: 16px;
  font-weight: bold;
  font-family: Lato,sans-serif;
  color: #0B1215;
  margin-bottom: 10px;
}

.landing_page_v2 form .hs-error-msg , .landing_page_v2 form .hs-error-msgs label {
  color: #ef6b51;
  margin: 0px;
}

.landing_page_v2 form .hs-error-msgs li {
  margin-top: 5px;
}

.landing_page_v2 form .hs-form-field {
  margin-bottom: 10px;
}

.landing_page_v2 form textarea {
  min-height: 153px;
}

.landing_page_v2 form  input[type=checkbox] {
  width: 17px;
  height: 17px;
  border-radius: 10px;
  border: 2px solid #707070 !important;
  outline: none;
  margin-right: 10px;
}

.landing_page_v2 form  .inputs-list span {
  color: #646770;
  font-weight: 400;
}

.landing_page_v2 form .hs-button, .landing_page_v2 form  input[type=submit] {
  background-color: #969736;
  border: 0;
  padding: 17px 55px;
  border-radius: 40px;
  margin-top: 15px;
}


@media(max-width:1024px){
  .landing_page_v2 .flex_row .col4, .landing_page_v2 .flex_row .col3 {
    width: 50%;
  }

  .landing_page_v2 h1{
    font-size:48px;
  }

  .landing_page_v2 h2{
    font-size:46px;
  }

  .landing_page_v2 h3{
    font-size:44px;
  }

}

@media(max-width:992px){
  .gh_blog_post_bottom_section.cm_master_banner .gh_items_wrapper .gh_right_section img {
    width: 100%;
  }
}

@media(max-width:767px){
  .landing_page_v2 .flex_row .col4, .landing_page_v2 .flex_row .col3, .landing_page_v2 .flex_row .col6 {
    width: 100%;
  }

  .landing_page_v2 h1{
    font-size:34px;
  }

  .landing_page_v2 h2{
    font-size:30px;
  }

  .landing_page_v2 h3{
    font-size:26px;
  }

  .landing_page_v2, .landing_page_v2 p{
    font-size:16px;
  }

}

header.gh_landing_header {
  position: fixed;
  z-index: 99;
  width:100%;
  padding: 18px 0;
  box-shadow: 0px 4px 4px 0px #0000001F;
  background-color: #fff;  
  font-family: 'Manrope';
}

header.gh_landing_header .gh_header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


header.gh_landing_header .gh_header_wrapper .gh_header_menu {
  display: flex;
  align-items: center;
}

.gh_landing_header_main {
  position: relative;
  z-index: 99;
}

header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header-btn a.hs-button:hover {
  background-color: #000000;
}

header.gh_landing_header .gh_header_wrapper .gh_header_logo {
  padding-right: 10px;
}

header.gh_landing_header .gh_header_wrapper .gh_header_menu {
  padding-left: 10px;
}

header.gh_landing_header .gh_header_wrapper .gh_header_hamburger {
  display: none;
}

header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header-btn a.hs-button {
  background-color: #949300;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.572;
  padding: 10px 20px;
  text-decoration: underline;
}

header.gh_landing_header .content-wrapper {
  max-width: 1200px;
}

header.gh_landing_header .gh_header_wrapper .gh_header_logo a {
  display: flex;
}

header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li:hover>a, header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li.active>a {
  color: #949300;
}

header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li.active .cm-child-trigger,
header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li:hover .cm-child-trigger {
  color: #949300;
}


.skip-content-btn a{
  display: inline-block;
  left: 90px;
  margin-left: 43px;
  position: absolute;
  text-align: center;
  top: 30px;
  transform: translateY(-250%);
  transition: transform .3s;
  z-index: 99999;
  border: 1px solid;
  color: #ffffff;
  background-color: #969736;
  border-color: #969736;
  border-radius: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 19px;
  padding-right: 19px;
}
.skip-content-btn > a:focus {
  transform: translateY(0%);
  outline: none;
}


@media (min-width: 991px) {
  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul {
    transform: rotate3d(1, 0, 0, -90deg);
    transition: all 0.4s ease-in-out;
    transform-origin: top center;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li {
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>a {
    color: #000000;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
  }


  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li:hover>ul {
    transform: rotate3d(1, 1, 1, 0deg);
    opacity: 1;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul {
    position: absolute;
    top: 128%;
    background-color: #fff;
    left: -40px;
    min-width: 219px;
    padding: 10px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    width: max-content;
    box-shadow: 0px 4px 4px 0px #0000001F;
    opacity: 0;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul:after {
    content: "";
    background-image: url(https://22082204.fs1.hubspotusercontent-na1.net/hubfs/22082204/raw_assets/public/GetixHealth%20Theme%20February2024/images/header_submenu_svg.svg);
    position: absolute;
    top: 0;
    left: -14px;
    width: 14px;
    height: 14px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul:before {
    content: "";
    background-image: url(https://22082204.fs1.hubspotusercontent-na1.net/hubfs/22082204/raw_assets/public/GetixHealth%20Theme%20February2024/images/header_submenu_right.svg);
    position: absolute;
    top: 0;
    right: -14px;
    width: 14px;
    height: 14px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul li a {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: block;
    line-height: 1.715;
    color: #000000;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul li {
    padding: 3px 10px;
    position: relative;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li:before {
    content: "";
    position: absolute;
    bottom: -18px;
    height: 24px;
    width: 100%;
    left: 0;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul ul {
    background-color: #fff;
    min-width: 112px;
    position: absolute;
    top: 0;
    width: max-content;
    transform: translateY(40%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease-in-out;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    border-bottom-left-radius: 13px;
    left: 102%;
    padding: 10px;
    z-index:-1;
    min-width: 150px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul li:hover>ul {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li .cm-child-trigger {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    transition: 0.3s all ease-in-out;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li:hover .cm-child-trigger {
    transform: rotate(180deg);
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li li .cm-child-trigger {
    display: none;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul li:hover {
    background-color: #949300;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li>ul li:hover>a {
    color: #fff;
  }
}

@media (max-width:1200px) and (min-width: 991px) {
  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper>ul>li {
    padding: 10px 13px;
  }
}

@media (max-width: 1500px) {
  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper > ul > li:last-child > ul ul,
  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header_menu_wrapper .hs-menu-wrapper > ul > li:nth-last-child(2) > ul ul {
    left: auto;
    right: 102%;
    border-radius: 13px;
  }
}

@media (max-width:992px){
  header.gh_landing_header .gh_header_wrapper .gh_header_menu {
    display: none;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger {
    width: 40px;
    height: 40px;
    transition-duration: 0.5s;
    position: relative;
    cursor: pointer;
    display: flex;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger .gh_icon-left {
    transition-duration: 0.5s;
    height: 4px;
    width: 15px;
    top: 20px;
    background-color: #000;
    position: absolute;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger .gh_icon-left:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #000;
    content: "";
    top: -10px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger .gh_icon-left:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #000;
    content: "";
    top: 10px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger .gh_icon-right {
    transition-duration: 0.5s;
    position: absolute;
    height: 4px;
    width: 15px;
    top: 20px;
    background-color: #000;
    left: 15px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger .gh_icon-right:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #000;
    content: "";
    top: -10px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger .gh_icon-right:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #000;
    content: "";
    top: 10px;
  }


  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger.menu_open .gh_icon-left {
    transition-duration: 0.5s;
    background: transparent;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger.menu_open .gh_icon-right {
    transition-duration: 0.5s;
    background: transparent;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger.menu_open .gh_icon-left::before {
    transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger .gh_icon-left:before {}

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger.menu_open .gh_icon-left::after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger.menu_open .gh_icon-right::before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_hamburger.menu_open .gh_icon-right::after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu {
    position: absolute;
    top: 128%;
    width: 100%;
    padding: 0;
    background-color: #fff;
    left:0;
  }

  header.gh_landing_header .gh_header_position {
    position: relative;
  }


  header.gh_landing_header .gh_header_wrapper .gh_header_menu .hs-menu-wrapper>ul li {
    padding: 0 15px;
    position: relative;
    padding-right: 0;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .hs-menu-wrapper>ul li .cm-child-trigger {
    position: absolute;
    top: 7px;
    right: 20px;
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .hs-menu-wrapper>ul li a {
    color: #000;
    display: block;
    padding: 10px 20px;
    padding-right: 50px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .hs-menu-wrapper>ul li ul {
    display: none;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header-btn {
    padding: 0 20px;
    margin-top: 10px;
    padding-bottom: 20px;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .gh_header-btn a.hs-button {
    width: 100%;
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .hs-menu-wrapper>ul li .cm-child-trigger.child-open {
    transform: rotate(180deg);
  }

  header.gh_landing_header .gh_header_wrapper .gh_header_menu .hs-menu-wrapper>ul {
    flex-direction: column;
  }

}

@media (max-width:992px) and (max-height:600px){
  header.gh_landing_header .gh_header_wrapper .gh_header_menu {
    height: 73vh;
    overflow: auto;
  }
}
footer.gh_main_footer {
  background-color: #53565A;
  color: #fff;
  border-top: 8px solid #949300;
  position: relative;
  z-index: 9;
  font-family: 'Manrope';
}

footer.gh_main_footer h1,
footer.gh_main_footer h2,
footer.gh_main_footer h3,
footer.gh_main_footer h4,
footer.gh_main_footer h5,
footer.gh_main_footer h6,
footer.gh_main_footer p{
  font-family: 'Manrope';
}

footer.gh_main_footer .gh_footer_copyright a{
  color:#fff;
}

footer.gh_main_footer .content-wrapper {
  max-width: 1200px;
}

footer.gh_main_footer .gh_footer_inner {
  display: flex;
  padding-bottom: 20px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_one {
  width: 20%;
  padding-right: 20px;
  padding-top: 28px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_two {
  width: 20%;
  padding-right: 18px;
  padding-top: 28px;
  padding-left: 20px;
  padding-bottom: 20px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three {
  width: 60%;
  padding-top: 28px;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer.gh_main_footer .gh_footer_inner .gh_column_one .gh_footer_logo a {
  display: inline-flex;
}

footer.gh_main_footer .gh_footer_inner .gh_column_one .gh_footer_logo {
  margin-bottom: 32px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_one .gh_location span {
  display: table-cell;
  vertical-align: top;
  line-height: 1.5;
}

footer.gh_main_footer .gh_footer_inner .gh_column_one .gh_location span i {
  font-size: 22px;
  color: #949300;
  margin-right: 10px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_one .gh_location p {
  font-size: 14px;
  margin: 0;
}

footer.gh_main_footer .gh_footer_inner .gh_column_two {
  background-color: #949300;
  color: #fff;
}

footer.gh_main_footer .gh_footer_inner .gh_column_two .hs-menu-wrapper>ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer.gh_main_footer .gh_footer_inner .gh_column_two .hs-menu-wrapper>ul>li>a {
  font-size: 20px;
  font-weight: 700;
  color: #F1F7F7;
  display: block;
  line-height: 1.2;
  margin-bottom: 12px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_two .hs-menu-wrapper>ul>li ul li a {
  font-family: Manrope;
  font-size: 16px;
  display: block;
  color: #F1F7F7;
}

footer.gh_main_footer .gh_footer_inner .gh_column_two .hs-menu-wrapper>ul>li ul li {
  line-height: 24px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_two .hs-menu-wrapper>ul>li ul li:not(:last-child) {
  margin-bottom: 12px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content {
  display: flex;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col1_menu ul {
  padding: 0px;
  margin:0;
  list-style:none;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col1_menu ul li a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #F1F7F7;
  display: inline-block;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col1_menu ul li {
  margin-bottom: 12px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col1_menu {
  width: 35%;
  padding-right: 20px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col2_menu {
  width: 25%;
  padding-right: 20px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_social_share_main {
  width: 40%;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col2_menu .hs-menu-wrapper>ul>li>a {
  font-size: 20px;
  line-height: 1.2;
  display: inline-block;
  color: #F1F7F7;
  margin-bottom: 12px;
  font-weight: 700;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col2_menu .hs-menu-wrapper>ul>li ul li a {
  display: inline-block;
  font-family: Manrope;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #F1F7F7;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col2_menu .hs-menu-wrapper>ul>li ul li:not(:last-child) {
  margin-bottom: 12px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content {
  margin-top: auto;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form {
  position: relative;
      padding: 0 !important;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=email], 
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=file],
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=number],
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=password], 
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=search], 
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=tel],
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=text],
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form select, 
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form textarea {
  min-height: 60px;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 100%;
  padding: 18px 38px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs-button,
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=submit] {
  border-radius: 4px;
  font-size: 20px;
  line-height: 1.1;
  padding: 18px 38px;
  background-color: #949300;
  color: #fff;
  font-weight: 700;
  border-color: #949300;
  width: 100%;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs-form-field,
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs_error_rollup{
  display: inline-block;
  width: 72%;
  padding-right: 14px;
  margin:0;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs_submit {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 28%;
  vertical-align: top;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form label{
  margin:0;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs-error-msg, 
footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs-error-msgs label{
  color: #ef6b51;
}

footer.gh_main_footer .gh_footer_divider {
  border-bottom: 1px solid #FFFFFF;
}

footer.gh_main_footer  .gh_footer_copyright {
  padding: 20px 0;
}

footer.gh_main_footer .gh_footer_copyright p {
  margin: 0;
  font-family: Manrope;
  font-size: 14px;
  line-height: 1.715;
  text-align: center;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs-error-msgs>li {
  margin-bottom: 0;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs_error_rollup {
  margin-bottom: 20px;
}

footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content {
  margin-bottom: 30px;
}

@media(max-width:1200px){
  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs-button,
  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form input[type=submit] {
    padding: 18px 25px;
  }
}

@media(max-width:1024px){
  footer.gh_main_footer .gh_footer_inner {
    flex-wrap: wrap;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_one {
    width: 50%;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_two {
    width: 50%;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_three {
    width: 100%;
    padding-left: 0;
  }

}

@media(max-width:767px){
  footer.gh_main_footer .gh_footer_inner .gh_column_one, footer.gh_main_footer .gh_footer_inner .gh_column_two {
    width: 100%;
    padding-right: 0;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content {
    flex-wrap: wrap;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col1_menu {
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_col2_menu {
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_top_content .gh_social_share_main {
    width: 100%;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_two {
    padding-right: 20px;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs_submit {
    width: 100%;
    position:relative;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs-form-field {
    padding: 0;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_one {
    padding-bottom: 20px;
  }

  footer.gh_main_footer .gh_footer_inner .gh_column_three .gh_footer_bottom_content form .hs_submit {
    margin-top: 20px;
  }
}