/* --- Theme base styles --- */

/* --- Font Family --- */
/* Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* --- 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));
  }
  
}
/* --- Unknown but removes bottom invisible padding */
.body-wrapper {
  height: 100px;
}


.content-wrapper {
  margin: 0;
  padding: 0;
}

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

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

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

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

/* --- Global components --- */

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

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

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



.button-1 {
  text-decoration: none;
  background-color: #7F9500;
  color: #F5F5F5;
  padding: .5em;
  border-radius: 2px;
  transition: .3s;
}

.button-1:hover {
  background-color: #14395F;
  color: #F5F5F5;
}

.button-2 {
  border-radius: 2px;
  background-color: #7F9500;
  color: #F5F5F5;
  cursor: pointer;
  transition: .3s;
  padding: 0.8125em 1.6875em;
}

.button-2:hover {
  background-color: #14395F;
  color: #F5F5F5;
}


@media (max-width: 768px) {

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

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

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


:root {

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

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

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



a {
  text-decoration: none;
}

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



:root {

  --heading-1-font-family: 'Lato', sans-serif; /* Font family */
  --heading-1-font-weight: 700; /* Font weight for Title Hero */
  --heading-1-font-size: 2em; /* Font size */
  --heading-1-line-height: 1.23; /* Line height (123%) */
  --heading-1-letter-spacing: 0; /* Letter spacing (0%) */

  --heading-2-font-family: 'Lato', sans-serif; /* Font family */
  --heading-2-font-weight: 600; /* Font weight (Strong) */
  --heading-2-font-size: 1.5em; /* Font size */
  --heading-2-line-height: 1.23; /* Line height (123%) */
  --heading-2-letter-spacing: 0.03em; /* Letter spacing (3%) */

  --heading-3-font-family: 'Lato', sans-serif; /* Font family */
  --heading-3-font-weight: 900; /* Font weight (Heavy) */
  --heading-3-font-size: 1.5em; /* Font size */
  --heading-3-line-height: 1.2; /* Line height (120%) */
  --heading-3-letter-spacing: -0.02em; /* Letter spacing (-2%) */

  --heading-4-font-family: 'Lato', sans-serif; /* Font family */
  --heading-4-font-weight: 700; /* Font weight (Bold) */
  --heading-4-font-size: 1.25em; /* Font size */
  --heading-4-line-height: 1.23; /* Line height (123%) */
  --heading-4-letter-spacing: 0; /* Letter spacing (0%) */

  --heading-5-font-family: 'Lato', sans-serif; /* Font family */
  --heading-5-font-weight: 400; /* Font weight (Regular) */
  --heading-5-font-size: 1.25em; /* Font size */
  --heading-5-line-height: 1.34; /* Line height (134%) */
  --heading-5-letter-spacing: 0; /* Letter spacing (0%) */

  --heading-5-bold-font-weight: 600; /* Font weight (Regular) */

  --paragraph-1-font-family: 'Lato', sans-serif; /* Font family */
  --paragraph-1-font-weight: 600; /* Font weight (Strong) */
  --paragraph-1-font-size: 1em; /* Font size */
  --paragraph-1-line-height: 1.23; /* Line height (123%) */
  --paragraph-1-letter-spacing: 0; /* Letter spacing (0%) */

  --paragraph-2-font-family: 'Lato', sans-serif; /* Font family */
  --paragraph-2-font-weight: 400; /* Font weight (Regular) */
  --paragraph-2-font-size: 1em; /* Font size */
  --paragraph-2-line-height: 1.34; /* Line height (134%) */
  --paragraph-2-letter-spacing: 0; /* Letter spacing (0%) */

  --paragraph-2-bold-font-family: 'Lato', sans-serif; /* Font family */
  --paragraph-2-bold-font-weight: 700; /* Font weight (Strong) */
  --paragraph-2-bold-font-size: 1em; /* Font size */
  --paragraph-2-bold-line-height: 1.34; /* Line height (134%) */
  --paragraph-2-bold-letter-spacing: 0; /* Letter spacing (0%) */

  --paragraph-3-font-family: 'Lato', sans-serif; /* Font family */
  --paragraph-3-font-weight: 400; /* Font weight (Regular) */
  --paragraph-3-font-size: 1em; /* Font size */
  --paragraph-3-line-height: 1.4; /* Line height (140%) */
  --paragraph-3-letter-spacing: 0; /* Letter spacing (0%) */

  --btn-1-font-family: 'Lato', sans-serif; /* Font family */
  --btn-1-font-weight: 600; /* Font weight (Strong) */
  --btn-1-font-size: 1em; /* Font size */
  --btn-1-line-height: 1; /* Line height (100%) */
  --btn-1-letter-spacing: 0; /* Letter spacing (0%) */

  --btn-2-font-family: 'Lato', sans-serif; /* Font family */
  --btn-2-font-weight: 700; /* Font weight (Bold) */
  --btn-2-font-size: 0.8125em; /* Font size */
  --btn-2-line-height: 1; /* Line height (100%) */
  --btn-2-letter-spacing: 0; /* Letter spacing (0%) */



  --btn-3-font-family: 'Lato', sans-serif; /* Font family */
  --btn-3-font-weight: 400; /* Font weight (Bold) */
  --btn-3-font-size: 0.75em; /* Font size */
  --btn-3-line-height: 1.34; /* Line height (100%) */
  --btn-3-letter-spacing: 0; /* Letter spacing (0%) */

  --btn-3-bold-font-weight: 700; /* Font weight (Bold) */

  --btn-4-font-family: 'Lato', sans-serif; /* Font family */
  --btn-4-font-weight: 400; /* Font weight (Bold) */
  --btn-4-font-size: 0.875em; /* Font size */
  --btn-4-line-height: 1.34; /* Line height (100%) */
  --btn-4-letter-spacing: 0; /* Letter spacing (0%) */

}

.heading-1 {
  font-family: var(--heading-1-font-family);
  font-weight: var(--heading-1-font-weight);
  font-size: var(--heading-1-font-size);
  line-height: var(--heading-1-line-height);
  letter-spacing: var(--heading-1-letter-spacing);
}

.heading-2 {
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  letter-spacing: var(--heading-2-letter-spacing);
}

.heading-3 {
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  letter-spacing: var(--heading-3-letter-spacing);
}

.heading-4 {
  font-family: var(--heading-4-font-family);
  font-weight: var(--heading-4-font-weight);
  font-size: var(--heading-4-font-size);
  line-height: var(--heading-4-line-height);
  letter-spacing: var(--heading-4-letter-spacing);
}

.heading-5 {
  font-family: var(--heading-5-font-family);
  font-weight: var(--heading-5-font-weight);
  font-size: var(--heading-5-font-size);
  line-height: var(--heading-5-line-height);
  letter-spacing: var(--heading-5-letter-spacing);
}

.heading-5-bold {
  font-family: var(--heading-5-font-family);
  font-weight: var(--heading-5-bold-font-weight);
  font-size: var(--heading-5-font-size);
  line-height: var(--heading-5-line-height);
  letter-spacing: var(--heading-5-letter-spacing);
}

.paragraph-1 {
  font-family: var(--paragraph-1-font-family);
  font-weight: var(--paragraph-1-font-weight);
  font-size: var(--paragraph-1-font-size);
  line-height: var(--paragraph-1-line-height);
  letter-spacing: var(--paragraph-1-letter-spacing);
}

.paragraph-2 {
  font-family: var(--paragraph-2-font-family);
  font-weight: var(--paragraph-2-font-weight);
  font-size: var(--paragraph-2-font-size);
  line-height: var(--paragraph-2-line-height);
  letter-spacing: var(--paragraph-2-letter-spacing);
}

.paragraph-2-bold {
  font-family: var(--paragraph-2-bold-font-family);
  font-weight: var(--paragraph-2-bold-font-weight);
  font-size: var(--paragraph-2-bold-font-size);
  line-height: var(--paragraph-2-bold-line-height);
  letter-spacing: var(--paragraph-2-bold-letter-spacing);
}

.paragraph-3 {
  font-family: var(--paragraph-3-font-family);
  font-weight: var(--paragraph-3-font-weight);
  font-size: var(--paragraph-3-font-size);
  line-height: var(--paragraph-3-line-height);
  letter-spacing: var(--paragraph-3-letter-spacing);
}

.btn-1 {
  font-family: var(--btn-1-font-family);
  font-weight: var(--btn-1-font-weight);
  font-size: var(--btn-1-font-size);
  line-height: var(--btn-1-line-height);
  letter-spacing: var(--btn-1-letter-spacing);
}

.btn-2 {
  font-family: var(--btn-2-font-family);
  font-weight: var(--btn-2-font-weight);
  font-size: var(--btn-2-font-size);
  line-height: var(--btn-2-line-height);
  letter-spacing: var(--btn-2-letter-spacing);
}



.btn-3 {
  font-family: var(--btn-3-font-family);
  font-weight: var(--btn-3-font-weight);
  font-size: var(--btn-3-font-size);
  line-height: var(--btn-3-line-height);
  letter-spacing: var(--btn-3-letter-spacing);
}

.btn-3-bold {
  font-family: var(--btn-3-font-family);
  font-weight: var(--btn-3-bold-font-weight);
  font-size: var(--btn-3-font-size);
  line-height: var(--btn-3-line-height);
  letter-spacing: var(--btn-3-letter-spacing);
}


.btn-4 {
  font-family: var(--btn-4-font-family);
  font-weight: var(--btn-4-font-weight);
  font-size: var(--btn-4-font-size);
  line-height: var(--btn-4-line-height);
  letter-spacing: var(--btn-4-letter-spacing);
}



/* Mobile Styles */
@media (max-width: 768px) {

}


/* --- Utilities --- */
/* common-Macro */
/* --- Macro CSS --- */






h1, h2, h3, h4, h5, h6, p, span, button, a, a.button, button, form, input { font-family: "Lato", sans-serif; }

/* Global Footer Menu Style */
.global-footer-menu ul { display: inline-block; list-style-type: none; }
.global-footer-menu ul li { float: left; }
.global-footer-menu ul li a { display: block; text-align: center; padding: 16px; }

.form-section { padding: 60px 0; }
.form-main input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) { outline: none; border: 1px solid #ccc; background: #fff; height: 50px; padding: 0 20px; font-family: 'Open Sans', Arial, Helvetica, sans-serif; font-size: 16px; width: 100%; }
.form-main input[type=checkbox], .form-main input[type=radio] { width: auto; height: auto; } 
.form-main textarea { padding: 15px 20px; height: 100px; outline: none; border: 1px solid #ccc; background: #fff; height: 110px; width: 100%;  }
.form-main input[type=submit], .form-main button { height: auto; width: auto; border: none; cursor: pointer; background: #bdb49d; font-size: 18px; line-height: 24px; font-weight: 700; padding: 8px 20px; color: #fff; display: inline-block;  transition: all .4s ease-in-out; }
.form-main input[type=submit]:hover , .form-main button:hover { background-color: #003A63; }

.form-main select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url(https://45557316.fs1.hubspotusercontent-na1.net/hubfs/45557316/images/down-arrow.svg); background-position:  right center; background-repeat: no-repeat;  background-size: 36px auto; height: 50px; line-height: 50px; width: 100%; padding: 0 50px 0 20px !important; border: 1px solid #D3D3D3; } 
.form-main .hs-form-field > label { padding-bottom: 10px; display: block; }

.form-main ul.hs-error-msgs { margin: 0; padding: 0; list-style: none; float: left; width: 100%; }
.form-main .hs-form .input { margin: 0; }
.form-main .hs-form .hs-form-field { padding: 0 0 15px; }
.form-main .hs-form fieldset.form-columns-2 .input , .form-main .hs-form fieldset.form-columns-1 .input { margin-right: 0 }
.form-main .hs-form fieldset.form-columns-2 .field { padding: 0 0 10px 0 }
.form-main .hs-form fieldset.form-columns-2 .field:first-child { padding: 0 10px 10px 0; }
.form-main .hs-form fieldset.form-columns-3 .field { padding: 0 0 10px 10px }
.form-main .hs-form fieldset.form-columns-3 .field:first-child { padding: 0 10px 10px 0; }
.form-main .hs-form fieldset.form-columns-3 .field:first-child + .field { padding: 0 5px 10px; }
.form-main .hs-form fieldset .hs-input { width: 100% !important; }
.form-main .hs-form fieldset { max-width: none; }
.form-main .hs-form fieldset input[type="checkbox"], .row-fluid  .hs-form fieldset input[type="radio"] { width: auto !important; }
.form-main ul.inputs-list { margin: 0; padding: 5px 0; list-style: none; }

.form-main .inputs-list .hs-form-checkbox-display , .form-main .inputs-list .hs-form-booleancheckbox , .form-main .inputs-list li.hs-form-radio { display: block; padding: 0 0 8px 25px; position: relative; }
.form-main .inputs-list input[type="checkbox"] , .form-main .inputs-list input[type="radio"] { position: absolute; left: 0; margin: 0; top: 0; opacity: 0; width: 20px; height: 20px; }
.form-main .inputs-list input[type="radio"] { top: 3px; }
.form-main .inputs-list input[type="checkbox"] + span { line-height: 22px; position: relative; display: block; }
.form-main .inputs-list input[type="checkbox"] + span:before  { position: absolute; left: -25px; top: 0;  content: ''; width: 20px; height: 20px; border: 1px solid #dadada; color: #fafafa; background: #fafafa; }
.form-main .inputs-list input[type="checkbox"]:checked + span:before { background: url(https://45557316.fs1.hubspotusercontent-na1.net/hubfs/45557316/images/check-icon.svg) no-repeat center center #003A63; color: #fff; border-color: #000; }
 
.form-main .inputs-list input[type="radio"] + span:before { position: absolute; left: -2px; top: 2px;  content: ''; width: 20px; height: 20px; border: 1px solid #dadada;  background: #fafafa; border-radius: 100%; }
.form-main .inputs-list input[type="radio"]:checked + span:after { position: absolute; left: 2px; top: 6px;  content: ''; width: 12px; height: 12px; border-color: #003A63; background: #fff;  border-radius: 100%; }
.form-main .field > label { font-size: 18.5px; }
 
@media  (max-width: 400px), (max-device-width: 480px) and (min-device-width: 320px) {
    
  .form-main .hs-form fieldset.form-columns-2 .field { padding: 0 0 10px 0 }
  .form-main .hs-form fieldset.form-columns-2 .field: first-child { padding: 0 0 10px 0 }
  .form-main .hs-form fieldset.form-columns-3 .field { padding: 0 0 10px  }
  .form-main .hs-form fieldset.form-columns-3 .field: first-child { padding: 0 0 10px 0; }
  .form-main .hs-form fieldset.form-columns-3 .field: first-child + .field { padding: 0 0 10px; }
  
}


.wrapper { max-width: 1050px; width: 100%; margin: 0 auto; padding: 0 20px; }