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

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

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

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
/* @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    */
/*****************************************/
.body-wrapper.hs-content-id-156989501977.hs-landing-page.hs-page form .input {
    margin-bottom: 15px !important;
}
/* global form */
.global-form-style form fieldset.form-columns-2, .global-form-style form fieldset.form-columns-1 
{
    max-width: 100% !important;
}

.global-form-style h3 
{
    display: none;
}

.global-form-style form 
{
    border: 0 !important;
}

.global-form-style form input, .global-form-style form select, .global-form-style form textarea 
{
    padding: 10px 10px; 
    width: 100% !important;
}

.Free-Ac-form {
    text-align: center;
    margin-bottom: 50px;
}

/* end */


/* Lp Global form css start */

.body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .lp-global-style,
.body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .lp-global-style
{
    background-color: #fff !important;
    border-radius: 1rem !important;
}

.body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .fre-heading h2,
.body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .fre-heading h2

{
    font-size: 33px;
    margin-bottom: 10px;
}

.body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .bhn-imgs img, 
.body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .bhn-imgs img  
{
    width: 300px !important;
}
 .lp-global-style form .hs-input.hs-fieldtype-intl-phone {
    width: 100% !important;
}  

.lp-global-style form .hs-input.hs-fieldtype-intl-phone select  
{
    margin-right: 6px !important;
    height: 46px !important;
    padding: 7px !important;
}
.lp-global-style form .hs-input.hs-fieldtype-intl-phone {
    display: flex !important;
    align-items: baseline !important;
}

.test-slider-rt.lp-img.form-main.lp-global-style 
{
    background-color: #fff !important;
}

.test-slider-rt.lp-img.form-main.lp-global-style form .input input {
    background-color: #ffffff !important;
    border: 0!important;
    border-radius: 1px!important;
    border: 1.5px solid #e3e3e3 !important;
    border-radius: .25rem !important;
}

.body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .lp-global-style form .input input,
.body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .lp-global-style form .input input
{
    background-color: #ffffff !important;
    border: 0 !important;
        border-radius: .25rem !important;
    Border: 2px solid #e3e3e3 !important;
}

.lp-global-style form .input input 
{ 
    outline-color: #0078b9 !important;
}

.body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .lp-global-style form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox span p,
.body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .lp-global-style form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox span p 
{
    font-size: 14px !important;
}

.lp-global-style form 
{
    background-color: unset !important;
}

.form-main form .input 
{
    margin-bottom: 0 !important;
}

.lp-global-style form .input input, .global-form-style form input, .global-form-style form select, .global-form-style form textarea 
{
    background-color: #fff !important; 
    border: 1px solid #d1d6dc !important;
}

.lp-global-style form fieldset.form-columns-2 .hs-form-field 
{
    margin-bottom: 20px !important;
    position: relative;
}

.lp-global-style form fieldset.form-columns-1 .hs-form-field 
{
    margin-bottom: 20px !important;
  position: relative;
}

.lp-global-style form ul.no-list.hs-error-msgs.inputs-list li 
{
    list-style: none !important; 
}
.lp-global-style form ul.no-list.hs-error-msgs.inputs-list li label.hs-error-msg.hs-main-font-element {
    font-size: 11px !important;
    color: red !important;
    position: absolute !important;
    bottom: -17px !important;
}
.test-slider-rt.lp-img.form-main.lp-global-style {
    border-radius: 1rem !important;
}

.body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .lp-global-style .lp-img,
.body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .lp-global-style .lp-img
{ 
    border-radius: 1rem !important; 
}
.lp-global-style form fieldset.form-columns-1 .legal-consent-container {
    margin-top: 10px !important;
}

.body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .lp-global-style form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox span p,
.body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .lp-global-style form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox span p
{
    font-size: 13px !important;
}

.body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .white-popup,
.body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .white-popup,
{
    background: unset !important; 
}

.lp-global-style form ul.no-list.hs-error-msgs.inputs-list {
    padding: 0 !important;
    margin: 0 !important;
}

 

/* end */


/* unpacked css start */
.body-wrapper.hs-content-id-176859854735.hs-landing-page.hs-page .lp-form 
{
     height: auto !important; 
}
.left-col .text-wrap ul li+li {
    text-wrap: pretty !important;
}

.body-wrapper.hs-content-id-176859854735.hs-landing-page.hs-page .lp-form .iframe_wrapper 
{
     padding-bottom: 42% !important; 
}

.body-wrapper.hs-content-id-165358337679.hs-landing-page.hs-page .footer-wrap {
    text-align: center;
}
.ltg-content-hd h2 {
    font-weight: 200 !important;
    font-size: 28px !important;
    margin-top: -5px !important;
    margin-bottom: 12px !important;
}
.body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .lp-form .iframe_wrapper {
     
    padding-bottom: 10px !important; 
}
.body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .lp-form { 
    height: auto !important; 
}
.body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .bootom-logo-sect {
    display: flex;
    justify-content: left !important;
    margin: 0 !important;
    max-width: 88% !important;
    padding-top: 54px !important;
}
.body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .ltg-content-hd h1 {
    font-size: 36px !important;
}
.body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .left-col img {
    margin-top: 5px;
}
.body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .left-col .text-wrap {
    display: none;
}
.body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .subtext h3 {
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 25px;
}
 
.footer-row {
    text-align: center;
}
 .ltg-content-hd h1 span {
    color: #0078b9;
    font-weight: 600;
    background-image: url(https://6207938.fs1.hubspotusercontent-na1.net/hubfs/6207938/background-img.png);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 100% 34%;
    line-height: 100%;
}

.lp-footer-v1 {
    display: none;
}
.body-wrapper.hs-content-id-1.hs-landing-page.hs-page .footer-row {
    text-align: center;
}
.mobile-v {
    display: none;
}
a.green-btn {
    background-color: #2A8809;
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 400 !important;
    display: inline-flex;
    align-items: center;
   -webkit-appearance: none !important;
   -moz-appearance: none !important;
   appearance:  none !important;
}
.two-col-btn {
    padding-top: 56px;
}
.legal-consent-container .hs-richtext p 
{
     font-size: 12px !important;
}

.thany-main 
{ 
    padding-right: 40px;
    padding-left: 40px;
}

.jtmr-forms .submitted-message p span 
{
    color: #fff !important;
}
.lp-img form .legal-consent-container ul.inputs-list {
    padding: 0;
  margin-top: 0;
}
.lp-img form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox {
    list-style: none;
}

.left-cont.col-6 
{
    display: none;
}
.eb-formt.form-main form ul.inputs-list li.hs-form-booleancheckbox {
    list-style: none;
}
.eb-formt.form-main form ul.inputs-list {
    padding: 0 !important;
}
.lp-img form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox span p {
    font-size: 14px !important;
}
.form-main form .legal-consent-container ul.inputs-list input {
    margin-top: 0 !important;
      margin-right: 10px !important;
}
.lp-img form fieldset.form-columns-2, .lp-img form fieldset.form-columns-1 {
    max-width: 100%;
}
.hs-content-id-130746531393 .form-main form fieldset.form-columns-2 
{
    max-width: 100%;
}

.hs-content-id-130746531393 .form-main form fieldset.form-columns-1 
{
    max-width: 100%;
}

.hs-content-id-130746531393 .form-dtr 
{ 
    max-width: 800px !important;
}


.form-main form ul.inputs-list.multi-container li.hs-form-radio input 
{
    margin-bottom: 10px !important;
}

.form-main form .input ul.inputs-list.multi-container li.hs-form-radio label.hs-form-radio-display 
{
    display: flex;
    align-items: center;
}

.form-dtr form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox 
{
    list-style: none;
}

.form-dtr form .legal-consent-container ul.inputs-list 
{
    padding: 0 !important;
}

.form-main form ul.inputs-list label input 
{
    width: 25px !important;
    height: 25px !important;
    margin-right: 6px !important;
}

.cust-btn 
{
    display: none !important;
}

div#formup 
{ 
    position: unset !important; 
    height: unset !important; 
    margin-bottom: 40px !important; 
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
      justify-content: center !important;
}

/* end */


html 
{
  scroll-behavior: smooth;
}

.eb-formt.form-main .submitted-message p 
{
    font-size: 30px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    text-align: center !important;
}

.eb-formt.form-main .submitted-message 
{
    background: unset !important;
    color: #fff !important;
}


div#formup .form-heading h3 {
  margin-bottom: 0;
  line-height: normal;
  text-transform: capitalize;
}
div#formup .form-heading 
{ 
  width: 80% !important; 
}

.e-book-content p 
{
  line-height: normal;
}

.tps-space ul li 
{
  padding-bottom: 15px;
}

.tps-space ul {
  padding-left: 20px;
  margin-bottom: 2px;
}
ul strong i {
  padding-right: 5px !important;
}
.content-innert 
{
  padding-bottom: 20px;
}

.card:nth-child(5) .card-text p 
{
  text-transform: capitalize;
}

.video-module .card-body p {
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}

.card-text h3 
{
  font-size: 20px;
  margin-bottom: 5px !important;
  margin-top: 15px !important;
  color: #0078b9;
}

.video-module .card-body 
{
  min-height: 130px;
}

.row-fluid-wrapper.row-depth-1.row-number-5.dnd_area-row-2-padding.dnd-section {
  padding: 0 !important;
}
.right-cont .form-dtr form .hs-input.hs-fieldtype-intl-phone select#phone_ext-8a373d5f-d6b6-4314-8604-479d874fd5be {
  margin-top: 5px !important;
}

.hs-content-id-130746531393 .content-innert h2 
{
  line-height: normal;
  color: #000000 !important;
  margin-bottom: 10px;
}
.hs-content-id-130746531393 .your-exprt .exprt-heading.text-center h2
{
  color: #000000 !important;
}

