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

.dnd-section[class*="force-full-width-section"]  > .row-fluid,
.dnd-section[class*="force-full-width-section"]  > .row-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

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

/* 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 { margin:0; }
* + h1, * + h2 { margin-top:35px; }
* + h3, * + h4 { margin-top:30px; }
* + h5, * + h6  { margin-top:25px; }
* + p{ margin-top:20px }


/* Anchors */

a {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Headings */

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

/* Lists */

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

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

* + ol,
* + ul{ margin-top:20px }

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,
.hs-button, .button_primary, .button_secondary {
    display: inline-block;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
}


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

.ftheme-button{
    font-size:16px !important;
    font-weight:500 !important;
    padding:10px 20px !important;
    border-radius:0px !important;
}
/* 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 {
  margin-left: 1rem !important;
}

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/
header.header {
  position: relative;
  z-index: 999;
}

header.header .header_main {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}

.header__top__bar {
  background: #e7ecf5; 
  text-align: center; 
  padding: 10px 0;
}

.header__top__bar * { 
  color: #000; 
  font-size: 14px;
  line-height: 1.5;
}

.header__top__bar--content--row div{
  text-align: left;
}

.header__top__bar--content--row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header__top__bar--button {
  background-color: #000;
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  font-size: 12px;
  border: 1px solid #000;
}

.header__top__bar--button:hover,
.header__top__bar--button:active,
.header__top__bar--button:focus{
  background: transparent;
  color: #000;
}

.header_main {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.11);
  z-index: 99;
}
header.header .header_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center; 
  justify-content: space-between; 
}


header.header li.hs-menu-item.hs-item-has-children {
  position: relative;
}

header.header .navigation ul>li.hs-menu-depth-1>a {
  padding: 0px;
  display: inline-block;
  position: relative;
}
header.header .navigationinner ul>li>a {
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

header.header .btnBox {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  align-items: center;
}

header.header .btnBox_inner:first-child {
  margin-right: 15px;
}

header.header .btnBox_inner:first-child a.button_primary {
  font-size: 14px;
}

header.header span.childExpand img {
  width: 16px;
}
header.header .childExpand {
  display: none;
}
header.header .navigation .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
  position: relative;
  content: "\f107";
  font-family: fontawesome;
  padding: 0 6px;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  top: 0px;
}
header.header .header_logo {
  padding: 18px 0px;
  width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header.header .header_logo img {
  max-width: 130px;
  width: 100%;
}
header.header .header_logo a {
  display: inline-block;
}
header.header .navigationinner .hs-menu-wrapper {
  z-index: 99;
}
header.header ul.hs-menu-children-wrapper>li>a {
  display: block;
  padding: 0;
  padding: 10px 20px;
}
header.header .navigation ul>li.hs-menu-depth-1 > a {
  padding: 21px 20px;
}
.megaMenuCard {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.megaMenuCard .McardImage {
  width: 30px;
  margin-right: 16px;
  line-height: 0;
}
.megaMenuCard .McardText {
  width: calc(100% - 46px);
}
.navigation .megaMenu li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  color: #1953D0;
}
.megaMenuCard .McardText .McardDes {
  margin: 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #7B8089;
  margin-top: 4px;
}

header.header .btnBox a.button_secondary {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(21, 95, 255, 1.0);
}

@media(min-width:1025px){


  /*Mega Menu*/
  .navigation .megaMenu {
    display:block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F7F9FF;
    z-index: 9;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 20px 0;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.11);
    overflow: hidden;
  }
  header.header .navigation ul > li.hs-item-has-children:hover > .megaMenu {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .navigation .megaMenu li {
    background: transparent !important;
  }
  .navigation .megaMenu .hs-menu-children-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -32.5px;
    margin-bottom: -30px;
    padding-left: 200px;
  }
  .navigation .megaMenu .hs-menu-children-wrapper > li {
    width: 33.3333333333%;
    padding: 0 32.5px;
    margin-bottom: 30px;
  }
  .navigation .megaMenu.megaLayout_two_column .hs-menu-children-wrapper > li {
    width: 50%;
  }
  /* Menu end */


  header.header .navigationinner .hs-menu-wrapper {
    display: block !important;
  }
  header.header .navigation {
    width: calc(100% - 200px);
  }
  header.header li.hs-menu-item.hs-item-has-children:hover>:after {
    transform: rotate(180deg);
  }
  header.header .navigationinner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  header.header .hs-menu-wrapper .btnBox_inner,
  .show__demo__buton__on__mobile{
    display: none;
  }

  header.header li.hs-menu-item.hs-item-has-children:hover>ul:before {
    content: ' ';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 13px solid white;
    position: absolute;
    left: 20px;
    top: -11px;
  }
  header.header .navigation ul>li.hs-menu-depth-1>a:before {
    content: "";
    width: 0;
    height: 2px;
    transition: width 0.4s ease;
    position: absolute;
    left: 0;
    bottom: 0px;
  }
  header.header .navigation ul>li.hs-menu-depth-1>a:before, header.header .navigation ul>li.hs-menu-depth-1.active-branch>a:before {
    content: "";
    width: 100%;
    height: 2px;
    transition: width 0.4s ease;
    position: absolute;
    left: 0;
    bottom: 0px;
  }
  header.header .navigation ul>li:hover.hs-menu-depth-1>a:before, 
  header.header .navigation ul>li.hs-menu-depth-1.active-branch>a:before {
    width: 100%;
    background-color: currentColor;
  }
  header.header li.hs-menu-item.hs-menu-depth-2.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 100%;
    top: 0;
  }

  header.header li.hs-menu-item.hs-menu-depth-2.hs-item-has-children ul.hs-menu-children-wrapper:before {
    content: ' ';
    border: 0;
  }
  header.header li.hs-menu-item.hs-item-has-children:hover>ul {
    opacity: 1;
    visibility: inherit;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px 0px;
  }
  header.header .navigation ul>li.hs-menu-depth-1.active-branch>a{color: #FF5C31;}
}