.list-gtm ul li img {
  position: absolute;
  left: -35px;
  width: 28px;
  top: 0;
}
.right-cont .form-dtr input#phone-8a373d5f-d6b6-4314-8604-479d874fd5be {
  width: 68% !important;
}

.hs-content-id-130746531393  div#formup {
  height: auto !important;
  position: unset !important;
}

.list-gtm ul li {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000000 !important;
  position: relative;
}

.hs-content-id-130746531393 a.lp-btn-green {
  font-size: 18px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
}
.banner-item img {
  width: 100%;
}
.content-innert div ol li 
{
  margin-bottom: 10px;
}
div#formup {
  align-items: baseline;
  display: flex;
  position: sticky;
  top: 0;
  height: 85vh;
  margin-top: 0;
}
.cust-gt a {
  border: 1px #eef2f5;
  border-radius: 6px;
  color: #fff;
  font-family: Poppins,sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  padding: 15px 53px;
  text-decoration: none;
  text-transform: none;
  background-color: #53AC45 !important;
}

.cust-btn 
{
  display: none;
}

.thanky-heading h2 
{
  text-align: center;
  color: #fff;
  line-height: normal;
}

.thank-you 
{
  margin-top: -33px;
  padding-top: 10px;
  height: 720px;
  display: flex;
  align-items: center;
}

.icon-heading h2, .video-heading h2, .exprt-heading h2, .why-heading h2, .logo-heading h2, .res-lp-cont h2, .content-section-mt h1, .master-head h2, .member-heading h1, .latest-heading h1, .master-heading h2 {
  font-weight: 400;
  color: #164ea1;
}
.mobile-banner {
  display: none;
}
.logo-tto-img img {
  width: 80%;
}
.form-heading h2 {
  font-size: 32px;
  line-height: inherit;
}
.form-heading {
  text-align: center;
  width: 50%;
  margin: 0 auto;
  padding-bottom: 20px;
}
.left-cont {
  padding-right: 50px;
}
.form-dtr form .actions {
  text-align: center;
}
.form-dtr form {
  border: 0 !important;
}
.form-dtr form .input input {
  padding: 10px;
  margin-bottom: 15px;
  width: 100% !important;
}
.form-dtr .form-title {
  display:none;
}
.form-dtr {
  box-shadow: 0px 2px 18px 0px #0078b9;
  padding: 1px 35px 30px;
  margin-top: 20px;
}

/* popup form */
.main-img-dtp {
  display: flex;
  justify-content: center;
  margin-top: -90px;
}
.main-img-dtp img {
  width: 80px;
  background-color: #fff;
  border-radius: 100%;
  border: 3px solid #f9a01b;
  margin: 0 5px;
  box-shadow: 0 0 4px 4px rgba(0,0,0,.15);
}
.mobile-vert {
  display: none;
}
.white-popup {
  position: relative;
  background: #FFF;
  padding: 40px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
  transition: 1s all;
  border: 3px solid #f9a01b;
  border-radius: 20px;
}
.meet-content p span {
  text-transform: capitalize;
}
.hs-content-id-129343971147 .lp-footer {
  background-color: #0078b9 !important; 
}
.form-heading-tp h3 {
  margin-top: 10px;
  text-align: center;
  color: #164EA1;
}
.mfp-bg {}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.form-popup-start .form-title 
{
  display: none !important;
}
/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}


/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/* end */

.banner-logo-t {
  margin-bottom: 40px;
}

.mobile-version-review 
{
  display: none;
}

.body-wrapper.hs-content-id-124711606927.hs-landing-page.hs-page header.lp-header {
  display: none;
}
.body-wrapper.hs-content-id-124711606927.hs-landing-page.hs-page .expr-style {
  background-color: #164EA1; 
}
.body-wrapper.hs-content-id-124462258189.hs-landing-page.hs-page .vid-head-cp .head-vid {
  margin-bottom: 40px;
}
.body-wrapper.hs-content-id-124462258189.hs-landing-page.hs-page .vid-head-cp {
  display: flex;
  flex-direction: column-reverse;
}
.button-grp {
  padding-top: 40px;
}
.ban-headr {
  text-align: center;
  line-height: normal;
  max-width: 70%;
  margin: 0 auto;
}
.video-test {
  padding-top: 40px;
}
.card-ly2 
{
  margin-top: -120px;
}
.lp-footer 
{
  background-color: #0078B9;
  padding: 5px 0;
  color: #fff;
}

.single-vid-heading h2, .exprt-heading h2, .review-heading h2, .video-head h2, .ban-headr h3, .tst-heading h2 
{
  color: #164EA1 !important;
}


.left-review 
{
  width: 80%;
  max-width: 80%;
  flex: 0 0 80%;
}
.right-revie {
  width: 20%;
  max-width: 20%;
  flex: 0 0 20%;
}

a.lp-btn-green 
{
  border-radius: 100px;
  background: #3E9645;
  padding: 15px 35px;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 23px;
}

.card-gpt-main {
  margin: 20px;
  padding: 30px;
  z-index: 7;
  border-radius: 32px;
  border: 3px solid #F9A01B;
  background: #FFF;
  box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.15);
}

.card-lts-heading h3 {
  color: #164EA1;
  text-align: center;
  font-family: Poppins;
  margin-bottom: 10px;
}

.card-gpt-main 
{
  text-align: center;
}

.form-main form input 
{
  width: 100%;
}

.line-style 
{
  width: 80%;
  height: 3px;
  background-color: #F9A01B;
  margin: 0 auto;
}

.banner5-main 
{
  padding-top: 60px;
}

.ban-5 
{
  background-size: cover !important;
}

.ban-5 
{
  padding-bottom: 240px;
}

.ban-5-logo 
{
  padding-top: 70px;
  padding-left: 40px;
}

.baner-content 
{
  padding-right: 30px;
}

.baner-content h2 
{
  color: #fff;
}

.baner-content h1 {
  color: #fff;
  font-size: 38px;
}

.form-main .form-title {

  display: none;
}
.head-from h3 {
  margin-top: 0;
}
.head-from form ul.inputs-list.multi-container li label.hs-form-radio-display {
  display: flex;
}
.head-from form ul.inputs-list.multi-container li {
  list-style: none;
}
.head-from form ul.inputs-list.multi-container {
  padding: 0 !important;
}
.form-main form .input {
  margin-bottom: 15px;
}
.form-main form select {
  height: 44px;
  padding: 0 !important;
}
.form-main form .input ul.inputs-list.multi-container li.hs-form-radio {
  list-style: none;
  padding-bottom: 10px;
}
.form-main form .input ul.inputs-list.multi-container {
  padding: 0;
}
.head-from form .input input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}
.form-main form input {
  padding: 10px;
  margin-top: 5px;
}
span.sptd {
  padding-left: 7px;
}
.body-wrapper.hs-content-id-124455026553.hs-landing-page.hs-page .th-content { 
  max-width: 855px;
  margin: 0 auto;
}
.frm-heading h3 {
  margin-bottom: 20px;
}

.head-from form .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
  margin-bottom: 20px;
}

.frm-heading p {
  font-size: 25px;
  font-style: italic;
  letter-spacing: 1px;
}

.frm-heading {
  max-width: 85%;
  margin: 0 auto;
}
header.gt-lp-header {
  padding: 30px 0;
  position: fixed;
  width: 100%;
  background-color: white;
  top: 0;
  z-index: 77;
}
header.gt-lp-header {
  padding: 30px 0;
}

a.lp-btn {
  background: linear-gradient(90deg,rgb(226,25,40) 0%,rgb(226,25,40) 100%)!important;
  border-radius: 50px;
  color: #fff;
  padding: 10px 50px;
}
.align-right {
  display: flex;
  justify-content: end;
}
.video-heading {
  max-width: 980px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.two-right.col-6 {
  display: flex;
  align-items: center;
}

hr.dotted-border {
  border-top: 4px dotted #0078ba;
  width: 100px;
  border-bottom: 0;
}

.contr-img img 
{
  width: 82px;
  margin: 0 auto;
  display: block;
}
.spkr-item {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.spk-main .et_pb_text_inner h2 {
  color: #333;
}
.spk-main {
  padding-top: 50px;
}
.vide-heading {
  text-align: center;
  padding-top: 80px;
}
.cdt-v {
  max-width: 800px;
  margin: 0 auto;
  border: 5px solid;
}
.vdt-mp .et_pb_text_inner h2 {
  margin-bottom: 0;
}
.vdt-mp .et_pb_text_inner h2 strong {
  font-size: 41px;
}
.vdt-mp {
  padding-bottom: 40px;
  padding-top: 40px;
}
.video-btn {
  padding-top: 30px;
}

.content-list .contg-content p {
  margin-bottom: 0;
}
.content-main.d-flex {
  margin-top: -80px;
}
.content-list 
{
  background-repeat: repeat;
  background-image: url(https://freedomthroughproperty.com.au/storage/2022/03/light-grey-texture-background.jpg)!important;
  background-size: cover;
  padding-bottom: 80px;
}
.ftr-sdd {
  color: #fff;
}
.ftr-sdd a {
  color: #fff;
}
.ftr-section {
  background-color: #0c71c3;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}
.ftr-text {
  color: #fff;
  padding: 20px 0;
}
.vid-btn {
  padding-top: 40px;
}
.tetm-video {
  margin: 20px;
  border: 5px solid;
}
.tetm-heading {
  padding-bottom: 40px;
}
.tetm-section .et_pb_text_inner h2 {
  color: #333;
  margin: 0;
}
.sprk-btn {
  padding-top: 40px;
}
.tetm-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-list .et_pb_text_inner strong 
{
  color: #333;
  font-weight: 700;
  font-size: 23px;
}


.contr-style {
  font-size: 22px;
  background-color: #FFFFFF;
  position: relative;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  padding-top: 39px!important;
  padding-right: 37px!important;
  padding-bottom: 83px!important;
  padding-left: 37px!important;
  box-shadow: 6px 6px 18px 0px rgba(0,0,0,0.3);
  margin: 5.5%;
}
.style-line-card {
  width: 80%;
  margin: 0 auto;
  height: 2px;
  background-color: #F9A01B;
}
.content-gt .content-section p {
  margin: 0 !important;
}

.card-style:hover .icons-vid img {
    opacity: 2;
    transition: opacity 1s ease;
}

.icons-vid img {
    position: absolute;
    width: 95px;
    padding: 10px 12px;
    border-radius: 5px;
    top: 18%;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transform: scale(1.1);
}
.card-style
{ 
  position: relative; 
}
.light-class h2 {
  font-weight: 500;
}
.body-wrapper.hs-content-id-124711606927.hs-landing-page.hs-page .frd-right.col-6 {
  display: none;
}
.body-wrapper.hs-content-id-124711606927.hs-landing-page.hs-page .frd-left.col-6 {
  width: 100% !important;
  text-align: center;
  max-width: 100%;
  flex: 0 0 100%;
}
.body-wrapper.hs-content-id-1.hs-landing-page.hs-page .head-vid .hs-video-container, .vjs-poster 
{
  border-radius: 10px !important;
}
.body-wrapper.hs-content-id-124013740369.hs-landing-page.hs-page .multi-item.col-4 {
  width: fit-content !important;
}
.exprt-cont-g p {
  margin-top: 15px;
  line-height: initial;
}
.exp-img img {
  height: 350px !important;
  object-fit: cover;
}
.body-wrapper.hs-content-id-124013740369.hs-landing-page.hs-page .multi-item.col-4 img 
{
  object-fit: unset !important;
  width: 100%;
  height: 92px !important;
}

.sec-btn {
  margin-top: 60px;
}

.btn {
  background-color: rgb(84 172 70);
  padding: 12px 30px;
  color: #fff !important;
  border-radius: 40px;
}
.exp-img {
  padding-bottom: 10px;
}
.exprt-cont-g h3 {
  font-size: 20px;
}
.exp-img img {
  border-radius: 10px;
}
.exprt-content {
  color: #fff;
  text-align: center;
}
.exprt-content h3 {
  color: #fff;
  margin-bottom: 5px;
}
.expr-style {
  background-color: #0078B9;
  padding: 30px 30px;
  margin: 20px;
  border-radius: 20px;
}
.text-center {
  text-align: center;
}
.twl-listing.two-content ul {
  padding-top: 0;
  margin: 0;
}

.twl-listing p {
  margin-bottom: 5px;
  color: #164ea1;
  font-size: 19px;
}
.two-content ul li:last-child {
  padding: 0;
}
.two-heading {
  text-align: center;
}

.section-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px;
}
.designation {
  color: #164ea1;
  font-weight: 600;
  margin-top: -20px;
  margin-bottom: 10px;
}
.multi-list.d-flex {
  justify-content: center;
}
.col-4 {
  width: 22%;
}
.expt-mp:nth-child(even) .expt-right-pt {
  padding-left: 40px;
}
.pd-gl 
{
  padding-top: 100px;
  padding-bottom: 0px;
}
.hs-content-id-121736799923 .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row form select {
  font-size: 18px;
  padding: 8px 10px;
}
.ort-img img {
  width: 600px;
}
ul.inputs-list.multi-container input {
  width: 28px !important;
  height: 20px !important;
}
.review-mp.d-flex {
  padding-top: 10px;
}
.review-rft { 
  display: flex;
  align-items: center;
}
.review-feedback {
  height: 205px;
  overflow: hidden;
}
.form-main form {
  border: 0 !important;
}
.tst-heading {
  text-align: center;
}
.tst-heading {
  padding-bottom: 40px;
}
.counter-list-main {
  width: 22%;
  max-width: 22%;
  flex: 0 0 22%;
}
.heading h2 {
  color: #000000;
}
.right-count {
  text-align: left;
  padding-left: 5px;
}
.cont-item-inner {
  padding: 0px 10px;
}
.content-item.d-flex {
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
}
.content-sec p {
  font-size: 16px;
}
.cont-imp img {
  width: 33px;
}
.right-count p {
  color: #fff;
  font-size: 15px;
  margin: 0;
}
.left-count img 
{
  width: 80px;
}

.right-count h5 {
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-size: 30px;
}
.main-icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.counter-list-main {
  display: flex;
  align-items: center;
}
.hs-content-id-121736799923 .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row form label span {
  font-weight: 500;
  color: #fff;
}

.hs-content-id-121736799923 .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row form form select 
{
  font-size: 17px;
  padding: 7px;
}

.hs-content-id-121736799923 .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row form form .hs-form-required {
  color:#ffff;
}
.ort-content {
  margin: 15px;
}

.ourt-contet {
  margin-top: 10px;
  border-top: 4px solid #fff;
  padding-top: 20px;
}
.hs-content-id-121384777348 .meetings-iframe-container .UISection__ScrollWrapper-sc-1unuxfx-0.YaJZm.is--module.namespaced-hack-section.UICardWrapper__Outer-w93po7-0.ktBvuI.private-card.private-card__wrapper.date-picker-section.m-bottom-0.flex-grow-1 {
  background: #ffffffe6 !important;
  border-radius: 4px !important;
}
.hs-content-id-121736799923 .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row form form label {
  color:#ffff;
  font-weight:900;
}

.hs-content-id-121736799923 .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row form .hs-button {
  border-radius: 25px;
}
.hs-content-id-121736799923 .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row form input {
  padding: 10px 15px;
}
.hs-content-id-121736799923 form input 
{
  border: 0 !important;
  border-radius: 26px !important;
  width: 100% !important;
  padding: 8px 10px;
}
.cont-imp {
  background-color: #E5ECF3;
  display: inline-flex;
  padding: 8px 8px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.card-content-heading {
  padding-bottom: 40px;
}

.content-sec h5 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}
.expr-style {
  height: 100%;
}

.item-img {
  padding: 10px;
}
.cnt-heading h3 {
  font-size: 22px;
}

.card-content {
  background-color: #F6F9FB;
  padding-top: 65px;
  padding-bottom: 65px;
}

.two-content {
  padding-right: 40px;
}
.network-main.d-flex {
  flex-direction: row-reverse;
}
.content-heading {
  padding-right: 30px;
}
.cnt-heading h1 {
  font-size: 45px;
}

.hs-content-id-121736799923 form label {

  font-size: 16px !important;
}

}
.hs-fieldtype-intl-phone.hs-input {
  border-color: #ffff !important;
  border: 0 !important;
}


.hs-content-id-121736799923 form {
  border: 0 !important;
  padding: 25px;
  background-color: #ffffff78 !important;
  border-radius: 25px !important;
  backdrop-filter: blur(10px) !important;
  background-color: rgba(255, 255, 255, 0.5);
}
.testimonial-widget_1665733392855 {
  padding-top:40px !important;
}
.blockquote {
  color:white;
}


.form-main .actions input.hs-button.primary.large 
{
    width: 100%;
    background: #53ac45;
    cursor: pointer;
    font-size: 18px;
}

.form-main form fieldset.form-columns-1 input {
  width: 100% !important;
}
header.lp-header {
  position: absolute;
  width: 100%;
  padding-top: 25px;
  z-index: 77;
}
.form-main form ul.inputs-list.multi-container input {
  width: 30px !important;
}
form  {
  background-color: #fff !important;
  border-color: #ffffffc7 !important;
  border: solid !important;
  border-radius: 5px !important;
}
.form-main form select {
  padding: 13px 2px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.hs-input {
  border-radius: 5px !important;


}

form input[type='submit'], form .hs-button {
  background-color: #53AC45 !important
}


.social-share ul li svg {
  width: 25px;
  fill: #fff;
}
.menu-ftr {
  display: none;
}.col-3 {
  width: 33%;
  max-width: 33%;
  flex: 0 0 33%;
  justify-content: center;
  display: flex;
}

.two-content ul li {
  list-style: none;
  position: relative;
  padding-bottom: 20px;
}

.two-content ul li:after {
  background: url(https://6207938.fs1.hubspotusercontent-na1.net/hubfs/6207938/Website%20Icon/tick%20%281%29.webp) no-repeat;
  content: "";
  display: inline-block;
  height: 30px;
  left: -35px;
  position: absolute;
  top: 0;
  width: 30px;
}
.two-content ul {
  padding-top: 20px;
}
.social-share ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: end;
}
.social-share {
  text-align: end;
}
.lft-content p 
{
  font-size: 18px;
  color: #fff;
  margin: 0;
}
.two-content ul li b {
  color: #164ea1;
}
.item-img img {
  height: 80px !important;
  object-fit: contain;
  margin: 0 auto;
}
.menu-ftr ul li a {
  color: #fff;
  font-size: 18px;
  padding-right: 10px;
}

.social-share ul li {
  list-style: none;
  padding-left: 15px;
}
.frd-footer 
{
  background: #0078B9;
  padding-top: 25px;
  padding-bottom: 15px;
}

.meetings-iframe-container iframe 
{
  height: 680px !important;
}

.meetings-iframe-container 
{
  position: relative;
}

.content-gt li {
  list-style: none;
  position: relative;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  min-height: 55px;
}
.content-gt ul {
  padding-left: 60px;
}
.icons-img img {
  width: 40px;
}
.icons-img {
  position: absolute;
  left: -55px; 
}

.meeting-main:before 
{
  background-color: #f9a01b;
  position: absolute;
  content: "";
  height: 85%;
  width: 66%;
  left: 40px;
  right: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  top: 0px;
}

.meeting-main 
{
  position: relative;
}

.UISection__ScrollWrapper-sc-1unuxfx-0
{
  background: #ffffffe0 !important;
  border-radius: 10px !important;
}

.meeting-content 
{
  margin-top: -100px;
}

.meeting-ban {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.meet-logo 
{
  padding-bottom: 40px;
}

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

.container 
{
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}
.container-2 {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 10px;
}
.align-center {
  display: flex;
  align-items: center;
}
.col-6 {
  width: 50%;
  max-width: 50%;
  flex: 0 0 50%;
}
.lp-footer p , .lp-footer a {
  color: #fff;
}
.lp-footer a:hover {
  color: #fff;
  text-decoration: underline !important;
}

/* banner layout 1 start */

.banner-module 
{
  padding-top: 60px;
}
.banner-module {
  background-position: top!important;
  background-repeat: no-repeat;
  padding-bottom: 95px;
  padding-top: 95px;
  position: relative;
}



.col-lg-6 
{
  flex: 0 0 auto;
  width: 50%;
}

.wd-section-inner {
  flex: 0 0 28%;
  max-width: 28%;
  width: 28%;
}
.wd-section-d {
  display: flex;
  flex-wrap: wrap;
}
.form-tmt ul {
  display: flex;
  font-size: 16px;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0;
}
.white-bg-style {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(18,26,52,.14);
  padding: 45px;
}
.form-hd {
  text-align: center;
}
.wd-sec-style {
  background: linear-gradient(180deg,#fff,hsla(0,0%,100%,0));
  border-radius: 24px;
  height: 148px;
  padding: 15px;
  text-align: center;
  width: 144px;
}
.botm-content p {
  font-size: 12px;
  font-weight: 500;
}
.wid-star ul li {
  list-style: none;
}
.wid-star ul {
  justify-content: space-around;
  margin-bottom: 4px;
}
.wid-star ul {
  display: flex;
  padding: 0;
}
.counter-mp {
  background-color: #164EA1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.text-gpt p {
  color: #000f30;
  font-size: 14px;
  margin-bottom: 5px!important;
  font-weight: 600;
  padding-bottom: 0;
  padding-top: 5px;
}
.expt-mp:nth-child(even) {
  flex-direction: row-reverse;
}
.expt-right {
  width: 60%;
  max-width: 60%;
  flex: 0 0 60%;
  display: flex;
  align-items: center;
}
.expt-left {
  width: 40%;
  flex: 0 0 40%;
  max-width: 40%;
}
/* end */


/* circle module start */
.mb-mobile-vr {
  display: none;
}
.nt-graphn p {
  margin: 0 0 -5px;
  width: 135px;
  font-size: 14px;
}
.left-count {
  padding-right: 10px;
}
.nt-graph.gp4 .nt-graphn p {
  width: 200px;
  font-size: 20px;
  font-weight: 600;
}
.right-count h5 {
  font-weight: 700;
}
.nt-graph-hed h4 {
  margin: 0;
  font-size: 18px;
  text-align: center;
  width: 150px;
}
.network {
  padding-bottom: 215px;
  padding-top: 250px; 
}

.net-start-center .grp-style {
  height: 236px;
  width: 236px;
}
.nt-graph {
  flex: 0 0 33%;
  max-width: 33%;
  width: 33%;
}
.nt-graph.gp4 
{
  margin: 0 auto;
  padding-bottom: 60px;
  padding-top: 60px;
  position: relative;
  z-index: 77;
}
.net-start-top .nt-graph:first-child .bg-rp-img {
  bottom: -5px;
  position: absolute;
  right: 10px;
  rotate: -60deg;
}
.net-start-top .nt-graph:nth-child(2) .bg-rp-img {
  bottom: -60px;
  display: block;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  rotate: 0deg;
  text-align: center;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.grp-style:hover {
  background-color: #164ea1;
  color: #fff;
}
.grp-style:hover .nt-graph-hed {
  display: none;
}
.grp-style:hover .nt-graphn {
  display: block;
  text-align: center;
}
.nt-graphn {
  display: none;
}
.net-start-btm .nt-graph:nth-child(3) .bg-rp-img {
  left: 0;
  position: absolute;
  rotate: -240deg;
  top: 16px;
}
.net-start-btm .nt-graph:nth-child(2) .bg-rp-img {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  rotate: -120deg;
  rotate: 180deg;
  text-align: center;
  top: 16px;
  top: -62px;
}
.net-start-btm .nt-graph:first-child .bg-rp-img {
  position: absolute;
  right: 0;
  rotate: -120deg;
  top: 16px;
}
.net-start-top .nt-graph:nth-child(3) .bg-rp-img {
  bottom: -10px;
  left: 15px;
  position: absolute;
  rotate: 60deg;
}
.grp-style {
  align-items: center;
  background: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  box-shadow: 11px 11px 22px rgba(0,0,0,.08);
  display: flex;
  height: 180px;
  justify-content: center;
  margin: 0 auto;
  width: 180.5px;
}
.net-start, .nt-graph {
  position: relative;
}
.net-start-btm .nt-graph:nth-child(3) {
  bottom: -46px;
  position: absolute;
  right: 22px;
}
.net-start-btm .nt-graph:nth-child(2) {
  bottom: -172px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
}
.nt-graph {
  flex: 0 0 33%;
  max-width: 33%;
  width: 33%;
}
.net-start-top .nt-graph:nth-child(3) {
  position: absolute;
  right: 16px;
  top: -35px;
}
.net-start-top .nt-graph:nth-child(2) {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -170px;
}
.net-start-top .nt-graph:first-child {
  left: 10px;
  position: absolute;
  top: -25px;
}
.net-start-top {
  display: flex;
  flex-wrap: wrap;
}
.ntw-lft-img img {
  margin-bottom: 40px;
  width: 180px;
}
.net-start-center .nt-graph-hed h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  width: 205px;
}
.net-start-center .nt-graph-hed {
  text-align: center;
}
.net-start-btm {
  display: flex;
  flex-wrap: wrap;
}
.net-start-btm .nt-graph:first-child {
  bottom: -42px;
  left: 20px;
  position: absolute;
}
.grp-style {
  align-items: center;
  background: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  box-shadow: 11px 11px 22px rgba(0,0,0,.08);
  display: flex;
  height: 180px;
  justify-content: center;
  margin: 0 auto;
  width: 180.5px;
}
.network-left {
  flex: 0 0 40%;
  max-width: 40%;
  width: 40%;
}
.ntw-content {
  padding-left: 35px;
}
.ntw-lft {
  margin-top: -175px;
}
.network-right {
  flex: 0 0 60%;
  max-width: 60%;
  width: 60%;
}
/* End */

@media screen and (max-width: 2500px) 
{
 
  .thank-you 
  {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding-top: 400px !important;
    padding-bottom: 400px !important;
    height: auto !important;
  }
  
}


@media screen and (max-width: 1980px) 
{
  
 
   .eb-mobile-gt-form 
  {
    padding-bottom: 100px !important;
  }
  
  .eb-formt.form-main 
  { 
    padding-top: 100px !important;
  }
  .thank-you 
  {
    height: 1020px !important; 
  }
  
}


@media screen and (max-width: 1930px) 
{ 
  .thank-you 
  {
    height: 1160px !important; 
  }  
}
  @media screen and (max-width: 1920px) 
  { 
    .thank-you 
    {
      height: 1200px; 
    }

  }

@media screen and (max-width: 1919px) 
{ 
  .thank-you 
  {
   height: 1105px !important; 
  } 
  
}
 
@media screen and (max-width: 1800px) 
{ 
 .thank-you { 
    padding-top: 280px !important; 
}
  
}

@media screen and (max-width: 1600px) 
{ 
  
}


  @media screen and (max-width: 1400px) 
  { 
    .thank-you 
    {
      height: 680px !important; 
    }

  }
  @media screen and (max-width: 1300px) 
  { 
    .ltg-content-hd h1 {
    font-size: 32px !important; 
}

  }





  @media only screen and (min-width: 768px) {
    #zip-2ee1f228-cf9a-4ed3-b2fd-06555d8d035d  {
      width: 55% !important;
      float: right;

    }



    #label-zip-2ee1f228-cf9a-4ed3-b2fd-06555d8d035d {
      padding-left: 88px;
    }


  }

  @media screen and (max-width: 991px) 
  {
    
    .lp-global-style form .hs-form-field 
    {
    margin-bottom: 0 !important;
    position: relative !important;
    }
    
    
    .lp-img form .input input 
    {
    width: 100% !important;
    }
    
    .icons-vid img
    { 
    opacity: 0.7 !important; 
   }
    
    .gtpr h3 
    { 
    font-size: 16px !important;
    }
    
    .btnrs-sec { 
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
    
    .btrns-content 
    {
    padding-right: 0 !important;
    }
    
    .fli-lfte img 
    {
    margin-bottom: -28px!important;
    margin-top: -30px!important;
    }
     
    .fpi-sld 
    {
    flex-direction: column-reverse!important;
    }
    
    .fpi-main-sld:before 
    {
    top: 0!important;
    }
    
    .slide 
    {
    flex: 0 0 50%!important;
    max-width: 50%!important;
    width: 50%!important;
    }
    
    .flip-right 
    {
    margin-right: 0 !important;
    }
    
    .flip-right 
    {
    width: 100% !important;
    }
    
    .fpi-sld 
    { 
    flex-wrap: wrap !important;
    }
    
    .desktop-v 
    {
    display: none;
    }
    .video-section .owl-nav {
    display: none!important;
}
    
    .fr-url 
    {
    margin-bottom: -45px!important;
    }
    
    .fred-imgsd 
    {
    margin-bottom: 0!important;
    padding-bottom: 20px!important;
    padding-top: 25px!important;
    }
    
    .fred-content {
    padding-left: 0px !important;
}
    
    .numbr-list-t {
    width: 100% !important; 
    max-width: 100% !important;
    flex: 0 0 100% !important;
          margin-bottom: 25px !important;
}
    .fred-invest {
    margin-top: 30px !important; 
}
    .numbr-list-t:last-child {
    margin-bottom: 25px !important;
}
    .banenr-10-mb-heading h1 {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
      font-size: 32px !important;
}
    .numbr-btn {
    padding-top: 0 !important;
}
    .free-book {
    padding-top: 40px !important;
}
    
    .slid-logomb .owl-nav, .test-slider-rt .owl-nav 
    {
    display: none !important;
}
    
    .trt-video video 
    {
    width: 100% !important;
    }
    
    .ftre-meun h4 
    {
    display: none !important;
    }
    
    .copy-menu ul 
    { 
    justify-content: center !important;
    }
    
    .get-syd .stye 
    { 
    margin-bottom: 12px !important;
    }
    .display-none {
    display: none !important;
}
   .copy-menu ul li {
    padding-left: 12px !important;
    padding-right: 12px !important;
     width: 33% !important;
         text-align: center !important;
}
    .WHY-FREEDOM\?.mobile-v {
    padding-top: 40px !important;
}
    .innert-lt { 
    justify-content: center !important;
    padding-bottom: 10px !important;
}
    
    .get-syd 
    {
    padding-bottom: 30px !important;
    }
    .fitr-content {
    padding-top: 40px !important;
}
    
    .tret-form { 
    padding-bottom: 0 !important;
}
    
    a.green-btn { 
    color: #fff !important;
    padding: 15px 20px !important; 
    font-size: 12px !important;
}
    .header-item-line { 
    display: none !important;
}
    
    
    .hre-logo img {
    width: 161px !important;
}
    .ebook-10-main.d-flex { 
    flex-wrap: unset !important;
}
    .meet-fnr {
    display: none !important;
}
    
    .fre-rt.col-6 {
    display: none !important;
}
    .fre-content h2 {
    margin-top: 0 !important;
    padding-right: 0 !important;
}
    
    
    
    .mobile-v 
    {
    display: block !important;
    }
    .ebook-10-main img {
    width: 160px !important;
}
    .tr-imge 
    {
    text-align: center !important;
    }
    
    .banenr-10-mb-heading 
    {
    text-align: center !important;
    }
    
    .choose-fr .choose-listing li 
    {
      flex-wrap: unset !important;
      gap: 10px !important;
    }
    
    .thany-main 
    {
    padding-right: 0 !important;
    padding-left: 0 !important;
   }
    .content-list {
      padding-top: 10px;
    }
    div#formup {
      align-items: baseline;
      display: unset !important;
      position: unset !important;
      top: 0;
      height: 0 !important;
      margin-top: 0;
    }

    .content-innert div:empty 
    {
      display: none !important;
    }

    .bottom-img 
    {
      padding-top: 0 !important;
    }

    .chs-lt img 
    {
      width: 60px !important;
      padding: 14px !important;
    }
    .network-right 
    {
      padding-top: 190px;
    }

    .banner-v3 
    {
      padding-left: 0 !important;
      padding-right: 0 !important;
      padding-top: 20px !important;
      padding-bottom: 20px !important;
    }

    .gtm-subhead 
    {
      padding-bottom: 0 !important;
    }

    .head-from 
    {
      padding: 30px !important;     
    }

    .meeting-main:before 
    {
      width: 82%;
    }
    .row-fluid-wrapper.row-depth-1.row-number-17.dnd_area-row-5-background-image.dnd_area-row-5-hidden.dnd-section.dnd_area-row-5-max-width-section-centering.dnd_area-row-5-padding div#hs_cos_wrapper_module_16874060122265 p span {
      font-size: 28px !important;
    }
    .row-fluid-wrapper.row-depth-1.row-number-17.dnd_area-row-5-background-image.dnd_area-row-5-hidden.dnd-section.dnd_area-row-5-max-width-section-centering.dnd_area-row-5-padding div#hs_cos_wrapper_module_16874060122265 {
      padding: 10px 0 20px 0 !important;
    }
    .social-share ul li {

      padding-left: 10px;
      padding-right: 10px;
    }
    .social-share ul 
    {
      justify-content: center; 
    }
    .ourt-contet p {
      line-height: inherit !important;
      margin-bottom: 10px;
    }
    .frd-conent {
      text-align: center;
      padding-bottom: 15px;
    }
    .meet-content h2 span {
      font-size: 35px !important;
    }

    .meeting-ban {
      padding-top: 40px;
    }
    .meeting-mp 
    {
      text-align: center;
    }
    .col-6 
    {
      flex: 0 0 100%;
      max-width: 100%;
      width: 100%;
    }

    .meeting-main:before
    {
      display:none;
    }
    .network-right {
      flex: 0 0 100%;
      max-width: 100%;
      width: 100%;
    }
    .network-left {
      flex: 0 0 100%;
      max-width: 100%;
      width: 100%;
    }

  }



  @media screen and (max-width: 768px) 
  {
    .ltg-content-hd h2 {
    font-weight: 200 !important;
    font-size: 16px !important;
    margin-top: -17px !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    text-wrap: pretty !important;
}
    .subtext h3 {
    text-wrap: pretty !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
}
    .subtext {
    text-align: center !important;
    padding-top: 10px !important;
}
 
    .legal-consent-container .hs-richtext p {
    font-size: 10px !important;
    margin-top: 20px !important;
}
    .numbr-text {
    padding: 0 !important;
}
    .footer-logo 
    {
    padding-bottom: 20px !important;
    }
    
    .jtmr h1 
    { 
    margin-bottom: 10px !important;
    }
    
    .legal-consent-container .hs-form-booleancheckbox-display > span, .legal-consent-container .hs-form-booleancheckbox-display > span p 
    {
    margin-left: 0 !important;
    } 
   
    .eb-formt.form-main form .input 
    {
    margin-right: 0 !important;
    }
    
    .form-main form .hs-form-field {
    margin-bottom: 0 !important;
}
   .form-main form .legal-consent-container .hs-form-booleancheckbox-display > span, .legal-consent-container .hs-form-booleancheckbox-display > span p {
    margin-left: 5px !important;
}
    
     .eb-mobile-gt-form 
  {
    padding-bottom: 40px !important;
  }
  .eb-formt.form-main {
    padding-top: 40px !important;
}
   
    
   .eb-mobile-gt-form 
   {
    padding-bottom: 0px !important;
   }
  
    .masterclass-text-form 
  {
    padding: 0px 0 10px !important;
  }
  
  .left-col img 
  {
    margin-bottom: 20px !important;
  }
    
  .h2, h2 
  {
    font-size: 28px !important;
  }

    .e-book-content h1 
    {
      font-size: 35px !important;
      margin-bottom: 10px !important;
    }

    .e-book-banner 
    { 
      padding-top: 35px !important; 
    }

    .-e-book-img {
      padding-right: 0 !important;
    }
    .e-book-banner:after { 
      height: 100% !important; 
    }
    .ban-headr 
    { 
      max-width: 100%; 
    }
    .e-book-banner:after { 
      height: 100% !important; 
    }
    .e-book-right {
      width: 100% !important;
      text-align: center;
    }
    .e-book-left {
      width: 100% !important;
      text-align: center !important;
    }
    .body-wrapper.hs-content-id-136529429791.hs-landing-page.hs-page .tps-space.mb-half {
      padding-bottom: 1px !important;
    }

    .body-wrapper.hs-content-id-136529429791.hs-landing-page.hs-page .tps-space ul {

      margin-bottom: -15px !important;
      padding-top: 0px !important;
    }

    .form-dtr form .hs_submit.hs-submit input.hs-button.primary.large 
    {
      width: 100% !important;
      margin-bottom: 0px !important;
    }

    .body-wrapper.hs-content-id-129343971147.hs-landing-page.hs-page .form-dtr 
    {
      margin-bottom: 40px !important;
    }

    strong.next-line {
      display: block;
      padding-top: 15px;
    }

    .fancybox-content 
    {
      padding: 34px!important;
      width: 100% !important;
    }

    .content-innert 
    {
      padding-bottom: 0px !important;
    }
    .thany-main { 
    overflow: hidden !important;
}
    .thank-you.thank-v2 {
    padding-top: 60px !important;
}

    .thanky-heading h2 
    {
      font-size: 24px !important;
      padding: 18px !important;
    }

   .thank-you {
    height: 100% !important;
}
    .logo-str {
      padding-top: 0px !important;
    }
    .thankt-calender div
    {
      margin: 0 !important;
    }
    .banner-item {
      display: none;
    }
    .mobile-banner {
      display: block;
    }
    .cont-fr {
      flex-direction: column-reverse;
    }

    div#test-popup .form-heading 
    {
      width: 100% !important; 
      padding-bottom: 20px;
    }
    .body-wrapper.hs-content-id-129343971147.hs-landing-page.hs-page .lp-footer {
      background-color: #0078B9;
      padding: 0 !important;
      color: #fff;
    }
    .left-cont {
      padding-right: 0 !important;
    }
    .form-dtr {
      margin-top: 15px;
      margin-bottom: 0px; 
      padding: 20px !important; 
    }
    .bnr-cp-v 
    {
      padding-bottom: 40px !important;
    }

    .et_pb_section_0.et_pb_section 
    {
      padding-top: 20px !important; 
    }

    br:after {
      content: ' ' !important;
      -webkit-appearance: none !important;
      -moz-appearance: none !important;
      appearance: none !important;
    }

    .et_pb_text_inner {
      width: 100% !important;
      margin: 0 auto !important;
    }

    .et_pb_row 
    {
      width: 90% !important; 
      margin: 0 auto !important;
    }

    .free-webinar-content h3 {
      color: #000 !important; 
    }
    .et_pb_text_inner h1 
    {
      color: #000 !important; 
      font-size: 32px !important; 
    }

    .banner-logo-dt 
    {
      display: none;
    }

    .banner-logo-dt.mobile-vert 
    {
      display: block;
    }

    br {
      content: ' ' !important;
      -webkit-appearance: none !important;
      -moz-appearance: none !important;
      appearance: none !important;
    }

    .mobile-version-review img {
      width: 100% !important;
    }

    .right-revie {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%;
    }
    .left-review {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%;
    }

    .et_parallax_bg_phone_exist  
    {
      background-image: url(https://6207938.fs1.hubspotusercontent-na1.net/hubfs/6207938/Website%20Icon/funky-lines-copyV2.png) !important;

    }
    .banner-logo-dt img 
    {
      width: 290px !important;
    }
    .play-button-wrapper 
    {
      position: absolute;
      left: 0 !important;
      bottom: 74px !important;
      width: 100% !important;
      height: auto !important;
      pointer-events: none !important;
      right: 0 !important;
      display: flex !important;
      justify-content: center !important;
    }

    .ban-5-logo 
    {
      padding-top: 60px;
      padding-left: 0;
      text-align: center;
    }

    .choose-listing ul li:last-child img 
    {
      width: 155px !important;
    }
    .baner-content {
      padding-right: 0;
    }
    .label-itm {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .section-btn {
      padding-top: 45px;
      padding-bottom: 60px;
    }
    .ban-5 {
      padding-bottom: 140px;
    }
    .banner-module 
    {
      padding-top: 50px !important; 
    }
    .bnt-cent {
      text-align: center;
    }
    .card {
      flex: 0 0 100% !important;
      max-width: 100% !important;
      width: 100% !important;
    }
    .your-exrt 
    {
      padding-top: 30px;
    }

    .twl-listing.two-content 
    {
      padding-top: 20px;
    }

    .item-img 
    { 
      padding-bottom: 0 !important;
    }

    .body-wrapper.hs-content-id-124013740369.hs-landing-page.hs-page .multi-item.col-4 
    {
      width: 100% !important;
    }

    .body-wrapper.hs-content-id-124013740369.hs-landing-page.hs-page .multi-item.col-4 img {
      object-fit: contain !important;
      width: 100% !important;
    }

    .expr-style 
    { 
      margin: 5px !important; 
    }
    .col-4 {
      width: 100%;
      margin: 0 auto;
      text-align: center;
    }

    .h3, h3 
    {
      font-size: 28px !important;
    }

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

    .testimonal 
    {
      padding-bottom: 25px;
    }

    .tst-heading 
    {
      padding-bottom: 0;
      padding-top: 40px;
    }

    .col-lg-6 
    {
      flex: 0 0 auto;
      width: 100%;
    }

    .wd-section-inner 
    {
      flex: 0 0 100%;
      max-width: 100%;
      width: 100%;
    }
    .content-heading {
      padding-right: 0;
    }
    .cnt-heading h1 {
      font-size: 40px;
    }
    .test-mp:before 
    {
      height: 82% !important; 
      top: 15px;
    }
    .white-bg-style 
    {
      padding: 30px 30px;
    }
    .two-content 
    {
      padding-right: 10px;
      padding-left: 10px;
    }

    .card-content-heading 
    {
      padding-bottom: 0px;
    }

    .wd-section-inner 
    {
      flex: 0 0 100%;
      max-width: 100%;
      width: 100%;
    }

    .botm-content p 
    {
      margin-bottom: 7px;
    }

    .banner-module 
    {
      padding-bottom: 30px; 
    }

    .nt-graph.gp4 .nt-graphn p {
      width: 100%;
      font-size: 28px;
    }
    .bg-rp-img {
      display: none !important;
    }
    .nt-graph {
      width: 100% !important;
      max-width: 100% !important;
      flex: 0 0 100%;
      margin: 10px 0;
    }
    .nt-graph.gp4 .nt-graph-hed h4 {
      display: none;
    }
    .left-count { 
      width: 100% !important;
    }
    .right-count {
      text-align: center !important;  
    }
    .right-count {
      text-align: center;
    }
    .counter-list-main {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%;
    }
    .counter-list-main {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      text-align: center;
    }
    .nt-graph.gp4 {
      display: none;
      padding-bottom: 0;
      padding-top: 0; 
    }
    .nt-graphn p {
      width: 90%;
      font-size: 14px;
      text-align: center;
      margin: 0 auto;
    }
    .nt-graph-hed h4 {
      font-size: 20px;
      text-align: center;
      width: 90%;
      margin: 0 auto;
    }
    .nt-graphn {
      display: block;
    }
    .network-right {
      padding-top: 0;
    }
    .bg-rp-img {
      display: none;
    }
    .col-3 
    {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%; 
    }
    .net-start-top .nt-graph:first-child, .net-start-top .nt-graph:nth-child(2), .net-start-top .nt-graph:nth-child(3), .net-start-btm .nt-graph:first-child, .net-start-btm .nt-graph:nth-child(2), .net-start-btm .nt-graph:nth-child(3) 
    {
      position: unset; 
    }
    .expt-left {
      text-align: center;
    }
    .nt-graph .grp-style {
      width: 100%;
      height: auto !important;
      border-radius: 0 !important;
      padding: 20px;
    }
    .expt-right {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%;
      display: flex;
      align-items: center;
      text-align: center;
    } 
    .expt-left {
      width: 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .expt-mp:nth-child(even) .expt-right-pt 
    {
      padding-left: 0;
    }

    .network 
    {
      padding-top: 210px;
      background-color: #F6F9FB;
      padding-top: 210px;
      padding-bottom: 40px;
    }
    .ntw-content {
      padding-left: 0;
    }
    .ntw-lft-img {
      display: none;
    }
    .card-content 
    {
      padding-top: 30px;
      padding-bottom: 10px;
    }

    .content-img 
    { 
      padding-top: 0;    
      padding-bottom: 20px;
    }
    .wd-sec-style {
      display: flex;
      flex-wrap: wrap;
      width: 100% !important;
      justify-content: space-evenly;
      align-items: center;
      height: auto;
      margin-bottom: 0;
    }
    .text-gpt p {

      padding-top: 0;
    }
    .body-wrapper.hs-content-id-130746531393.hs-landing-page.hs-page .form-dtr form .input input { 
      margin-bottom: 0 !important; 
    }
    .tps-space 
    {
      padding-bottom: 15px !important;
    }
    .form-tps.form-main .iframe_wrapper {
      height: 0 !important;
      padding-bottom: 0 !important;
      padding-top: 0 !important;
      position: unset !important;
    }
    .body-wrapper.hs-content-id-129343971147.hs-landing-page.hs-page .form-heading 
    {
      width: 70% !important;
    }
    .form-dtr .embed_container {
      display: inline-block !important;
      height: 100%  !important;
      position: relative !important;
      width: 100% !important;
    }

    .mb-none 
    {
      padding-bottom: 0 !important;
      margin-bottom: -20px !important;
    }
    .mb-half {
      padding-bottom: 2px !important;
    }


    .form-dtr 
    { 
      padding-top: 25px !important;
      padding-bottom: 35px !important;
    }
    
    .jtmr h1 { 
    font-size: 22px !important; 
}
    .label-jr { 
    padding-top: 10px !important;
}
    .label-jr p {
    margin-bottom: 15px !important;
}
    .label-jr {
    padding: 0 10px;
}
    .thank-you.thank-v2 .container {
    margin: 0 10px !important;
}
    .confir-logo.text-center.d-flex {
    flex-wrap: unset !important;
}
   .confir-logo {
    max-width: 100% !important; 
}
  }


  @media screen and (max-width: 481px) 
  {
    
    body .mc-form form .legal-consent-container ul.inputs-list span p a
    {
      font-size: 11px !important;
    }
    
    
    .body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .number-head h2, .video-headingg.text-center h2,
    .body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .number-head h2, .video-headingg.text-center h2 
    {
    font-size: 21px!important; 
    }
    
    .bns-btn a { 
    font-size: 16px !important;
    padding: 15px 30px;
}
    .test-slider-rt.lp-img.form-main.lp-global-style select 
    {
    font-size: 14px !important;
    }
    .global-form-style form fieldset.form-columns-2, .global-form-style form fieldset.form-columns-1 {
    max-width: 100% !important;
    position: relative;
}
    
    .lp-global-style form .input input, .global-form-style form input, .global-form-style form select, .global-form-style form textarea 
    { 
    font-size: 16px !important;
    }
    
    .body-wrapper.hs-content-id-178688607024 .numbr-btn.text-center,
    .body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .numbr-btn.text-center
    {
    margin-top: 10px;
    }
    
 .lp-global-style form .hs-input.hs-fieldtype-intl-phone select, .test-slider-rt.lp-img.form-main.lp-global-style .hs-input.hs-fieldtype-intl-phone select 
    {
    height: 40px !important;
    border: 1.5px solid #e3e3e3 !important;
    padding: 9px 10px !important;
   -webkit-appearance: none !important;
      -webkit-appearance: none;
   -moz-appearance: none !important;
    appearance: none !important;
   font-size: 16px !important;
}
    .body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .banenr-10-mb.mobile-v.lp-btnr-dtg .banenr-10-mb-heading h1,
    .body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .banenr-10-mb.mobile-v.lp-btnr-dtg .banenr-10-mb-heading h1
    {
    color: #006dad;
    font-size: 21px!important;
    text-wrap: balance!important;
    }
    
    .body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .number-head h2, .video-headingg.text-center h2,
    .body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .number-head h2, .video-headingg.text-center h2
    {
    font-size: 21px!important;
    text-wrap: balance!important;
}
    
 .body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page   .body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .video-galary,
    .body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .video-galary
    {
    background-color: #e6e7e8!important;
    margin-top: 15px!important;
    padding-bottom: 40px!important;
    padding-top: 25px!important;
}
    .numbr-text p { 
    margin-bottom: 0 !important;
}
    .number-head h2, .video-headingg.text-center h2 {
    font-size: 21px!important;
    text-wrap: balance!important;
}
    .section-mpts h2 { 
    margin-bottom: 10px !important;
}
    .body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .lp-global-style form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox span p,
    .body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .lp-global-style form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox span p
    {
    font-size: 11px !important;
    }
    
    .body-wrapper.hs-content-id-178688607024.hs-landing-page.hs-page .mfp-container,
    .body-wrapper.hs-content-id-180463294858.hs-landing-page.hs-page .mfp-container
    { 
    background-color: unset !important; 
    } 
    
    div#test-popup button.mfp-close 
    { 
    right: 12px !important;
    top: 10px !important; 
    }
    
    .lp-global-style form ul.no-list.hs-error-msgs.inputs-list li {
    margin: 0 !important;
    list-style: none !important;
}
    .lp-global-style form .hs_error_rollup ul.no-list.hs-error-msgs.inputs-list {
    display: none !important;
}
   .test-slider-rt.lp-img.form-main.lp-global-style form .input input {
    margin-bottom: 2px !important;
    padding: 9px 10px !important;
}
    .lp-global-style form fieldset.form-columns-2 .hs-form-field {
    margin-bottom: 00px !important;
    position: relative;
}
    
    .lp-global-style form .legal-consent-container {
    margin-top: 25px !important;
}
     .lp-global-style form .input {
    margin-bottom: 12px !important;
}
  .lp-global-style form ul.no-list.hs-error-msgs.inputs-list li label.hs-error-msg.hs-main-font-element 
    {
    font-size: 9px !important;
    color: red !important;
    position: absolute !important;
    bottom: -14px !important;
    left: 3px !important;
    margin: 0 !important;
    }
    
    .top-bar a { 
    font-size: 12px !important;
}
    .body-wrapper.hs-content-id-176859854735.hs-landing-page.hs-page .mobile-form {
     
    margin-bottom: 25px !important;
}
    .body-wrapper.hs-content-id-176859854735.hs-landing-page.hs-page .header-logo {
    padding-bottom: 5px !important;
}
    .ltg-content-hd .mobile-v br {
    display: block !important;
    line-height: normal !important;
}
    .ltg-content-hd .mobile-v h2 {
    font-size: 20px !important;
    line-height: normal !important;
    margin-top: -10px !important;
    text-wrap: pretty !important;
}
    .body-wrapper.hs-content-id-176859854735.hs-landing-page.hs-page .ltg-content-hd h1 {
    line-height: 50px !important;
}

.body-wrapper.hs-content-id-176859854735.hs-landing-page.hs-page .left-col .subtext h3 {
    margin-top: 0 !important;
}
    .body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .lp-form .lp-form-heading {
    padding-bottom: 0 !important;
    text-align: center;
}
    .header-logo {
    padding: 20px 0 !important;
}
    .body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .subtext h3 {
    font-size: 18px !important;
    text-align: center !important;
}
    .header-logo img {
    width: 179px !important;
}
    .body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .top-bar a {
    color: #fff;
    font-size: 12px !important;
}
    .body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .masterclass-text-form .masterclass-row .bootom-logo-sect {
    padding-top: 0 !important;
    margin: 0 auto !important;
}
  .body-wrapper.hs-content-id-169025646645.hs-landing-page.hs-page .ltg-content-hd h1 {
    font-size: 18px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-bottom: 10px !important;
}
    .ltg-content-hd 
    {
    margin-bottom: 15px !important;
    }
    
    .lp-form form .hs-fieldtype-radio ul.inputs-list li label { 
    gap: 7px !important;
}
    .left-col .text-wrap ul li 
    {
    font-size: 16px !important; 
    }
    
    .lp-form .lp-form-heading h4 
    { 
    font-size: 20px !important;
    }
    
    .lp-form 
    {
    padding: 20px 20px 40px 20px !important;
    }    
    
    .fred-invest 
    {
    margin-top: 0px !important;
    }
    .lp-form form ul.inputs-list label span p {
    margin-left: 10px !important;
    font-size: 12px !important;
}
    .lp-form form ul.inputs-list label span p 
    {
    font-size: 11px !important;
    }
    
    .lp-form form .hs-fieldtype-radio ul.inputs-list li span 
    {
    font-size: 15px !important;
    }
    .ltg-content-hd h1 {
    font-size: 19px!important;
}
    .container-2 { 
    padding: 0 20px !important;
}
    .mc-form form .hs_submit.hs-submit input.hs-button.primary.large {
     
    font-size: 15px !important;
}
    .fpi-main-sld { 
    padding-top: 10px !important;
}
    .video-sect-1, .video-sect-2, .video-sect-3 {
    margin-bottom: 15px;
    box-shadow: -1.399999976158142px 3.198981761932373px 16.399999618530273px 0 #00000026;
}
    .ftr-10-lp {
    margin-top: 25px !important;
}
   .section-tr-tr p {
    margin-bottom: -5px !important;
    line-height: normal;
    font-size: 16px !important;
}
  .section-vonte h2 {
    margin-bottom: 0 !important;
    font-size: 20px !important;
    line-height: normal !important;
}
    .section-tr-tr {
    padding-bottom: 10px !important;
    padding-top: 0 !important;
}
    .btrns-content p 
    {
    font-size: 14px !important; 
    }
    .mfp-content .mc-form form ul.inputs-list span p {
    font-size: 12px!important;
    margin-left: 0 !important;
}
    .lp-img form .legal-consent-container ul.inputs-list li.hs-form-booleancheckbox span p {
    font-size: 11px !important;
    margin-left: 0 !important;
}
    .mc-form { 
    padding: 15px 10px !important;
}
     
    .btrns-content h2 
    {
    font-size: 23px !important;
    margin-bottom: 10px !important;
    }
    
    .btnrs-sec .btrns-content 
    {
    margin-bottom: 30px !important;
    }
    
    .btnrs-sec 
    {
    text-align: center !important;
    }
    
    .body-wrapper.hs-content-id-165358337679.hs-landing-page.hs-page div#section7 .video-headingg.text-center 
    {
    margin-bottom: 35px !important;
    }
    
    .body-wrapper.hs-content-id-165358337679.hs-landing-page.hs-page div#section7 {
    padding-top: 45px !important;
}
    .evook-ltrs, .evook-ltrst { 
    display: contents !important;
}
    .two-col-btn {
    padding-top: 10px !important;
    margin-bottom: 30px !important;
}
    .confir-video { 
    border-radius: 20px !important; 
}
    .confi-heading h3 {
    line-height: normal;
    font-size: 20px !important;
    margin-bottom: 10px !important;
}
    .confir-logo img {
    width: 165px !important;
    padding: 0 18px !important;
    display: flex !important;
}
    .confirma-main .confir-lt.col-6 {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
}
    
    .confirmatio {
    padding-top: 30px !important;
    padding-bottom: 30px !important; 
}
    .con-top-vact {
    display: none !important;
}
    
    .video-galary .owl-dots button.owl-dot {
    background-color: #c2cdd1 !important;
    color: #003b4d !important;
    padding: 5px !important;
    border: 1px !important;
    margin: 0 5px;
}
.video-section .owl-dots {
    text-align: center !important;
    margin-bottom: 40px !important;
}
.video-galary .owl-dots button.owl-dot.active {
    background-color: #005f95 !important;
}
    .fred-invest { 
    padding-top: 40px !important; 
}
    .btnrs-sec {
    padding-top: 20px !important; 
}
    .ebook-10-main img {
    width: 135px !important;
}
    .fre-heading {
    text-align: center !important;
}
    .sec-btnd.text-center { 
    margin-top: 10px !important;
          padding: 0 20px !important;
}
   a.green-btn {
    width: 100% !important;
    display: inline-flex !important;
    margin-top: -25px !important;
    margin-bottom: -1px !important;
         font-size: 16px !important;
    align-items: center !important;
    justify-content: center !important;
}
    .number-head h2 {
    font-weight: 500 !important;
    padding: 0 20px !important;
}
    .thh-img {
    padding-bottom: 15px !important;
}
    .footer-wrap .text-content {
 
    margin-top: -5px !important;
}
    .btnrs-sec { 
    padding-bottom: 0 !important;
}
    .banenr-10-mb-heading p 
    {
    font-size: 16px !important;
    }
    .btnrs-sec-mp.d-flex {
    flex-direction: column-reverse !important;
}
    
    .container { 
    padding: 0 20px !important;
}
    .numbr-text h3 
    { 
    padding-top: 15px !important;
    }
    
    .number-head 
    {
    margin-bottom: 20px !important;
    }
    
   .number-tr {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}
    
   .lp-img {
    padding: 25px 20px 24px 25px !important;
    margin-top: 2px !important;
}
    
    .banenr-10-mb-heading h1 {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
    font-size: 32px !important; 
    line-height: inherit !important;
}
    .evook-rtrs.col-6 {
    display: none !important;
}
   .free-book-main.d-flex {
    padding: 0 20px !important;
}.innert-lt div#hs_cos_wrapper_dnd_area-module-14_ {
    font-size: 14px !important;
}
    .wht-btro h2 {
    margin-top: 10px !important;
}
    .wht-btro span {
    color: #0078B9 !important;
}
    .why-freedom-mp {
    padding: 0 20px !important;
}
    .get-acce-1 {
    padding: 0 18px !important;
}
    .real-data {
    padding: 0 15px !important;
}
    .banenr-10-mb-heading {
    padding: 0 15px !important;
}
    .logo-slid-heading h2 {
    font-size: 16px !important;
    margin-top: 30px !important;
    padding-bottom: 10px !important;
}
    .banenr-10-mb-heading span {
    color: #0078B9 !important;
}
    
    .form-main form ul.inputs-list.multi-container input {
      width: 30px !important;
    }
    .form-main form .input ul.inputs-list.multi-container {

      margin-top: 0 !important;
    }

    .body-wrapper.hs-content-id-130746531393.hs-landing-page.hs-page form label {
      display: flex !important;
      align-items: center !important;
      padding: 5px 0 !important;
    }
    .body-wrapper.hs-content-id-130746531393.hs-landing-page.hs-page form label span {
      padding-top: 5px !important;
    }

    .content-innert 
    { 
      margin-top: 30px !important;
    }

    .body-wrapper.hs-content-id-129343971147.hs-landing-page.hs-page .mb-half 
    {
      padding-bottom: 2px !important;
    }

    div#formup .form-heading h3 
    { 
      font-size: 22px !important;
    }

    .tps-space br 
    {
      display: none !important;
    }

    strong.next-line 
    { 
      padding-top: 0px !important; 
      margin-bottom: -10px !important;
    }

    .tps-space 
    {
      padding-bottom: 15px !important;
      -webkit-appearance: none !important;
      -moz-appearance:   none !important;
      appearance:    none !important;
    }

    .tps-space.mb-none 
    {
      display: none !important;
    }

    .lp-footer-tr.text-center 
    {
      padding-top: 20px !important;
      padding-bottom: 25px !important;
    }

    .text-center p 
    { 
      margin-top: 0 !important;
    }

    .video-module .card-body 
    {
      min-height: 100% !important;
    }

    .card-text h3 
    { 
      margin-top: 0 !important; 
    }

    .video-heading 
    {
      margin-bottom: 40px !important;
    }

    .video-heading h2 
    {
      margin-bottom: -20px !important;
    }

    .video-module .video-heading 
    {
      margin-bottom: 30px !important;
    }
    .video-heading { 
      margin-bottom: 10px !important;
    }

    .list-gtm ul {
      margin-bottom: 5px !important;
    }
    .list-gtm ul li 
    {
      font-size: 18px !important;
      margin-bottom: 18px !important; 
    }

    .hs-content-id-130746531393 .content-innert h2 
    {
      text-align: center !important;
    }
    .span12.widget-span.widget-type-custom_widget.module_16925942179076-margin.dnd-module.module_16925942179076-padding div#hs_cos_wrapper_module_16925942179076 {
      padding-bottom: 0 !important;
    }

    .exprt-cont-g p 
    {
      margin-top: -10px !important; 
      font-size: 16px !important;
      margin-bottom: 0 !important;
    }
    .exprt-content h3 {

      font-size: 18px !important;
    }

    .expr-style 
    { 
      padding: 10px !important; 
    }


    .content-innert p 
    {
      margin-bottom: 0 !important;
    }

    .tps {
      height: 15px !important;
    }
    .cust-btn {
      text-align: center;
      padding-bottom: 40px;
      padding-top: 25px;
    }

    .cust-btn 
    {
      display: block;
    }
    .logo-tto-img img {
      width: 100% !important;
    }
    .form-heading {
      width: 75% !important;
      padding-bottom: 20px;
    }
    .form-heading h2 {
      font-size: 26px !important; 
      margin-bottom: 10px !important;
    }
    .form-dtr {
      margin-top: 5px !important; 
    }

    .body-wrapper.hs-content-id-125380388158.hs-landing-page.hs-page .et_parallax_bg_phone_exist {
      background-image: url(https://6207938.fs1.hubspotusercontent-na1.net/hubfs/6207938/Website%20Icon/funky-lines-copyV2.png) !important;
    }
    .testimonal .test-main 
    {
      height: auto !important; 
    }

    a.lp-btn-green 
    {
      font-size: 12px !important;
    }

    .review-feedback 
    {
      height: 280px !important; 
    }

    .label-itm img 
    {
      width: 100% !important;
      height: 100% !important;
      object-fit: unset !important;
    }

    .right-revie img 
    {
      width: 80%;
      margin: 0 auto;
      padding-bottom: 20px;
    }

    .exp-img img 
    {
      width: 100% !important;
      height: 100% !important;
    }

    .style-line-card 
    {
      margin-bottom: 10px;
    }
    .logo-item {
      flex: 0 0 50% !important;
      max-width: 50% !important;
      width: 50% !important;
    }

    .logo-main {
      flex-wrap: wrap !important;
      gap: 0 !important;
    }
    .exprt-heading.text-center h2 
    {
      margin-bottom: 0 !important;
    }

    .ban-5 .banner-form.form-section.white-bg-style 
    {
      padding: 15px 20px !important;
    }

    .video-head h2 
    {
      margin-bottom: 0;
    }

    .review-heading.text-center h2 
    {
      margin-bottom: 0 !important;
    }

    .section-btn 
    {
      padding-bottom: 40px !important;
      padding-top: 41px !important;
    }

    .ban-5-logo 
    {
      padding-top: 30px; 
    }

    .baner-content h2  
    {
      font-size: 20px !important;
    }

    .ban-5-logo img 
    {
      width: 150px;
      height: auto;
    }

    .baner-content h1 
    {
      color: #fff;
      font-size: 22px;
      margin-bottom: 10px;
    }

    .banner5-main 
    {
      padding-top: 20px;
    }

    .text-center p 
    {
      margin-bottom: 0;
    }

    .label-itm { 
      padding-bottom: 0 !important;
    }

    .text-center 
    {
      text-align: center; 
    }
    .botm-vect { 
    bottom: -70px !important;
}

    .confir-logo.text-center.d-flex {
    padding-bottom: 40px !important;
}
    .confir-rt.col-6.text-center {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
}
    .botm-vect img {
    width: 80% !important;
}
    .frm-heading p 
    {
      font-size: 24px !important; 
    }

    .button-ctp img 
    {
      width: 60px !important;
    }
    .video-test 
    {
      padding-bottom: 40px;
    }
    .counter-mp 
    {
      background-color: #164EA1;
      padding-top: 30px !important;
      padding-bottom: 30px !important; 
      margin: 30px 0 !important; 
    }

    .text-gpt { 
      width: 18% !important;
    }
    .exprt-left.col-6 {
      margin-bottom: 20px !important;
    }
    .form-main form ul li span {
      font-size: 12px !important;
    }
    .body-wrapper.hs-content-id-130746531393.hs-landing-page.hs-page .form-main form .input ul.inputs-list.multi-container li.hs-form-radio {

      padding-bottom: 0 !important;
    }
    .video-section {
    padding: 0 20px !important;
}
    .video-galary { 
    padding-top: 40px !important;
}
    .video-headingg.text-center h2 {
    margin-bottom: 25px !important;
}
    .fr-url ul li {
    font-size: 14px!important;
}
    .fred-invest { 
    padding-bottom: 0 !important;
}
    .fr-url ul li {
    padding-bottom: 25px!important;
    padding-right: 12px!important;
}
    .fr-url {
    padding-top: 0 !important;
}
    .numbr-text p { 
    padding: 0 40px !important;
}
    .fre-heading h2 { 
    font-size: 22px !important;
    text-align: center !important;
}
    .fred-invest-itr.d-flex {
    flex-direction: column-reverse !important;
}
    .numbr-text h3 { 
    font-size: 19px !important;
    margin-bottom: 10px !important;
}
  .form-main .actions input.hs-button.primary.large {
    font-size: 16px !important;
    padding: 15px 40px !important;
}
    .head-from 
    {
      padding: 30px 15px !important;
    }
    .gtm-subhead em {
      width: 100% !important;
      display: block !important;
    }
    span.sptd {
      padding-left: 0px !important;
      width: 100% !important;
      display: block !important;
    }
    .frm-heading h3 {
      margin-bottom: 5px;
      font-size: 24px !important;
    }

    .head-from form .actions input.hs-button.primary.large {
      font-size: 18px !important;
    }

    .head-from form ul.inputs-list.multi-container span {
      font-size: 14px !important;
    }
    .th-content {

      font-size: 24px !important; 
    }


  }
  @media screen and (max-width: 415px) 
  {
    .frm-heading p {
      font-size: 20px !important;
      width: 76% !important;
      margin: 0 auto !important;
    }
    .banenr-10-mb-heading h1 { 
    font-size: 28px !important; 
    }
}
    .thh-img { 
    overflow: unset !important;
}
    .video-section .owl-dots {
    text-align: center !important;
    margin-bottom: 40px !important;
    margin-top: 12px !important;
}
    .video-headingg.text-center h2 { 
    margin-top: 0 !important;
}
  }

  @media screen and (max-width: 394px) 
  {

    .frm-heading p { 
      width: 80% !important;
      margin: 0 auto !important;
    }

  }

  @media screen and (max-width: 376px) 
  {
    .frm-heading p {
      font-size: 24px !important;
    }
    @media screen and (max-width: 361px) 
    {

      .th-content {
        font-size: 22px !important;
      }

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


.video-section {
    padding-top: 40px !important;
}
@media only screen and (max-width: 481px) {
    .fred-invest {
        margin-top: 0px !important;
    }
}

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

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

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


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

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

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

/* Header DND sections */

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

/* Header container */

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

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



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

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

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

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

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

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

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

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

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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;
  }
}