@media(max-width: 1265px) and (min-width: 1200px) {
  header.header .btnBox_inner a {
    font-size: 15px;
  }

  header.header .navigation ul>li.hs-menu-depth-1>a {
    padding: 21px 15px;
  }
}

@media(max-width: 1200px) and (min-width: 1025px) {
  header.header .navigation ul>li.hs-menu-depth-1>a {
    padding: 21px 13px;
  }
  header.header .header_logo {
    width: 150px;
  }
  header.header .navigation {
    width: calc(100% - 150px);
  }
}


@media(max-width: 1135px) and (min-width: 1025px) {
  header.header .btnBox_inner a {
    font-size: 15px;
  }
  header.header .navigation ul>li.hs-menu-depth-1>a {
    padding: 21px 6px;
  }
}


@media(max-width:1024px){
  header.header .btnBox {
    display: none;
  }
  header.header .navigation .navigationinner{
    position: relative;
  }
  header.header .navigation div.expandMenu {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  header.header .expandMenu i {
    width: 30px;
    right: 0;
    height: 3px;
    opacity: 1;
    display: block;
    background: #155fff;
    margin: 6px 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all ease .3s;
  }
  header.header .expandMenu.active i:first-child {
    transform: rotate(45deg);
    top: 8px;
    position: relative;
  }
  header.header .expandMenu.active i:nth-child(2) {
    display: none;
  }
  header.header .expandMenu.active i {
    background:#1F74D5;
  }
  header.header .expandMenu.active i:last-child {
    transform: rotate(-45deg);
    top: -1px;
    position: relative;
  }
  header.header .navigationinner  .hs-menu-wrapper{
    display: none;
    position: fixed; 
    left: 0;
    width: 100%; 
    background-color:#fff;
    overflow: auto;
  } 
  header.header .hs-menu-wrapper ul {
    width: 100%;
    display: block;
    margin-right: 0;
    background-color: #fff;
    padding: 0;
  }
  header.header .navigation .hs-menu-wrapper>ul li.hs-menu-depth-1 {
    padding: 0;
    width: 100%;
    text-align: left;
    position: relative;
  }
  header.header .navigation .hs-menu-wrapper>ul li.hs-menu-depth-1>a {
    display: block;
    font-size: 14px!important;
    line-height: 1.37;
    width: 100%;
    min-height: auto;
  }

  header.header .childExpand {
    position: absolute;
    top: 6px;
    right: 10px;
    width: 40px;
    text-align: center;
    height: 40px;
    margin: 0;
    padding: 5px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all ease .3s;
    cursor: pointer;
    display: block;
    z-index: 555;
  }

  header.header ul.hs-menu-children-wrapper {
    position: static !important;
    opacity: 1;
    visibility: visible;
  }
  header.header .navigation .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
    display: none;
  }
  header.header li.hs-menu-item.hs-menu-depth-1.hs-item-has-children.open >ul {
    display: block !important;
  }
  header.header .navigation .hs-menu-wrapper>ul li.hs-menu-depth-1>a {
    padding: 15px 20px;
    line-height: 1.37;
    border-top: 1px solid #f4f6f7;
  }


  header.header li.hs-menu-item.hs-item-has-children .fa.fa-angle-down {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all ease .3s;
  }
  header.header ul.hs-menu-children-wrapper >li>a {
    font-size: 13px;
  }


  header.header .childExpand.open {
    transform: rotate(180deg);
  }
  header.header .btnBox_inner {
    padding: 15px 20px;
  }

  .show__demo__buton__on__mobile {
    padding-right: 50px;
  }  
  .show__demo__buton__on__mobile .btnBox_inner {
    margin: 0 !important;
    padding: 0 !important;
  }


  header.header li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li>a {
    display: block;
    padding: 10px 30px;
  }
  header.header li.hs-menu-item.hs-menu-depth-2.hs-item-has-children>ul>li>a {
    display: block;
    padding: 10px 40px;
  }
  .megaMenu {
    display: none;
  }
  .megaMenu ul li {
    background: transparent !important;
    padding: 10px 15px;
    border-bottom: 1px solid #f4f6f7;
  }
  .megaMenu .content-wrapper {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .mb-menu-open {
    overflow:hidden;
  }

  header.header .navigationinner .hs-menu-wrapper a.button_secondary {
    border: 0;
    padding: 0;
    line-height: 1.5;
    color: rgba(21, 95, 255, 1.0);
  }

  header.header .navigationinner .hs-menu-wrapper a.button_secondary:hover {
    color: rgba(21, 95, 255, 1.0);
    background: transparent;
  }

  header.header .navigationinner .hs-menu-wrapper a.button_primary {
    font-size: 14px;
  }
}

@media( max-width: 768px ){
/*   .header__top__bar{
    display: none !important;
  } */
}

@media( max-width: 480px ){
  header.header .header_logo {
    width: 160px;
  }

  .show__demo__buton__on__mobile {
    padding-right: 35px;
  }

  header.header .expandMenu i {
    width: 25px;
    margin: 5px 0;
    height: 2px;
  }

  header.header .btnBox_inner:first-child a.button_primary {
    font-size: 12px;
    padding: 9px 10px;
  }
  header.header .expandMenu.active i:first-child {
    top: 6px;
  }
}
.footer .hs-menu-wrapper ul {
  display: unset;
}
.footer {
  position: relative;
  z-index: 9;
}
.footer a {
  text-decoration: none;
  display: inline-block;
}
.footer ul>li>a {
  padding: 6px 0;
  display: inline-block;
}
li.hs-menu-item.hs-menu-depth-1.hs-item-has-children ul>li ul>li>a {
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

footer.footer {
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: center;
}

.footer-top-section {
  width: 100%;
  padding: 55px 0;
}


.footer-top-section .hs-menu-wrapper ul {
  display: block;
}

.footer-top-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: unset;
}

.footer-top-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li {
  width: 20%;
}

li.hs-menu-depth-1>a {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 12px;
}

li.hs-menu-depth-2>a {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

li.hs-menu-depth-2>a {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 12px;
}


.footer-top-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children ul>li>a {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.footer-middle-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: unset;
  width: 100%;
}

.footer-middle-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li {
  width: 25%;
}

.footer-middle-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children ul>li ul {
  display: block;
}

.g2-rating, .capterra-rating, .demo-btn-wrpr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer-middle-section {
  padding: 58px 0 46px;
  background-size: 100%;
  background-position: right bottom;
}
span.capterra-logo-wrpr img, span.g2-logo-wrpr img {
  max-width: 24px;
}

span.g2-description, span.capterra-description {
  margin: 0 6px;
}


span.capterra-logo-wrpr, span.g2-logo-wrpr {
  line-height: 1;
}

span.g2-logo-wrpr img {
  width: 20px;
}

span.g2-logo-wrpr, span.capterra-logo-wrpr {
  line-height: 1;
  display: inline-block;
}
span.capterra-logo-wrpr img {
  max-width: 27px;
}


span.g2-description p , span.capterra-description p {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

 


.footer-middle-bottom-section .demo-btn-wrpr .text-wrpr p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.footer-middle-bottom-inner {
  display: flex;
  flex-wrap: wrap;
}


.g2-rating {
  margin-right: 50px;
}

.capterra-rating {
  margin-right: 60px;
}

.footer-middle-bottom-section .demo-btn-wrpr .text-wrpr p {
  margin-right: 13px;
}

/* bottom-footer */
.footer-bottom-section {
  padding: 50px 0px 62px;
}

.footer-bottom-section-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.logo-section-wrpr {
  width: 37%;
  padding-right:10px;
}

.form-section-wrpr {
  width: 38%;
}

.social-share-wrpr {
  width: 24%;
}

.footer-bottom-section p {
  color: #FFF;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
.footer-bottom-section .social-icon-wrpr img {
  width: 20px; 
  object-fit: contain;
  display: block;
}

.footer-bottom-section .social-icon-wrpr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.footer-bottom-section .social-icon-wrpr .icon_img  a {
  display: inline-block;
  margin-right: 36px;
}

.footer-bottom-section .social-icon-wrpr .icon_img:last-child a {
  margin-right: 0;
}

.footer-bottom-section .footer-social-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom-section form {
  display: flex;
  flex-wrap: wrap;
}

.footer-bottom-section .hs-form-field {
  width: 64%;
  margin: 0;
}

.footer-bottom-section .hs_submit.hs-submit {
  width: 36%;
}

.footer-bottom-section  label {
  display: none !important;
}

.footer-bottom-section  input.hs-button.primary.large {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  padding: 13px 12px;
  line-height: 1.5;
  border-radius: 0px 4px 4px 0px;
  border: 0;
}

.footer-bottom-section .hs-input {
  border-radius: 4px 0 0 4px;
  color: #000;
  font-size: 12px!important;
  border: 0;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  padding: 13px 25px !important; 
}

.footer-bottom-section .form-top-text {
  margin-bottom: 11px;
}
.footer-middle-bottom-section {
  padding-top: 53px;
}
.logo-wrpr img {
  max-width: 200px !important;
  width: 100% !important;
  padding-bottom: 10px;
}
/************** Begin: Bottom CTA ***************/
.footer__hidden__contnt {
  display: none;
  padding: 40px 0 80px;
  color: #FFF;
}

.footer__hidden__section {
  background-color: rgba(14, 21, 44, 1.0);
}

.footer__hidden__section--arrow {
  text-align: center; 
  cursor: pointer;
}

.footer__hidden__section:not(.active) .footer__hidden__section--arrow svg{
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-animation: footerButtonAnimation 3s ease-in infinite;
  animation: footerButtonAnimation 3s ease-in infinite;
}

@-webkit-keyframes footerButtonAnimation{
  0%,20%,40%,100%{
    -webkit-transform:translate(0,0);
    transform:translate(0,0)
  }
  10%,30%{
    -webkit-transform:translate(0,-20px);
    transform:translate(0,-20px);
  }
}
@keyframes footerButtonAnimation{
  0%,20%,40%,100%{
    -webkit-transform:translate(0,0);
    transform:translate(0,0)
  }
  10%,30%{
    -webkit-transform:translate(0,-20px);
    transform:translate(0,-20px);
  }
}

.footer__hidden__contnt h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFF;
  margin-bottom: 0;
}

.footer__hidden__contnt h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFF;
  margin-top: 24px;
}

.footer__hidden__contnt p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #FFF;
}

.form-inner-wrpr .form-title {
  color: #fff;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 12px;
}


/************** End: Bottom CTA ***************/
@media(max-width:1024px){
  .footer-middle-section {
    padding: 30px 0 46px;
  }
  .footer-middle-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li {
    width: 50%;
    padding-bottom: 30px;
  }
  .capterra-rating, .g2-rating {
    padding: 0px 0 20px;
  }
  .logo-section-wrpr, .form-section-wrpr, .social-share-wrpr {
    width: 50%;
    padding-bottom: 30px;
  }
  .footer-bottom-section .footer-social-share {
    justify-content: flex-start;
  }
  .footer-bottom-section p br {
    display: none;
  }
  .footer-top-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li {
    width: 25%;
  }
  .social-share-wrpr {
    padding-bottom: 0;
  }
}
@media(max-width:767px){
  .footer-top-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li {
    width: 33.33%;
  }
  .form-section-wrpr, .logo-section-wrpr, .social-share-wrpr {
    width: 100%;
  }

  .logo-section-wrpr {
    padding-right: 0px;
  }
}
@media( max-width: 768px ){
  .footer__hidden__contnt {
    padding: 40px 0;
  }

  .footer__hidden__contnt h3, .footer__hidden__contnt h4 {
    font-size: 14px;
  }

  .footer__hidden__contnt p {
    font-size: 10px;
    margin-top: 6px;
  } 
}
@media(max-width:480px){
  .footer-top-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li {
    width: 100%;
  }
  .footer-middle-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li {
    width: 100%;
  }
  .footer-middle-section li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>ul>li:last-child{
    padding-bottom:0px;
  }
  .capterra-rating, .demo-btn-wrpr, .g2-rating {
    width: 100%;
  }
  .footer-middle-bottom-section .demo-btn-wrpr .text-wrpr p {
    margin-bottom: 10px;
  }
  .form-section-wrpr, .logo-section-wrpr, .social-share-wrpr {
    width: 100%;
  }
  .footer-bottom-section .hs-form-field, .footer-bottom-section .hs_submit.hs-submit {
    width: 100%;
  }

  .footer-bottom-section .hs-input, .footer-bottom-section input.hs-button.primary.large {
    border-radius: 4px;
  }

  .footer-bottom-section input.hs-button.primary.large {
    margin-top: 20px;
  }
}
/* 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%;
}
div#hs-eu-cookie-confirmation-inner {
  max-width: 1300px !important;
  padding: 20px 15px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

div#hs-eu-close-button-container {
  position: absolute;
  top: -30px;
  right: 0;
  margin: 0 !important;
  background-color: #fff;
  padding: 5px;
}

div#hs-eu-policy-wording {
  margin: 0 !important;
}

div#hs-eu-cookie-confirmation {
  box-shadow: none !important;
  border-color: #fff !important;
}

div#hs-eu-policy-wording p {
  margin: 0 !important;
}

div#hs-eu-policy-wording p + p {
  margin-top: 12px !important;
}

#hs-eu-close-button-container a#hs-eu-close-button[role=button] {
  line-height: 20px !important;
  margin: unset !important;
  float: unset !important;
  display: block !important;
}


@media( max-width: 640px ){
  div#hs-eu-cookie-confirmation-inner{
    flex-direction: column;
    gap: 0px;
  }
  body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button{
    margin-bottom: 0 !important;
  }
} 

.cm-india-home .subtitle-wrpr>ul>li:before {
  content: "";
  background-image: url(https://6920750.fs1.hubspotusercontent-na1.net/hubfs/6920750/raw_assets/public/ClickPost_Oct2023/images/bg-ul.png);
  background-position: 50%;
  background-repeat: no-repeat;
  display: inline-block;
  height: 20px;
  width: 20px;
  background-size: cover;
}

.cm-india-home .subtitle-wrpr>ul>li {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  align-items: center;
  list-style: none;
  display: flex;
  column-gap: 10px;
}

@media(max-width:767px){
  .cm-india-home .subtitle-wrpr>ul{
    padding:0;
  }
}

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

/* Plugins */
